Contextual Related Posts - Version 1.8.10

Version Description

= 1.8.9.2 = * New features; Modified widget class to crp_related_widget; Updated timthumb; Modified format of author name that is displayed; Check the Changelog for more information

Download this release

Release Info

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

Code changes from version 1.8.9.1 to 1.8.10

admin.inc.php CHANGED
@@ -30,6 +30,7 @@ function crp_options() {
30
  $crp_settings['exclude_on_post_ids'] = wp_kses_post($_POST['exclude_on_post_ids']);
31
  $crp_settings['exclude_post_ids'] = wp_kses_post($_POST['exclude_post_ids']);
32
  $crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
 
33
  $crp_settings['cache'] = (isset($_POST['cache']) ? true : false);
34
 
35
  $crp_settings['add_to_content'] = (isset($_POST['add_to_content']) ? true : false);
@@ -49,7 +50,7 @@ function crp_options() {
49
  $crp_settings['before_list_item'] = wp_kses_post($_POST['before_list_item']);
50
  $crp_settings['after_list_item'] = wp_kses_post($_POST['after_list_item']);
51
 
52
- $crp_settings['thumb_meta'] = wp_kses_post($_POST['thumb_meta']);
53
  $crp_settings['thumb_default'] = wp_kses_post($_POST['thumb_default']);
54
  $crp_settings['thumb_height'] = intval($_POST['thumb_height']);
55
  $crp_settings['thumb_width'] = intval($_POST['thumb_width']);
@@ -176,8 +177,9 @@ function crp_options() {
176
  <li><a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/"><?php _e('Contextual Related Posts plugin page',CRP_LOCAL_NAME) ?></a></li>
177
  <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',CRP_LOCAL_NAME) ?></a></li>
178
  <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',CRP_LOCAL_NAME) ?></a></li>
179
- <li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e('Support',CRP_LOCAL_NAME) ?></a></li>
180
- <li><a href="http://wordpress.org/support/view/plugin-reviews/contextual-related-posts"><?php _e('Reviews',CRP_LOCAL_NAME) ?></a></li>
 
181
  </ul>
182
  </div>
183
  <div class="side-widget">
@@ -200,12 +202,18 @@ function crp_options() {
200
  </td>
201
  </tr>
202
  <tr><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
203
- <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>"></td>
 
 
 
204
  </tr>
205
  <tr><th scope="row"><label for="daily_range"><?php _e('Related posts should be newer than:',CRP_LOCAL_NAME); ?></label></th>
206
- <td><input type="textbox" name="daily_range" id="daily_range" value="<?php echo esc_attr(stripslashes($crp_settings['daily_range'])); ?>"><?php _e('days',CRP_LOCAL_NAME); ?></td>
 
 
 
207
  </tr>
208
- <tr><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
209
  <td>
210
  <?php foreach ($wp_post_types as $wp_post_type) {
211
  $post_type_op = '<input type="checkbox" name="post_types[]" value="'.$wp_post_type.'" ';
@@ -214,6 +222,7 @@ function crp_options() {
214
  echo $post_type_op;
215
  }
216
  ?>
 
217
  </td>
218
  </tr>
219
  <tr><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
@@ -221,8 +230,15 @@ function crp_options() {
221
  <p class="description"><?php _e('If unchecked, only posts titles are used. I recommend using a caching plugin or enabling "Cache output" above if you enable this.',CRP_LOCAL_NAME); ?></p>
222
  </td>
223
  </tr>
 
 
 
 
 
224
  <tr><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
225
- <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_post_ids'])); ?>" style="width:250px"></td>
 
 
226
  </tr>
227
  <tr><th scope="row"><label for="exclude_cat_slugs"><?php _e('Categories to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
228
  <td>
@@ -256,17 +272,21 @@ function crp_options() {
256
  </td>
257
  </tr>
258
  <tr><th scope="row"><label for="show_credit"><?php _e('Add a link to the plugin page as a final item in the list',CRP_LOCAL_NAME); ?></label></th>
259
- <td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($crp_settings['show_credit']) echo 'checked="checked"' ?> /> <?php _e(' <em>Optional</em>',CRP_LOCAL_NAME); ?></td>
 
 
 
260
  </tr>
261
-
262
  </table>
263
-
264
  </div>
265
  <div class="tabbertab" id="crp_outputoptions">
266
  <h3><?php _e('Output options',CRP_LOCAL_NAME); ?></h3>
267
  <table class="form-table">
268
  <tr><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
269
- <td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($crp_settings['title'])); ?>" style="width:250px" /></td>
 
 
 
270
  </tr>
271
  <tr><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?></label></th>
272
  <td>
@@ -304,7 +324,7 @@ function crp_options() {
304
  <tr><th scope="row"><label for="exclude_on_post_ids"><?php _e('Exclude display of related posts on these posts / pages',CRP_LOCAL_NAME); ?></label></th>
305
  <td>
306
  <input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_on_post_ids'])); ?>" style="width:250px">
307
- <p class="description"><?php _e('Enter comma separated list of IDs. e.g. 188,320,500',CRP_LOCAL_NAME); ?></p>
308
  </td>
309
  </tr>
310
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
30
  $crp_settings['exclude_on_post_ids'] = wp_kses_post($_POST['exclude_on_post_ids']);
31
  $crp_settings['exclude_post_ids'] = wp_kses_post($_POST['exclude_post_ids']);
32
  $crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
33
+ $crp_settings['match_content_words'] = intval($_POST['match_content_words']);
34
  $crp_settings['cache'] = (isset($_POST['cache']) ? true : false);
35
 
36
  $crp_settings['add_to_content'] = (isset($_POST['add_to_content']) ? true : false);
50
  $crp_settings['before_list_item'] = wp_kses_post($_POST['before_list_item']);
51
  $crp_settings['after_list_item'] = wp_kses_post($_POST['after_list_item']);
52
 
53
+ $crp_settings['thumb_meta'] = (''==$_POST['thumb_meta'] ? 'post-image' : wp_kses_post($_POST['thumb_meta']));
54
  $crp_settings['thumb_default'] = wp_kses_post($_POST['thumb_default']);
55
  $crp_settings['thumb_height'] = intval($_POST['thumb_height']);
56
  $crp_settings['thumb_width'] = intval($_POST['thumb_width']);
177
  <li><a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/"><?php _e('Contextual Related Posts plugin page',CRP_LOCAL_NAME) ?></a></li>
178
  <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',CRP_LOCAL_NAME) ?></a></li>
179
  <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',CRP_LOCAL_NAME) ?></a></li>
180
+ <li><a href="https://wordpress.org/plugins/contextual-related-posts/faq/"><?php _e('FAQ',CRP_LOCAL_NAME) ?></a></li>
181
+ <li><a href="https://wordpress.org/support/plugin/contextual-related-posts"><?php _e('Support',CRP_LOCAL_NAME) ?></a></li>
182
+ <li><a href="https://wordpress.org/support/view/plugin-reviews/contextual-related-posts"><?php _e('Reviews',CRP_LOCAL_NAME) ?></a></li>
183
  </ul>
184
  </div>
185
  <div class="side-widget">
202
  </td>
203
  </tr>
204
  <tr><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
205
+ <td>
206
+ <input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>">
207
+ <p class="description"><?php _e('Maximum number of posts that will be displayed. The actual number may be smaller if less related posts are found.',CRP_LOCAL_NAME); ?></p>
208
+ </td>
209
  </tr>
210
  <tr><th scope="row"><label for="daily_range"><?php _e('Related posts should be newer than:',CRP_LOCAL_NAME); ?></label></th>
211
+ <td>
212
+ <input type="textbox" name="daily_range" id="daily_range" value="<?php echo esc_attr(stripslashes($crp_settings['daily_range'])); ?>"><?php _e('days',CRP_LOCAL_NAME); ?>
213
+ <p class="description"><?php _e('This sets the cutoff period for which posts will be displayed. e.g. setting it to 365 will show related posts from the last year only.',CRP_LOCAL_NAME); ?></p>
214
+ </td>
215
  </tr>
216
+ <tr><th scope="row"><?php _e('Post types to include in results.',CRP_LOCAL_NAME); ?></th>
217
  <td>
218
  <?php foreach ($wp_post_types as $wp_post_type) {
219
  $post_type_op = '<input type="checkbox" name="post_types[]" value="'.$wp_post_type.'" ';
222
  echo $post_type_op;
223
  }
224
  ?>
225
+ <p class="description"><?php _e('These post types will be displayed in the list. Includes custom post types.',CRP_LOCAL_NAME); ?></p>
226
  </td>
227
  </tr>
228
  <tr><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
230
  <p class="description"><?php _e('If unchecked, only posts titles are used. I recommend using a caching plugin or enabling "Cache output" above if you enable this.',CRP_LOCAL_NAME); ?></p>
231
  </td>
232
  </tr>
233
+ <tr><th scope="row"><label for="match_content_words"><?php _e('Limit content to be compared',CRP_LOCAL_NAME); ?></label></th>
234
+ <td><input type="textbox" name="match_content_words" id="match_content_words" value="<?php echo esc_attr(stripslashes($crp_settings['match_content_words'])); ?>">
235
+ <p class="description"><?php _e('This sets the maximum words of the content that will be matched. 0 means no limit.',CRP_LOCAL_NAME); ?></p>
236
+ </td>
237
+ </tr>
238
  <tr><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
239
+ <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_post_ids'])); ?>" style="width:250px">
240
+ <p class="description"><?php _e('Comma separated list of post, page or custom post type IDs. e.g. 188,320,500',CRP_LOCAL_NAME); ?></p>
241
+ </td>
242
  </tr>
243
  <tr><th scope="row"><label for="exclude_cat_slugs"><?php _e('Categories to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
244
  <td>
272
  </td>
273
  </tr>
274
  <tr><th scope="row"><label for="show_credit"><?php _e('Add a link to the plugin page as a final item in the list',CRP_LOCAL_NAME); ?></label></th>
275
+ <td>
276
+ <input type="checkbox" name="show_credit" id="show_credit" <?php if ($crp_settings['show_credit']) echo 'checked="checked"' ?> /> <?php _e(' <em>Optional</em>',CRP_LOCAL_NAME); ?>
277
+ <p class="description"><?php _e('Adds a nofollow link to Contextual Related Posts homepage.',CRP_LOCAL_NAME); ?></p>
278
+ </td>
279
  </tr>
 
280
  </table>
 
281
  </div>
282
  <div class="tabbertab" id="crp_outputoptions">
283
  <h3><?php _e('Output options',CRP_LOCAL_NAME); ?></h3>
284
  <table class="form-table">
285
  <tr><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
286
+ <td>
287
+ <input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($crp_settings['title'])); ?>" style="width:250px" />
288
+ <p class="description"><?php _e('This is the main heading of the related posts. You can also display the current post title by using <code>%postname%</code>. e.g. <code>Related Posts to %postname%</code>',CRP_LOCAL_NAME); ?></p>
289
+ </td>
290
  </tr>
291
  <tr><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?></label></th>
292
  <td>
324
  <tr><th scope="row"><label for="exclude_on_post_ids"><?php _e('Exclude display of related posts on these posts / pages',CRP_LOCAL_NAME); ?></label></th>
325
  <td>
326
  <input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_on_post_ids'])); ?>" style="width:250px">
327
+ <p class="description"><?php _e('Comma separated list of post, page or custom post type IDs. e.g. 188,320,500',CRP_LOCAL_NAME); ?></p>
328
  </td>
329
  </tr>
330
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
contextual-related-posts.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
- Version: 1.8.9.1
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
@@ -82,17 +82,17 @@ function ald_crp( $args ) {
82
  // Retrieve the list of posts
83
  $results = get_crp_posts($post->ID, $limit, TRUE);
84
 
85
- $output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
86
 
87
  if($results){
88
  $loop_counter = 0;
89
 
90
- if(!$is_widget) $output .= apply_filters('crp_heading_title',$title);
91
  $output .= $crp_settings['before_list'];
92
 
93
  foreach($results as $result) {
94
- $result = get_post($result->ID); // Let's get the Post using the ID
95
- $categorys = get_the_category($result->ID); //Fetch categories of the plugin
96
  $p_in_c = false; // Variable to check if post exists in a particular category
97
  $title = apply_filters('crp_title', crp_max_formatted_content(get_the_title($result->ID),$title_length) );
98
  foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
@@ -117,16 +117,16 @@ function ald_crp( $args ) {
117
  }
118
  if ($show_author) {
119
  $author_info = get_userdata($result->post_author);
120
- $author_name = ucwords(trim(stripslashes($author_info->user_nicename)));
121
  $author_link = get_author_posts_url( $author_info->ID );
122
 
123
- $output .= '<span class="crp_author"> '.__(' Posted by ', CRP_LOCAL_NAME ).'<a href="'.$author_link.'">'.$author_name.'</a></span> ';
124
  }
125
  if ($show_date) {
126
  $output .= '<span class="crp_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
127
  }
128
  if ($show_excerpt) {
129
- $output .= '<span class="crp_excerpt"> '.crp_excerpt($result->ID,$crp_settings['excerpt_length']).'</span>';
130
  }
131
  $output .= $crp_settings['after_list_item'];
132
  $loop_counter++;
@@ -156,7 +156,7 @@ function ald_crp( $args ) {
156
  else
157
  update_post_meta($post->ID, 'crp_related_posts', $output, '');
158
  }
159
- return $output;
160
  }
161
 
162
 
@@ -187,7 +187,7 @@ function get_crp_posts($postid = FALSE, $limit = FALSE, $strict_limit = TRUE) {
187
 
188
  // Are we matching only the title or the post content as well?
189
  if($crp_settings['match_content']) {
190
- $stuff = addslashes($post->post_title. ' ' . $post->post_content);
191
  }
192
  else {
193
  $stuff = addslashes($post->post_title);
@@ -223,7 +223,7 @@ function get_crp_posts($postid = FALSE, $limit = FALSE, $strict_limit = TRUE) {
223
  $results = false;
224
  }
225
 
226
- return $results;
227
  }
228
 
229
 
@@ -294,8 +294,8 @@ add_filter('the_content_feed', 'ald_crp_rss');
294
  * @access public
295
  * @return string echoed output of related posts
296
  */
297
- function echo_ald_crp($cache = 0) {
298
- echo ald_crp('is_widget=0&cache='.$cache);
299
  }
300
 
301
  /*********************************************************************
@@ -472,28 +472,35 @@ function crp_default_options() {
472
 
473
  $crp_settings = Array (
474
  'title' => $title, // Add before the content
 
 
 
 
 
 
 
 
475
  'add_to_content' => true, // Add related posts to content (only on single posts)
476
- 'add_to_page' => false, // Add related posts to content (only on single pages)
477
- 'add_to_feed' => true, // Add related posts to feed (full)
478
  'add_to_home' => false, // Add related posts to home page
479
  'add_to_category_archives' => false, // Add related posts to category archives
480
  'add_to_tag_archives' => false, // Add related posts to tag archives
481
  'add_to_archives' => false, // Add related posts to other archives
482
- 'cache' => false, // Cache output for faster page load
483
- 'limit' => '5', // How many posts to display?
484
- 'daily_range' => '1095', // How old posts should be displayed?
485
- 'show_credit' => false, // Link to this plugin's page?
486
- 'match_content' => true, // Match against post content as well as title
487
  'blank_output' => true, // Blank output?
488
  'blank_output_text' => $blank_output_text, // Blank output text
 
489
  'exclude_categories' => '', // Exclude these categories
490
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
491
  'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
492
  'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
 
493
  'before_list' => '<ul>', // Before the entire list
494
  'after_list' => '</ul>', // After the entire list
495
  'before_list_item' => '<li>', // Before each list item
496
  'after_list_item' => '</li>', // After each list item
 
497
  'post_thumb_op' => 'text_only', // Default option to display text and no thumbnails in posts
498
  'thumb_height' => '50', // Height of thumbnails
499
  'thumb_width' => '50', // Width of thumbnails
@@ -504,12 +511,14 @@ function crp_default_options() {
504
  'thumb_timthumb' => true, // Use timthumb
505
  'thumb_timthumb_q' => '75', // Quality attribute for timthumb
506
  'scan_images' => false, // Scan post for images
 
507
  'show_excerpt' => false, // Show post excerpt in list item
508
  'show_date' => false, // Show date in list item
509
  'show_author' => false, // Show author in list item
 
510
  'excerpt_length' => '10', // Length of characters
511
  'title_length' => '60', // Limit length of post title
512
- 'post_types' => $post_types, // WordPress custom post types
513
  'custom_CSS' => '', // Custom CSS to style the output
514
  'limit_feed' => '5', // How many posts to display in feeds
515
  'post_thumb_op_feed' => 'text_only', // Default option to display text and no thumbnails in Feeds
@@ -739,26 +748,18 @@ function crp_get_first_image( $postID ) {
739
  * @param int|string $excerpt_length Length of the excerpt in words
740
  * @return string Excerpt
741
  */
742
- function crp_excerpt($id,$excerpt_length){
743
- $content = get_post($id)->post_excerpt;
744
- if ($content=='') $content = get_post($id)->post_content;
745
- $out = strip_tags(strip_shortcodes($content));
746
- $blah = explode(' ',$out);
747
- if (!$excerpt_length) $excerpt_length = 10;
748
- if(count($blah) > $excerpt_length){
749
- $k = $excerpt_length;
750
- $use_dotdotdot = 1;
751
- }else{
752
- $k = count($blah);
753
- $use_dotdotdot = 0;
754
- }
755
- $excerpt = '';
756
- for($i=0; $i<$k; $i++){
757
- $excerpt .= $blah[$i].' ';
758
  }
759
- $excerpt .= ($use_dotdotdot) ? '...' : '';
760
- $out = $excerpt;
761
- return $out;
762
  }
763
 
764
 
@@ -784,7 +785,7 @@ function crp_max_formatted_content($content, $MaxLength = -1) {
784
  }
785
  }
786
 
787
- return $content;
788
  }
789
 
790
  /*********************************************************************
@@ -828,6 +829,7 @@ if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
828
  if ($file == $plugin) {
829
  $links[] = '<a href="http://wordpress.org/support/plugin/contextual-related-posts">' . __('Support', CRP_LOCAL_NAME ) . '</a>';
830
  $links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', CRP_LOCAL_NAME ) . '</a>';
 
831
  }
832
  return $links;
833
  }
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
+ Version: 1.8.10
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
82
  // Retrieve the list of posts
83
  $results = get_crp_posts($post->ID, $limit, TRUE);
84
 
85
+ $output = (is_singular()) ? '<div id="crp_related" class="crp_related'.($is_widget ? '_widget':'').'">' : '<div class="crp_related'.($is_widget ? '_widget':'').'">';
86
 
87
  if($results){
88
  $loop_counter = 0;
89
 
90
+ if(!$is_widget) $output .= apply_filters('crp_heading_title',str_replace("%postname%",$post->post_title,$title));
91
  $output .= $crp_settings['before_list'];
92
 
93
  foreach($results as $result) {
94
+ $result = get_post(apply_filters('crp_post_id',$result->ID)); // Let's get the Post using the ID
95
+ $categorys = get_the_category(apply_filters('crp_post_cat_id',$result->ID)); //Fetch categories of the plugin
96
  $p_in_c = false; // Variable to check if post exists in a particular category
97
  $title = apply_filters('crp_title', crp_max_formatted_content(get_the_title($result->ID),$title_length) );
98
  foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
117
  }
118
  if ($show_author) {
119
  $author_info = get_userdata($result->post_author);
120
+ $author_name = ucwords(trim(stripslashes($author_info->display_name)));
121
  $author_link = get_author_posts_url( $author_info->ID );
122
 
123
+ $output .= '<span class="crp_author"> '.__(' by ', TPTN_LOCAL_NAME ).'<a href="'.$author_link.'">'.$author_name.'</a></span> ';
124
  }
125
  if ($show_date) {
126
  $output .= '<span class="crp_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
127
  }
128
  if ($show_excerpt) {
129
+ $output .= '<span class="crp_excerpt"> '.crp_excerpt($result->ID,$excerpt_length).'</span>';
130
  }
131
  $output .= $crp_settings['after_list_item'];
132
  $loop_counter++;
156
  else
157
  update_post_meta($post->ID, 'crp_related_posts', $output, '');
158
  }
159
+ return apply_filters('ald_crp',$output);
160
  }
161
 
162
 
187
 
188
  // Are we matching only the title or the post content as well?
189
  if($crp_settings['match_content']) {
190
+ $stuff = addslashes($post->post_title. ' ' . crp_excerpt($post->ID,$crp_settings['match_content_words'],false) );
191
  }
192
  else {
193
  $stuff = addslashes($post->post_title);
223
  $results = false;
224
  }
225
 
226
+ return apply_filters('get_crp_posts',$results);
227
  }
228
 
229
 
294
  * @access public
295
  * @return string echoed output of related posts
296
  */
297
+ function echo_ald_crp( $args ) {
298
+ echo ald_crp( $args );
299
  }
300
 
301
  /*********************************************************************
472
 
473
  $crp_settings = Array (
474
  'title' => $title, // Add before the content
475
+ 'cache' => false, // Cache output for faster page load
476
+ 'daily_range' => '1095', // How old posts should be displayed?
477
+ 'limit' => '5', // How many posts to display?
478
+ 'show_credit' => false, // Link to this plugin's page?
479
+ 'match_content' => true, // Match against post content as well as title
480
+ 'match_content_words' => '0', // How many characters of content should be matched? 0 for all chars
481
+ 'post_types' => $post_types, // WordPress custom post types
482
+
483
  'add_to_content' => true, // Add related posts to content (only on single posts)
484
+ 'add_to_page' => true, // Add related posts to content (only on single pages)
485
+ 'add_to_feed' => false, // Add related posts to feed (full)
486
  'add_to_home' => false, // Add related posts to home page
487
  'add_to_category_archives' => false, // Add related posts to category archives
488
  'add_to_tag_archives' => false, // Add related posts to tag archives
489
  'add_to_archives' => false, // Add related posts to other archives
490
+
 
 
 
 
491
  'blank_output' => true, // Blank output?
492
  'blank_output_text' => $blank_output_text, // Blank output text
493
+
494
  'exclude_categories' => '', // Exclude these categories
495
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
496
  'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
497
  'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
498
+
499
  'before_list' => '<ul>', // Before the entire list
500
  'after_list' => '</ul>', // After the entire list
501
  'before_list_item' => '<li>', // Before each list item
502
  'after_list_item' => '</li>', // After each list item
503
+
504
  'post_thumb_op' => 'text_only', // Default option to display text and no thumbnails in posts
505
  'thumb_height' => '50', // Height of thumbnails
506
  'thumb_width' => '50', // Width of thumbnails
511
  'thumb_timthumb' => true, // Use timthumb
512
  'thumb_timthumb_q' => '75', // Quality attribute for timthumb
513
  'scan_images' => false, // Scan post for images
514
+
515
  'show_excerpt' => false, // Show post excerpt in list item
516
  'show_date' => false, // Show date in list item
517
  'show_author' => false, // Show author in list item
518
+
519
  'excerpt_length' => '10', // Length of characters
520
  'title_length' => '60', // Limit length of post title
521
+
522
  'custom_CSS' => '', // Custom CSS to style the output
523
  'limit_feed' => '5', // How many posts to display in feeds
524
  'post_thumb_op_feed' => 'text_only', // Default option to display text and no thumbnails in Feeds
748
  * @param int|string $excerpt_length Length of the excerpt in words
749
  * @return string Excerpt
750
  */
751
+ function crp_excerpt($id,$excerpt_length=0,$use_excerpt = true) {
752
+ $content = $excerpt = '';
753
+ if ($use_excerpt) $content = get_post($id)->post_excerpt;
754
+ if (''==$content) $content = get_post($id)->post_content;
755
+
756
+ $output = strip_tags(strip_shortcodes($content));
757
+
758
+ if ($excerpt_length>0) {
759
+ $output = wp_trim_words($output,$excerpt_length);
 
 
 
 
 
 
 
760
  }
761
+
762
+ return apply_filters('crp_excerpt',$output,$id,$excerpt_length,$use_excerpt);
 
763
  }
764
 
765
 
785
  }
786
  }
787
 
788
+ return apply_filters('crp_max_formatted_content',$content,$MaxLength);
789
  }
790
 
791
  /*********************************************************************
829
  if ($file == $plugin) {
830
  $links[] = '<a href="http://wordpress.org/support/plugin/contextual-related-posts">' . __('Support', CRP_LOCAL_NAME ) . '</a>';
831
  $links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', CRP_LOCAL_NAME ) . '</a>';
832
+ // $links[] = '<a href="http://ajaydsouza.org/contextual-related-posts/">' . __('Get PRO', CRP_LOCAL_NAME ) . '</a>';
833
  }
834
  return $links;
835
  }
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-08-19 23:28-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"
@@ -18,99 +18,120 @@ msgstr ""
18
  "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: admin.inc.php:106
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
- #: admin.inc.php:122
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
- #: admin.inc.php:138
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
- #: admin.inc.php:151
34
  #, fuzzy
35
  msgid "Support the development"
36
  msgstr "Støt udviklingen"
37
 
38
- #: admin.inc.php:159
39
  msgid "Enter amount in USD: "
40
  msgstr ""
41
 
42
- #: admin.inc.php:163
43
  msgid "Send your donation to the author of"
44
  msgstr ""
45
 
46
- #: admin.inc.php:174
47
  msgid "Quick Links"
48
  msgstr ""
49
 
50
- #: admin.inc.php:176
51
  #, fuzzy
52
  msgid "Contextual Related Posts plugin page"
53
  msgstr "Related Posts (Lignende indlæg)"
54
 
55
- #: admin.inc.php:177
56
  msgid "Other plugins"
57
  msgstr ""
58
 
59
- #: admin.inc.php:178
60
  msgid "Ajay's blog"
61
  msgstr ""
62
 
63
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
64
  msgid "Support"
65
  msgstr "Support"
66
 
67
- #: admin.inc.php:180
68
  msgid "Reviews"
69
  msgstr ""
70
 
71
- #: admin.inc.php:184
72
  msgid "Recent developments"
73
  msgstr ""
74
 
75
- #: admin.inc.php:194
76
  msgid "General options"
77
  msgstr ""
78
 
79
- #: admin.inc.php:196
80
  msgid "Cache output?"
81
  msgstr ""
82
 
83
- #: admin.inc.php:198
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:199
90
  msgid "Clear cache"
91
  msgstr ""
92
 
93
- #: admin.inc.php:202 admin.inc.php:402
94
  msgid "Number of related posts to display: "
95
  msgstr "Antal Lignende indlæg, der skal vises: "
96
 
97
- #: admin.inc.php:205
 
 
 
 
 
 
98
  msgid "Related posts should be newer than:"
99
  msgstr ""
100
 
101
- #: admin.inc.php:206
102
  msgid "days"
103
  msgstr ""
104
 
105
- #: admin.inc.php:208
106
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
107
  msgstr ""
108
 
109
- #: admin.inc.php:219
 
 
 
 
 
110
  msgid "Find related posts based on content as well as title"
111
  msgstr ""
112
 
113
- #: admin.inc.php:221
114
  #, fuzzy
115
  msgid ""
116
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -120,55 +141,70 @@ msgstr ""
120
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
121
  "dette)"
122
 
123
- #: admin.inc.php:224
 
 
 
 
 
 
 
 
 
 
124
  msgid "List of post or page IDs to exclude from the results: "
125
  msgstr ""
126
 
127
- #: admin.inc.php:227
128
- msgid "Categories to exclude from the results: "
 
129
  msgstr ""
130
 
131
  #: admin.inc.php:243
 
 
 
 
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:246
139
  #, fuzzy
140
  msgid "Add related posts to:"
141
  msgstr "Tilføj Lignende indlæg til feeds"
142
 
143
- #: admin.inc.php:248
144
  msgid "Posts"
145
  msgstr ""
146
 
147
- #: admin.inc.php:249
148
  msgid "Pages"
149
  msgstr ""
150
 
151
- #: admin.inc.php:250
152
  msgid "Home page"
153
  msgstr ""
154
 
155
- #: admin.inc.php:251
156
  msgid "Feeds"
157
  msgstr ""
158
 
159
- #: admin.inc.php:252
160
  msgid "Category archives"
161
  msgstr ""
162
 
163
- #: admin.inc.php:253
164
  msgid "Tag archives"
165
  msgstr ""
166
 
167
- #: admin.inc.php:254
168
  msgid "Other archives"
169
  msgstr ""
170
 
171
- #: admin.inc.php:255
172
  #, fuzzy
173
  msgid ""
174
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -180,199 +216,207 @@ msgstr ""
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:258
184
  msgid "Add a link to the plugin page as a final item in the list"
185
  msgstr ""
186
 
187
- #: admin.inc.php:259
188
  msgid " <em>Optional</em>"
189
  msgstr ""
190
 
191
- #: admin.inc.php:266
 
 
 
 
 
192
  #, fuzzy
193
  msgid "Output options"
194
  msgstr "Indstillinger for output:"
195
 
196
- #: admin.inc.php:268
197
  msgid "Title of related posts: "
198
  msgstr "Titel på Lignende indlæg: "
199
 
200
- #: admin.inc.php:271
 
 
 
 
 
 
 
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:275
205
  msgid "Blank Output"
206
  msgstr "Intet"
207
 
208
- #: admin.inc.php:279
209
  msgid "Display:"
210
  msgstr ""
211
 
212
- #: admin.inc.php:283 admin.inc.php:405
213
  msgid "Show post excerpt in list?"
214
  msgstr ""
215
 
216
- #: admin.inc.php:286
217
  msgid "Length of excerpt (in words): "
218
  msgstr ""
219
 
220
- #: admin.inc.php:289
221
  msgid "Show post author in list?"
222
  msgstr ""
223
 
224
- #: admin.inc.php:292
225
  msgid "Show post date in list?"
226
  msgstr ""
227
 
228
- #: admin.inc.php:295
229
  msgid "Limit post title length (in characters)"
230
  msgstr ""
231
 
232
- #: admin.inc.php:298
233
  msgid "Open links in new window"
234
  msgstr ""
235
 
236
- #: admin.inc.php:301
237
  msgid "Add nofollow attribute to links in the list"
238
  msgstr ""
239
 
240
- #: admin.inc.php:304
241
  #, fuzzy
242
  msgid "Exclude display of related posts on these posts / pages"
243
  msgstr "Tilføj Lignende indlæg til feeds"
244
 
245
- #: admin.inc.php:307
246
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
247
- msgstr ""
248
-
249
- #: admin.inc.php:310
250
  msgid "Customize the output:"
251
  msgstr "Tilpas outputtet:"
252
 
253
- #: admin.inc.php:312
254
  msgid "HTML to display before the list of posts: "
255
  msgstr "HTML, der skal vises før listen med indlæg: "
256
 
257
- #: admin.inc.php:315
258
  msgid "HTML to display before each list item: "
259
  msgstr "HTML, der skal vises før hvert punkt på listen: "
260
 
261
- #: admin.inc.php:318
262
  msgid "HTML to display after each list item: "
263
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
264
 
265
- #: admin.inc.php:321
266
  msgid "HTML to display after the list of posts: "
267
  msgstr "HTML, der skal vises efter listen med indlæg: "
268
 
269
- #: admin.inc.php:324
270
  msgid "Post thumbnail options:"
271
  msgstr "Indstillinger for indlægsminiaturer:"
272
 
273
- #: admin.inc.php:326 admin.inc.php:408
274
  msgid "Location of post thumbnail:"
275
  msgstr ""
276
 
277
- #: admin.inc.php:330 admin.inc.php:412
278
  #, fuzzy
279
  msgid "Display thumbnails inline with posts, before title"
280
  msgstr "Vis miniaturer inline med indlæg"
281
 
282
- #: admin.inc.php:334 admin.inc.php:416
283
  #, fuzzy
284
  msgid "Display thumbnails inline with posts, after title"
285
  msgstr "Vis miniaturer inline med indlæg"
286
 
287
- #: admin.inc.php:338 admin.inc.php:420
288
  msgid "Display only thumbnails, no text"
289
  msgstr "Vis kun miniaturer, ingen tekst"
290
 
291
- #: admin.inc.php:342 admin.inc.php:424
292
  msgid "Do not display thumbnails, only text."
293
  msgstr "Vis ikke miniaturer, kun tekst."
294
 
295
- #: admin.inc.php:346 admin.inc.php:428
296
  msgid "Maximum width of the thumbnail: "
297
  msgstr ""
298
 
299
- #: admin.inc.php:349 admin.inc.php:431
300
  msgid "Maximum height of the thumbnail: "
301
  msgstr ""
302
 
303
- #: admin.inc.php:352
304
  msgid "Style attributes / Width and Height HTML attributes:"
305
  msgstr ""
306
 
307
- #: admin.inc.php:356
308
  msgid ""
309
  "Style attributes are used for width and height. <code>style=\"max-width:"
310
  msgstr ""
311
 
312
- #: admin.inc.php:360
313
  msgid ""
314
  "HTML width and height attributes are used for width and height. <code>width="
315
  "\""
316
  msgstr ""
317
 
318
- #: admin.inc.php:364
319
  msgid "Use timthumb to generate thumbnails? "
320
  msgstr ""
321
 
322
- #: admin.inc.php:366
323
  msgid ""
324
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
325
  "\">timthumb</a> will be used to generate thumbnails"
326
  msgstr ""
327
 
328
- #: admin.inc.php:369
329
  msgid "Quality of thumbnails generated by timthumb"
330
  msgstr ""
331
 
332
- #: admin.inc.php:372
333
  msgid ""
334
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
335
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
336
  msgstr ""
337
 
338
- #: admin.inc.php:375
339
  #, fuzzy
340
  msgid "Post thumbnail meta field name: "
341
  msgstr "Indstillinger for indlægsminiaturer:"
342
 
343
- #: admin.inc.php:377
344
  msgid ""
345
  "The value of this field should contain the image source and is set in the "
346
  "<em>Add New Post</em> screen"
347
  msgstr ""
348
 
349
- #: admin.inc.php:380
350
  msgid ""
351
  "If the postmeta is not set, then should the plugin extract the first image "
352
  "from the post?"
353
  msgstr ""
354
 
355
- #: admin.inc.php:382
356
  msgid ""
357
  "This can slow down the loading of your page if the first image in the "
358
  "related posts is large in file-size"
359
  msgstr ""
360
 
361
- #: admin.inc.php:385
362
  msgid "Use default thumbnail? "
363
  msgstr ""
364
 
365
- #: admin.inc.php:387
366
  msgid ""
367
  "If checked, when no thumbnail is found, show a default one from the URL "
368
  "below. If not checked and no thumbnail is found, no image will be shown."
369
  msgstr ""
370
 
371
- #: admin.inc.php:390
372
  msgid "Default thumbnail: "
373
  msgstr ""
374
 
375
- #: admin.inc.php:392
376
  #, fuzzy
377
  msgid ""
378
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -383,90 +427,90 @@ msgstr ""
383
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
384
  "findes, vil det vise standardbilledet specificeret nedenfor:"
385
 
386
- #: admin.inc.php:398
387
  #, fuzzy
388
  msgid "Feed options"
389
  msgstr "Indstillinger:"
390
 
391
- #: admin.inc.php:400
392
  msgid ""
393
  "Below options override the related posts settings for your blog feed. These "
394
  "only apply if you have selected to add related posts to Feeds in the General "
395
  "Options tab."
396
  msgstr ""
397
 
398
- #: admin.inc.php:437
399
  msgid "Custom Styles"
400
  msgstr ""
401
 
402
- #: admin.inc.php:439
403
  msgid "Custom CSS to add to header:"
404
  msgstr ""
405
 
406
- #: admin.inc.php:442
407
  msgid ""
408
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
409
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
410
  "\">FAQ</a> for available CSS classes to style."
411
  msgstr ""
412
 
413
- #: admin.inc.php:447
414
  #, fuzzy
415
  msgid "Save Options"
416
  msgstr "Indstillinger:"
417
 
418
- #: admin.inc.php:448
419
  #, fuzzy
420
  msgid "Default Options"
421
  msgstr "Indstillinger for output:"
422
 
423
- #: admin.inc.php:448
424
  msgid "Do you want to set options to Default?"
425
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
426
 
427
- #: admin.inc.php:449
428
  msgid "Recreate Index"
429
  msgstr ""
430
 
431
- #: admin.inc.php:449
432
  msgid "Are you sure you want to recreate the index?"
433
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
434
 
435
- #: admin.inc.php:473
436
  #, fuzzy
437
  msgid "Contextual Related Posts"
438
  msgstr "Related Posts (Lignende indlæg)"
439
 
440
- #: admin.inc.php:473 contextual-related-posts.php:314
441
  msgid "Related Posts"
442
  msgstr "Related Posts (Lignende indlæg)"
443
 
444
- #: admin.inc.php:486
445
  msgid "plugin settings page"
446
  msgstr ""
447
 
448
- #: admin.inc.php:491
449
  msgid ""
450
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
451
  "visit the "
452
  msgstr ""
453
 
454
- #: admin.inc.php:491
455
  msgid " to configure."
456
  msgstr ""
457
 
458
- #: admin.inc.php:555
459
  msgid ""
460
  "An error occurred clearing the cache. Please contact your site administrator."
461
  "\\n\\nError message:\\n"
462
  msgstr ""
463
 
464
- #: admin.inc.php:561
465
  msgid " cached row(s) cleared"
466
  msgstr ""
467
 
468
  #: contextual-related-posts.php:123
469
- msgid " Posted by "
470
  msgstr ""
471
 
472
  #: contextual-related-posts.php:138
@@ -542,11 +586,11 @@ msgstr "<h3>Lignende indlæg:</h3>"
542
  msgid "No related posts found"
543
  msgstr "Ingen lignende indlæg fundet"
544
 
545
- #: contextual-related-posts.php:807
546
  msgid "Settings"
547
  msgstr "Opsætning"
548
 
549
- #: contextual-related-posts.php:830
550
  msgid "Donate"
551
  msgstr "Donation"
552
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:10-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"
18
  "X-Generator: Poedit 1.5.7\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: admin.inc.php:107
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
+ #: admin.inc.php:123
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
+ #: admin.inc.php:139
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
+ #: admin.inc.php:152
34
  #, fuzzy
35
  msgid "Support the development"
36
  msgstr "Støt udviklingen"
37
 
38
+ #: admin.inc.php:160
39
  msgid "Enter amount in USD: "
40
  msgstr ""
41
 
42
+ #: admin.inc.php:164
43
  msgid "Send your donation to the author of"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:175
47
  msgid "Quick Links"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:177
51
  #, fuzzy
52
  msgid "Contextual Related Posts plugin page"
53
  msgstr "Related Posts (Lignende indlæg)"
54
 
55
+ #: admin.inc.php:178
56
  msgid "Other plugins"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:179
60
  msgid "Ajay's blog"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:180
64
+ msgid "FAQ"
65
+ msgstr ""
66
+
67
+ #: admin.inc.php:181 contextual-related-posts.php:830
68
  msgid "Support"
69
  msgstr "Support"
70
 
71
+ #: admin.inc.php:182
72
  msgid "Reviews"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:186
76
  msgid "Recent developments"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:196
80
  msgid "General options"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:198
84
  msgid "Cache output?"
85
  msgstr ""
86
 
87
+ #: admin.inc.php:200
88
  msgid ""
89
  "Enabling this option will cache the related posts output when the post is "
90
  "visited the first time. The cache is cleaned when you save this page."
91
  msgstr ""
92
 
93
+ #: admin.inc.php:201
94
  msgid "Clear cache"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:204 admin.inc.php:422
98
  msgid "Number of related posts to display: "
99
  msgstr "Antal Lignende indlæg, der skal vises: "
100
 
101
+ #: admin.inc.php:207
102
+ msgid ""
103
+ "Maximum number of posts that will be displayed. The actual number may be "
104
+ "smaller if less related posts are found."
105
+ msgstr ""
106
+
107
+ #: admin.inc.php:210
108
  msgid "Related posts should be newer than:"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:212
112
  msgid "days"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:213
116
+ msgid ""
117
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
118
+ "it to 365 will show related posts from the last year only."
119
+ msgstr ""
120
+
121
+ #: admin.inc.php:216
122
+ msgid "Post types to include in results."
123
  msgstr ""
124
 
125
+ #: admin.inc.php:225
126
+ msgid ""
127
+ "These post types will be displayed in the list. Includes custom post types."
128
+ msgstr ""
129
+
130
+ #: admin.inc.php:228
131
  msgid "Find related posts based on content as well as title"
132
  msgstr ""
133
 
134
+ #: admin.inc.php:230
135
  #, fuzzy
136
  msgid ""
137
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
141
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
142
  "dette)"
143
 
144
+ #: admin.inc.php:233
145
+ msgid "Limit content to be compared"
146
+ msgstr ""
147
+
148
+ #: admin.inc.php:235
149
+ msgid ""
150
+ "This sets the maximum words of the content that will be matched. 0 means no "
151
+ "limit."
152
+ msgstr ""
153
+
154
+ #: admin.inc.php:238
155
  msgid "List of post or page IDs to exclude from the results: "
156
  msgstr ""
157
 
158
+ #: admin.inc.php:240 admin.inc.php:327
159
+ msgid ""
160
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
161
  msgstr ""
162
 
163
  #: admin.inc.php:243
164
+ msgid "Categories to exclude from the results: "
165
+ msgstr ""
166
+
167
+ #: admin.inc.php:259
168
  msgid ""
169
  "Comma separated list of category slugs. The field above has an autocomplete "
170
  "so simply start typing in the starting letters and it will prompt you with "
171
  "options"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:262
175
  #, fuzzy
176
  msgid "Add related posts to:"
177
  msgstr "Tilføj Lignende indlæg til feeds"
178
 
179
+ #: admin.inc.php:264
180
  msgid "Posts"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:265
184
  msgid "Pages"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:266
188
  msgid "Home page"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:267
192
  msgid "Feeds"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:268
196
  msgid "Category archives"
197
  msgstr ""
198
 
199
+ #: admin.inc.php:269
200
  msgid "Tag archives"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:270
204
  msgid "Other archives"
205
  msgstr ""
206
 
207
+ #: admin.inc.php:271
208
  #, fuzzy
209
  msgid ""
210
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
216
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du "
217
  "ønsker de lignende indlæg vist"
218
 
219
+ #: admin.inc.php:274
220
  msgid "Add a link to the plugin page as a final item in the list"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:276
224
  msgid " <em>Optional</em>"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:277
228
+ #, fuzzy
229
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
230
+ msgstr "Related Posts (Lignende indlæg)"
231
+
232
+ #: admin.inc.php:283
233
  #, fuzzy
234
  msgid "Output options"
235
  msgstr "Indstillinger for output:"
236
 
237
+ #: admin.inc.php:285
238
  msgid "Title of related posts: "
239
  msgstr "Titel på Lignende indlæg: "
240
 
241
+ #: admin.inc.php:288
242
+ msgid ""
243
+ "This is the main heading of the related posts. You can also display the "
244
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
245
+ "Posts to %postname%</code>"
246
+ msgstr ""
247
+
248
+ #: admin.inc.php:291
249
  msgid "When there are no posts, what should be shown?"
250
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
251
 
252
+ #: admin.inc.php:295
253
  msgid "Blank Output"
254
  msgstr "Intet"
255
 
256
+ #: admin.inc.php:299
257
  msgid "Display:"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:303 admin.inc.php:425
261
  msgid "Show post excerpt in list?"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:306
265
  msgid "Length of excerpt (in words): "
266
  msgstr ""
267
 
268
+ #: admin.inc.php:309
269
  msgid "Show post author in list?"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:312
273
  msgid "Show post date in list?"
274
  msgstr ""
275
 
276
+ #: admin.inc.php:315
277
  msgid "Limit post title length (in characters)"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:318
281
  msgid "Open links in new window"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:321
285
  msgid "Add nofollow attribute to links in the list"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:324
289
  #, fuzzy
290
  msgid "Exclude display of related posts on these posts / pages"
291
  msgstr "Tilføj Lignende indlæg til feeds"
292
 
293
+ #: admin.inc.php:330
 
 
 
 
294
  msgid "Customize the output:"
295
  msgstr "Tilpas outputtet:"
296
 
297
+ #: admin.inc.php:332
298
  msgid "HTML to display before the list of posts: "
299
  msgstr "HTML, der skal vises før listen med indlæg: "
300
 
301
+ #: admin.inc.php:335
302
  msgid "HTML to display before each list item: "
303
  msgstr "HTML, der skal vises før hvert punkt på listen: "
304
 
305
+ #: admin.inc.php:338
306
  msgid "HTML to display after each list item: "
307
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
308
 
309
+ #: admin.inc.php:341
310
  msgid "HTML to display after the list of posts: "
311
  msgstr "HTML, der skal vises efter listen med indlæg: "
312
 
313
+ #: admin.inc.php:344
314
  msgid "Post thumbnail options:"
315
  msgstr "Indstillinger for indlægsminiaturer:"
316
 
317
+ #: admin.inc.php:346 admin.inc.php:428
318
  msgid "Location of post thumbnail:"
319
  msgstr ""
320
 
321
+ #: admin.inc.php:350 admin.inc.php:432
322
  #, fuzzy
323
  msgid "Display thumbnails inline with posts, before title"
324
  msgstr "Vis miniaturer inline med indlæg"
325
 
326
+ #: admin.inc.php:354 admin.inc.php:436
327
  #, fuzzy
328
  msgid "Display thumbnails inline with posts, after title"
329
  msgstr "Vis miniaturer inline med indlæg"
330
 
331
+ #: admin.inc.php:358 admin.inc.php:440
332
  msgid "Display only thumbnails, no text"
333
  msgstr "Vis kun miniaturer, ingen tekst"
334
 
335
+ #: admin.inc.php:362 admin.inc.php:444
336
  msgid "Do not display thumbnails, only text."
337
  msgstr "Vis ikke miniaturer, kun tekst."
338
 
339
+ #: admin.inc.php:366 admin.inc.php:448
340
  msgid "Maximum width of the thumbnail: "
341
  msgstr ""
342
 
343
+ #: admin.inc.php:369 admin.inc.php:451
344
  msgid "Maximum height of the thumbnail: "
345
  msgstr ""
346
 
347
+ #: admin.inc.php:372
348
  msgid "Style attributes / Width and Height HTML attributes:"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:376
352
  msgid ""
353
  "Style attributes are used for width and height. <code>style=\"max-width:"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:380
357
  msgid ""
358
  "HTML width and height attributes are used for width and height. <code>width="
359
  "\""
360
  msgstr ""
361
 
362
+ #: admin.inc.php:384
363
  msgid "Use timthumb to generate thumbnails? "
364
  msgstr ""
365
 
366
+ #: admin.inc.php:386
367
  msgid ""
368
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
369
  "\">timthumb</a> will be used to generate thumbnails"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:389
373
  msgid "Quality of thumbnails generated by timthumb"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:392
377
  msgid ""
378
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
379
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:395
383
  #, fuzzy
384
  msgid "Post thumbnail meta field name: "
385
  msgstr "Indstillinger for indlægsminiaturer:"
386
 
387
+ #: admin.inc.php:397
388
  msgid ""
389
  "The value of this field should contain the image source and is set in the "
390
  "<em>Add New Post</em> screen"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:400
394
  msgid ""
395
  "If the postmeta is not set, then should the plugin extract the first image "
396
  "from the post?"
397
  msgstr ""
398
 
399
+ #: admin.inc.php:402
400
  msgid ""
401
  "This can slow down the loading of your page if the first image in the "
402
  "related posts is large in file-size"
403
  msgstr ""
404
 
405
+ #: admin.inc.php:405
406
  msgid "Use default thumbnail? "
407
  msgstr ""
408
 
409
+ #: admin.inc.php:407
410
  msgid ""
411
  "If checked, when no thumbnail is found, show a default one from the URL "
412
  "below. If not checked and no thumbnail is found, no image will be shown."
413
  msgstr ""
414
 
415
+ #: admin.inc.php:410
416
  msgid "Default thumbnail: "
417
  msgstr ""
418
 
419
+ #: admin.inc.php:412
420
  #, fuzzy
421
  msgid ""
422
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
427
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
428
  "findes, vil det vise standardbilledet specificeret nedenfor:"
429
 
430
+ #: admin.inc.php:418
431
  #, fuzzy
432
  msgid "Feed options"
433
  msgstr "Indstillinger:"
434
 
435
+ #: admin.inc.php:420
436
  msgid ""
437
  "Below options override the related posts settings for your blog feed. These "
438
  "only apply if you have selected to add related posts to Feeds in the General "
439
  "Options tab."
440
  msgstr ""
441
 
442
+ #: admin.inc.php:457
443
  msgid "Custom Styles"
444
  msgstr ""
445
 
446
+ #: admin.inc.php:459
447
  msgid "Custom CSS to add to header:"
448
  msgstr ""
449
 
450
+ #: admin.inc.php:462
451
  msgid ""
452
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
453
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
454
  "\">FAQ</a> for available CSS classes to style."
455
  msgstr ""
456
 
457
+ #: admin.inc.php:467
458
  #, fuzzy
459
  msgid "Save Options"
460
  msgstr "Indstillinger:"
461
 
462
+ #: admin.inc.php:468
463
  #, fuzzy
464
  msgid "Default Options"
465
  msgstr "Indstillinger for output:"
466
 
467
+ #: admin.inc.php:468
468
  msgid "Do you want to set options to Default?"
469
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
470
 
471
+ #: admin.inc.php:469
472
  msgid "Recreate Index"
473
  msgstr ""
474
 
475
+ #: admin.inc.php:469
476
  msgid "Are you sure you want to recreate the index?"
477
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
478
 
479
+ #: admin.inc.php:493
480
  #, fuzzy
481
  msgid "Contextual Related Posts"
482
  msgstr "Related Posts (Lignende indlæg)"
483
 
484
+ #: admin.inc.php:493 contextual-related-posts.php:314
485
  msgid "Related Posts"
486
  msgstr "Related Posts (Lignende indlæg)"
487
 
488
+ #: admin.inc.php:506
489
  msgid "plugin settings page"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:511
493
  msgid ""
494
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
495
  "visit the "
496
  msgstr ""
497
 
498
+ #: admin.inc.php:511
499
  msgid " to configure."
500
  msgstr ""
501
 
502
+ #: admin.inc.php:575
503
  msgid ""
504
  "An error occurred clearing the cache. Please contact your site administrator."
505
  "\\n\\nError message:\\n"
506
  msgstr ""
507
 
508
+ #: admin.inc.php:581
509
  msgid " cached row(s) cleared"
510
  msgstr ""
511
 
512
  #: contextual-related-posts.php:123
513
+ msgid " by "
514
  msgstr ""
515
 
516
  #: contextual-related-posts.php:138
586
  msgid "No related posts found"
587
  msgstr "Ingen lignende indlæg fundet"
588
 
589
+ #: contextual-related-posts.php:808
590
  msgid "Settings"
591
  msgstr "Opsætning"
592
 
593
+ #: contextual-related-posts.php:831
594
  msgid "Donate"
595
  msgstr "Donation"
596
 
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-08-19 23:28-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -15,99 +15,120 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr "Optionen gespeichert."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr "Index aufgefrischt"
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr "Unterstützen Sie die Entwicklung"
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr "Den Betrag in USD eingeben: "
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr "Schicken Sie eine Spende an den Autor von"
41
 
42
- #: admin.inc.php:174
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links"
46
 
47
- #: admin.inc.php:176
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
- #: admin.inc.php:177
53
  msgid "Other plugins"
54
  msgstr "Weitere Plugins"
55
 
56
- #: admin.inc.php:178
57
  msgid "Ajay's blog"
58
  msgstr "Ajay's Blog"
59
 
60
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
61
  msgid "Support"
62
  msgstr "Support"
63
 
64
- #: admin.inc.php:180
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:184
69
  msgid "Recent developments"
70
  msgstr "Neueste Entwicklungen"
71
 
72
- #: admin.inc.php:194
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:196
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:198
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:199
87
  msgid "Clear cache"
88
  msgstr ""
89
 
90
- #: admin.inc.php:202 admin.inc.php:402
91
  msgid "Number of related posts to display: "
92
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
93
 
94
- #: admin.inc.php:205
 
 
 
 
 
 
95
  msgid "Related posts should be newer than:"
96
  msgstr ""
97
 
98
- #: admin.inc.php:206
99
  msgid "days"
100
  msgstr ""
101
 
102
- #: admin.inc.php:208
103
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
104
  msgstr ""
105
 
106
- #: admin.inc.php:219
 
 
 
 
 
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
- #: admin.inc.php:221
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -117,55 +138,70 @@ msgstr ""
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:224
 
 
 
 
 
 
 
 
 
 
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
- #: admin.inc.php:227
125
- msgid "Categories to exclude from the results: "
 
126
  msgstr ""
127
 
128
  #: admin.inc.php:243
 
 
 
 
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:246
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
139
 
140
- #: admin.inc.php:248
141
  msgid "Posts"
142
  msgstr ""
143
 
144
- #: admin.inc.php:249
145
  msgid "Pages"
146
  msgstr ""
147
 
148
- #: admin.inc.php:250
149
  msgid "Home page"
150
  msgstr ""
151
 
152
- #: admin.inc.php:251
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
- #: admin.inc.php:252
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
- #: admin.inc.php:253
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
- #: admin.inc.php:254
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
- #: admin.inc.php:255
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -177,177 +213,185 @@ msgstr ""
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:258
181
  msgid "Add a link to the plugin page as a final item in the list"
182
  msgstr ""
183
 
184
- #: admin.inc.php:259
185
  msgid " <em>Optional</em>"
186
  msgstr ""
187
 
188
- #: admin.inc.php:266
 
 
 
 
 
189
  #, fuzzy
190
  msgid "Output options"
191
  msgstr "Ausgabeotionen:"
192
 
193
- #: admin.inc.php:268
194
  msgid "Title of related posts: "
195
  msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
196
 
197
- #: admin.inc.php:271
 
 
 
 
 
 
 
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:275
204
  msgid "Blank Output"
205
  msgstr "Nichts"
206
 
207
- #: admin.inc.php:279
208
  msgid "Display:"
209
  msgstr ""
210
 
211
- #: admin.inc.php:283 admin.inc.php:405
212
  msgid "Show post excerpt in list?"
213
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
214
 
215
- #: admin.inc.php:286
216
  msgid "Length of excerpt (in words): "
217
  msgstr "Länge des Auszugs (in Worten): "
218
 
219
- #: admin.inc.php:289
220
  #, fuzzy
221
  msgid "Show post author in list?"
222
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
223
 
224
- #: admin.inc.php:292
225
  #, fuzzy
226
  msgid "Show post date in list?"
227
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
228
 
229
- #: admin.inc.php:295
230
  msgid "Limit post title length (in characters)"
231
  msgstr ""
232
 
233
- #: admin.inc.php:298
234
  msgid "Open links in new window"
235
  msgstr ""
236
 
237
- #: admin.inc.php:301
238
  msgid "Add nofollow attribute to links in the list"
239
  msgstr ""
240
 
241
- #: admin.inc.php:304
242
  #, fuzzy
243
  msgid "Exclude display of related posts on these posts / pages"
244
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
245
 
246
- #: admin.inc.php:307
247
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
248
- msgstr ""
249
-
250
- #: admin.inc.php:310
251
  msgid "Customize the output:"
252
  msgstr "Die Ausgabe anpassen:"
253
 
254
- #: admin.inc.php:312
255
  msgid "HTML to display before the list of posts: "
256
  msgstr "HTML vor der Beitragsliste: "
257
 
258
- #: admin.inc.php:315
259
  msgid "HTML to display before each list item: "
260
  msgstr "HTML vor jedem Listenelement: "
261
 
262
- #: admin.inc.php:318
263
  msgid "HTML to display after each list item: "
264
  msgstr "HTML nach jedem Listenelement: "
265
 
266
- #: admin.inc.php:321
267
  msgid "HTML to display after the list of posts: "
268
  msgstr "HTML nach der Beitragsliste: "
269
 
270
- #: admin.inc.php:324
271
  msgid "Post thumbnail options:"
272
  msgstr "Optionen für die Beitrags-Thumbnails:"
273
 
274
- #: admin.inc.php:326 admin.inc.php:408
275
  msgid "Location of post thumbnail:"
276
  msgstr ""
277
 
278
- #: admin.inc.php:330 admin.inc.php:412
279
  #, fuzzy
280
  msgid "Display thumbnails inline with posts, before title"
281
  msgstr "Thumbnails und Beitragstitel anzeigen"
282
 
283
- #: admin.inc.php:334 admin.inc.php:416
284
  #, fuzzy
285
  msgid "Display thumbnails inline with posts, after title"
286
  msgstr "Thumbnails und Beitragstitel anzeigen"
287
 
288
- #: admin.inc.php:338 admin.inc.php:420
289
  msgid "Display only thumbnails, no text"
290
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
291
 
292
- #: admin.inc.php:342 admin.inc.php:424
293
  msgid "Do not display thumbnails, only text."
294
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
295
 
296
- #: admin.inc.php:346 admin.inc.php:428
297
  msgid "Maximum width of the thumbnail: "
298
  msgstr ""
299
 
300
- #: admin.inc.php:349 admin.inc.php:431
301
  msgid "Maximum height of the thumbnail: "
302
  msgstr ""
303
 
304
- #: admin.inc.php:352
305
  msgid "Style attributes / Width and Height HTML attributes:"
306
  msgstr ""
307
 
308
- #: admin.inc.php:356
309
  msgid ""
310
  "Style attributes are used for width and height. <code>style=\"max-width:"
311
  msgstr ""
312
 
313
- #: admin.inc.php:360
314
  msgid ""
315
  "HTML width and height attributes are used for width and height. <code>width="
316
  "\""
317
  msgstr ""
318
 
319
- #: admin.inc.php:364
320
  msgid "Use timthumb to generate thumbnails? "
321
  msgstr ""
322
 
323
- #: admin.inc.php:366
324
  msgid ""
325
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
326
  "\">timthumb</a> will be used to generate thumbnails"
327
  msgstr ""
328
 
329
- #: admin.inc.php:369
330
  msgid "Quality of thumbnails generated by timthumb"
331
  msgstr ""
332
 
333
- #: admin.inc.php:372
334
  msgid ""
335
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
336
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
337
  msgstr ""
338
 
339
- #: admin.inc.php:375
340
  #, fuzzy
341
  msgid "Post thumbnail meta field name: "
342
  msgstr "Optionen für die Beitrags-Thumbnails:"
343
 
344
- #: admin.inc.php:377
345
  msgid ""
346
  "The value of this field should contain the image source and is set in the "
347
  "<em>Add New Post</em> screen"
348
  msgstr ""
349
 
350
- #: admin.inc.php:380
351
  #, fuzzy
352
  msgid ""
353
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -357,7 +401,7 @@ msgstr ""
357
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
358
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
359
 
360
- #: admin.inc.php:382
361
  #, fuzzy
362
  msgid ""
363
  "This can slow down the loading of your page if the first image in the "
@@ -367,21 +411,21 @@ msgstr ""
367
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
368
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
369
 
370
- #: admin.inc.php:385
371
  msgid "Use default thumbnail? "
372
  msgstr ""
373
 
374
- #: admin.inc.php:387
375
  msgid ""
376
  "If checked, when no thumbnail is found, show a default one from the URL "
377
  "below. If not checked and no thumbnail is found, no image will be shown."
378
  msgstr ""
379
 
380
- #: admin.inc.php:390
381
  msgid "Default thumbnail: "
382
  msgstr ""
383
 
384
- #: admin.inc.php:392
385
  #, fuzzy
386
  msgid ""
387
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -392,92 +436,91 @@ msgstr ""
392
  "nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
393
  "wird das unten spezifizierte Default-Thumbnail angezeigt:"
394
 
395
- #: admin.inc.php:398
396
  #, fuzzy
397
  msgid "Feed options"
398
  msgstr "Optionen:"
399
 
400
- #: admin.inc.php:400
401
  msgid ""
402
  "Below options override the related posts settings for your blog feed. These "
403
  "only apply if you have selected to add related posts to Feeds in the General "
404
  "Options tab."
405
  msgstr ""
406
 
407
- #: admin.inc.php:437
408
  msgid "Custom Styles"
409
  msgstr ""
410
 
411
- #: admin.inc.php:439
412
  msgid "Custom CSS to add to header:"
413
  msgstr ""
414
 
415
- #: admin.inc.php:442
416
  msgid ""
417
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
418
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
419
  "\">FAQ</a> for available CSS classes to style."
420
  msgstr ""
421
 
422
- #: admin.inc.php:447
423
  #, fuzzy
424
  msgid "Save Options"
425
  msgstr "Optionen:"
426
 
427
- #: admin.inc.php:448
428
  #, fuzzy
429
  msgid "Default Options"
430
  msgstr "Ausgabeotionen:"
431
 
432
- #: admin.inc.php:448
433
  msgid "Do you want to set options to Default?"
434
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
435
 
436
- #: admin.inc.php:449
437
  msgid "Recreate Index"
438
  msgstr ""
439
 
440
- #: admin.inc.php:449
441
  msgid "Are you sure you want to recreate the index?"
442
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
443
 
444
- #: admin.inc.php:473
445
  msgid "Contextual Related Posts"
446
  msgstr "Contextual Related Posts"
447
 
448
- #: admin.inc.php:473 contextual-related-posts.php:314
449
  msgid "Related Posts"
450
  msgstr "Related Posts"
451
 
452
- #: admin.inc.php:486
453
  #, fuzzy
454
  msgid "plugin settings page"
455
  msgstr "Plugin-Seite"
456
 
457
- #: admin.inc.php:491
458
  msgid ""
459
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
460
  "visit the "
461
  msgstr ""
462
 
463
- #: admin.inc.php:491
464
  msgid " to configure."
465
  msgstr ""
466
 
467
- #: admin.inc.php:555
468
  msgid ""
469
  "An error occurred clearing the cache. Please contact your site administrator."
470
  "\\n\\nError message:\\n"
471
  msgstr ""
472
 
473
- #: admin.inc.php:561
474
  msgid " cached row(s) cleared"
475
  msgstr ""
476
 
477
  #: contextual-related-posts.php:123
478
- #, fuzzy
479
- msgid " Posted by "
480
- msgstr "Powered by"
481
 
482
  #: contextual-related-posts.php:138
483
  msgid "Powered by"
@@ -554,14 +597,18 @@ msgstr "<h3>Ähnliche Beiträge:</h3>"
554
  msgid "No related posts found"
555
  msgstr "Keine ähnlichen Beiträge gefunden"
556
 
557
- #: contextual-related-posts.php:807
558
  msgid "Settings"
559
  msgstr "Einstellungen"
560
 
561
- #: contextual-related-posts.php:830
562
  msgid "Donate"
563
  msgstr "Spenden"
564
 
 
 
 
 
565
  #~ msgid "Follow @ajaydsouza on Twitter"
566
  #~ msgstr "@ajaydsouza auf Twitter folgen"
567
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:10-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr "Optionen gespeichert."
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr "Index aufgefrischt"
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr "Unterstützen Sie die Entwicklung"
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr "Den Betrag in USD eingeben: "
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr "Schicken Sie eine Spende an den Autor von"
41
 
42
+ #: admin.inc.php:175
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links"
46
 
47
+ #: admin.inc.php:177
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:178
53
  msgid "Other plugins"
54
  msgstr "Weitere Plugins"
55
 
56
+ #: admin.inc.php:179
57
  msgid "Ajay's blog"
58
  msgstr "Ajay's Blog"
59
 
60
+ #: admin.inc.php:180
61
+ msgid "FAQ"
62
+ msgstr ""
63
+
64
+ #: admin.inc.php:181 contextual-related-posts.php:830
65
  msgid "Support"
66
  msgstr "Support"
67
 
68
+ #: admin.inc.php:182
69
  msgid "Reviews"
70
  msgstr ""
71
 
72
+ #: admin.inc.php:186
73
  msgid "Recent developments"
74
  msgstr "Neueste Entwicklungen"
75
 
76
+ #: admin.inc.php:196
77
  msgid "General options"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:198
81
  msgid "Cache output?"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:200
85
  msgid ""
86
  "Enabling this option will cache the related posts output when the post is "
87
  "visited the first time. The cache is cleaned when you save this page."
88
  msgstr ""
89
 
90
+ #: admin.inc.php:201
91
  msgid "Clear cache"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:204 admin.inc.php:422
95
  msgid "Number of related posts to display: "
96
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
97
 
98
+ #: admin.inc.php:207
99
+ msgid ""
100
+ "Maximum number of posts that will be displayed. The actual number may be "
101
+ "smaller if less related posts are found."
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:210
105
  msgid "Related posts should be newer than:"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:212
109
  msgid "days"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:213
113
+ msgid ""
114
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
115
+ "it to 365 will show related posts from the last year only."
116
+ msgstr ""
117
+
118
+ #: admin.inc.php:216
119
+ msgid "Post types to include in results."
120
  msgstr ""
121
 
122
+ #: admin.inc.php:225
123
+ msgid ""
124
+ "These post types will be displayed in the list. Includes custom post types."
125
+ msgstr ""
126
+
127
+ #: admin.inc.php:228
128
  msgid "Find related posts based on content as well as title"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:230
132
  #, fuzzy
133
  msgid ""
134
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
138
  "Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
139
  "Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
140
 
141
+ #: admin.inc.php:233
142
+ msgid "Limit content to be compared"
143
+ msgstr ""
144
+
145
+ #: admin.inc.php:235
146
+ msgid ""
147
+ "This sets the maximum words of the content that will be matched. 0 means no "
148
+ "limit."
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:238
152
  msgid "List of post or page IDs to exclude from the results: "
153
  msgstr ""
154
 
155
+ #: admin.inc.php:240 admin.inc.php:327
156
+ msgid ""
157
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
158
  msgstr ""
159
 
160
  #: admin.inc.php:243
161
+ msgid "Categories to exclude from the results: "
162
+ msgstr ""
163
+
164
+ #: admin.inc.php:259
165
  msgid ""
166
  "Comma separated list of category slugs. The field above has an autocomplete "
167
  "so simply start typing in the starting letters and it will prompt you with "
168
  "options"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:262
172
  #, fuzzy
173
  msgid "Add related posts to:"
174
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
175
 
176
+ #: admin.inc.php:264
177
  msgid "Posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:265
181
  msgid "Pages"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:266
185
  msgid "Home page"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:267
189
  msgid "Feeds"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:268
193
  msgid "Category archives"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:269
197
  msgid "Tag archives"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:270
201
  msgid "Other archives"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:271
205
  #, fuzzy
206
  msgid ""
207
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
213
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem "
214
  "die ähnlichen Beiträge aufgeliistet werden sollen"
215
 
216
+ #: admin.inc.php:274
217
  msgid "Add a link to the plugin page as a final item in the list"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:276
221
  msgid " <em>Optional</em>"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:277
225
+ #, fuzzy
226
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
227
+ msgstr "Contextual Related Posts "
228
+
229
+ #: admin.inc.php:283
230
  #, fuzzy
231
  msgid "Output options"
232
  msgstr "Ausgabeotionen:"
233
 
234
+ #: admin.inc.php:285
235
  msgid "Title of related posts: "
236
  msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
237
 
238
+ #: admin.inc.php:288
239
+ msgid ""
240
+ "This is the main heading of the related posts. You can also display the "
241
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
242
+ "Posts to %postname%</code>"
243
+ msgstr ""
244
+
245
+ #: admin.inc.php:291
246
  msgid "When there are no posts, what should be shown?"
247
  msgstr ""
248
  "Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
249
  "werden?"
250
 
251
+ #: admin.inc.php:295
252
  msgid "Blank Output"
253
  msgstr "Nichts"
254
 
255
+ #: admin.inc.php:299
256
  msgid "Display:"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:303 admin.inc.php:425
260
  msgid "Show post excerpt in list?"
261
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
262
 
263
+ #: admin.inc.php:306
264
  msgid "Length of excerpt (in words): "
265
  msgstr "Länge des Auszugs (in Worten): "
266
 
267
+ #: admin.inc.php:309
268
  #, fuzzy
269
  msgid "Show post author in list?"
270
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
271
 
272
+ #: admin.inc.php:312
273
  #, fuzzy
274
  msgid "Show post date in list?"
275
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
276
 
277
+ #: admin.inc.php:315
278
  msgid "Limit post title length (in characters)"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:318
282
  msgid "Open links in new window"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:321
286
  msgid "Add nofollow attribute to links in the list"
287
  msgstr ""
288
 
289
+ #: admin.inc.php:324
290
  #, fuzzy
291
  msgid "Exclude display of related posts on these posts / pages"
292
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
293
 
294
+ #: admin.inc.php:330
 
 
 
 
295
  msgid "Customize the output:"
296
  msgstr "Die Ausgabe anpassen:"
297
 
298
+ #: admin.inc.php:332
299
  msgid "HTML to display before the list of posts: "
300
  msgstr "HTML vor der Beitragsliste: "
301
 
302
+ #: admin.inc.php:335
303
  msgid "HTML to display before each list item: "
304
  msgstr "HTML vor jedem Listenelement: "
305
 
306
+ #: admin.inc.php:338
307
  msgid "HTML to display after each list item: "
308
  msgstr "HTML nach jedem Listenelement: "
309
 
310
+ #: admin.inc.php:341
311
  msgid "HTML to display after the list of posts: "
312
  msgstr "HTML nach der Beitragsliste: "
313
 
314
+ #: admin.inc.php:344
315
  msgid "Post thumbnail options:"
316
  msgstr "Optionen für die Beitrags-Thumbnails:"
317
 
318
+ #: admin.inc.php:346 admin.inc.php:428
319
  msgid "Location of post thumbnail:"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:350 admin.inc.php:432
323
  #, fuzzy
324
  msgid "Display thumbnails inline with posts, before title"
325
  msgstr "Thumbnails und Beitragstitel anzeigen"
326
 
327
+ #: admin.inc.php:354 admin.inc.php:436
328
  #, fuzzy
329
  msgid "Display thumbnails inline with posts, after title"
330
  msgstr "Thumbnails und Beitragstitel anzeigen"
331
 
332
+ #: admin.inc.php:358 admin.inc.php:440
333
  msgid "Display only thumbnails, no text"
334
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
335
 
336
+ #: admin.inc.php:362 admin.inc.php:444
337
  msgid "Do not display thumbnails, only text."
338
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
339
 
340
+ #: admin.inc.php:366 admin.inc.php:448
341
  msgid "Maximum width of the thumbnail: "
342
  msgstr ""
343
 
344
+ #: admin.inc.php:369 admin.inc.php:451
345
  msgid "Maximum height of the thumbnail: "
346
  msgstr ""
347
 
348
+ #: admin.inc.php:372
349
  msgid "Style attributes / Width and Height HTML attributes:"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:376
353
  msgid ""
354
  "Style attributes are used for width and height. <code>style=\"max-width:"
355
  msgstr ""
356
 
357
+ #: admin.inc.php:380
358
  msgid ""
359
  "HTML width and height attributes are used for width and height. <code>width="
360
  "\""
361
  msgstr ""
362
 
363
+ #: admin.inc.php:384
364
  msgid "Use timthumb to generate thumbnails? "
365
  msgstr ""
366
 
367
+ #: admin.inc.php:386
368
  msgid ""
369
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
370
  "\">timthumb</a> will be used to generate thumbnails"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:389
374
  msgid "Quality of thumbnails generated by timthumb"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:392
378
  msgid ""
379
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
380
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
381
  msgstr ""
382
 
383
+ #: admin.inc.php:395
384
  #, fuzzy
385
  msgid "Post thumbnail meta field name: "
386
  msgstr "Optionen für die Beitrags-Thumbnails:"
387
 
388
+ #: admin.inc.php:397
389
  msgid ""
390
  "The value of this field should contain the image source and is set in the "
391
  "<em>Add New Post</em> screen"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:400
395
  #, fuzzy
396
  msgid ""
397
  "If the postmeta is not set, then should the plugin extract the first image "
401
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
402
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
403
 
404
+ #: admin.inc.php:402
405
  #, fuzzy
406
  msgid ""
407
  "This can slow down the loading of your page if the first image in the "
411
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
412
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
413
 
414
+ #: admin.inc.php:405
415
  msgid "Use default thumbnail? "
416
  msgstr ""
417
 
418
+ #: admin.inc.php:407
419
  msgid ""
420
  "If checked, when no thumbnail is found, show a default one from the URL "
421
  "below. If not checked and no thumbnail is found, no image will be shown."
422
  msgstr ""
423
 
424
+ #: admin.inc.php:410
425
  msgid "Default thumbnail: "
426
  msgstr ""
427
 
428
+ #: admin.inc.php:412
429
  #, fuzzy
430
  msgid ""
431
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
436
  "nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
437
  "wird das unten spezifizierte Default-Thumbnail angezeigt:"
438
 
439
+ #: admin.inc.php:418
440
  #, fuzzy
441
  msgid "Feed options"
442
  msgstr "Optionen:"
443
 
444
+ #: admin.inc.php:420
445
  msgid ""
446
  "Below options override the related posts settings for your blog feed. These "
447
  "only apply if you have selected to add related posts to Feeds in the General "
448
  "Options tab."
449
  msgstr ""
450
 
451
+ #: admin.inc.php:457
452
  msgid "Custom Styles"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:459
456
  msgid "Custom CSS to add to header:"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:462
460
  msgid ""
461
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
462
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
463
  "\">FAQ</a> for available CSS classes to style."
464
  msgstr ""
465
 
466
+ #: admin.inc.php:467
467
  #, fuzzy
468
  msgid "Save Options"
469
  msgstr "Optionen:"
470
 
471
+ #: admin.inc.php:468
472
  #, fuzzy
473
  msgid "Default Options"
474
  msgstr "Ausgabeotionen:"
475
 
476
+ #: admin.inc.php:468
477
  msgid "Do you want to set options to Default?"
478
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
479
 
480
+ #: admin.inc.php:469
481
  msgid "Recreate Index"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:469
485
  msgid "Are you sure you want to recreate the index?"
486
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
487
 
488
+ #: admin.inc.php:493
489
  msgid "Contextual Related Posts"
490
  msgstr "Contextual Related Posts"
491
 
492
+ #: admin.inc.php:493 contextual-related-posts.php:314
493
  msgid "Related Posts"
494
  msgstr "Related Posts"
495
 
496
+ #: admin.inc.php:506
497
  #, fuzzy
498
  msgid "plugin settings page"
499
  msgstr "Plugin-Seite"
500
 
501
+ #: admin.inc.php:511
502
  msgid ""
503
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
504
  "visit the "
505
  msgstr ""
506
 
507
+ #: admin.inc.php:511
508
  msgid " to configure."
509
  msgstr ""
510
 
511
+ #: admin.inc.php:575
512
  msgid ""
513
  "An error occurred clearing the cache. Please contact your site administrator."
514
  "\\n\\nError message:\\n"
515
  msgstr ""
516
 
517
+ #: admin.inc.php:581
518
  msgid " cached row(s) cleared"
519
  msgstr ""
520
 
521
  #: contextual-related-posts.php:123
522
+ msgid " by "
523
+ msgstr ""
 
524
 
525
  #: contextual-related-posts.php:138
526
  msgid "Powered by"
597
  msgid "No related posts found"
598
  msgstr "Keine ähnlichen Beiträge gefunden"
599
 
600
+ #: contextual-related-posts.php:808
601
  msgid "Settings"
602
  msgstr "Einstellungen"
603
 
604
+ #: contextual-related-posts.php:831
605
  msgid "Donate"
606
  msgstr "Spenden"
607
 
608
+ #, fuzzy
609
+ #~ msgid " Posted by "
610
+ #~ msgstr "Powered by"
611
+
612
  #~ msgid "Follow @ajaydsouza on Twitter"
613
  #~ msgstr "@ajaydsouza auf Twitter folgen"
614
 
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-08-19 23:27-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -15,430 +15,473 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
- #: admin.inc.php:174
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
- #: admin.inc.php:176
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
- #: admin.inc.php:178
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
59
  msgid "Support"
60
  msgstr ""
61
 
62
- #: admin.inc.php:180
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
- #: admin.inc.php:184
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
- #: admin.inc.php:194
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:196
75
  msgid "Cache output?"
76
  msgstr ""
77
 
78
- #: admin.inc.php:198
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:199
85
  msgid "Clear cache"
86
  msgstr ""
87
 
88
- #: admin.inc.php:202 admin.inc.php:402
89
  msgid "Number of related posts to display: "
90
  msgstr ""
91
 
92
- #: admin.inc.php:205
 
 
 
 
 
 
93
  msgid "Related posts should be newer than:"
94
  msgstr ""
95
 
96
- #: admin.inc.php:206
97
  msgid "days"
98
  msgstr ""
99
 
100
- #: admin.inc.php:208
101
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
102
  msgstr ""
103
 
104
- #: admin.inc.php:219
 
 
 
 
 
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
- #: admin.inc.php:221
109
  msgid ""
110
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
111
  "or enabling \"Cache output\" above if you enable this."
112
  msgstr ""
113
 
114
- #: admin.inc.php:224
 
 
 
 
 
 
 
 
 
 
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:227
119
- msgid "Categories to exclude from the results: "
 
120
  msgstr ""
121
 
122
  #: admin.inc.php:243
 
 
 
 
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:246
130
  msgid "Add related posts to:"
131
  msgstr ""
132
 
133
- #: admin.inc.php:248
134
  msgid "Posts"
135
  msgstr ""
136
 
137
- #: admin.inc.php:249
138
  msgid "Pages"
139
  msgstr ""
140
 
141
- #: admin.inc.php:250
142
  msgid "Home page"
143
  msgstr ""
144
 
145
- #: admin.inc.php:251
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
- #: admin.inc.php:252
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
- #: admin.inc.php:253
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
- #: admin.inc.php:254
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:255
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:258
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
- #: admin.inc.php:259
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
- #: admin.inc.php:266
 
 
 
 
177
  msgid "Output options"
178
  msgstr ""
179
 
180
- #: admin.inc.php:268
181
  msgid "Title of related posts: "
182
  msgstr ""
183
 
184
- #: admin.inc.php:271
 
 
 
 
 
 
 
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
- #: admin.inc.php:275
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
- #: admin.inc.php:279
193
  msgid "Display:"
194
  msgstr ""
195
 
196
- #: admin.inc.php:283 admin.inc.php:405
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
- #: admin.inc.php:286
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
- #: admin.inc.php:289
205
  msgid "Show post author in list?"
206
  msgstr ""
207
 
208
- #: admin.inc.php:292
209
  msgid "Show post date in list?"
210
  msgstr ""
211
 
212
- #: admin.inc.php:295
213
  msgid "Limit post title length (in characters)"
214
  msgstr ""
215
 
216
- #: admin.inc.php:298
217
  msgid "Open links in new window"
218
  msgstr ""
219
 
220
- #: admin.inc.php:301
221
  msgid "Add nofollow attribute to links in the list"
222
  msgstr ""
223
 
224
- #: admin.inc.php:304
225
  msgid "Exclude display of related posts on these posts / pages"
226
  msgstr ""
227
 
228
- #: admin.inc.php:307
229
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
230
- msgstr ""
231
-
232
- #: admin.inc.php:310
233
  msgid "Customize the output:"
234
  msgstr ""
235
 
236
- #: admin.inc.php:312
237
  msgid "HTML to display before the list of posts: "
238
  msgstr ""
239
 
240
- #: admin.inc.php:315
241
  msgid "HTML to display before each list item: "
242
  msgstr ""
243
 
244
- #: admin.inc.php:318
245
  msgid "HTML to display after each list item: "
246
  msgstr ""
247
 
248
- #: admin.inc.php:321
249
  msgid "HTML to display after the list of posts: "
250
  msgstr ""
251
 
252
- #: admin.inc.php:324
253
  msgid "Post thumbnail options:"
254
  msgstr ""
255
 
256
- #: admin.inc.php:326 admin.inc.php:408
257
  msgid "Location of post thumbnail:"
258
  msgstr ""
259
 
260
- #: admin.inc.php:330 admin.inc.php:412
261
  msgid "Display thumbnails inline with posts, before title"
262
  msgstr ""
263
 
264
- #: admin.inc.php:334 admin.inc.php:416
265
  msgid "Display thumbnails inline with posts, after title"
266
  msgstr ""
267
 
268
- #: admin.inc.php:338 admin.inc.php:420
269
  msgid "Display only thumbnails, no text"
270
  msgstr ""
271
 
272
- #: admin.inc.php:342 admin.inc.php:424
273
  msgid "Do not display thumbnails, only text."
274
  msgstr ""
275
 
276
- #: admin.inc.php:346 admin.inc.php:428
277
  msgid "Maximum width of the thumbnail: "
278
  msgstr ""
279
 
280
- #: admin.inc.php:349 admin.inc.php:431
281
  msgid "Maximum height of the thumbnail: "
282
  msgstr ""
283
 
284
- #: admin.inc.php:352
285
  msgid "Style attributes / Width and Height HTML attributes:"
286
  msgstr ""
287
 
288
- #: admin.inc.php:356
289
  msgid ""
290
  "Style attributes are used for width and height. <code>style=\"max-width:"
291
  msgstr ""
292
 
293
- #: admin.inc.php:360
294
  msgid ""
295
  "HTML width and height attributes are used for width and height. <code>width="
296
  "\""
297
  msgstr ""
298
 
299
- #: admin.inc.php:364
300
  msgid "Use timthumb to generate thumbnails? "
301
  msgstr ""
302
 
303
- #: admin.inc.php:366
304
  msgid ""
305
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
306
  "\">timthumb</a> will be used to generate thumbnails"
307
  msgstr ""
308
 
309
- #: admin.inc.php:369
310
  msgid "Quality of thumbnails generated by timthumb"
311
  msgstr ""
312
 
313
- #: admin.inc.php:372
314
  msgid ""
315
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
316
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
317
  msgstr ""
318
 
319
- #: admin.inc.php:375
320
  msgid "Post thumbnail meta field name: "
321
  msgstr ""
322
 
323
- #: admin.inc.php:377
324
  msgid ""
325
  "The value of this field should contain the image source and is set in the "
326
  "<em>Add New Post</em> screen"
327
  msgstr ""
328
 
329
- #: admin.inc.php:380
330
  msgid ""
331
  "If the postmeta is not set, then should the plugin extract the first image "
332
  "from the post?"
333
  msgstr ""
334
 
335
- #: admin.inc.php:382
336
  msgid ""
337
  "This can slow down the loading of your page if the first image in the "
338
  "related posts is large in file-size"
339
  msgstr ""
340
 
341
- #: admin.inc.php:385
342
  msgid "Use default thumbnail? "
343
  msgstr ""
344
 
345
- #: admin.inc.php:387
346
  msgid ""
347
  "If checked, when no thumbnail is found, show a default one from the URL "
348
  "below. If not checked and no thumbnail is found, no image will be shown."
349
  msgstr ""
350
 
351
- #: admin.inc.php:390
352
  msgid "Default thumbnail: "
353
  msgstr ""
354
 
355
- #: admin.inc.php:392
356
  msgid ""
357
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
358
  "then it will check the meta field. If this is not available, then it will "
359
  "show the default image as specified above"
360
  msgstr ""
361
 
362
- #: admin.inc.php:398
363
  msgid "Feed options"
364
  msgstr ""
365
 
366
- #: admin.inc.php:400
367
  msgid ""
368
  "Below options override the related posts settings for your blog feed. These "
369
  "only apply if you have selected to add related posts to Feeds in the General "
370
  "Options tab."
371
  msgstr ""
372
 
373
- #: admin.inc.php:437
374
  msgid "Custom Styles"
375
  msgstr ""
376
 
377
- #: admin.inc.php:439
378
  msgid "Custom CSS to add to header:"
379
  msgstr ""
380
 
381
- #: admin.inc.php:442
382
  msgid ""
383
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
384
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
385
  "\">FAQ</a> for available CSS classes to style."
386
  msgstr ""
387
 
388
- #: admin.inc.php:447
389
  msgid "Save Options"
390
  msgstr ""
391
 
392
- #: admin.inc.php:448
393
  msgid "Default Options"
394
  msgstr ""
395
 
396
- #: admin.inc.php:448
397
  msgid "Do you want to set options to Default?"
398
  msgstr ""
399
 
400
- #: admin.inc.php:449
401
  msgid "Recreate Index"
402
  msgstr ""
403
 
404
- #: admin.inc.php:449
405
  msgid "Are you sure you want to recreate the index?"
406
  msgstr ""
407
 
408
- #: admin.inc.php:473
409
  msgid "Contextual Related Posts"
410
  msgstr ""
411
 
412
- #: admin.inc.php:473 contextual-related-posts.php:314
413
  msgid "Related Posts"
414
  msgstr ""
415
 
416
- #: admin.inc.php:486
417
  msgid "plugin settings page"
418
  msgstr ""
419
 
420
- #: admin.inc.php:491
421
  msgid ""
422
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
423
  "visit the "
424
  msgstr ""
425
 
426
- #: admin.inc.php:491
427
  msgid " to configure."
428
  msgstr ""
429
 
430
- #: admin.inc.php:555
431
  msgid ""
432
  "An error occurred clearing the cache. Please contact your site administrator."
433
  "\\n\\nError message:\\n"
434
  msgstr ""
435
 
436
- #: admin.inc.php:561
437
  msgid " cached row(s) cleared"
438
  msgstr ""
439
 
440
  #: contextual-related-posts.php:123
441
- msgid " Posted by "
442
  msgstr ""
443
 
444
  #: contextual-related-posts.php:138
@@ -505,10 +548,10 @@ msgstr ""
505
  msgid "No related posts found"
506
  msgstr ""
507
 
508
- #: contextual-related-posts.php:807
509
  msgid "Settings"
510
  msgstr ""
511
 
512
- #: contextual-related-posts.php:830
513
  msgid "Donate"
514
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:10-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:175
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:177
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:178
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:179
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:180
59
+ msgid "FAQ"
60
+ msgstr ""
61
+
62
+ #: admin.inc.php:181 contextual-related-posts.php:830
63
  msgid "Support"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:182
67
  msgid "Reviews"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:186
71
  msgid "Recent developments"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "General options"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:198
79
  msgid "Cache output?"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:200
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:201
89
  msgid "Clear cache"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:204 admin.inc.php:422
93
  msgid "Number of related posts to display: "
94
  msgstr ""
95
 
96
+ #: admin.inc.php:207
97
+ msgid ""
98
+ "Maximum number of posts that will be displayed. The actual number may be "
99
+ "smaller if less related posts are found."
100
+ msgstr ""
101
+
102
+ #: admin.inc.php:210
103
  msgid "Related posts should be newer than:"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:212
107
  msgid "days"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:213
111
+ msgid ""
112
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
113
+ "it to 365 will show related posts from the last year only."
114
+ msgstr ""
115
+
116
+ #: admin.inc.php:216
117
+ msgid "Post types to include in results."
118
  msgstr ""
119
 
120
+ #: admin.inc.php:225
121
+ msgid ""
122
+ "These post types will be displayed in the list. Includes custom post types."
123
+ msgstr ""
124
+
125
+ #: admin.inc.php:228
126
  msgid "Find related posts based on content as well as title"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:230
130
  msgid ""
131
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
132
  "or enabling \"Cache output\" above if you enable this."
133
  msgstr ""
134
 
135
+ #: admin.inc.php:233
136
+ msgid "Limit content to be compared"
137
+ msgstr ""
138
+
139
+ #: admin.inc.php:235
140
+ msgid ""
141
+ "This sets the maximum words of the content that will be matched. 0 means no "
142
+ "limit."
143
+ msgstr ""
144
+
145
+ #: admin.inc.php:238
146
  msgid "List of post or page IDs to exclude from the results: "
147
  msgstr ""
148
 
149
+ #: admin.inc.php:240 admin.inc.php:327
150
+ msgid ""
151
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
152
  msgstr ""
153
 
154
  #: admin.inc.php:243
155
+ msgid "Categories to exclude from the results: "
156
+ msgstr ""
157
+
158
+ #: admin.inc.php:259
159
  msgid ""
160
  "Comma separated list of category slugs. The field above has an autocomplete "
161
  "so simply start typing in the starting letters and it will prompt you with "
162
  "options"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:262
166
  msgid "Add related posts to:"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:264
170
  msgid "Posts"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:265
174
  msgid "Pages"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:266
178
  msgid "Home page"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:267
182
  msgid "Feeds"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:268
186
  msgid "Category archives"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:269
190
  msgid "Tag archives"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:270
194
  msgid "Other archives"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:271
198
  msgid ""
199
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
200
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
201
  "you want it displayed"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:274
205
  msgid "Add a link to the plugin page as a final item in the list"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:276
209
  msgid " <em>Optional</em>"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:277
213
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
214
+ msgstr ""
215
+
216
+ #: admin.inc.php:283
217
  msgid "Output options"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:285
221
  msgid "Title of related posts: "
222
  msgstr ""
223
 
224
+ #: admin.inc.php:288
225
+ msgid ""
226
+ "This is the main heading of the related posts. You can also display the "
227
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
228
+ "Posts to %postname%</code>"
229
+ msgstr ""
230
+
231
+ #: admin.inc.php:291
232
  msgid "When there are no posts, what should be shown?"
233
  msgstr ""
234
 
235
+ #: admin.inc.php:295
236
  msgid "Blank Output"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:299
240
  msgid "Display:"
241
  msgstr ""
242
 
243
+ #: admin.inc.php:303 admin.inc.php:425
244
  msgid "Show post excerpt in list?"
245
  msgstr ""
246
 
247
+ #: admin.inc.php:306
248
  msgid "Length of excerpt (in words): "
249
  msgstr ""
250
 
251
+ #: admin.inc.php:309
252
  msgid "Show post author in list?"
253
  msgstr ""
254
 
255
+ #: admin.inc.php:312
256
  msgid "Show post date in list?"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:315
260
  msgid "Limit post title length (in characters)"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:318
264
  msgid "Open links in new window"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:321
268
  msgid "Add nofollow attribute to links in the list"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:324
272
  msgid "Exclude display of related posts on these posts / pages"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:330
 
 
 
 
276
  msgid "Customize the output:"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:332
280
  msgid "HTML to display before the list of posts: "
281
  msgstr ""
282
 
283
+ #: admin.inc.php:335
284
  msgid "HTML to display before each list item: "
285
  msgstr ""
286
 
287
+ #: admin.inc.php:338
288
  msgid "HTML to display after each list item: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:341
292
  msgid "HTML to display after the list of posts: "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:344
296
  msgid "Post thumbnail options:"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:346 admin.inc.php:428
300
  msgid "Location of post thumbnail:"
301
  msgstr ""
302
 
303
+ #: admin.inc.php:350 admin.inc.php:432
304
  msgid "Display thumbnails inline with posts, before title"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:354 admin.inc.php:436
308
  msgid "Display thumbnails inline with posts, after title"
309
  msgstr ""
310
 
311
+ #: admin.inc.php:358 admin.inc.php:440
312
  msgid "Display only thumbnails, no text"
313
  msgstr ""
314
 
315
+ #: admin.inc.php:362 admin.inc.php:444
316
  msgid "Do not display thumbnails, only text."
317
  msgstr ""
318
 
319
+ #: admin.inc.php:366 admin.inc.php:448
320
  msgid "Maximum width of the thumbnail: "
321
  msgstr ""
322
 
323
+ #: admin.inc.php:369 admin.inc.php:451
324
  msgid "Maximum height of the thumbnail: "
325
  msgstr ""
326
 
327
+ #: admin.inc.php:372
328
  msgid "Style attributes / Width and Height HTML attributes:"
329
  msgstr ""
330
 
331
+ #: admin.inc.php:376
332
  msgid ""
333
  "Style attributes are used for width and height. <code>style=\"max-width:"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:380
337
  msgid ""
338
  "HTML width and height attributes are used for width and height. <code>width="
339
  "\""
340
  msgstr ""
341
 
342
+ #: admin.inc.php:384
343
  msgid "Use timthumb to generate thumbnails? "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:386
347
  msgid ""
348
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
349
  "\">timthumb</a> will be used to generate thumbnails"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:389
353
  msgid "Quality of thumbnails generated by timthumb"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:392
357
  msgid ""
358
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
359
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
360
  msgstr ""
361
 
362
+ #: admin.inc.php:395
363
  msgid "Post thumbnail meta field name: "
364
  msgstr ""
365
 
366
+ #: admin.inc.php:397
367
  msgid ""
368
  "The value of this field should contain the image source and is set in the "
369
  "<em>Add New Post</em> screen"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:400
373
  msgid ""
374
  "If the postmeta is not set, then should the plugin extract the first image "
375
  "from the post?"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:402
379
  msgid ""
380
  "This can slow down the loading of your page if the first image in the "
381
  "related posts is large in file-size"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:405
385
  msgid "Use default thumbnail? "
386
  msgstr ""
387
 
388
+ #: admin.inc.php:407
389
  msgid ""
390
  "If checked, when no thumbnail is found, show a default one from the URL "
391
  "below. If not checked and no thumbnail is found, no image will be shown."
392
  msgstr ""
393
 
394
+ #: admin.inc.php:410
395
  msgid "Default thumbnail: "
396
  msgstr ""
397
 
398
+ #: admin.inc.php:412
399
  msgid ""
400
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
401
  "then it will check the meta field. If this is not available, then it will "
402
  "show the default image as specified above"
403
  msgstr ""
404
 
405
+ #: admin.inc.php:418
406
  msgid "Feed options"
407
  msgstr ""
408
 
409
+ #: admin.inc.php:420
410
  msgid ""
411
  "Below options override the related posts settings for your blog feed. These "
412
  "only apply if you have selected to add related posts to Feeds in the General "
413
  "Options tab."
414
  msgstr ""
415
 
416
+ #: admin.inc.php:457
417
  msgid "Custom Styles"
418
  msgstr ""
419
 
420
+ #: admin.inc.php:459
421
  msgid "Custom CSS to add to header:"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:462
425
  msgid ""
426
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
427
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
428
  "\">FAQ</a> for available CSS classes to style."
429
  msgstr ""
430
 
431
+ #: admin.inc.php:467
432
  msgid "Save Options"
433
  msgstr ""
434
 
435
+ #: admin.inc.php:468
436
  msgid "Default Options"
437
  msgstr ""
438
 
439
+ #: admin.inc.php:468
440
  msgid "Do you want to set options to Default?"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:469
444
  msgid "Recreate Index"
445
  msgstr ""
446
 
447
+ #: admin.inc.php:469
448
  msgid "Are you sure you want to recreate the index?"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:493
452
  msgid "Contextual Related Posts"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:493 contextual-related-posts.php:314
456
  msgid "Related Posts"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:506
460
  msgid "plugin settings page"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:511
464
  msgid ""
465
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
466
  "visit the "
467
  msgstr ""
468
 
469
+ #: admin.inc.php:511
470
  msgid " to configure."
471
  msgstr ""
472
 
473
+ #: admin.inc.php:575
474
  msgid ""
475
  "An error occurred clearing the cache. Please contact your site administrator."
476
  "\\n\\nError message:\\n"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:581
480
  msgid " cached row(s) cleared"
481
  msgstr ""
482
 
483
  #: contextual-related-posts.php:123
484
+ msgid " by "
485
  msgstr ""
486
 
487
  #: contextual-related-posts.php:138
548
  msgid "No related posts found"
549
  msgstr ""
550
 
551
+ #: contextual-related-posts.php:808
552
  msgid "Settings"
553
  msgstr ""
554
 
555
+ #: contextual-related-posts.php:831
556
  msgid "Donate"
557
  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-08-19 23:27-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -15,430 +15,473 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
- #: admin.inc.php:174
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
- #: admin.inc.php:176
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
- #: admin.inc.php:177
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
- #: admin.inc.php:178
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
59
  msgid "Support"
60
  msgstr ""
61
 
62
- #: admin.inc.php:180
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
- #: admin.inc.php:184
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
- #: admin.inc.php:194
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:196
75
  msgid "Cache output?"
76
  msgstr ""
77
 
78
- #: admin.inc.php:198
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:199
85
  msgid "Clear cache"
86
  msgstr ""
87
 
88
- #: admin.inc.php:202 admin.inc.php:402
89
  msgid "Number of related posts to display: "
90
  msgstr ""
91
 
92
- #: admin.inc.php:205
 
 
 
 
 
 
93
  msgid "Related posts should be newer than:"
94
  msgstr ""
95
 
96
- #: admin.inc.php:206
97
  msgid "days"
98
  msgstr ""
99
 
100
- #: admin.inc.php:208
101
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
102
  msgstr ""
103
 
104
- #: admin.inc.php:219
 
 
 
 
 
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
- #: admin.inc.php:221
109
  msgid ""
110
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
111
  "or enabling \"Cache output\" above if you enable this."
112
  msgstr ""
113
 
114
- #: admin.inc.php:224
 
 
 
 
 
 
 
 
 
 
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:227
119
- msgid "Categories to exclude from the results: "
 
120
  msgstr ""
121
 
122
  #: admin.inc.php:243
 
 
 
 
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:246
130
  msgid "Add related posts to:"
131
  msgstr ""
132
 
133
- #: admin.inc.php:248
134
  msgid "Posts"
135
  msgstr ""
136
 
137
- #: admin.inc.php:249
138
  msgid "Pages"
139
  msgstr ""
140
 
141
- #: admin.inc.php:250
142
  msgid "Home page"
143
  msgstr ""
144
 
145
- #: admin.inc.php:251
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
- #: admin.inc.php:252
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
- #: admin.inc.php:253
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
- #: admin.inc.php:254
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:255
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:258
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
- #: admin.inc.php:259
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
- #: admin.inc.php:266
 
 
 
 
177
  msgid "Output options"
178
  msgstr ""
179
 
180
- #: admin.inc.php:268
181
  msgid "Title of related posts: "
182
  msgstr ""
183
 
184
- #: admin.inc.php:271
 
 
 
 
 
 
 
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
- #: admin.inc.php:275
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
- #: admin.inc.php:279
193
  msgid "Display:"
194
  msgstr ""
195
 
196
- #: admin.inc.php:283 admin.inc.php:405
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
- #: admin.inc.php:286
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
- #: admin.inc.php:289
205
  msgid "Show post author in list?"
206
  msgstr ""
207
 
208
- #: admin.inc.php:292
209
  msgid "Show post date in list?"
210
  msgstr ""
211
 
212
- #: admin.inc.php:295
213
  msgid "Limit post title length (in characters)"
214
  msgstr ""
215
 
216
- #: admin.inc.php:298
217
  msgid "Open links in new window"
218
  msgstr ""
219
 
220
- #: admin.inc.php:301
221
  msgid "Add nofollow attribute to links in the list"
222
  msgstr ""
223
 
224
- #: admin.inc.php:304
225
  msgid "Exclude display of related posts on these posts / pages"
226
  msgstr ""
227
 
228
- #: admin.inc.php:307
229
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
230
- msgstr ""
231
-
232
- #: admin.inc.php:310
233
  msgid "Customize the output:"
234
  msgstr ""
235
 
236
- #: admin.inc.php:312
237
  msgid "HTML to display before the list of posts: "
238
  msgstr ""
239
 
240
- #: admin.inc.php:315
241
  msgid "HTML to display before each list item: "
242
  msgstr ""
243
 
244
- #: admin.inc.php:318
245
  msgid "HTML to display after each list item: "
246
  msgstr ""
247
 
248
- #: admin.inc.php:321
249
  msgid "HTML to display after the list of posts: "
250
  msgstr ""
251
 
252
- #: admin.inc.php:324
253
  msgid "Post thumbnail options:"
254
  msgstr ""
255
 
256
- #: admin.inc.php:326 admin.inc.php:408
257
  msgid "Location of post thumbnail:"
258
  msgstr ""
259
 
260
- #: admin.inc.php:330 admin.inc.php:412
261
  msgid "Display thumbnails inline with posts, before title"
262
  msgstr ""
263
 
264
- #: admin.inc.php:334 admin.inc.php:416
265
  msgid "Display thumbnails inline with posts, after title"
266
  msgstr ""
267
 
268
- #: admin.inc.php:338 admin.inc.php:420
269
  msgid "Display only thumbnails, no text"
270
  msgstr ""
271
 
272
- #: admin.inc.php:342 admin.inc.php:424
273
  msgid "Do not display thumbnails, only text."
274
  msgstr ""
275
 
276
- #: admin.inc.php:346 admin.inc.php:428
277
  msgid "Maximum width of the thumbnail: "
278
  msgstr ""
279
 
280
- #: admin.inc.php:349 admin.inc.php:431
281
  msgid "Maximum height of the thumbnail: "
282
  msgstr ""
283
 
284
- #: admin.inc.php:352
285
  msgid "Style attributes / Width and Height HTML attributes:"
286
  msgstr ""
287
 
288
- #: admin.inc.php:356
289
  msgid ""
290
  "Style attributes are used for width and height. <code>style=\"max-width:"
291
  msgstr ""
292
 
293
- #: admin.inc.php:360
294
  msgid ""
295
  "HTML width and height attributes are used for width and height. <code>width="
296
  "\""
297
  msgstr ""
298
 
299
- #: admin.inc.php:364
300
  msgid "Use timthumb to generate thumbnails? "
301
  msgstr ""
302
 
303
- #: admin.inc.php:366
304
  msgid ""
305
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
306
  "\">timthumb</a> will be used to generate thumbnails"
307
  msgstr ""
308
 
309
- #: admin.inc.php:369
310
  msgid "Quality of thumbnails generated by timthumb"
311
  msgstr ""
312
 
313
- #: admin.inc.php:372
314
  msgid ""
315
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
316
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
317
  msgstr ""
318
 
319
- #: admin.inc.php:375
320
  msgid "Post thumbnail meta field name: "
321
  msgstr ""
322
 
323
- #: admin.inc.php:377
324
  msgid ""
325
  "The value of this field should contain the image source and is set in the "
326
  "<em>Add New Post</em> screen"
327
  msgstr ""
328
 
329
- #: admin.inc.php:380
330
  msgid ""
331
  "If the postmeta is not set, then should the plugin extract the first image "
332
  "from the post?"
333
  msgstr ""
334
 
335
- #: admin.inc.php:382
336
  msgid ""
337
  "This can slow down the loading of your page if the first image in the "
338
  "related posts is large in file-size"
339
  msgstr ""
340
 
341
- #: admin.inc.php:385
342
  msgid "Use default thumbnail? "
343
  msgstr ""
344
 
345
- #: admin.inc.php:387
346
  msgid ""
347
  "If checked, when no thumbnail is found, show a default one from the URL "
348
  "below. If not checked and no thumbnail is found, no image will be shown."
349
  msgstr ""
350
 
351
- #: admin.inc.php:390
352
  msgid "Default thumbnail: "
353
  msgstr ""
354
 
355
- #: admin.inc.php:392
356
  msgid ""
357
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
358
  "then it will check the meta field. If this is not available, then it will "
359
  "show the default image as specified above"
360
  msgstr ""
361
 
362
- #: admin.inc.php:398
363
  msgid "Feed options"
364
  msgstr ""
365
 
366
- #: admin.inc.php:400
367
  msgid ""
368
  "Below options override the related posts settings for your blog feed. These "
369
  "only apply if you have selected to add related posts to Feeds in the General "
370
  "Options tab."
371
  msgstr ""
372
 
373
- #: admin.inc.php:437
374
  msgid "Custom Styles"
375
  msgstr ""
376
 
377
- #: admin.inc.php:439
378
  msgid "Custom CSS to add to header:"
379
  msgstr ""
380
 
381
- #: admin.inc.php:442
382
  msgid ""
383
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
384
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
385
  "\">FAQ</a> for available CSS classes to style."
386
  msgstr ""
387
 
388
- #: admin.inc.php:447
389
  msgid "Save Options"
390
  msgstr ""
391
 
392
- #: admin.inc.php:448
393
  msgid "Default Options"
394
  msgstr ""
395
 
396
- #: admin.inc.php:448
397
  msgid "Do you want to set options to Default?"
398
  msgstr ""
399
 
400
- #: admin.inc.php:449
401
  msgid "Recreate Index"
402
  msgstr ""
403
 
404
- #: admin.inc.php:449
405
  msgid "Are you sure you want to recreate the index?"
406
  msgstr ""
407
 
408
- #: admin.inc.php:473
409
  msgid "Contextual Related Posts"
410
  msgstr ""
411
 
412
- #: admin.inc.php:473 contextual-related-posts.php:314
413
  msgid "Related Posts"
414
  msgstr ""
415
 
416
- #: admin.inc.php:486
417
  msgid "plugin settings page"
418
  msgstr ""
419
 
420
- #: admin.inc.php:491
421
  msgid ""
422
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
423
  "visit the "
424
  msgstr ""
425
 
426
- #: admin.inc.php:491
427
  msgid " to configure."
428
  msgstr ""
429
 
430
- #: admin.inc.php:555
431
  msgid ""
432
  "An error occurred clearing the cache. Please contact your site administrator."
433
  "\\n\\nError message:\\n"
434
  msgstr ""
435
 
436
- #: admin.inc.php:561
437
  msgid " cached row(s) cleared"
438
  msgstr ""
439
 
440
  #: contextual-related-posts.php:123
441
- msgid " Posted by "
442
  msgstr ""
443
 
444
  #: contextual-related-posts.php:138
@@ -505,10 +548,10 @@ msgstr ""
505
  msgid "No related posts found"
506
  msgstr ""
507
 
508
- #: contextual-related-posts.php:807
509
  msgid "Settings"
510
  msgstr ""
511
 
512
- #: contextual-related-posts.php:830
513
  msgid "Donate"
514
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:10-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:175
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:177
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:178
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:179
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:180
59
+ msgid "FAQ"
60
+ msgstr ""
61
+
62
+ #: admin.inc.php:181 contextual-related-posts.php:830
63
  msgid "Support"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:182
67
  msgid "Reviews"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:186
71
  msgid "Recent developments"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:196
75
  msgid "General options"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:198
79
  msgid "Cache output?"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:200
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:201
89
  msgid "Clear cache"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:204 admin.inc.php:422
93
  msgid "Number of related posts to display: "
94
  msgstr ""
95
 
96
+ #: admin.inc.php:207
97
+ msgid ""
98
+ "Maximum number of posts that will be displayed. The actual number may be "
99
+ "smaller if less related posts are found."
100
+ msgstr ""
101
+
102
+ #: admin.inc.php:210
103
  msgid "Related posts should be newer than:"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:212
107
  msgid "days"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:213
111
+ msgid ""
112
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
113
+ "it to 365 will show related posts from the last year only."
114
+ msgstr ""
115
+
116
+ #: admin.inc.php:216
117
+ msgid "Post types to include in results."
118
  msgstr ""
119
 
120
+ #: admin.inc.php:225
121
+ msgid ""
122
+ "These post types will be displayed in the list. Includes custom post types."
123
+ msgstr ""
124
+
125
+ #: admin.inc.php:228
126
  msgid "Find related posts based on content as well as title"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:230
130
  msgid ""
131
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
132
  "or enabling \"Cache output\" above if you enable this."
133
  msgstr ""
134
 
135
+ #: admin.inc.php:233
136
+ msgid "Limit content to be compared"
137
+ msgstr ""
138
+
139
+ #: admin.inc.php:235
140
+ msgid ""
141
+ "This sets the maximum words of the content that will be matched. 0 means no "
142
+ "limit."
143
+ msgstr ""
144
+
145
+ #: admin.inc.php:238
146
  msgid "List of post or page IDs to exclude from the results: "
147
  msgstr ""
148
 
149
+ #: admin.inc.php:240 admin.inc.php:327
150
+ msgid ""
151
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
152
  msgstr ""
153
 
154
  #: admin.inc.php:243
155
+ msgid "Categories to exclude from the results: "
156
+ msgstr ""
157
+
158
+ #: admin.inc.php:259
159
  msgid ""
160
  "Comma separated list of category slugs. The field above has an autocomplete "
161
  "so simply start typing in the starting letters and it will prompt you with "
162
  "options"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:262
166
  msgid "Add related posts to:"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:264
170
  msgid "Posts"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:265
174
  msgid "Pages"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:266
178
  msgid "Home page"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:267
182
  msgid "Feeds"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:268
186
  msgid "Category archives"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:269
190
  msgid "Tag archives"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:270
194
  msgid "Other archives"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:271
198
  msgid ""
199
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
200
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
201
  "you want it displayed"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:274
205
  msgid "Add a link to the plugin page as a final item in the list"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:276
209
  msgid " <em>Optional</em>"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:277
213
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
214
+ msgstr ""
215
+
216
+ #: admin.inc.php:283
217
  msgid "Output options"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:285
221
  msgid "Title of related posts: "
222
  msgstr ""
223
 
224
+ #: admin.inc.php:288
225
+ msgid ""
226
+ "This is the main heading of the related posts. You can also display the "
227
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
228
+ "Posts to %postname%</code>"
229
+ msgstr ""
230
+
231
+ #: admin.inc.php:291
232
  msgid "When there are no posts, what should be shown?"
233
  msgstr ""
234
 
235
+ #: admin.inc.php:295
236
  msgid "Blank Output"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:299
240
  msgid "Display:"
241
  msgstr ""
242
 
243
+ #: admin.inc.php:303 admin.inc.php:425
244
  msgid "Show post excerpt in list?"
245
  msgstr ""
246
 
247
+ #: admin.inc.php:306
248
  msgid "Length of excerpt (in words): "
249
  msgstr ""
250
 
251
+ #: admin.inc.php:309
252
  msgid "Show post author in list?"
253
  msgstr ""
254
 
255
+ #: admin.inc.php:312
256
  msgid "Show post date in list?"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:315
260
  msgid "Limit post title length (in characters)"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:318
264
  msgid "Open links in new window"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:321
268
  msgid "Add nofollow attribute to links in the list"
269
  msgstr ""
270
 
271
+ #: admin.inc.php:324
272
  msgid "Exclude display of related posts on these posts / pages"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:330
 
 
 
 
276
  msgid "Customize the output:"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:332
280
  msgid "HTML to display before the list of posts: "
281
  msgstr ""
282
 
283
+ #: admin.inc.php:335
284
  msgid "HTML to display before each list item: "
285
  msgstr ""
286
 
287
+ #: admin.inc.php:338
288
  msgid "HTML to display after each list item: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:341
292
  msgid "HTML to display after the list of posts: "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:344
296
  msgid "Post thumbnail options:"
297
  msgstr ""
298
 
299
+ #: admin.inc.php:346 admin.inc.php:428
300
  msgid "Location of post thumbnail:"
301
  msgstr ""
302
 
303
+ #: admin.inc.php:350 admin.inc.php:432
304
  msgid "Display thumbnails inline with posts, before title"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:354 admin.inc.php:436
308
  msgid "Display thumbnails inline with posts, after title"
309
  msgstr ""
310
 
311
+ #: admin.inc.php:358 admin.inc.php:440
312
  msgid "Display only thumbnails, no text"
313
  msgstr ""
314
 
315
+ #: admin.inc.php:362 admin.inc.php:444
316
  msgid "Do not display thumbnails, only text."
317
  msgstr ""
318
 
319
+ #: admin.inc.php:366 admin.inc.php:448
320
  msgid "Maximum width of the thumbnail: "
321
  msgstr ""
322
 
323
+ #: admin.inc.php:369 admin.inc.php:451
324
  msgid "Maximum height of the thumbnail: "
325
  msgstr ""
326
 
327
+ #: admin.inc.php:372
328
  msgid "Style attributes / Width and Height HTML attributes:"
329
  msgstr ""
330
 
331
+ #: admin.inc.php:376
332
  msgid ""
333
  "Style attributes are used for width and height. <code>style=\"max-width:"
334
  msgstr ""
335
 
336
+ #: admin.inc.php:380
337
  msgid ""
338
  "HTML width and height attributes are used for width and height. <code>width="
339
  "\""
340
  msgstr ""
341
 
342
+ #: admin.inc.php:384
343
  msgid "Use timthumb to generate thumbnails? "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:386
347
  msgid ""
348
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
349
  "\">timthumb</a> will be used to generate thumbnails"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:389
353
  msgid "Quality of thumbnails generated by timthumb"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:392
357
  msgid ""
358
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
359
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
360
  msgstr ""
361
 
362
+ #: admin.inc.php:395
363
  msgid "Post thumbnail meta field name: "
364
  msgstr ""
365
 
366
+ #: admin.inc.php:397
367
  msgid ""
368
  "The value of this field should contain the image source and is set in the "
369
  "<em>Add New Post</em> screen"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:400
373
  msgid ""
374
  "If the postmeta is not set, then should the plugin extract the first image "
375
  "from the post?"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:402
379
  msgid ""
380
  "This can slow down the loading of your page if the first image in the "
381
  "related posts is large in file-size"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:405
385
  msgid "Use default thumbnail? "
386
  msgstr ""
387
 
388
+ #: admin.inc.php:407
389
  msgid ""
390
  "If checked, when no thumbnail is found, show a default one from the URL "
391
  "below. If not checked and no thumbnail is found, no image will be shown."
392
  msgstr ""
393
 
394
+ #: admin.inc.php:410
395
  msgid "Default thumbnail: "
396
  msgstr ""
397
 
398
+ #: admin.inc.php:412
399
  msgid ""
400
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
401
  "then it will check the meta field. If this is not available, then it will "
402
  "show the default image as specified above"
403
  msgstr ""
404
 
405
+ #: admin.inc.php:418
406
  msgid "Feed options"
407
  msgstr ""
408
 
409
+ #: admin.inc.php:420
410
  msgid ""
411
  "Below options override the related posts settings for your blog feed. These "
412
  "only apply if you have selected to add related posts to Feeds in the General "
413
  "Options tab."
414
  msgstr ""
415
 
416
+ #: admin.inc.php:457
417
  msgid "Custom Styles"
418
  msgstr ""
419
 
420
+ #: admin.inc.php:459
421
  msgid "Custom CSS to add to header:"
422
  msgstr ""
423
 
424
+ #: admin.inc.php:462
425
  msgid ""
426
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
427
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
428
  "\">FAQ</a> for available CSS classes to style."
429
  msgstr ""
430
 
431
+ #: admin.inc.php:467
432
  msgid "Save Options"
433
  msgstr ""
434
 
435
+ #: admin.inc.php:468
436
  msgid "Default Options"
437
  msgstr ""
438
 
439
+ #: admin.inc.php:468
440
  msgid "Do you want to set options to Default?"
441
  msgstr ""
442
 
443
+ #: admin.inc.php:469
444
  msgid "Recreate Index"
445
  msgstr ""
446
 
447
+ #: admin.inc.php:469
448
  msgid "Are you sure you want to recreate the index?"
449
  msgstr ""
450
 
451
+ #: admin.inc.php:493
452
  msgid "Contextual Related Posts"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:493 contextual-related-posts.php:314
456
  msgid "Related Posts"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:506
460
  msgid "plugin settings page"
461
  msgstr ""
462
 
463
+ #: admin.inc.php:511
464
  msgid ""
465
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
466
  "visit the "
467
  msgstr ""
468
 
469
+ #: admin.inc.php:511
470
  msgid " to configure."
471
  msgstr ""
472
 
473
+ #: admin.inc.php:575
474
  msgid ""
475
  "An error occurred clearing the cache. Please contact your site administrator."
476
  "\\n\\nError message:\\n"
477
  msgstr ""
478
 
479
+ #: admin.inc.php:581
480
  msgid " cached row(s) cleared"
481
  msgstr ""
482
 
483
  #: contextual-related-posts.php:123
484
+ msgid " by "
485
  msgstr ""
486
 
487
  #: contextual-related-posts.php:138
548
  msgid "No related posts found"
549
  msgstr ""
550
 
551
+ #: contextual-related-posts.php:808
552
  msgid "Settings"
553
  msgstr ""
554
 
555
+ #: contextual-related-posts.php:831
556
  msgid "Donate"
557
  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-08-19 23:28-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -15,99 +15,120 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr "Apoya el desarrollo"
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr "Ingresa monto en USD:"
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
- #: admin.inc.php:174
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links rápidos"
46
 
47
- #: admin.inc.php:176
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Posts relacionados contextualmente"
51
 
52
- #: admin.inc.php:177
53
  msgid "Other plugins"
54
  msgstr "Otros plugins"
55
 
56
- #: admin.inc.php:178
57
  msgid "Ajay's blog"
58
  msgstr ""
59
 
60
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
61
  msgid "Support"
62
  msgstr "Soporte"
63
 
64
- #: admin.inc.php:180
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:184
69
  msgid "Recent developments"
70
  msgstr "Desarrollos recientes"
71
 
72
- #: admin.inc.php:194
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:196
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:198
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:199
87
  msgid "Clear cache"
88
  msgstr ""
89
 
90
- #: admin.inc.php:202 admin.inc.php:402
91
  msgid "Number of related posts to display: "
92
  msgstr "Número de posts relacionados a mostrar:"
93
 
94
- #: admin.inc.php:205
 
 
 
 
 
 
95
  msgid "Related posts should be newer than:"
96
  msgstr ""
97
 
98
- #: admin.inc.php:206
99
  msgid "days"
100
  msgstr ""
101
 
102
- #: admin.inc.php:208
103
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
104
  msgstr ""
105
 
106
- #: admin.inc.php:219
 
 
 
 
 
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
- #: admin.inc.php:221
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -117,55 +138,70 @@ msgstr ""
117
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
118
  "caché si activas esto)"
119
 
120
- #: admin.inc.php:224
 
 
 
 
 
 
 
 
 
 
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
- #: admin.inc.php:227
125
- msgid "Categories to exclude from the results: "
 
126
  msgstr ""
127
 
128
  #: admin.inc.php:243
 
 
 
 
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:246
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "Agregar posts relacionados al feed"
139
 
140
- #: admin.inc.php:248
141
  msgid "Posts"
142
  msgstr ""
143
 
144
- #: admin.inc.php:249
145
  msgid "Pages"
146
  msgstr ""
147
 
148
- #: admin.inc.php:250
149
  msgid "Home page"
150
  msgstr ""
151
 
152
- #: admin.inc.php:251
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
- #: admin.inc.php:252
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
- #: admin.inc.php:253
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
- #: admin.inc.php:254
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
- #: admin.inc.php:255
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -176,175 +212,183 @@ msgstr ""
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:258
180
  msgid "Add a link to the plugin page as a final item in the list"
181
  msgstr ""
182
 
183
- #: admin.inc.php:259
184
  msgid " <em>Optional</em>"
185
  msgstr ""
186
 
187
- #: admin.inc.php:266
 
 
 
 
 
188
  #, fuzzy
189
  msgid "Output options"
190
  msgstr "Opciones de Salida:"
191
 
192
- #: admin.inc.php:268
193
  msgid "Title of related posts: "
194
  msgstr "Título de posts relacionados:"
195
 
196
- #: admin.inc.php:271
 
 
 
 
 
 
 
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:275
201
  msgid "Blank Output"
202
  msgstr "Salida vacía"
203
 
204
- #: admin.inc.php:279
205
  msgid "Display:"
206
  msgstr ""
207
 
208
- #: admin.inc.php:283 admin.inc.php:405
209
  msgid "Show post excerpt in list?"
210
  msgstr "¿Mostrar extracto con los items?"
211
 
212
- #: admin.inc.php:286
213
  msgid "Length of excerpt (in words): "
214
  msgstr "Tamaño del extracto (en palabras):"
215
 
216
- #: admin.inc.php:289
217
  #, fuzzy
218
  msgid "Show post author in list?"
219
  msgstr "¿Mostrar extracto con los items?"
220
 
221
- #: admin.inc.php:292
222
  #, fuzzy
223
  msgid "Show post date in list?"
224
  msgstr "¿Mostrar extracto con los items?"
225
 
226
- #: admin.inc.php:295
227
  msgid "Limit post title length (in characters)"
228
  msgstr ""
229
 
230
- #: admin.inc.php:298
231
  msgid "Open links in new window"
232
  msgstr ""
233
 
234
- #: admin.inc.php:301
235
  msgid "Add nofollow attribute to links in the list"
236
  msgstr ""
237
 
238
- #: admin.inc.php:304
239
  #, fuzzy
240
  msgid "Exclude display of related posts on these posts / pages"
241
  msgstr "Agregar posts relacionados al feed"
242
 
243
- #: admin.inc.php:307
244
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
245
- msgstr ""
246
-
247
- #: admin.inc.php:310
248
  msgid "Customize the output:"
249
  msgstr "Personalizar la salida:"
250
 
251
- #: admin.inc.php:312
252
  msgid "HTML to display before the list of posts: "
253
  msgstr "HTML a mostrar antes de todos los items:"
254
 
255
- #: admin.inc.php:315
256
  msgid "HTML to display before each list item: "
257
  msgstr "HTML a mostrar antes de cada item:"
258
 
259
- #: admin.inc.php:318
260
  msgid "HTML to display after each list item: "
261
  msgstr "HTML a mostrar despues de cada item:"
262
 
263
- #: admin.inc.php:321
264
  msgid "HTML to display after the list of posts: "
265
  msgstr "HTML a mostrar despues de todos los items:"
266
 
267
- #: admin.inc.php:324
268
  msgid "Post thumbnail options:"
269
  msgstr "Opciones de miniaturas en el post:"
270
 
271
- #: admin.inc.php:326 admin.inc.php:408
272
  msgid "Location of post thumbnail:"
273
  msgstr ""
274
 
275
- #: admin.inc.php:330 admin.inc.php:412
276
  #, fuzzy
277
  msgid "Display thumbnails inline with posts, before title"
278
  msgstr "Miniaturas en línea con los posts"
279
 
280
- #: admin.inc.php:334 admin.inc.php:416
281
  #, fuzzy
282
  msgid "Display thumbnails inline with posts, after title"
283
  msgstr "Miniaturas en línea con los posts"
284
 
285
- #: admin.inc.php:338 admin.inc.php:420
286
  msgid "Display only thumbnails, no text"
287
  msgstr "Solo miniaturas, sin texto"
288
 
289
- #: admin.inc.php:342 admin.inc.php:424
290
  msgid "Do not display thumbnails, only text."
291
  msgstr "No mostrar miniaturas, solo texto."
292
 
293
- #: admin.inc.php:346 admin.inc.php:428
294
  msgid "Maximum width of the thumbnail: "
295
  msgstr ""
296
 
297
- #: admin.inc.php:349 admin.inc.php:431
298
  msgid "Maximum height of the thumbnail: "
299
  msgstr ""
300
 
301
- #: admin.inc.php:352
302
  msgid "Style attributes / Width and Height HTML attributes:"
303
  msgstr ""
304
 
305
- #: admin.inc.php:356
306
  msgid ""
307
  "Style attributes are used for width and height. <code>style=\"max-width:"
308
  msgstr ""
309
 
310
- #: admin.inc.php:360
311
  msgid ""
312
  "HTML width and height attributes are used for width and height. <code>width="
313
  "\""
314
  msgstr ""
315
 
316
- #: admin.inc.php:364
317
  msgid "Use timthumb to generate thumbnails? "
318
  msgstr ""
319
 
320
- #: admin.inc.php:366
321
  msgid ""
322
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
323
  "\">timthumb</a> will be used to generate thumbnails"
324
  msgstr ""
325
 
326
- #: admin.inc.php:369
327
  msgid "Quality of thumbnails generated by timthumb"
328
  msgstr ""
329
 
330
- #: admin.inc.php:372
331
  msgid ""
332
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
333
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
334
  msgstr ""
335
 
336
- #: admin.inc.php:375
337
  #, fuzzy
338
  msgid "Post thumbnail meta field name: "
339
  msgstr "Opciones de miniaturas en el post:"
340
 
341
- #: admin.inc.php:377
342
  msgid ""
343
  "The value of this field should contain the image source and is set in the "
344
  "<em>Add New Post</em> screen"
345
  msgstr ""
346
 
347
- #: admin.inc.php:380
348
  #, fuzzy
349
  msgid ""
350
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -354,7 +398,7 @@ msgstr ""
354
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
355
  "tamaño"
356
 
357
- #: admin.inc.php:382
358
  #, fuzzy
359
  msgid ""
360
  "This can slow down the loading of your page if the first image in the "
@@ -364,21 +408,21 @@ msgstr ""
364
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
365
  "tamaño"
366
 
367
- #: admin.inc.php:385
368
  msgid "Use default thumbnail? "
369
  msgstr ""
370
 
371
- #: admin.inc.php:387
372
  msgid ""
373
  "If checked, when no thumbnail is found, show a default one from the URL "
374
  "below. If not checked and no thumbnail is found, no image will be shown."
375
  msgstr ""
376
 
377
- #: admin.inc.php:390
378
  msgid "Default thumbnail: "
379
  msgstr ""
380
 
381
- #: admin.inc.php:392
382
  #, fuzzy
383
  msgid ""
384
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -389,92 +433,91 @@ msgstr ""
389
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
390
  "la imágen padrón especificada a continuación:"
391
 
392
- #: admin.inc.php:398
393
  #, fuzzy
394
  msgid "Feed options"
395
  msgstr "Opciones:"
396
 
397
- #: admin.inc.php:400
398
  msgid ""
399
  "Below options override the related posts settings for your blog feed. These "
400
  "only apply if you have selected to add related posts to Feeds in the General "
401
  "Options tab."
402
  msgstr ""
403
 
404
- #: admin.inc.php:437
405
  msgid "Custom Styles"
406
  msgstr ""
407
 
408
- #: admin.inc.php:439
409
  msgid "Custom CSS to add to header:"
410
  msgstr ""
411
 
412
- #: admin.inc.php:442
413
  msgid ""
414
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
415
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
416
  "\">FAQ</a> for available CSS classes to style."
417
  msgstr ""
418
 
419
- #: admin.inc.php:447
420
  #, fuzzy
421
  msgid "Save Options"
422
  msgstr "Opciones:"
423
 
424
- #: admin.inc.php:448
425
  #, fuzzy
426
  msgid "Default Options"
427
  msgstr "Opciones de Salida:"
428
 
429
- #: admin.inc.php:448
430
  msgid "Do you want to set options to Default?"
431
  msgstr "¿Quieres resetear las opciones?"
432
 
433
- #: admin.inc.php:449
434
  msgid "Recreate Index"
435
  msgstr ""
436
 
437
- #: admin.inc.php:449
438
  msgid "Are you sure you want to recreate the index?"
439
  msgstr "¿Está seguro que quiere recrear el index?"
440
 
441
- #: admin.inc.php:473
442
  msgid "Contextual Related Posts"
443
  msgstr "Posts Relacionados Contextualmente"
444
 
445
- #: admin.inc.php:473 contextual-related-posts.php:314
446
  msgid "Related Posts"
447
  msgstr "Post Relacionados"
448
 
449
- #: admin.inc.php:486
450
  #, fuzzy
451
  msgid "plugin settings page"
452
  msgstr "sitio del plugin"
453
 
454
- #: admin.inc.php:491
455
  msgid ""
456
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
457
  "visit the "
458
  msgstr ""
459
 
460
- #: admin.inc.php:491
461
  msgid " to configure."
462
  msgstr ""
463
 
464
- #: admin.inc.php:555
465
  msgid ""
466
  "An error occurred clearing the cache. Please contact your site administrator."
467
  "\\n\\nError message:\\n"
468
  msgstr ""
469
 
470
- #: admin.inc.php:561
471
  msgid " cached row(s) cleared"
472
  msgstr ""
473
 
474
  #: contextual-related-posts.php:123
475
- #, fuzzy
476
- msgid " Posted by "
477
- msgstr "Creado por"
478
 
479
  #: contextual-related-posts.php:138
480
  msgid "Powered by"
@@ -551,14 +594,18 @@ msgstr "<h3>Post Relacionados:</h3>"
551
  msgid "No related posts found"
552
  msgstr "No hay posts relacionados"
553
 
554
- #: contextual-related-posts.php:807
555
  msgid "Settings"
556
  msgstr "Opciones"
557
 
558
- #: contextual-related-posts.php:830
559
  msgid "Donate"
560
  msgstr "Donar"
561
 
 
 
 
 
562
  #~ msgid "Follow @ajaydsouza on Twitter"
563
  #~ msgstr "Seguir @ajaydsouza en Twitter"
564
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:10-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr "Apoya el desarrollo"
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr "Ingresa monto en USD:"
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
+ #: admin.inc.php:175
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links rápidos"
46
 
47
+ #: admin.inc.php:177
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Posts relacionados contextualmente"
51
 
52
+ #: admin.inc.php:178
53
  msgid "Other plugins"
54
  msgstr "Otros plugins"
55
 
56
+ #: admin.inc.php:179
57
  msgid "Ajay's blog"
58
  msgstr ""
59
 
60
+ #: admin.inc.php:180
61
+ msgid "FAQ"
62
+ msgstr ""
63
+
64
+ #: admin.inc.php:181 contextual-related-posts.php:830
65
  msgid "Support"
66
  msgstr "Soporte"
67
 
68
+ #: admin.inc.php:182
69
  msgid "Reviews"
70
  msgstr ""
71
 
72
+ #: admin.inc.php:186
73
  msgid "Recent developments"
74
  msgstr "Desarrollos recientes"
75
 
76
+ #: admin.inc.php:196
77
  msgid "General options"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:198
81
  msgid "Cache output?"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:200
85
  msgid ""
86
  "Enabling this option will cache the related posts output when the post is "
87
  "visited the first time. The cache is cleaned when you save this page."
88
  msgstr ""
89
 
90
+ #: admin.inc.php:201
91
  msgid "Clear cache"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:204 admin.inc.php:422
95
  msgid "Number of related posts to display: "
96
  msgstr "Número de posts relacionados a mostrar:"
97
 
98
+ #: admin.inc.php:207
99
+ msgid ""
100
+ "Maximum number of posts that will be displayed. The actual number may be "
101
+ "smaller if less related posts are found."
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:210
105
  msgid "Related posts should be newer than:"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:212
109
  msgid "days"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:213
113
+ msgid ""
114
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
115
+ "it to 365 will show related posts from the last year only."
116
+ msgstr ""
117
+
118
+ #: admin.inc.php:216
119
+ msgid "Post types to include in results."
120
  msgstr ""
121
 
122
+ #: admin.inc.php:225
123
+ msgid ""
124
+ "These post types will be displayed in the list. Includes custom post types."
125
+ msgstr ""
126
+
127
+ #: admin.inc.php:228
128
  msgid "Find related posts based on content as well as title"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:230
132
  #, fuzzy
133
  msgid ""
134
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
138
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
139
  "caché si activas esto)"
140
 
141
+ #: admin.inc.php:233
142
+ msgid "Limit content to be compared"
143
+ msgstr ""
144
+
145
+ #: admin.inc.php:235
146
+ msgid ""
147
+ "This sets the maximum words of the content that will be matched. 0 means no "
148
+ "limit."
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:238
152
  msgid "List of post or page IDs to exclude from the results: "
153
  msgstr ""
154
 
155
+ #: admin.inc.php:240 admin.inc.php:327
156
+ msgid ""
157
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
158
  msgstr ""
159
 
160
  #: admin.inc.php:243
161
+ msgid "Categories to exclude from the results: "
162
+ msgstr ""
163
+
164
+ #: admin.inc.php:259
165
  msgid ""
166
  "Comma separated list of category slugs. The field above has an autocomplete "
167
  "so simply start typing in the starting letters and it will prompt you with "
168
  "options"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:262
172
  #, fuzzy
173
  msgid "Add related posts to:"
174
  msgstr "Agregar posts relacionados al feed"
175
 
176
+ #: admin.inc.php:264
177
  msgid "Posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:265
181
  msgid "Pages"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:266
185
  msgid "Home page"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:267
189
  msgid "Feeds"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:268
193
  msgid "Category archives"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:269
197
  msgid "Tag archives"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:270
201
  msgid "Other archives"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:271
205
  #, fuzzy
206
  msgid ""
207
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
212
  "favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
213
  "(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
214
 
215
+ #: admin.inc.php:274
216
  msgid "Add a link to the plugin page as a final item in the list"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:276
220
  msgid " <em>Optional</em>"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:277
224
+ #, fuzzy
225
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
226
+ msgstr "Posts relacionados contextualmente"
227
+
228
+ #: admin.inc.php:283
229
  #, fuzzy
230
  msgid "Output options"
231
  msgstr "Opciones de Salida:"
232
 
233
+ #: admin.inc.php:285
234
  msgid "Title of related posts: "
235
  msgstr "Título de posts relacionados:"
236
 
237
+ #: admin.inc.php:288
238
+ msgid ""
239
+ "This is the main heading of the related posts. You can also display the "
240
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
241
+ "Posts to %postname%</code>"
242
+ msgstr ""
243
+
244
+ #: admin.inc.php:291
245
  msgid "When there are no posts, what should be shown?"
246
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
247
 
248
+ #: admin.inc.php:295
249
  msgid "Blank Output"
250
  msgstr "Salida vacía"
251
 
252
+ #: admin.inc.php:299
253
  msgid "Display:"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:303 admin.inc.php:425
257
  msgid "Show post excerpt in list?"
258
  msgstr "¿Mostrar extracto con los items?"
259
 
260
+ #: admin.inc.php:306
261
  msgid "Length of excerpt (in words): "
262
  msgstr "Tamaño del extracto (en palabras):"
263
 
264
+ #: admin.inc.php:309
265
  #, fuzzy
266
  msgid "Show post author in list?"
267
  msgstr "¿Mostrar extracto con los items?"
268
 
269
+ #: admin.inc.php:312
270
  #, fuzzy
271
  msgid "Show post date in list?"
272
  msgstr "¿Mostrar extracto con los items?"
273
 
274
+ #: admin.inc.php:315
275
  msgid "Limit post title length (in characters)"
276
  msgstr ""
277
 
278
+ #: admin.inc.php:318
279
  msgid "Open links in new window"
280
  msgstr ""
281
 
282
+ #: admin.inc.php:321
283
  msgid "Add nofollow attribute to links in the list"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:324
287
  #, fuzzy
288
  msgid "Exclude display of related posts on these posts / pages"
289
  msgstr "Agregar posts relacionados al feed"
290
 
291
+ #: admin.inc.php:330
 
 
 
 
292
  msgid "Customize the output:"
293
  msgstr "Personalizar la salida:"
294
 
295
+ #: admin.inc.php:332
296
  msgid "HTML to display before the list of posts: "
297
  msgstr "HTML a mostrar antes de todos los items:"
298
 
299
+ #: admin.inc.php:335
300
  msgid "HTML to display before each list item: "
301
  msgstr "HTML a mostrar antes de cada item:"
302
 
303
+ #: admin.inc.php:338
304
  msgid "HTML to display after each list item: "
305
  msgstr "HTML a mostrar despues de cada item:"
306
 
307
+ #: admin.inc.php:341
308
  msgid "HTML to display after the list of posts: "
309
  msgstr "HTML a mostrar despues de todos los items:"
310
 
311
+ #: admin.inc.php:344
312
  msgid "Post thumbnail options:"
313
  msgstr "Opciones de miniaturas en el post:"
314
 
315
+ #: admin.inc.php:346 admin.inc.php:428
316
  msgid "Location of post thumbnail:"
317
  msgstr ""
318
 
319
+ #: admin.inc.php:350 admin.inc.php:432
320
  #, fuzzy
321
  msgid "Display thumbnails inline with posts, before title"
322
  msgstr "Miniaturas en línea con los posts"
323
 
324
+ #: admin.inc.php:354 admin.inc.php:436
325
  #, fuzzy
326
  msgid "Display thumbnails inline with posts, after title"
327
  msgstr "Miniaturas en línea con los posts"
328
 
329
+ #: admin.inc.php:358 admin.inc.php:440
330
  msgid "Display only thumbnails, no text"
331
  msgstr "Solo miniaturas, sin texto"
332
 
333
+ #: admin.inc.php:362 admin.inc.php:444
334
  msgid "Do not display thumbnails, only text."
335
  msgstr "No mostrar miniaturas, solo texto."
336
 
337
+ #: admin.inc.php:366 admin.inc.php:448
338
  msgid "Maximum width of the thumbnail: "
339
  msgstr ""
340
 
341
+ #: admin.inc.php:369 admin.inc.php:451
342
  msgid "Maximum height of the thumbnail: "
343
  msgstr ""
344
 
345
+ #: admin.inc.php:372
346
  msgid "Style attributes / Width and Height HTML attributes:"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:376
350
  msgid ""
351
  "Style attributes are used for width and height. <code>style=\"max-width:"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:380
355
  msgid ""
356
  "HTML width and height attributes are used for width and height. <code>width="
357
  "\""
358
  msgstr ""
359
 
360
+ #: admin.inc.php:384
361
  msgid "Use timthumb to generate thumbnails? "
362
  msgstr ""
363
 
364
+ #: admin.inc.php:386
365
  msgid ""
366
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
367
  "\">timthumb</a> will be used to generate thumbnails"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:389
371
  msgid "Quality of thumbnails generated by timthumb"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:392
375
  msgid ""
376
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
377
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
378
  msgstr ""
379
 
380
+ #: admin.inc.php:395
381
  #, fuzzy
382
  msgid "Post thumbnail meta field name: "
383
  msgstr "Opciones de miniaturas en el post:"
384
 
385
+ #: admin.inc.php:397
386
  msgid ""
387
  "The value of this field should contain the image source and is set in the "
388
  "<em>Add New Post</em> screen"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:400
392
  #, fuzzy
393
  msgid ""
394
  "If the postmeta is not set, then should the plugin extract the first image "
398
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
399
  "tamaño"
400
 
401
+ #: admin.inc.php:402
402
  #, fuzzy
403
  msgid ""
404
  "This can slow down the loading of your page if the first image in the "
408
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
409
  "tamaño"
410
 
411
+ #: admin.inc.php:405
412
  msgid "Use default thumbnail? "
413
  msgstr ""
414
 
415
+ #: admin.inc.php:407
416
  msgid ""
417
  "If checked, when no thumbnail is found, show a default one from the URL "
418
  "below. If not checked and no thumbnail is found, no image will be shown."
419
  msgstr ""
420
 
421
+ #: admin.inc.php:410
422
  msgid "Default thumbnail: "
423
  msgstr ""
424
 
425
+ #: admin.inc.php:412
426
  #, fuzzy
427
  msgid ""
428
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
433
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
434
  "la imágen padrón especificada a continuación:"
435
 
436
+ #: admin.inc.php:418
437
  #, fuzzy
438
  msgid "Feed options"
439
  msgstr "Opciones:"
440
 
441
+ #: admin.inc.php:420
442
  msgid ""
443
  "Below options override the related posts settings for your blog feed. These "
444
  "only apply if you have selected to add related posts to Feeds in the General "
445
  "Options tab."
446
  msgstr ""
447
 
448
+ #: admin.inc.php:457
449
  msgid "Custom Styles"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:459
453
  msgid "Custom CSS to add to header:"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:462
457
  msgid ""
458
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
459
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
460
  "\">FAQ</a> for available CSS classes to style."
461
  msgstr ""
462
 
463
+ #: admin.inc.php:467
464
  #, fuzzy
465
  msgid "Save Options"
466
  msgstr "Opciones:"
467
 
468
+ #: admin.inc.php:468
469
  #, fuzzy
470
  msgid "Default Options"
471
  msgstr "Opciones de Salida:"
472
 
473
+ #: admin.inc.php:468
474
  msgid "Do you want to set options to Default?"
475
  msgstr "¿Quieres resetear las opciones?"
476
 
477
+ #: admin.inc.php:469
478
  msgid "Recreate Index"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:469
482
  msgid "Are you sure you want to recreate the index?"
483
  msgstr "¿Está seguro que quiere recrear el index?"
484
 
485
+ #: admin.inc.php:493
486
  msgid "Contextual Related Posts"
487
  msgstr "Posts Relacionados Contextualmente"
488
 
489
+ #: admin.inc.php:493 contextual-related-posts.php:314
490
  msgid "Related Posts"
491
  msgstr "Post Relacionados"
492
 
493
+ #: admin.inc.php:506
494
  #, fuzzy
495
  msgid "plugin settings page"
496
  msgstr "sitio del plugin"
497
 
498
+ #: admin.inc.php:511
499
  msgid ""
500
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
501
  "visit the "
502
  msgstr ""
503
 
504
+ #: admin.inc.php:511
505
  msgid " to configure."
506
  msgstr ""
507
 
508
+ #: admin.inc.php:575
509
  msgid ""
510
  "An error occurred clearing the cache. Please contact your site administrator."
511
  "\\n\\nError message:\\n"
512
  msgstr ""
513
 
514
+ #: admin.inc.php:581
515
  msgid " cached row(s) cleared"
516
  msgstr ""
517
 
518
  #: contextual-related-posts.php:123
519
+ msgid " by "
520
+ msgstr ""
 
521
 
522
  #: contextual-related-posts.php:138
523
  msgid "Powered by"
594
  msgid "No related posts found"
595
  msgstr "No hay posts relacionados"
596
 
597
+ #: contextual-related-posts.php:808
598
  msgid "Settings"
599
  msgstr "Opciones"
600
 
601
+ #: contextual-related-posts.php:831
602
  msgid "Donate"
603
  msgstr "Donar"
604
 
605
+ #, fuzzy
606
+ #~ msgid " Posted by "
607
+ #~ msgstr "Creado por"
608
+
609
  #~ msgid "Follow @ajaydsouza on Twitter"
610
  #~ msgstr "Seguir @ajaydsouza en Twitter"
611
 
languages/crp-fr_FR.mo CHANGED
Binary file
languages/crp-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-08-19 23:28-0000\n"
6
- "PO-Revision-Date: 2013-08-20 22:30-0000\n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Olivier Copetto <olivier@copetto.com>\n"
9
  "Language: fr\n"
@@ -15,67 +15,71 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr "Options enregistrées avec succès."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Options définies par défaut."
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr "L'index a été recréé."
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr "Soutenir le développement"
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr "Entrer le montant en USD :"
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr "Envoyer votre don à l'auteur de"
41
 
42
- #: admin.inc.php:174
43
  msgid "Quick Links"
44
  msgstr "Liens rapides"
45
 
46
- #: admin.inc.php:176
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr "Page du plugin Contextual Related Posts"
49
 
50
- #: admin.inc.php:177
51
  msgid "Other plugins"
52
  msgstr "Autres plugins"
53
 
54
- #: admin.inc.php:178
55
  msgid "Ajay's blog"
56
  msgstr "Blog d'Ajay"
57
 
58
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
59
  msgid "Support"
60
  msgstr "Support"
61
 
62
- #: admin.inc.php:180
63
  msgid "Reviews"
64
  msgstr "Commentaires"
65
 
66
- #: admin.inc.php:184
67
  msgid "Recent developments"
68
  msgstr "Développements récents"
69
 
70
- #: admin.inc.php:194
71
  msgid "General options"
72
  msgstr "Options générales"
73
 
74
- #: admin.inc.php:196
75
  msgid "Cache output?"
76
  msgstr "Cache de l'affichage ?"
77
 
78
- #: admin.inc.php:198
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."
@@ -84,35 +88,56 @@ msgstr ""
84
  "similaires lorsque l'article est visité pour la première fois. Le cache est "
85
  "nettoyé lorsque vous enregistrez cette page."
86
 
87
- #: admin.inc.php:199
88
  msgid "Clear cache"
89
  msgstr "Effacer le cache"
90
 
91
- #: admin.inc.php:202 admin.inc.php:402
92
  msgid "Number of related posts to display: "
93
  msgstr "Nombre d'articles similaires<br>à afficher :"
94
 
95
- #: admin.inc.php:205
 
 
 
 
 
 
96
  msgid "Related posts should be newer than:"
97
  msgstr "Les articles similaires devront être plus récent de :"
98
 
99
- #: admin.inc.php:206
100
  msgid "days"
101
  msgstr "jours"
102
 
103
- #: admin.inc.php:208
104
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
 
105
  msgstr ""
106
  "Type d'article à inclure dans les résultats (y compris les types "
107
  "personnalisés)"
108
 
109
- #: admin.inc.php:219
 
 
 
 
 
 
 
 
110
  msgid "Find related posts based on content as well as title"
111
  msgstr ""
112
  "Trouver les articles similaires en se basant sur le contenu ainsi que le "
113
  "titre"
114
 
115
- #: admin.inc.php:221
116
  msgid ""
117
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
118
  "or enabling \"Cache output\" above if you enable this."
@@ -121,15 +146,31 @@ msgstr ""
121
  "l'option \"Cache de l'affichage\" ci-dessus. Si non cochée, les titres des "
122
  "articles seront uniquement utilisés."
123
 
124
- #: admin.inc.php:224
 
 
 
 
 
 
 
 
 
 
125
  msgid "List of post or page IDs to exclude from the results: "
126
  msgstr "Liste des ID d'article ou de page à exclure des résultats :"
127
 
128
- #: admin.inc.php:227
 
 
 
 
 
 
129
  msgid "Categories to exclude from the results: "
130
  msgstr "Catégories à exclure des résultats :"
131
 
132
- #: admin.inc.php:243
133
  msgid ""
134
  "Comma separated list of category slugs. The field above has an autocomplete "
135
  "so simply start typing in the starting letters and it will prompt you with "
@@ -139,39 +180,39 @@ msgstr ""
139
  "remplissage automatique, tapez simplement les premières lettres et il vous "
140
  "proposera des options."
141
 
142
- #: admin.inc.php:246
143
  msgid "Add related posts to:"
144
  msgstr "Ajouter des articles similaires à :"
145
 
146
- #: admin.inc.php:248
147
  msgid "Posts"
148
  msgstr "Articles"
149
 
150
- #: admin.inc.php:249
151
  msgid "Pages"
152
  msgstr "Pages"
153
 
154
- #: admin.inc.php:250
155
  msgid "Home page"
156
  msgstr "Page d'accueil"
157
 
158
- #: admin.inc.php:251
159
  msgid "Feeds"
160
  msgstr "RSS"
161
 
162
- #: admin.inc.php:252
163
  msgid "Category archives"
164
  msgstr "Archives Catégorie"
165
 
166
- #: admin.inc.php:253
167
  msgid "Tag archives"
168
  msgstr "Archives Etiquette"
169
 
170
- #: admin.inc.php:254
171
  msgid "Other archives"
172
  msgstr "Autres archives"
173
 
174
- #: admin.inc.php:255
175
  msgid ""
176
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
177
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
@@ -181,135 +222,143 @@ msgstr ""
181
  "(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> à votre "
182
  "fichier de modèle où vous souhaitez qu'il s'affiche."
183
 
184
- #: admin.inc.php:258
185
  msgid "Add a link to the plugin page as a final item in the list"
186
  msgstr "Ajouter un lien vers la page du plugin comme dernier élément de liste"
187
 
188
- #: admin.inc.php:259
189
  msgid " <em>Optional</em>"
190
  msgstr " <em>Optionnel</em>"
191
 
192
- #: admin.inc.php:266
 
 
 
 
 
193
  msgid "Output options"
194
  msgstr "Options d'affichage"
195
 
196
- #: admin.inc.php:268
197
  msgid "Title of related posts: "
198
  msgstr "Titre des articles similaires :"
199
 
200
- #: admin.inc.php:271
 
 
 
 
 
 
 
201
  msgid "When there are no posts, what should be shown?"
202
  msgstr "Lorsqu'il n'y a pas d'articles, que doit-on afficher ?"
203
 
204
- #: admin.inc.php:275
205
  msgid "Blank Output"
206
  msgstr "Aucun affichage"
207
 
208
- #: admin.inc.php:279
209
  msgid "Display:"
210
  msgstr "Affichage :"
211
 
212
- #: admin.inc.php:283 admin.inc.php:405
213
  msgid "Show post excerpt in list?"
214
  msgstr "Afficher l'extrait de l'article dans la liste ?"
215
 
216
- #: admin.inc.php:286
217
  msgid "Length of excerpt (in words): "
218
  msgstr "Longueur de l'extrait (en mots) :"
219
 
220
- #: admin.inc.php:289
221
  msgid "Show post author in list?"
222
  msgstr "Afficher les articles auteur dans la liste ?"
223
 
224
- #: admin.inc.php:292
225
  msgid "Show post date in list?"
226
  msgstr "Afficher la date de l'article dans la liste ?"
227
 
228
- #: admin.inc.php:295
229
  msgid "Limit post title length (in characters)"
230
  msgstr "Taille limite du titre (en caractères)"
231
 
232
- #: admin.inc.php:298
233
  msgid "Open links in new window"
234
  msgstr "Ouvrir les liens dans une nouvelle fenêtre"
235
 
236
- #: admin.inc.php:301
237
  msgid "Add nofollow attribute to links in the list"
238
  msgstr "Ajouter l'attribut nofollow aux liens de la liste"
239
 
240
- #: admin.inc.php:304
241
  msgid "Exclude display of related posts on these posts / pages"
242
  msgstr ""
243
  "Exclure l'affichage des articles similaires liés à ces articles / pages"
244
 
245
- #: admin.inc.php:307
246
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
247
- msgstr "Entrer une liste d'ID (ex : 188, 320, 500) séparé par une virgule."
248
-
249
- #: admin.inc.php:310
250
  msgid "Customize the output:"
251
  msgstr "Configurer l'affichage :"
252
 
253
- #: admin.inc.php:312
254
  msgid "HTML to display before the list of posts: "
255
  msgstr "HTML à afficher avant la liste des articles :"
256
 
257
- #: admin.inc.php:315
258
  msgid "HTML to display before each list item: "
259
  msgstr "HTML à afficher avant chaque élément de la liste :"
260
 
261
- #: admin.inc.php:318
262
  msgid "HTML to display after each list item: "
263
  msgstr "HTML à afficher après chaque élément de la liste :"
264
 
265
- #: admin.inc.php:321
266
  msgid "HTML to display after the list of posts: "
267
  msgstr "HTML à afficher après la liste des articles :"
268
 
269
- #: admin.inc.php:324
270
  msgid "Post thumbnail options:"
271
  msgstr "Options de la vignette :"
272
 
273
- #: admin.inc.php:326 admin.inc.php:408
274
  msgid "Location of post thumbnail:"
275
  msgstr "Lieu de la vignette :"
276
 
277
- #: admin.inc.php:330 admin.inc.php:412
278
  msgid "Display thumbnails inline with posts, before title"
279
  msgstr "Afficher les vignettes en ligne avec les articles, avant le titre"
280
 
281
- #: admin.inc.php:334 admin.inc.php:416
282
  msgid "Display thumbnails inline with posts, after title"
283
  msgstr "Afficher les vignettes en ligne avec les articles, après le titre"
284
 
285
- #: admin.inc.php:338 admin.inc.php:420
286
  msgid "Display only thumbnails, no text"
287
  msgstr "Afficher seulement les vignettes, aucun texte"
288
 
289
- #: admin.inc.php:342 admin.inc.php:424
290
  msgid "Do not display thumbnails, only text."
291
  msgstr "Ne pas afficher les vignettes, seulement le texte."
292
 
293
- #: admin.inc.php:346 admin.inc.php:428
294
  msgid "Maximum width of the thumbnail: "
295
  msgstr "Largeur maximale de la vignette :"
296
 
297
- #: admin.inc.php:349 admin.inc.php:431
298
  msgid "Maximum height of the thumbnail: "
299
  msgstr "Hauteur maximale de la vignette :"
300
 
301
- #: admin.inc.php:352
302
  msgid "Style attributes / Width and Height HTML attributes:"
303
  msgstr "Attributs de style / attributs HTML width et height :"
304
 
305
- #: admin.inc.php:356
306
  msgid ""
307
  "Style attributes are used for width and height. <code>style=\"max-width:"
308
  msgstr ""
309
  "Les attributs de style sont utilisés pour la largeur et la hauteur. "
310
  "<code>style=\"max-width:"
311
 
312
- #: admin.inc.php:360
313
  msgid ""
314
  "HTML width and height attributes are used for width and height. <code>width="
315
  "\""
@@ -317,11 +366,11 @@ msgstr ""
317
  "Les attributs HTML width et height sont utilisés pour la largeur et la "
318
  "hauteur. <code>width=\""
319
 
320
- #: admin.inc.php:364
321
  msgid "Use timthumb to generate thumbnails? "
322
  msgstr "Utiliser TimThumb pour générer les vignettes ?"
323
 
324
- #: admin.inc.php:366
325
  msgid ""
326
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
327
  "\">timthumb</a> will be used to generate thumbnails"
@@ -329,11 +378,11 @@ msgstr ""
329
  "Si cochée, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
330
  "\">TimThumb</a> sera utilisé pour générer les vignettes."
331
 
332
- #: admin.inc.php:369
333
  msgid "Quality of thumbnails generated by timthumb"
334
  msgstr "Qualité des vignettes généré par TimThumb"
335
 
336
- #: admin.inc.php:372
337
  msgid ""
338
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
339
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
@@ -342,11 +391,11 @@ msgstr ""
342
  "également la taille du fichier la plus élevé. La valeur maximale suggérée "
343
  "est 95. La valeur par défaut est 75."
344
 
345
- #: admin.inc.php:375
346
  msgid "Post thumbnail meta field name: "
347
  msgstr "Nom du champ meta de la vignette :"
348
 
349
- #: admin.inc.php:377
350
  msgid ""
351
  "The value of this field should contain the image source and is set in the "
352
  "<em>Add New Post</em> screen"
@@ -354,7 +403,7 @@ msgstr ""
354
  "La valeur de ce champ doit contenir la source de l'image et est situé dans "
355
  "l'écran <em>Ajouter un nouvel article</em>"
356
 
357
- #: admin.inc.php:380
358
  msgid ""
359
  "If the postmeta is not set, then should the plugin extract the first image "
360
  "from the post?"
@@ -362,7 +411,7 @@ msgstr ""
362
  "Si le meta n'est pas défini, alors le plugin doit-il extraire la première "
363
  "image de l'article ?"
364
 
365
- #: admin.inc.php:382
366
  msgid ""
367
  "This can slow down the loading of your page if the first image in the "
368
  "related posts is large in file-size"
@@ -370,11 +419,11 @@ msgstr ""
370
  "Cela peut ralentir le chargement de votre page, si la première image dans "
371
  "les articles similaires est un fichier de grande taille."
372
 
373
- #: admin.inc.php:385
374
  msgid "Use default thumbnail? "
375
  msgstr "Utiliser la vignette par défaut ?"
376
 
377
- #: admin.inc.php:387
378
  msgid ""
379
  "If checked, when no thumbnail is found, show a default one from the URL "
380
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -383,11 +432,11 @@ msgstr ""
383
  "l'adresse URL ci-dessous. Si elle n'est pas cochée et aucune vignette n'est "
384
  "trouvée, aucune image ne sera affichée."
385
 
386
- #: admin.inc.php:390
387
  msgid "Default thumbnail: "
388
  msgstr "Vignette par défaut :"
389
 
390
- #: admin.inc.php:392
391
  msgid ""
392
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
393
  "then it will check the meta field. If this is not available, then it will "
@@ -397,11 +446,11 @@ msgstr ""
397
  "n'est pas le cas, il vérifiera le champ meta. S'il n'est pas disponible, "
398
  "alors il affichera l'image par défaut comme indiqué ci-dessus."
399
 
400
- #: admin.inc.php:398
401
  msgid "Feed options"
402
  msgstr "Options Flux RSS"
403
 
404
- #: admin.inc.php:400
405
  msgid ""
406
  "Below options override the related posts settings for your blog feed. These "
407
  "only apply if you have selected to add related posts to Feeds in the General "
@@ -411,15 +460,15 @@ msgstr ""
411
  "les RSS. Ceux-ci s'appliquent uniquement si vous avez choisi d'ajouter les "
412
  "articles similaires aux RSS dans l'onglet Options générales."
413
 
414
- #: admin.inc.php:437
415
  msgid "Custom Styles"
416
  msgstr "Styles personnalisés"
417
 
418
- #: admin.inc.php:439
419
  msgid "Custom CSS to add to header:"
420
  msgstr "CSS personnalisé à ajouter à l'entête :"
421
 
422
- #: admin.inc.php:442
423
  msgid ""
424
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
425
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
@@ -429,39 +478,39 @@ msgstr ""
429
  "\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
430
  "\"_blank\">FAQ</a> pour les classes CSS de style disponible."
431
 
432
- #: admin.inc.php:447
433
  msgid "Save Options"
434
  msgstr "Enregistrer les options"
435
 
436
- #: admin.inc.php:448
437
  msgid "Default Options"
438
  msgstr "Options par défaut"
439
 
440
- #: admin.inc.php:448
441
  msgid "Do you want to set options to Default?"
442
  msgstr "Voulez-vous définir les options par défaut ?"
443
 
444
- #: admin.inc.php:449
445
  msgid "Recreate Index"
446
  msgstr "Recréer l'index"
447
 
448
- #: admin.inc.php:449
449
  msgid "Are you sure you want to recreate the index?"
450
  msgstr "Etes vous certain de vouloir recréer l'index ?"
451
 
452
- #: admin.inc.php:473
453
  msgid "Contextual Related Posts"
454
  msgstr "Contextual Related Posts"
455
 
456
- #: admin.inc.php:473 contextual-related-posts.php:314
457
  msgid "Related Posts"
458
  msgstr "Related Posts"
459
 
460
- #: admin.inc.php:486
461
  msgid "plugin settings page"
462
  msgstr "page des paramètres du plugin"
463
 
464
- #: admin.inc.php:491
465
  msgid ""
466
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
467
  "visit the "
@@ -469,11 +518,11 @@ msgstr ""
469
  "Le plugin Contextual Related Posts a été installé / mise à jour. Vous pouvez "
470
  "visiter le "
471
 
472
- #: admin.inc.php:491
473
  msgid " to configure."
474
  msgstr " à configurer."
475
 
476
- #: admin.inc.php:555
477
  msgid ""
478
  "An error occurred clearing the cache. Please contact your site administrator."
479
  "\\n\\nError message:\\n"
@@ -481,13 +530,13 @@ msgstr ""
481
  "Une erreur s'est produite en vidant le cache. Contacter l'administrateur du "
482
  "site.\\n\\nMessage d'erreur :\\n"
483
 
484
- #: admin.inc.php:561
485
  msgid " cached row(s) cleared"
486
  msgstr "Ligne(s) en cache nettoyée(s)."
487
 
488
  #: contextual-related-posts.php:123
489
- msgid " Posted by "
490
- msgstr " Publié par"
491
 
492
  #: contextual-related-posts.php:138
493
  msgid "Powered by"
@@ -553,10 +602,13 @@ msgstr "<h3>Articles similaires :</h3>"
553
  msgid "No related posts found"
554
  msgstr "Aucun article similaire trouvé."
555
 
556
- #: contextual-related-posts.php:807
557
  msgid "Settings"
558
  msgstr "Réglages"
559
 
560
- #: contextual-related-posts.php:830
561
  msgid "Donate"
562
  msgstr "Faire un don"
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:11-0000\n"
6
+ "PO-Revision-Date: 2013-11-08 20:11-0000\n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Olivier Copetto <olivier@copetto.com>\n"
9
  "Language: fr\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr "Options enregistrées avec succès."
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr "Options définies par défaut."
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr "L'index a été recréé."
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr "Soutenir le développement"
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr "Entrer le montant en USD :"
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr "Envoyer votre don à l'auteur de"
41
 
42
+ #: admin.inc.php:175
43
  msgid "Quick Links"
44
  msgstr "Liens rapides"
45
 
46
+ #: admin.inc.php:177
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr "Page du plugin Contextual Related Posts"
49
 
50
+ #: admin.inc.php:178
51
  msgid "Other plugins"
52
  msgstr "Autres plugins"
53
 
54
+ #: admin.inc.php:179
55
  msgid "Ajay's blog"
56
  msgstr "Blog d'Ajay"
57
 
58
+ #: admin.inc.php:180
59
+ msgid "FAQ"
60
+ msgstr ""
61
+
62
+ #: admin.inc.php:181 contextual-related-posts.php:830
63
  msgid "Support"
64
  msgstr "Support"
65
 
66
+ #: admin.inc.php:182
67
  msgid "Reviews"
68
  msgstr "Commentaires"
69
 
70
+ #: admin.inc.php:186
71
  msgid "Recent developments"
72
  msgstr "Développements récents"
73
 
74
+ #: admin.inc.php:196
75
  msgid "General options"
76
  msgstr "Options générales"
77
 
78
+ #: admin.inc.php:198
79
  msgid "Cache output?"
80
  msgstr "Cache de l'affichage ?"
81
 
82
+ #: admin.inc.php:200
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."
88
  "similaires lorsque l'article est visité pour la première fois. Le cache est "
89
  "nettoyé lorsque vous enregistrez cette page."
90
 
91
+ #: admin.inc.php:201
92
  msgid "Clear cache"
93
  msgstr "Effacer le cache"
94
 
95
+ #: admin.inc.php:204 admin.inc.php:422
96
  msgid "Number of related posts to display: "
97
  msgstr "Nombre d'articles similaires<br>à afficher :"
98
 
99
+ #: admin.inc.php:207
100
+ msgid ""
101
+ "Maximum number of posts that will be displayed. The actual number may be "
102
+ "smaller if less related posts are found."
103
+ msgstr ""
104
+
105
+ #: admin.inc.php:210
106
  msgid "Related posts should be newer than:"
107
  msgstr "Les articles similaires devront être plus récent de :"
108
 
109
+ #: admin.inc.php:212
110
  msgid "days"
111
  msgstr "jours"
112
 
113
+ #: admin.inc.php:213
114
+ msgid ""
115
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
116
+ "it to 365 will show related posts from the last year only."
117
+ msgstr ""
118
+
119
+ #: admin.inc.php:216
120
+ #, fuzzy
121
+ msgid "Post types to include in results."
122
  msgstr ""
123
  "Type d'article à inclure dans les résultats (y compris les types "
124
  "personnalisés)"
125
 
126
+ #: admin.inc.php:225
127
+ #, fuzzy
128
+ msgid ""
129
+ "These post types will be displayed in the list. Includes custom post types."
130
+ msgstr ""
131
+ "Type d'article à inclure dans les résultats (y compris les types "
132
+ "personnalisés)"
133
+
134
+ #: admin.inc.php:228
135
  msgid "Find related posts based on content as well as title"
136
  msgstr ""
137
  "Trouver les articles similaires en se basant sur le contenu ainsi que le "
138
  "titre"
139
 
140
+ #: admin.inc.php:230
141
  msgid ""
142
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
143
  "or enabling \"Cache output\" above if you enable this."
146
  "l'option \"Cache de l'affichage\" ci-dessus. Si non cochée, les titres des "
147
  "articles seront uniquement utilisés."
148
 
149
+ #: admin.inc.php:233
150
+ msgid "Limit content to be compared"
151
+ msgstr ""
152
+
153
+ #: admin.inc.php:235
154
+ msgid ""
155
+ "This sets the maximum words of the content that will be matched. 0 means no "
156
+ "limit."
157
+ msgstr ""
158
+
159
+ #: admin.inc.php:238
160
  msgid "List of post or page IDs to exclude from the results: "
161
  msgstr "Liste des ID d'article ou de page à exclure des résultats :"
162
 
163
+ #: admin.inc.php:240 admin.inc.php:327
164
+ #, fuzzy
165
+ msgid ""
166
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
167
+ msgstr "Entrer une liste d'ID (ex : 188, 320, 500) séparé par une virgule."
168
+
169
+ #: admin.inc.php:243
170
  msgid "Categories to exclude from the results: "
171
  msgstr "Catégories à exclure des résultats :"
172
 
173
+ #: admin.inc.php:259
174
  msgid ""
175
  "Comma separated list of category slugs. The field above has an autocomplete "
176
  "so simply start typing in the starting letters and it will prompt you with "
180
  "remplissage automatique, tapez simplement les premières lettres et il vous "
181
  "proposera des options."
182
 
183
+ #: admin.inc.php:262
184
  msgid "Add related posts to:"
185
  msgstr "Ajouter des articles similaires à :"
186
 
187
+ #: admin.inc.php:264
188
  msgid "Posts"
189
  msgstr "Articles"
190
 
191
+ #: admin.inc.php:265
192
  msgid "Pages"
193
  msgstr "Pages"
194
 
195
+ #: admin.inc.php:266
196
  msgid "Home page"
197
  msgstr "Page d'accueil"
198
 
199
+ #: admin.inc.php:267
200
  msgid "Feeds"
201
  msgstr "RSS"
202
 
203
+ #: admin.inc.php:268
204
  msgid "Category archives"
205
  msgstr "Archives Catégorie"
206
 
207
+ #: admin.inc.php:269
208
  msgid "Tag archives"
209
  msgstr "Archives Etiquette"
210
 
211
+ #: admin.inc.php:270
212
  msgid "Other archives"
213
  msgstr "Autres archives"
214
 
215
+ #: admin.inc.php:271
216
  msgid ""
217
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
218
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
222
  "(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> à votre "
223
  "fichier de modèle où vous souhaitez qu'il s'affiche."
224
 
225
+ #: admin.inc.php:274
226
  msgid "Add a link to the plugin page as a final item in the list"
227
  msgstr "Ajouter un lien vers la page du plugin comme dernier élément de liste"
228
 
229
+ #: admin.inc.php:276
230
  msgid " <em>Optional</em>"
231
  msgstr " <em>Optionnel</em>"
232
 
233
+ #: admin.inc.php:277
234
+ #, fuzzy
235
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
236
+ msgstr "Page du plugin Contextual Related Posts"
237
+
238
+ #: admin.inc.php:283
239
  msgid "Output options"
240
  msgstr "Options d'affichage"
241
 
242
+ #: admin.inc.php:285
243
  msgid "Title of related posts: "
244
  msgstr "Titre des articles similaires :"
245
 
246
+ #: admin.inc.php:288
247
+ msgid ""
248
+ "This is the main heading of the related posts. You can also display the "
249
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
250
+ "Posts to %postname%</code>"
251
+ msgstr ""
252
+
253
+ #: admin.inc.php:291
254
  msgid "When there are no posts, what should be shown?"
255
  msgstr "Lorsqu'il n'y a pas d'articles, que doit-on afficher ?"
256
 
257
+ #: admin.inc.php:295
258
  msgid "Blank Output"
259
  msgstr "Aucun affichage"
260
 
261
+ #: admin.inc.php:299
262
  msgid "Display:"
263
  msgstr "Affichage :"
264
 
265
+ #: admin.inc.php:303 admin.inc.php:425
266
  msgid "Show post excerpt in list?"
267
  msgstr "Afficher l'extrait de l'article dans la liste ?"
268
 
269
+ #: admin.inc.php:306
270
  msgid "Length of excerpt (in words): "
271
  msgstr "Longueur de l'extrait (en mots) :"
272
 
273
+ #: admin.inc.php:309
274
  msgid "Show post author in list?"
275
  msgstr "Afficher les articles auteur dans la liste ?"
276
 
277
+ #: admin.inc.php:312
278
  msgid "Show post date in list?"
279
  msgstr "Afficher la date de l'article dans la liste ?"
280
 
281
+ #: admin.inc.php:315
282
  msgid "Limit post title length (in characters)"
283
  msgstr "Taille limite du titre (en caractères)"
284
 
285
+ #: admin.inc.php:318
286
  msgid "Open links in new window"
287
  msgstr "Ouvrir les liens dans une nouvelle fenêtre"
288
 
289
+ #: admin.inc.php:321
290
  msgid "Add nofollow attribute to links in the list"
291
  msgstr "Ajouter l'attribut nofollow aux liens de la liste"
292
 
293
+ #: admin.inc.php:324
294
  msgid "Exclude display of related posts on these posts / pages"
295
  msgstr ""
296
  "Exclure l'affichage des articles similaires liés à ces articles / pages"
297
 
298
+ #: admin.inc.php:330
 
 
 
 
299
  msgid "Customize the output:"
300
  msgstr "Configurer l'affichage :"
301
 
302
+ #: admin.inc.php:332
303
  msgid "HTML to display before the list of posts: "
304
  msgstr "HTML à afficher avant la liste des articles :"
305
 
306
+ #: admin.inc.php:335
307
  msgid "HTML to display before each list item: "
308
  msgstr "HTML à afficher avant chaque élément de la liste :"
309
 
310
+ #: admin.inc.php:338
311
  msgid "HTML to display after each list item: "
312
  msgstr "HTML à afficher après chaque élément de la liste :"
313
 
314
+ #: admin.inc.php:341
315
  msgid "HTML to display after the list of posts: "
316
  msgstr "HTML à afficher après la liste des articles :"
317
 
318
+ #: admin.inc.php:344
319
  msgid "Post thumbnail options:"
320
  msgstr "Options de la vignette :"
321
 
322
+ #: admin.inc.php:346 admin.inc.php:428
323
  msgid "Location of post thumbnail:"
324
  msgstr "Lieu de la vignette :"
325
 
326
+ #: admin.inc.php:350 admin.inc.php:432
327
  msgid "Display thumbnails inline with posts, before title"
328
  msgstr "Afficher les vignettes en ligne avec les articles, avant le titre"
329
 
330
+ #: admin.inc.php:354 admin.inc.php:436
331
  msgid "Display thumbnails inline with posts, after title"
332
  msgstr "Afficher les vignettes en ligne avec les articles, après le titre"
333
 
334
+ #: admin.inc.php:358 admin.inc.php:440
335
  msgid "Display only thumbnails, no text"
336
  msgstr "Afficher seulement les vignettes, aucun texte"
337
 
338
+ #: admin.inc.php:362 admin.inc.php:444
339
  msgid "Do not display thumbnails, only text."
340
  msgstr "Ne pas afficher les vignettes, seulement le texte."
341
 
342
+ #: admin.inc.php:366 admin.inc.php:448
343
  msgid "Maximum width of the thumbnail: "
344
  msgstr "Largeur maximale de la vignette :"
345
 
346
+ #: admin.inc.php:369 admin.inc.php:451
347
  msgid "Maximum height of the thumbnail: "
348
  msgstr "Hauteur maximale de la vignette :"
349
 
350
+ #: admin.inc.php:372
351
  msgid "Style attributes / Width and Height HTML attributes:"
352
  msgstr "Attributs de style / attributs HTML width et height :"
353
 
354
+ #: admin.inc.php:376
355
  msgid ""
356
  "Style attributes are used for width and height. <code>style=\"max-width:"
357
  msgstr ""
358
  "Les attributs de style sont utilisés pour la largeur et la hauteur. "
359
  "<code>style=\"max-width:"
360
 
361
+ #: admin.inc.php:380
362
  msgid ""
363
  "HTML width and height attributes are used for width and height. <code>width="
364
  "\""
366
  "Les attributs HTML width et height sont utilisés pour la largeur et la "
367
  "hauteur. <code>width=\""
368
 
369
+ #: admin.inc.php:384
370
  msgid "Use timthumb to generate thumbnails? "
371
  msgstr "Utiliser TimThumb pour générer les vignettes ?"
372
 
373
+ #: admin.inc.php:386
374
  msgid ""
375
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
376
  "\">timthumb</a> will be used to generate thumbnails"
378
  "Si cochée, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
379
  "\">TimThumb</a> sera utilisé pour générer les vignettes."
380
 
381
+ #: admin.inc.php:389
382
  msgid "Quality of thumbnails generated by timthumb"
383
  msgstr "Qualité des vignettes généré par TimThumb"
384
 
385
+ #: admin.inc.php:392
386
  msgid ""
387
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
388
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
391
  "également la taille du fichier la plus élevé. La valeur maximale suggérée "
392
  "est 95. La valeur par défaut est 75."
393
 
394
+ #: admin.inc.php:395
395
  msgid "Post thumbnail meta field name: "
396
  msgstr "Nom du champ meta de la vignette :"
397
 
398
+ #: admin.inc.php:397
399
  msgid ""
400
  "The value of this field should contain the image source and is set in the "
401
  "<em>Add New Post</em> screen"
403
  "La valeur de ce champ doit contenir la source de l'image et est situé dans "
404
  "l'écran <em>Ajouter un nouvel article</em>"
405
 
406
+ #: admin.inc.php:400
407
  msgid ""
408
  "If the postmeta is not set, then should the plugin extract the first image "
409
  "from the post?"
411
  "Si le meta n'est pas défini, alors le plugin doit-il extraire la première "
412
  "image de l'article ?"
413
 
414
+ #: admin.inc.php:402
415
  msgid ""
416
  "This can slow down the loading of your page if the first image in the "
417
  "related posts is large in file-size"
419
  "Cela peut ralentir le chargement de votre page, si la première image dans "
420
  "les articles similaires est un fichier de grande taille."
421
 
422
+ #: admin.inc.php:405
423
  msgid "Use default thumbnail? "
424
  msgstr "Utiliser la vignette par défaut ?"
425
 
426
+ #: admin.inc.php:407
427
  msgid ""
428
  "If checked, when no thumbnail is found, show a default one from the URL "
429
  "below. If not checked and no thumbnail is found, no image will be shown."
432
  "l'adresse URL ci-dessous. Si elle n'est pas cochée et aucune vignette n'est "
433
  "trouvée, aucune image ne sera affichée."
434
 
435
+ #: admin.inc.php:410
436
  msgid "Default thumbnail: "
437
  msgstr "Vignette par défaut :"
438
 
439
+ #: admin.inc.php:412
440
  msgid ""
441
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
442
  "then it will check the meta field. If this is not available, then it will "
446
  "n'est pas le cas, il vérifiera le champ meta. S'il n'est pas disponible, "
447
  "alors il affichera l'image par défaut comme indiqué ci-dessus."
448
 
449
+ #: admin.inc.php:418
450
  msgid "Feed options"
451
  msgstr "Options Flux RSS"
452
 
453
+ #: admin.inc.php:420
454
  msgid ""
455
  "Below options override the related posts settings for your blog feed. These "
456
  "only apply if you have selected to add related posts to Feeds in the General "
460
  "les RSS. Ceux-ci s'appliquent uniquement si vous avez choisi d'ajouter les "
461
  "articles similaires aux RSS dans l'onglet Options générales."
462
 
463
+ #: admin.inc.php:457
464
  msgid "Custom Styles"
465
  msgstr "Styles personnalisés"
466
 
467
+ #: admin.inc.php:459
468
  msgid "Custom CSS to add to header:"
469
  msgstr "CSS personnalisé à ajouter à l'entête :"
470
 
471
+ #: admin.inc.php:462
472
  msgid ""
473
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
474
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
478
  "\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
479
  "\"_blank\">FAQ</a> pour les classes CSS de style disponible."
480
 
481
+ #: admin.inc.php:467
482
  msgid "Save Options"
483
  msgstr "Enregistrer les options"
484
 
485
+ #: admin.inc.php:468
486
  msgid "Default Options"
487
  msgstr "Options par défaut"
488
 
489
+ #: admin.inc.php:468
490
  msgid "Do you want to set options to Default?"
491
  msgstr "Voulez-vous définir les options par défaut ?"
492
 
493
+ #: admin.inc.php:469
494
  msgid "Recreate Index"
495
  msgstr "Recréer l'index"
496
 
497
+ #: admin.inc.php:469
498
  msgid "Are you sure you want to recreate the index?"
499
  msgstr "Etes vous certain de vouloir recréer l'index ?"
500
 
501
+ #: admin.inc.php:493
502
  msgid "Contextual Related Posts"
503
  msgstr "Contextual Related Posts"
504
 
505
+ #: admin.inc.php:493 contextual-related-posts.php:314
506
  msgid "Related Posts"
507
  msgstr "Related Posts"
508
 
509
+ #: admin.inc.php:506
510
  msgid "plugin settings page"
511
  msgstr "page des paramètres du plugin"
512
 
513
+ #: admin.inc.php:511
514
  msgid ""
515
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
516
  "visit the "
518
  "Le plugin Contextual Related Posts a été installé / mise à jour. Vous pouvez "
519
  "visiter le "
520
 
521
+ #: admin.inc.php:511
522
  msgid " to configure."
523
  msgstr " à configurer."
524
 
525
+ #: admin.inc.php:575
526
  msgid ""
527
  "An error occurred clearing the cache. Please contact your site administrator."
528
  "\\n\\nError message:\\n"
530
  "Une erreur s'est produite en vidant le cache. Contacter l'administrateur du "
531
  "site.\\n\\nMessage d'erreur :\\n"
532
 
533
+ #: admin.inc.php:581
534
  msgid " cached row(s) cleared"
535
  msgstr "Ligne(s) en cache nettoyée(s)."
536
 
537
  #: contextual-related-posts.php:123
538
+ msgid " by "
539
+ msgstr ""
540
 
541
  #: contextual-related-posts.php:138
542
  msgid "Powered by"
602
  msgid "No related posts found"
603
  msgstr "Aucun article similaire trouvé."
604
 
605
+ #: contextual-related-posts.php:808
606
  msgid "Settings"
607
  msgstr "Réglages"
608
 
609
+ #: contextual-related-posts.php:831
610
  msgid "Donate"
611
  msgstr "Faire un don"
612
+
613
+ #~ msgid " Posted by "
614
+ #~ msgstr " Publié par"
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-08-19 23:28-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"
@@ -15,99 +15,120 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr "Sostieni lo sviluppo"
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr "Inserisci la cifra in USD: "
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
- #: admin.inc.php:174
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Collegamenti veloci"
46
 
47
- #: admin.inc.php:176
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
- #: admin.inc.php:177
53
  msgid "Other plugins"
54
  msgstr "Altri plugin"
55
 
56
- #: admin.inc.php:178
57
  msgid "Ajay's blog"
58
  msgstr "Il blog di Ajay"
59
 
60
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
61
  msgid "Support"
62
  msgstr "Supporto"
63
 
64
- #: admin.inc.php:180
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:184
69
  msgid "Recent developments"
70
  msgstr "Sviluppi recenti"
71
 
72
- #: admin.inc.php:194
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:196
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:198
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:199
87
  msgid "Clear cache"
88
  msgstr ""
89
 
90
- #: admin.inc.php:202 admin.inc.php:402
91
  msgid "Number of related posts to display: "
92
  msgstr "numero di articoli correlati da mostrare:"
93
 
94
- #: admin.inc.php:205
 
 
 
 
 
 
95
  msgid "Related posts should be newer than:"
96
  msgstr ""
97
 
98
- #: admin.inc.php:206
99
  msgid "days"
100
  msgstr ""
101
 
102
- #: admin.inc.php:208
103
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
104
  msgstr ""
105
 
106
- #: admin.inc.php:219
 
 
 
 
 
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
- #: admin.inc.php:221
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -117,55 +138,70 @@ msgstr ""
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:224
 
 
 
 
 
 
 
 
 
 
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
- #: admin.inc.php:227
125
- msgid "Categories to exclude from the results: "
 
126
  msgstr ""
127
 
128
  #: admin.inc.php:243
 
 
 
 
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:246
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "aggiungi gli articoli correlati al feed"
139
 
140
- #: admin.inc.php:248
141
  msgid "Posts"
142
  msgstr ""
143
 
144
- #: admin.inc.php:249
145
  msgid "Pages"
146
  msgstr ""
147
 
148
- #: admin.inc.php:250
149
  msgid "Home page"
150
  msgstr ""
151
 
152
- #: admin.inc.php:251
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
- #: admin.inc.php:252
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
- #: admin.inc.php:253
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
- #: admin.inc.php:254
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
- #: admin.inc.php:255
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -176,175 +212,183 @@ msgstr ""
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:258
180
  msgid "Add a link to the plugin page as a final item in the list"
181
  msgstr ""
182
 
183
- #: admin.inc.php:259
184
  msgid " <em>Optional</em>"
185
  msgstr ""
186
 
187
- #: admin.inc.php:266
 
 
 
 
 
188
  #, fuzzy
189
  msgid "Output options"
190
  msgstr "Opzioni output:"
191
 
192
- #: admin.inc.php:268
193
  msgid "Title of related posts: "
194
  msgstr "titolo per gli articoli correlati:"
195
 
196
- #: admin.inc.php:271
 
 
 
 
 
 
 
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:275
201
  msgid "Blank Output"
202
  msgstr "nulla"
203
 
204
- #: admin.inc.php:279
205
  msgid "Display:"
206
  msgstr ""
207
 
208
- #: admin.inc.php:283 admin.inc.php:405
209
  msgid "Show post excerpt in list?"
210
  msgstr "Desideri mostrare gli estratti?"
211
 
212
- #: admin.inc.php:286
213
  msgid "Length of excerpt (in words): "
214
  msgstr "Lunghezza estratto (in parole): "
215
 
216
- #: admin.inc.php:289
217
  #, fuzzy
218
  msgid "Show post author in list?"
219
  msgstr "Desideri mostrare gli estratti?"
220
 
221
- #: admin.inc.php:292
222
  #, fuzzy
223
  msgid "Show post date in list?"
224
  msgstr "Desideri mostrare gli estratti?"
225
 
226
- #: admin.inc.php:295
227
  msgid "Limit post title length (in characters)"
228
  msgstr ""
229
 
230
- #: admin.inc.php:298
231
  msgid "Open links in new window"
232
  msgstr ""
233
 
234
- #: admin.inc.php:301
235
  msgid "Add nofollow attribute to links in the list"
236
  msgstr ""
237
 
238
- #: admin.inc.php:304
239
  #, fuzzy
240
  msgid "Exclude display of related posts on these posts / pages"
241
  msgstr "aggiungi gli articoli correlati al feed"
242
 
243
- #: admin.inc.php:307
244
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
245
- msgstr ""
246
-
247
- #: admin.inc.php:310
248
  msgid "Customize the output:"
249
  msgstr "Personalizzazione output:"
250
 
251
- #: admin.inc.php:312
252
  msgid "HTML to display before the list of posts: "
253
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
254
 
255
- #: admin.inc.php:315
256
  msgid "HTML to display before each list item: "
257
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
258
 
259
- #: admin.inc.php:318
260
  msgid "HTML to display after each list item: "
261
  msgstr "HTML da mostrare dopo ogni lista:"
262
 
263
- #: admin.inc.php:321
264
  msgid "HTML to display after the list of posts: "
265
  msgstr "HTML da mostrare dopo la lista degli articoli:"
266
 
267
- #: admin.inc.php:324
268
  msgid "Post thumbnail options:"
269
  msgstr "Opzioni miniature articolo:"
270
 
271
- #: admin.inc.php:326 admin.inc.php:408
272
  msgid "Location of post thumbnail:"
273
  msgstr ""
274
 
275
- #: admin.inc.php:330 admin.inc.php:412
276
  #, fuzzy
277
  msgid "Display thumbnails inline with posts, before title"
278
  msgstr "Mostra gli articoli con le miniature inline"
279
 
280
- #: admin.inc.php:334 admin.inc.php:416
281
  #, fuzzy
282
  msgid "Display thumbnails inline with posts, after title"
283
  msgstr "Mostra gli articoli con le miniature inline"
284
 
285
- #: admin.inc.php:338 admin.inc.php:420
286
  msgid "Display only thumbnails, no text"
287
  msgstr "Mostra le sole miniature, nessun testo"
288
 
289
- #: admin.inc.php:342 admin.inc.php:424
290
  msgid "Do not display thumbnails, only text."
291
  msgstr "Non mostrare le miniature, solo testo."
292
 
293
- #: admin.inc.php:346 admin.inc.php:428
294
  msgid "Maximum width of the thumbnail: "
295
  msgstr ""
296
 
297
- #: admin.inc.php:349 admin.inc.php:431
298
  msgid "Maximum height of the thumbnail: "
299
  msgstr ""
300
 
301
- #: admin.inc.php:352
302
  msgid "Style attributes / Width and Height HTML attributes:"
303
  msgstr ""
304
 
305
- #: admin.inc.php:356
306
  msgid ""
307
  "Style attributes are used for width and height. <code>style=\"max-width:"
308
  msgstr ""
309
 
310
- #: admin.inc.php:360
311
  msgid ""
312
  "HTML width and height attributes are used for width and height. <code>width="
313
  "\""
314
  msgstr ""
315
 
316
- #: admin.inc.php:364
317
  msgid "Use timthumb to generate thumbnails? "
318
  msgstr ""
319
 
320
- #: admin.inc.php:366
321
  msgid ""
322
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
323
  "\">timthumb</a> will be used to generate thumbnails"
324
  msgstr ""
325
 
326
- #: admin.inc.php:369
327
  msgid "Quality of thumbnails generated by timthumb"
328
  msgstr ""
329
 
330
- #: admin.inc.php:372
331
  msgid ""
332
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
333
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
334
  msgstr ""
335
 
336
- #: admin.inc.php:375
337
  #, fuzzy
338
  msgid "Post thumbnail meta field name: "
339
  msgstr "Opzioni miniature articolo:"
340
 
341
- #: admin.inc.php:377
342
  msgid ""
343
  "The value of this field should contain the image source and is set in the "
344
  "<em>Add New Post</em> screen"
345
  msgstr ""
346
 
347
- #: admin.inc.php:380
348
  #, fuzzy
349
  msgid ""
350
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -355,7 +399,7 @@ msgstr ""
355
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
356
  "dimensioni"
357
 
358
- #: admin.inc.php:382
359
  #, fuzzy
360
  msgid ""
361
  "This can slow down the loading of your page if the first image in the "
@@ -366,21 +410,21 @@ msgstr ""
366
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
367
  "dimensioni"
368
 
369
- #: admin.inc.php:385
370
  msgid "Use default thumbnail? "
371
  msgstr ""
372
 
373
- #: admin.inc.php:387
374
  msgid ""
375
  "If checked, when no thumbnail is found, show a default one from the URL "
376
  "below. If not checked and no thumbnail is found, no image will be shown."
377
  msgstr ""
378
 
379
- #: admin.inc.php:390
380
  msgid "Default thumbnail: "
381
  msgstr ""
382
 
383
- #: admin.inc.php:392
384
  #, fuzzy
385
  msgid ""
386
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -392,92 +436,91 @@ msgstr ""
392
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
393
  "specificato qui sotto:"
394
 
395
- #: admin.inc.php:398
396
  #, fuzzy
397
  msgid "Feed options"
398
  msgstr "Opzioni:"
399
 
400
- #: admin.inc.php:400
401
  msgid ""
402
  "Below options override the related posts settings for your blog feed. These "
403
  "only apply if you have selected to add related posts to Feeds in the General "
404
  "Options tab."
405
  msgstr ""
406
 
407
- #: admin.inc.php:437
408
  msgid "Custom Styles"
409
  msgstr ""
410
 
411
- #: admin.inc.php:439
412
  msgid "Custom CSS to add to header:"
413
  msgstr ""
414
 
415
- #: admin.inc.php:442
416
  msgid ""
417
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
418
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
419
  "\">FAQ</a> for available CSS classes to style."
420
  msgstr ""
421
 
422
- #: admin.inc.php:447
423
  #, fuzzy
424
  msgid "Save Options"
425
  msgstr "Opzioni:"
426
 
427
- #: admin.inc.php:448
428
  #, fuzzy
429
  msgid "Default Options"
430
  msgstr "Opzioni output:"
431
 
432
- #: admin.inc.php:448
433
  msgid "Do you want to set options to Default?"
434
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
435
 
436
- #: admin.inc.php:449
437
  msgid "Recreate Index"
438
  msgstr ""
439
 
440
- #: admin.inc.php:449
441
  msgid "Are you sure you want to recreate the index?"
442
  msgstr "Sei certo di volere ricreare l'indice?"
443
 
444
- #: admin.inc.php:473
445
  msgid "Contextual Related Posts"
446
  msgstr "Contextual Related Posts"
447
 
448
- #: admin.inc.php:473 contextual-related-posts.php:314
449
  msgid "Related Posts"
450
  msgstr "Related Posts"
451
 
452
- #: admin.inc.php:486
453
  #, fuzzy
454
  msgid "plugin settings page"
455
  msgstr "pagina plugin"
456
 
457
- #: admin.inc.php:491
458
  msgid ""
459
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
460
  "visit the "
461
  msgstr ""
462
 
463
- #: admin.inc.php:491
464
  msgid " to configure."
465
  msgstr ""
466
 
467
- #: admin.inc.php:555
468
  msgid ""
469
  "An error occurred clearing the cache. Please contact your site administrator."
470
  "\\n\\nError message:\\n"
471
  msgstr ""
472
 
473
- #: admin.inc.php:561
474
  msgid " cached row(s) cleared"
475
  msgstr ""
476
 
477
  #: contextual-related-posts.php:123
478
- #, fuzzy
479
- msgid " Posted by "
480
- msgstr "Powered by"
481
 
482
  #: contextual-related-posts.php:138
483
  msgid "Powered by"
@@ -554,14 +597,18 @@ msgstr "<h3>Related Posts:</h3>"
554
  msgid "No related posts found"
555
  msgstr "Non é stato trovato alcun articolo correlato"
556
 
557
- #: contextual-related-posts.php:807
558
  msgid "Settings"
559
  msgstr "Impostazioni"
560
 
561
- #: contextual-related-posts.php:830
562
  msgid "Donate"
563
  msgstr "Donazioni"
564
 
 
 
 
 
565
  #~ msgid "Follow @ajaydsouza on Twitter"
566
  #~ msgstr "Segui @ajaydsouza su Twitter"
567
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:11-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"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr "Sostieni lo sviluppo"
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr "Inserisci la cifra in USD: "
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
+ #: admin.inc.php:175
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Collegamenti veloci"
46
 
47
+ #: admin.inc.php:177
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:178
53
  msgid "Other plugins"
54
  msgstr "Altri plugin"
55
 
56
+ #: admin.inc.php:179
57
  msgid "Ajay's blog"
58
  msgstr "Il blog di Ajay"
59
 
60
+ #: admin.inc.php:180
61
+ msgid "FAQ"
62
+ msgstr ""
63
+
64
+ #: admin.inc.php:181 contextual-related-posts.php:830
65
  msgid "Support"
66
  msgstr "Supporto"
67
 
68
+ #: admin.inc.php:182
69
  msgid "Reviews"
70
  msgstr ""
71
 
72
+ #: admin.inc.php:186
73
  msgid "Recent developments"
74
  msgstr "Sviluppi recenti"
75
 
76
+ #: admin.inc.php:196
77
  msgid "General options"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:198
81
  msgid "Cache output?"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:200
85
  msgid ""
86
  "Enabling this option will cache the related posts output when the post is "
87
  "visited the first time. The cache is cleaned when you save this page."
88
  msgstr ""
89
 
90
+ #: admin.inc.php:201
91
  msgid "Clear cache"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:204 admin.inc.php:422
95
  msgid "Number of related posts to display: "
96
  msgstr "numero di articoli correlati da mostrare:"
97
 
98
+ #: admin.inc.php:207
99
+ msgid ""
100
+ "Maximum number of posts that will be displayed. The actual number may be "
101
+ "smaller if less related posts are found."
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:210
105
  msgid "Related posts should be newer than:"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:212
109
  msgid "days"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:213
113
+ msgid ""
114
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
115
+ "it to 365 will show related posts from the last year only."
116
+ msgstr ""
117
+
118
+ #: admin.inc.php:216
119
+ msgid "Post types to include in results."
120
  msgstr ""
121
 
122
+ #: admin.inc.php:225
123
+ msgid ""
124
+ "These post types will be displayed in the list. Includes custom post types."
125
+ msgstr ""
126
+
127
+ #: admin.inc.php:228
128
  msgid "Find related posts based on content as well as title"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:230
132
  #, fuzzy
133
  msgid ""
134
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
138
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
139
  "preferibile attivare un plugin per la cache)"
140
 
141
+ #: admin.inc.php:233
142
+ msgid "Limit content to be compared"
143
+ msgstr ""
144
+
145
+ #: admin.inc.php:235
146
+ msgid ""
147
+ "This sets the maximum words of the content that will be matched. 0 means no "
148
+ "limit."
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:238
152
  msgid "List of post or page IDs to exclude from the results: "
153
  msgstr ""
154
 
155
+ #: admin.inc.php:240 admin.inc.php:327
156
+ msgid ""
157
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
158
  msgstr ""
159
 
160
  #: admin.inc.php:243
161
+ msgid "Categories to exclude from the results: "
162
+ msgstr ""
163
+
164
+ #: admin.inc.php:259
165
  msgid ""
166
  "Comma separated list of category slugs. The field above has an autocomplete "
167
  "so simply start typing in the starting letters and it will prompt you with "
168
  "options"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:262
172
  #, fuzzy
173
  msgid "Add related posts to:"
174
  msgstr "aggiungi gli articoli correlati al feed"
175
 
176
+ #: admin.inc.php:264
177
  msgid "Posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:265
181
  msgid "Pages"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:266
185
  msgid "Home page"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:267
189
  msgid "Feeds"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:268
193
  msgid "Category archives"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:269
197
  msgid "Tag archives"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:270
201
  msgid "Other archives"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:271
205
  #, fuzzy
206
  msgid ""
207
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
212
  "inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
213
  "(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
214
 
215
+ #: admin.inc.php:274
216
  msgid "Add a link to the plugin page as a final item in the list"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:276
220
  msgid " <em>Optional</em>"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:277
224
+ #, fuzzy
225
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
226
+ msgstr "Contextual Related Posts "
227
+
228
+ #: admin.inc.php:283
229
  #, fuzzy
230
  msgid "Output options"
231
  msgstr "Opzioni output:"
232
 
233
+ #: admin.inc.php:285
234
  msgid "Title of related posts: "
235
  msgstr "titolo per gli articoli correlati:"
236
 
237
+ #: admin.inc.php:288
238
+ msgid ""
239
+ "This is the main heading of the related posts. You can also display the "
240
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
241
+ "Posts to %postname%</code>"
242
+ msgstr ""
243
+
244
+ #: admin.inc.php:291
245
  msgid "When there are no posts, what should be shown?"
246
  msgstr "Cosa desideri mostrare in assenza di articoli?"
247
 
248
+ #: admin.inc.php:295
249
  msgid "Blank Output"
250
  msgstr "nulla"
251
 
252
+ #: admin.inc.php:299
253
  msgid "Display:"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:303 admin.inc.php:425
257
  msgid "Show post excerpt in list?"
258
  msgstr "Desideri mostrare gli estratti?"
259
 
260
+ #: admin.inc.php:306
261
  msgid "Length of excerpt (in words): "
262
  msgstr "Lunghezza estratto (in parole): "
263
 
264
+ #: admin.inc.php:309
265
  #, fuzzy
266
  msgid "Show post author in list?"
267
  msgstr "Desideri mostrare gli estratti?"
268
 
269
+ #: admin.inc.php:312
270
  #, fuzzy
271
  msgid "Show post date in list?"
272
  msgstr "Desideri mostrare gli estratti?"
273
 
274
+ #: admin.inc.php:315
275
  msgid "Limit post title length (in characters)"
276
  msgstr ""
277
 
278
+ #: admin.inc.php:318
279
  msgid "Open links in new window"
280
  msgstr ""
281
 
282
+ #: admin.inc.php:321
283
  msgid "Add nofollow attribute to links in the list"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:324
287
  #, fuzzy
288
  msgid "Exclude display of related posts on these posts / pages"
289
  msgstr "aggiungi gli articoli correlati al feed"
290
 
291
+ #: admin.inc.php:330
 
 
 
 
292
  msgid "Customize the output:"
293
  msgstr "Personalizzazione output:"
294
 
295
+ #: admin.inc.php:332
296
  msgid "HTML to display before the list of posts: "
297
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
298
 
299
+ #: admin.inc.php:335
300
  msgid "HTML to display before each list item: "
301
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
302
 
303
+ #: admin.inc.php:338
304
  msgid "HTML to display after each list item: "
305
  msgstr "HTML da mostrare dopo ogni lista:"
306
 
307
+ #: admin.inc.php:341
308
  msgid "HTML to display after the list of posts: "
309
  msgstr "HTML da mostrare dopo la lista degli articoli:"
310
 
311
+ #: admin.inc.php:344
312
  msgid "Post thumbnail options:"
313
  msgstr "Opzioni miniature articolo:"
314
 
315
+ #: admin.inc.php:346 admin.inc.php:428
316
  msgid "Location of post thumbnail:"
317
  msgstr ""
318
 
319
+ #: admin.inc.php:350 admin.inc.php:432
320
  #, fuzzy
321
  msgid "Display thumbnails inline with posts, before title"
322
  msgstr "Mostra gli articoli con le miniature inline"
323
 
324
+ #: admin.inc.php:354 admin.inc.php:436
325
  #, fuzzy
326
  msgid "Display thumbnails inline with posts, after title"
327
  msgstr "Mostra gli articoli con le miniature inline"
328
 
329
+ #: admin.inc.php:358 admin.inc.php:440
330
  msgid "Display only thumbnails, no text"
331
  msgstr "Mostra le sole miniature, nessun testo"
332
 
333
+ #: admin.inc.php:362 admin.inc.php:444
334
  msgid "Do not display thumbnails, only text."
335
  msgstr "Non mostrare le miniature, solo testo."
336
 
337
+ #: admin.inc.php:366 admin.inc.php:448
338
  msgid "Maximum width of the thumbnail: "
339
  msgstr ""
340
 
341
+ #: admin.inc.php:369 admin.inc.php:451
342
  msgid "Maximum height of the thumbnail: "
343
  msgstr ""
344
 
345
+ #: admin.inc.php:372
346
  msgid "Style attributes / Width and Height HTML attributes:"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:376
350
  msgid ""
351
  "Style attributes are used for width and height. <code>style=\"max-width:"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:380
355
  msgid ""
356
  "HTML width and height attributes are used for width and height. <code>width="
357
  "\""
358
  msgstr ""
359
 
360
+ #: admin.inc.php:384
361
  msgid "Use timthumb to generate thumbnails? "
362
  msgstr ""
363
 
364
+ #: admin.inc.php:386
365
  msgid ""
366
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
367
  "\">timthumb</a> will be used to generate thumbnails"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:389
371
  msgid "Quality of thumbnails generated by timthumb"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:392
375
  msgid ""
376
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
377
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
378
  msgstr ""
379
 
380
+ #: admin.inc.php:395
381
  #, fuzzy
382
  msgid "Post thumbnail meta field name: "
383
  msgstr "Opzioni miniature articolo:"
384
 
385
+ #: admin.inc.php:397
386
  msgid ""
387
  "The value of this field should contain the image source and is set in the "
388
  "<em>Add New Post</em> screen"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:400
392
  #, fuzzy
393
  msgid ""
394
  "If the postmeta is not set, then should the plugin extract the first image "
399
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
400
  "dimensioni"
401
 
402
+ #: admin.inc.php:402
403
  #, fuzzy
404
  msgid ""
405
  "This can slow down the loading of your page if the first image in the "
410
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
411
  "dimensioni"
412
 
413
+ #: admin.inc.php:405
414
  msgid "Use default thumbnail? "
415
  msgstr ""
416
 
417
+ #: admin.inc.php:407
418
  msgid ""
419
  "If checked, when no thumbnail is found, show a default one from the URL "
420
  "below. If not checked and no thumbnail is found, no image will be shown."
421
  msgstr ""
422
 
423
+ #: admin.inc.php:410
424
  msgid "Default thumbnail: "
425
  msgstr ""
426
 
427
+ #: admin.inc.php:412
428
  #, fuzzy
429
  msgid ""
430
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
436
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
437
  "specificato qui sotto:"
438
 
439
+ #: admin.inc.php:418
440
  #, fuzzy
441
  msgid "Feed options"
442
  msgstr "Opzioni:"
443
 
444
+ #: admin.inc.php:420
445
  msgid ""
446
  "Below options override the related posts settings for your blog feed. These "
447
  "only apply if you have selected to add related posts to Feeds in the General "
448
  "Options tab."
449
  msgstr ""
450
 
451
+ #: admin.inc.php:457
452
  msgid "Custom Styles"
453
  msgstr ""
454
 
455
+ #: admin.inc.php:459
456
  msgid "Custom CSS to add to header:"
457
  msgstr ""
458
 
459
+ #: admin.inc.php:462
460
  msgid ""
461
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
462
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
463
  "\">FAQ</a> for available CSS classes to style."
464
  msgstr ""
465
 
466
+ #: admin.inc.php:467
467
  #, fuzzy
468
  msgid "Save Options"
469
  msgstr "Opzioni:"
470
 
471
+ #: admin.inc.php:468
472
  #, fuzzy
473
  msgid "Default Options"
474
  msgstr "Opzioni output:"
475
 
476
+ #: admin.inc.php:468
477
  msgid "Do you want to set options to Default?"
478
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
479
 
480
+ #: admin.inc.php:469
481
  msgid "Recreate Index"
482
  msgstr ""
483
 
484
+ #: admin.inc.php:469
485
  msgid "Are you sure you want to recreate the index?"
486
  msgstr "Sei certo di volere ricreare l'indice?"
487
 
488
+ #: admin.inc.php:493
489
  msgid "Contextual Related Posts"
490
  msgstr "Contextual Related Posts"
491
 
492
+ #: admin.inc.php:493 contextual-related-posts.php:314
493
  msgid "Related Posts"
494
  msgstr "Related Posts"
495
 
496
+ #: admin.inc.php:506
497
  #, fuzzy
498
  msgid "plugin settings page"
499
  msgstr "pagina plugin"
500
 
501
+ #: admin.inc.php:511
502
  msgid ""
503
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
504
  "visit the "
505
  msgstr ""
506
 
507
+ #: admin.inc.php:511
508
  msgid " to configure."
509
  msgstr ""
510
 
511
+ #: admin.inc.php:575
512
  msgid ""
513
  "An error occurred clearing the cache. Please contact your site administrator."
514
  "\\n\\nError message:\\n"
515
  msgstr ""
516
 
517
+ #: admin.inc.php:581
518
  msgid " cached row(s) cleared"
519
  msgstr ""
520
 
521
  #: contextual-related-posts.php:123
522
+ msgid " by "
523
+ msgstr ""
 
524
 
525
  #: contextual-related-posts.php:138
526
  msgid "Powered by"
597
  msgid "No related posts found"
598
  msgstr "Non é stato trovato alcun articolo correlato"
599
 
600
+ #: contextual-related-posts.php:808
601
  msgid "Settings"
602
  msgstr "Impostazioni"
603
 
604
+ #: contextual-related-posts.php:831
605
  msgid "Donate"
606
  msgstr "Donazioni"
607
 
608
+ #, fuzzy
609
+ #~ msgid " Posted by "
610
+ #~ msgstr "Powered by"
611
+
612
  #~ msgid "Follow @ajaydsouza on Twitter"
613
  #~ msgstr "Segui @ajaydsouza su Twitter"
614
 
languages/crp-lt_LT.mo CHANGED
Binary file
languages/crp-lt_LT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-08-19 23:28-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -15,97 +15,118 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr "Opcijas veiksmīgi saglabāts."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Opcijas iestatīts uz Default."
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr "indekss pārbūvēts"
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr "Atbalstīt"
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr "Ievadiet summu USD:"
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr "Sūtiet savu ziedojumu autoram"
41
 
42
- #: admin.inc.php:174
43
  msgid "Quick Links"
44
  msgstr "Ātrās saites"
45
 
46
- #: admin.inc.php:176
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr "Konteksta saistītus amatus"
49
 
50
- #: admin.inc.php:177
51
  msgid "Other plugins"
52
  msgstr "citas plugins"
53
 
54
- #: admin.inc.php:178
55
  msgid "Ajay's blog"
56
  msgstr "Ajay blogs"
57
 
58
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
59
  msgid "Support"
60
  msgstr "atbalstīt"
61
 
62
- #: admin.inc.php:180
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
- #: admin.inc.php:184
67
  msgid "Recent developments"
68
  msgstr "Nesenie notikumi"
69
 
70
- #: admin.inc.php:194
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:196
75
  msgid "Cache output?"
76
  msgstr ""
77
 
78
- #: admin.inc.php:198
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:199
85
  msgid "Clear cache"
86
  msgstr ""
87
 
88
- #: admin.inc.php:202 admin.inc.php:402
89
  msgid "Number of related posts to display: "
90
  msgstr "Skaits saistītus amatus, lai parādītu:"
91
 
92
- #: admin.inc.php:205
 
 
 
 
 
 
93
  msgid "Related posts should be newer than:"
94
  msgstr ""
95
 
96
- #: admin.inc.php:206
97
  msgid "days"
98
  msgstr ""
99
 
100
- #: admin.inc.php:208
101
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
102
  msgstr ""
103
 
104
- #: admin.inc.php:219
 
 
 
 
 
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
- #: admin.inc.php:221
109
  #, fuzzy
110
  msgid ""
111
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -114,54 +135,69 @@ msgstr ""
114
  "Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
115
  "caching spraudnis, ja aktivizēsiet šo)"
116
 
117
- #: admin.inc.php:224
 
 
 
 
 
 
 
 
 
 
118
  msgid "List of post or page IDs to exclude from the results: "
119
  msgstr ""
120
 
121
- #: admin.inc.php:227
122
- msgid "Categories to exclude from the results: "
 
123
  msgstr ""
124
 
125
  #: admin.inc.php:243
 
 
 
 
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:246
133
  msgid "Add related posts to:"
134
  msgstr "Pievienot saistītus amatus barībā"
135
 
136
- #: admin.inc.php:248
137
  msgid "Posts"
138
  msgstr ""
139
 
140
- #: admin.inc.php:249
141
  msgid "Pages"
142
  msgstr ""
143
 
144
- #: admin.inc.php:250
145
  msgid "Home page"
146
  msgstr ""
147
 
148
- #: admin.inc.php:251
149
  msgid "Feeds"
150
  msgstr ""
151
 
152
- #: admin.inc.php:252
153
  msgid "Category archives"
154
  msgstr ""
155
 
156
- #: admin.inc.php:253
157
  msgid "Tag archives"
158
  msgstr ""
159
 
160
- #: admin.inc.php:254
161
  msgid "Other archives"
162
  msgstr ""
163
 
164
- #: admin.inc.php:255
165
  msgid ""
166
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
167
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
@@ -171,177 +207,185 @@ msgstr ""
171
  "(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
172
  "vēlaties to parādīt"
173
 
174
- #: admin.inc.php:258
175
  msgid "Add a link to the plugin page as a final item in the list"
176
  msgstr ""
177
 
178
- #: admin.inc.php:259
179
  msgid " <em>Optional</em>"
180
  msgstr ""
181
 
182
- #: admin.inc.php:266
 
 
 
 
 
183
  msgid "Output options"
184
  msgstr "Izejas opcijas:"
185
 
186
- #: admin.inc.php:268
187
  msgid "Title of related posts: "
188
  msgstr "Nosaukums saistītus amatus:"
189
 
190
- #: admin.inc.php:271
 
 
 
 
 
 
 
191
  msgid "When there are no posts, what should be shown?"
192
  msgstr "Ja nav amati, kas būtu redzams?"
193
 
194
- #: admin.inc.php:275
195
  msgid "Blank Output"
196
  msgstr "tukša izeja"
197
 
198
- #: admin.inc.php:279
199
  msgid "Display:"
200
  msgstr ""
201
 
202
- #: admin.inc.php:283 admin.inc.php:405
203
  msgid "Show post excerpt in list?"
204
  msgstr "Rādīt post izvilkumu sarakstā?"
205
 
206
- #: admin.inc.php:286
207
  msgid "Length of excerpt (in words): "
208
  msgstr "Garums izrakstā (vārdiem)"
209
 
210
- #: admin.inc.php:289
211
  #, fuzzy
212
  msgid "Show post author in list?"
213
  msgstr "Rādīt post izvilkumu sarakstā?"
214
 
215
- #: admin.inc.php:292
216
  #, fuzzy
217
  msgid "Show post date in list?"
218
  msgstr "Rādīt post izvilkumu sarakstā?"
219
 
220
- #: admin.inc.php:295
221
  msgid "Limit post title length (in characters)"
222
  msgstr ""
223
 
224
- #: admin.inc.php:298
225
  msgid "Open links in new window"
226
  msgstr ""
227
 
228
- #: admin.inc.php:301
229
  msgid "Add nofollow attribute to links in the list"
230
  msgstr ""
231
 
232
- #: admin.inc.php:304
233
  msgid "Exclude display of related posts on these posts / pages"
234
  msgstr "Pievienot saistītus amatus barībā"
235
 
236
- #: admin.inc.php:307
237
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
238
- msgstr ""
239
-
240
- #: admin.inc.php:310
241
  msgid "Customize the output:"
242
  msgstr "Pielāgot izejas:"
243
 
244
- #: admin.inc.php:312
245
  msgid "HTML to display before the list of posts: "
246
  msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
247
 
248
- #: admin.inc.php:315
249
  msgid "HTML to display before each list item: "
250
  msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
251
 
252
- #: admin.inc.php:318
253
  msgid "HTML to display after each list item: "
254
  msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
255
 
256
- #: admin.inc.php:321
257
  msgid "HTML to display after the list of posts: "
258
  msgstr "HTML, lai parādītu pēc amatu sarakstā:"
259
 
260
- #: admin.inc.php:324
261
  msgid "Post thumbnail options:"
262
  msgstr "Post sīktēlu iespējas:"
263
 
264
- #: admin.inc.php:326 admin.inc.php:408
265
  msgid "Location of post thumbnail:"
266
  msgstr ""
267
 
268
- #: admin.inc.php:330 admin.inc.php:412
269
  msgid "Display thumbnails inline with posts, before title"
270
  msgstr "Rādīt skices ar ziņojumiem"
271
 
272
- #: admin.inc.php:334 admin.inc.php:416
273
  msgid "Display thumbnails inline with posts, after title"
274
  msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
275
 
276
- #: admin.inc.php:338 admin.inc.php:420
277
  msgid "Display only thumbnails, no text"
278
  msgstr "Attēlotu tikai sīktēlus, teksts"
279
 
280
- #: admin.inc.php:342 admin.inc.php:424
281
  msgid "Do not display thumbnails, only text."
282
  msgstr "Nerādīt sīktēlus, tikai tekstu."
283
 
284
- #: admin.inc.php:346 admin.inc.php:428
285
  msgid "Maximum width of the thumbnail: "
286
  msgstr ""
287
 
288
- #: admin.inc.php:349 admin.inc.php:431
289
  msgid "Maximum height of the thumbnail: "
290
  msgstr ""
291
 
292
- #: admin.inc.php:352
293
  msgid "Style attributes / Width and Height HTML attributes:"
294
  msgstr ""
295
 
296
- #: admin.inc.php:356
297
  msgid ""
298
  "Style attributes are used for width and height. <code>style=\"max-width:"
299
  msgstr ""
300
 
301
- #: admin.inc.php:360
302
  msgid ""
303
  "HTML width and height attributes are used for width and height. <code>width="
304
  "\""
305
  msgstr ""
306
 
307
- #: admin.inc.php:364
308
  msgid "Use timthumb to generate thumbnails? "
309
  msgstr ""
310
 
311
- #: admin.inc.php:366
312
  msgid ""
313
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
314
  "\">timthumb</a> will be used to generate thumbnails"
315
  msgstr ""
316
 
317
- #: admin.inc.php:369
318
  msgid "Quality of thumbnails generated by timthumb"
319
  msgstr ""
320
 
321
- #: admin.inc.php:372
322
  msgid ""
323
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
324
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
325
  msgstr ""
326
 
327
- #: admin.inc.php:375
328
  msgid "Post thumbnail meta field name: "
329
  msgstr "Attēlu rīki post:"
330
 
331
- #: admin.inc.php:377
332
  msgid ""
333
  "The value of this field should contain the image source and is set in the "
334
  "<em>Add New Post</em> screen"
335
  msgstr ""
336
 
337
- #: admin.inc.php:380
338
  msgid ""
339
  "If the postmeta is not set, then should the plugin extract the first image "
340
  "from the post?"
341
  msgstr ""
342
  "Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
343
 
344
- #: admin.inc.php:382
345
  msgid ""
346
  "This can slow down the loading of your page if the first image in the "
347
  "related posts is large in file-size"
@@ -349,21 +393,21 @@ msgstr ""
349
  "Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
350
  "liela faila izmēra"
351
 
352
- #: admin.inc.php:385
353
  msgid "Use default thumbnail? "
354
  msgstr ""
355
 
356
- #: admin.inc.php:387
357
  msgid ""
358
  "If checked, when no thumbnail is found, show a default one from the URL "
359
  "below. If not checked and no thumbnail is found, no image will be shown."
360
  msgstr ""
361
 
362
- #: admin.inc.php:390
363
  msgid "Default thumbnail: "
364
  msgstr ""
365
 
366
- #: admin.inc.php:392
367
  msgid ""
368
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
369
  "then it will check the meta field. If this is not available, then it will "
@@ -373,88 +417,87 @@ msgstr ""
373
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
374
  "noklusējuma attēlu, kā minēts iepriekš"
375
 
376
- #: admin.inc.php:398
377
  msgid "Feed options"
378
  msgstr "Iespējas:"
379
 
380
- #: admin.inc.php:400
381
  msgid ""
382
  "Below options override the related posts settings for your blog feed. These "
383
  "only apply if you have selected to add related posts to Feeds in the General "
384
  "Options tab."
385
  msgstr ""
386
 
387
- #: admin.inc.php:437
388
  msgid "Custom Styles"
389
  msgstr ""
390
 
391
- #: admin.inc.php:439
392
  msgid "Custom CSS to add to header:"
393
  msgstr ""
394
 
395
- #: admin.inc.php:442
396
  msgid ""
397
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
398
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
399
  "\">FAQ</a> for available CSS classes to style."
400
  msgstr ""
401
 
402
- #: admin.inc.php:447
403
  msgid "Save Options"
404
  msgstr "Saglabāt opcijas"
405
 
406
- #: admin.inc.php:448
407
  msgid "Default Options"
408
  msgstr "noklusējuma opcijas"
409
 
410
- #: admin.inc.php:448
411
  msgid "Do you want to set options to Default?"
412
  msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
413
 
414
- #: admin.inc.php:449
415
  msgid "Recreate Index"
416
  msgstr ""
417
 
418
- #: admin.inc.php:449
419
  msgid "Are you sure you want to recreate the index?"
420
  msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
421
 
422
- #: admin.inc.php:473
423
  msgid "Contextual Related Posts"
424
  msgstr "Konteksta Related Posts"
425
 
426
- #: admin.inc.php:473 contextual-related-posts.php:314
427
  msgid "Related Posts"
428
  msgstr "Related Posts"
429
 
430
- #: admin.inc.php:486
431
  msgid "plugin settings page"
432
  msgstr "spraudnis iestatījumu lapa"
433
 
434
- #: admin.inc.php:491
435
  msgid ""
436
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
437
  "visit the "
438
  msgstr ""
439
 
440
- #: admin.inc.php:491
441
  msgid " to configure."
442
  msgstr ""
443
 
444
- #: admin.inc.php:555
445
  msgid ""
446
  "An error occurred clearing the cache. Please contact your site administrator."
447
  "\\n\\nError message:\\n"
448
  msgstr ""
449
 
450
- #: admin.inc.php:561
451
  msgid " cached row(s) cleared"
452
  msgstr ""
453
 
454
  #: contextual-related-posts.php:123
455
- #, fuzzy
456
- msgid " Posted by "
457
- msgstr "Powered by"
458
 
459
  #: contextual-related-posts.php:138
460
  msgid "Powered by"
@@ -521,14 +564,18 @@ msgstr "<h3>saistīta posts:</h3>"
521
  msgid "No related posts found"
522
  msgstr "Nr saistītus amatus atrasts"
523
 
524
- #: contextual-related-posts.php:807
525
  msgid "Settings"
526
  msgstr "iestatījumi"
527
 
528
- #: contextual-related-posts.php:830
529
  msgid "Donate"
530
  msgstr "ziedot"
531
 
 
 
 
 
532
  #~ msgid "Follow @ajaydsouza on Twitter"
533
  #~ msgstr "Следовать @ajaydsouza на Твиттере"
534
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:11-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr "Opcijas veiksmīgi saglabāts."
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr "Opcijas iestatīts uz Default."
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr "indekss pārbūvēts"
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr "Atbalstīt"
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr "Ievadiet summu USD:"
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr "Sūtiet savu ziedojumu autoram"
41
 
42
+ #: admin.inc.php:175
43
  msgid "Quick Links"
44
  msgstr "Ātrās saites"
45
 
46
+ #: admin.inc.php:177
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr "Konteksta saistītus amatus"
49
 
50
+ #: admin.inc.php:178
51
  msgid "Other plugins"
52
  msgstr "citas plugins"
53
 
54
+ #: admin.inc.php:179
55
  msgid "Ajay's blog"
56
  msgstr "Ajay blogs"
57
 
58
+ #: admin.inc.php:180
59
+ msgid "FAQ"
60
+ msgstr ""
61
+
62
+ #: admin.inc.php:181 contextual-related-posts.php:830
63
  msgid "Support"
64
  msgstr "atbalstīt"
65
 
66
+ #: admin.inc.php:182
67
  msgid "Reviews"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:186
71
  msgid "Recent developments"
72
  msgstr "Nesenie notikumi"
73
 
74
+ #: admin.inc.php:196
75
  msgid "General options"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:198
79
  msgid "Cache output?"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:200
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:201
89
  msgid "Clear cache"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:204 admin.inc.php:422
93
  msgid "Number of related posts to display: "
94
  msgstr "Skaits saistītus amatus, lai parādītu:"
95
 
96
+ #: admin.inc.php:207
97
+ msgid ""
98
+ "Maximum number of posts that will be displayed. The actual number may be "
99
+ "smaller if less related posts are found."
100
+ msgstr ""
101
+
102
+ #: admin.inc.php:210
103
  msgid "Related posts should be newer than:"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:212
107
  msgid "days"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:213
111
+ msgid ""
112
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
113
+ "it to 365 will show related posts from the last year only."
114
+ msgstr ""
115
+
116
+ #: admin.inc.php:216
117
+ msgid "Post types to include in results."
118
  msgstr ""
119
 
120
+ #: admin.inc.php:225
121
+ msgid ""
122
+ "These post types will be displayed in the list. Includes custom post types."
123
+ msgstr ""
124
+
125
+ #: admin.inc.php:228
126
  msgid "Find related posts based on content as well as title"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:230
130
  #, fuzzy
131
  msgid ""
132
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
135
  "Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
136
  "caching spraudnis, ja aktivizēsiet šo)"
137
 
138
+ #: admin.inc.php:233
139
+ msgid "Limit content to be compared"
140
+ msgstr ""
141
+
142
+ #: admin.inc.php:235
143
+ msgid ""
144
+ "This sets the maximum words of the content that will be matched. 0 means no "
145
+ "limit."
146
+ msgstr ""
147
+
148
+ #: admin.inc.php:238
149
  msgid "List of post or page IDs to exclude from the results: "
150
  msgstr ""
151
 
152
+ #: admin.inc.php:240 admin.inc.php:327
153
+ msgid ""
154
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
155
  msgstr ""
156
 
157
  #: admin.inc.php:243
158
+ msgid "Categories to exclude from the results: "
159
+ msgstr ""
160
+
161
+ #: admin.inc.php:259
162
  msgid ""
163
  "Comma separated list of category slugs. The field above has an autocomplete "
164
  "so simply start typing in the starting letters and it will prompt you with "
165
  "options"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:262
169
  msgid "Add related posts to:"
170
  msgstr "Pievienot saistītus amatus barībā"
171
 
172
+ #: admin.inc.php:264
173
  msgid "Posts"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:265
177
  msgid "Pages"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:266
181
  msgid "Home page"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:267
185
  msgid "Feeds"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:268
189
  msgid "Category archives"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:269
193
  msgid "Tag archives"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:270
197
  msgid "Other archives"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:271
201
  msgid ""
202
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
203
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
207
  "(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
208
  "vēlaties to parādīt"
209
 
210
+ #: admin.inc.php:274
211
  msgid "Add a link to the plugin page as a final item in the list"
212
  msgstr ""
213
 
214
+ #: admin.inc.php:276
215
  msgid " <em>Optional</em>"
216
  msgstr ""
217
 
218
+ #: admin.inc.php:277
219
+ #, fuzzy
220
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
221
+ msgstr "Konteksta saistītus amatus"
222
+
223
+ #: admin.inc.php:283
224
  msgid "Output options"
225
  msgstr "Izejas opcijas:"
226
 
227
+ #: admin.inc.php:285
228
  msgid "Title of related posts: "
229
  msgstr "Nosaukums saistītus amatus:"
230
 
231
+ #: admin.inc.php:288
232
+ msgid ""
233
+ "This is the main heading of the related posts. You can also display the "
234
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
235
+ "Posts to %postname%</code>"
236
+ msgstr ""
237
+
238
+ #: admin.inc.php:291
239
  msgid "When there are no posts, what should be shown?"
240
  msgstr "Ja nav amati, kas būtu redzams?"
241
 
242
+ #: admin.inc.php:295
243
  msgid "Blank Output"
244
  msgstr "tukša izeja"
245
 
246
+ #: admin.inc.php:299
247
  msgid "Display:"
248
  msgstr ""
249
 
250
+ #: admin.inc.php:303 admin.inc.php:425
251
  msgid "Show post excerpt in list?"
252
  msgstr "Rādīt post izvilkumu sarakstā?"
253
 
254
+ #: admin.inc.php:306
255
  msgid "Length of excerpt (in words): "
256
  msgstr "Garums izrakstā (vārdiem)"
257
 
258
+ #: admin.inc.php:309
259
  #, fuzzy
260
  msgid "Show post author in list?"
261
  msgstr "Rādīt post izvilkumu sarakstā?"
262
 
263
+ #: admin.inc.php:312
264
  #, fuzzy
265
  msgid "Show post date in list?"
266
  msgstr "Rādīt post izvilkumu sarakstā?"
267
 
268
+ #: admin.inc.php:315
269
  msgid "Limit post title length (in characters)"
270
  msgstr ""
271
 
272
+ #: admin.inc.php:318
273
  msgid "Open links in new window"
274
  msgstr ""
275
 
276
+ #: admin.inc.php:321
277
  msgid "Add nofollow attribute to links in the list"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:324
281
  msgid "Exclude display of related posts on these posts / pages"
282
  msgstr "Pievienot saistītus amatus barībā"
283
 
284
+ #: admin.inc.php:330
 
 
 
 
285
  msgid "Customize the output:"
286
  msgstr "Pielāgot izejas:"
287
 
288
+ #: admin.inc.php:332
289
  msgid "HTML to display before the list of posts: "
290
  msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
291
 
292
+ #: admin.inc.php:335
293
  msgid "HTML to display before each list item: "
294
  msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
295
 
296
+ #: admin.inc.php:338
297
  msgid "HTML to display after each list item: "
298
  msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
299
 
300
+ #: admin.inc.php:341
301
  msgid "HTML to display after the list of posts: "
302
  msgstr "HTML, lai parādītu pēc amatu sarakstā:"
303
 
304
+ #: admin.inc.php:344
305
  msgid "Post thumbnail options:"
306
  msgstr "Post sīktēlu iespējas:"
307
 
308
+ #: admin.inc.php:346 admin.inc.php:428
309
  msgid "Location of post thumbnail:"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:350 admin.inc.php:432
313
  msgid "Display thumbnails inline with posts, before title"
314
  msgstr "Rādīt skices ar ziņojumiem"
315
 
316
+ #: admin.inc.php:354 admin.inc.php:436
317
  msgid "Display thumbnails inline with posts, after title"
318
  msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
319
 
320
+ #: admin.inc.php:358 admin.inc.php:440
321
  msgid "Display only thumbnails, no text"
322
  msgstr "Attēlotu tikai sīktēlus, teksts"
323
 
324
+ #: admin.inc.php:362 admin.inc.php:444
325
  msgid "Do not display thumbnails, only text."
326
  msgstr "Nerādīt sīktēlus, tikai tekstu."
327
 
328
+ #: admin.inc.php:366 admin.inc.php:448
329
  msgid "Maximum width of the thumbnail: "
330
  msgstr ""
331
 
332
+ #: admin.inc.php:369 admin.inc.php:451
333
  msgid "Maximum height of the thumbnail: "
334
  msgstr ""
335
 
336
+ #: admin.inc.php:372
337
  msgid "Style attributes / Width and Height HTML attributes:"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:376
341
  msgid ""
342
  "Style attributes are used for width and height. <code>style=\"max-width:"
343
  msgstr ""
344
 
345
+ #: admin.inc.php:380
346
  msgid ""
347
  "HTML width and height attributes are used for width and height. <code>width="
348
  "\""
349
  msgstr ""
350
 
351
+ #: admin.inc.php:384
352
  msgid "Use timthumb to generate thumbnails? "
353
  msgstr ""
354
 
355
+ #: admin.inc.php:386
356
  msgid ""
357
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
358
  "\">timthumb</a> will be used to generate thumbnails"
359
  msgstr ""
360
 
361
+ #: admin.inc.php:389
362
  msgid "Quality of thumbnails generated by timthumb"
363
  msgstr ""
364
 
365
+ #: admin.inc.php:392
366
  msgid ""
367
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
368
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
369
  msgstr ""
370
 
371
+ #: admin.inc.php:395
372
  msgid "Post thumbnail meta field name: "
373
  msgstr "Attēlu rīki post:"
374
 
375
+ #: admin.inc.php:397
376
  msgid ""
377
  "The value of this field should contain the image source and is set in the "
378
  "<em>Add New Post</em> screen"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:400
382
  msgid ""
383
  "If the postmeta is not set, then should the plugin extract the first image "
384
  "from the post?"
385
  msgstr ""
386
  "Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
387
 
388
+ #: admin.inc.php:402
389
  msgid ""
390
  "This can slow down the loading of your page if the first image in the "
391
  "related posts is large in file-size"
393
  "Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
394
  "liela faila izmēra"
395
 
396
+ #: admin.inc.php:405
397
  msgid "Use default thumbnail? "
398
  msgstr ""
399
 
400
+ #: admin.inc.php:407
401
  msgid ""
402
  "If checked, when no thumbnail is found, show a default one from the URL "
403
  "below. If not checked and no thumbnail is found, no image will be shown."
404
  msgstr ""
405
 
406
+ #: admin.inc.php:410
407
  msgid "Default thumbnail: "
408
  msgstr ""
409
 
410
+ #: admin.inc.php:412
411
  msgid ""
412
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
413
  "then it will check the meta field. If this is not available, then it will "
417
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
418
  "noklusējuma attēlu, kā minēts iepriekš"
419
 
420
+ #: admin.inc.php:418
421
  msgid "Feed options"
422
  msgstr "Iespējas:"
423
 
424
+ #: admin.inc.php:420
425
  msgid ""
426
  "Below options override the related posts settings for your blog feed. These "
427
  "only apply if you have selected to add related posts to Feeds in the General "
428
  "Options tab."
429
  msgstr ""
430
 
431
+ #: admin.inc.php:457
432
  msgid "Custom Styles"
433
  msgstr ""
434
 
435
+ #: admin.inc.php:459
436
  msgid "Custom CSS to add to header:"
437
  msgstr ""
438
 
439
+ #: admin.inc.php:462
440
  msgid ""
441
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
442
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
443
  "\">FAQ</a> for available CSS classes to style."
444
  msgstr ""
445
 
446
+ #: admin.inc.php:467
447
  msgid "Save Options"
448
  msgstr "Saglabāt opcijas"
449
 
450
+ #: admin.inc.php:468
451
  msgid "Default Options"
452
  msgstr "noklusējuma opcijas"
453
 
454
+ #: admin.inc.php:468
455
  msgid "Do you want to set options to Default?"
456
  msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
457
 
458
+ #: admin.inc.php:469
459
  msgid "Recreate Index"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:469
463
  msgid "Are you sure you want to recreate the index?"
464
  msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
465
 
466
+ #: admin.inc.php:493
467
  msgid "Contextual Related Posts"
468
  msgstr "Konteksta Related Posts"
469
 
470
+ #: admin.inc.php:493 contextual-related-posts.php:314
471
  msgid "Related Posts"
472
  msgstr "Related Posts"
473
 
474
+ #: admin.inc.php:506
475
  msgid "plugin settings page"
476
  msgstr "spraudnis iestatījumu lapa"
477
 
478
+ #: admin.inc.php:511
479
  msgid ""
480
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
481
  "visit the "
482
  msgstr ""
483
 
484
+ #: admin.inc.php:511
485
  msgid " to configure."
486
  msgstr ""
487
 
488
+ #: admin.inc.php:575
489
  msgid ""
490
  "An error occurred clearing the cache. Please contact your site administrator."
491
  "\\n\\nError message:\\n"
492
  msgstr ""
493
 
494
+ #: admin.inc.php:581
495
  msgid " cached row(s) cleared"
496
  msgstr ""
497
 
498
  #: contextual-related-posts.php:123
499
+ msgid " by "
500
+ msgstr ""
 
501
 
502
  #: contextual-related-posts.php:138
503
  msgid "Powered by"
564
  msgid "No related posts found"
565
  msgstr "Nr saistītus amatus atrasts"
566
 
567
+ #: contextual-related-posts.php:808
568
  msgid "Settings"
569
  msgstr "iestatījumi"
570
 
571
+ #: contextual-related-posts.php:831
572
  msgid "Donate"
573
  msgstr "ziedot"
574
 
575
+ #, fuzzy
576
+ #~ msgid " Posted by "
577
+ #~ msgstr "Powered by"
578
+
579
  #~ msgid "Follow @ajaydsouza on Twitter"
580
  #~ msgstr "Следовать @ajaydsouza на Твиттере"
581
 
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-08-19 23:28-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"
@@ -17,99 +17,120 @@ msgstr ""
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:106
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
- #: admin.inc.php:122
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
- #: admin.inc.php:138
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
- #: admin.inc.php:151
33
  msgid "Support the development"
34
  msgstr "Ondersteun de ontwikkeling"
35
 
36
- #: admin.inc.php:159
37
  msgid "Enter amount in USD: "
38
  msgstr "Voer het bedrag in USD in:"
39
 
40
- #: admin.inc.php:163
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
- #: admin.inc.php:174
45
  #, fuzzy
46
  msgid "Quick Links"
47
  msgstr "Quick links"
48
 
49
- #: admin.inc.php:176
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Contextual Related Posts "
53
 
54
- #: admin.inc.php:177
55
  msgid "Other plugins"
56
  msgstr "Andere plugins"
57
 
58
- #: admin.inc.php:178
59
  msgid "Ajay's blog"
60
  msgstr "Ajay's blog"
61
 
62
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
63
  msgid "Support"
64
  msgstr "Ondersteuning"
65
 
66
- #: admin.inc.php:180
67
  msgid "Reviews"
68
  msgstr ""
69
 
70
- #: admin.inc.php:184
71
  msgid "Recent developments"
72
  msgstr "Recente ontwikkelingen"
73
 
74
- #: admin.inc.php:194
75
  msgid "General options"
76
  msgstr ""
77
 
78
- #: admin.inc.php:196
79
  msgid "Cache output?"
80
  msgstr ""
81
 
82
- #: admin.inc.php:198
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:199
89
  msgid "Clear cache"
90
  msgstr ""
91
 
92
- #: admin.inc.php:202 admin.inc.php:402
93
  msgid "Number of related posts to display: "
94
  msgstr "Aantal weer te geven gerelateerde berichten:"
95
 
96
- #: admin.inc.php:205
 
 
 
 
 
 
97
  msgid "Related posts should be newer than:"
98
  msgstr ""
99
 
100
- #: admin.inc.php:206
101
  msgid "days"
102
  msgstr ""
103
 
104
- #: admin.inc.php:208
105
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
106
  msgstr ""
107
 
108
- #: admin.inc.php:219
 
 
 
 
 
109
  msgid "Find related posts based on content as well as title"
110
  msgstr ""
111
 
112
- #: admin.inc.php:221
113
  #, fuzzy
114
  msgid ""
115
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -119,55 +140,70 @@ msgstr ""
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:224
 
 
 
 
 
 
 
 
 
 
123
  msgid "List of post or page IDs to exclude from the results: "
124
  msgstr ""
125
 
126
- #: admin.inc.php:227
127
- msgid "Categories to exclude from the results: "
 
128
  msgstr ""
129
 
130
  #: admin.inc.php:243
 
 
 
 
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:246
138
  #, fuzzy
139
  msgid "Add related posts to:"
140
  msgstr "Voeg gerelateerde berichten toe aan feed"
141
 
142
- #: admin.inc.php:248
143
  msgid "Posts"
144
  msgstr ""
145
 
146
- #: admin.inc.php:249
147
  msgid "Pages"
148
  msgstr ""
149
 
150
- #: admin.inc.php:250
151
  msgid "Home page"
152
  msgstr ""
153
 
154
- #: admin.inc.php:251
155
  msgid "Feeds"
156
  msgstr ""
157
 
158
- #: admin.inc.php:252
159
  msgid "Category archives"
160
  msgstr ""
161
 
162
- #: admin.inc.php:253
163
  msgid "Tag archives"
164
  msgstr ""
165
 
166
- #: admin.inc.php:254
167
  msgid "Other archives"
168
  msgstr ""
169
 
170
- #: admin.inc.php:255
171
  #, fuzzy
172
  msgid ""
173
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -179,175 +215,183 @@ msgstr ""
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:258
183
  msgid "Add a link to the plugin page as a final item in the list"
184
  msgstr ""
185
 
186
- #: admin.inc.php:259
187
  msgid " <em>Optional</em>"
188
  msgstr ""
189
 
190
- #: admin.inc.php:266
 
 
 
 
 
191
  #, fuzzy
192
  msgid "Output options"
193
  msgstr "Output Opties:"
194
 
195
- #: admin.inc.php:268
196
  msgid "Title of related posts: "
197
  msgstr "Titel van gerelateerde berichten:"
198
 
199
- #: admin.inc.php:271
 
 
 
 
 
 
 
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:275
204
  msgid "Blank Output"
205
  msgstr "Lege Output"
206
 
207
- #: admin.inc.php:279
208
  msgid "Display:"
209
  msgstr ""
210
 
211
- #: admin.inc.php:283 admin.inc.php:405
212
  msgid "Show post excerpt in list?"
213
  msgstr "Laat bericht uittreksel zien in lijst?"
214
 
215
- #: admin.inc.php:286
216
  msgid "Length of excerpt (in words): "
217
  msgstr "Lengte van uittreksel (in woorden):"
218
 
219
- #: admin.inc.php:289
220
  #, fuzzy
221
  msgid "Show post author in list?"
222
  msgstr "Laat bericht uittreksel zien in lijst?"
223
 
224
- #: admin.inc.php:292
225
  #, fuzzy
226
  msgid "Show post date in list?"
227
  msgstr "Laat bericht uittreksel zien in lijst?"
228
 
229
- #: admin.inc.php:295
230
  msgid "Limit post title length (in characters)"
231
  msgstr ""
232
 
233
- #: admin.inc.php:298
234
  msgid "Open links in new window"
235
  msgstr ""
236
 
237
- #: admin.inc.php:301
238
  msgid "Add nofollow attribute to links in the list"
239
  msgstr ""
240
 
241
- #: admin.inc.php:304
242
  #, fuzzy
243
  msgid "Exclude display of related posts on these posts / pages"
244
  msgstr "Voeg gerelateerde berichten toe aan feed"
245
 
246
- #: admin.inc.php:307
247
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
248
- msgstr ""
249
-
250
- #: admin.inc.php:310
251
  msgid "Customize the output:"
252
  msgstr "Aanpassen van de output:"
253
 
254
- #: admin.inc.php:312
255
  msgid "HTML to display before the list of posts: "
256
  msgstr "Weer te geven HTML voor de berichtenlijst:"
257
 
258
- #: admin.inc.php:315
259
  msgid "HTML to display before each list item: "
260
  msgstr "Weer te geven HTML voor elk item in de lijst:"
261
 
262
- #: admin.inc.php:318
263
  msgid "HTML to display after each list item: "
264
  msgstr "Weer te geven HTML na elk item in de lijst:"
265
 
266
- #: admin.inc.php:321
267
  msgid "HTML to display after the list of posts: "
268
  msgstr "Weer te geven HTML na de berichtenlijst:"
269
 
270
- #: admin.inc.php:324
271
  msgid "Post thumbnail options:"
272
  msgstr "Berichtopties miniatuurafbeelding:"
273
 
274
- #: admin.inc.php:326 admin.inc.php:408
275
  msgid "Location of post thumbnail:"
276
  msgstr ""
277
 
278
- #: admin.inc.php:330 admin.inc.php:412
279
  #, fuzzy
280
  msgid "Display thumbnails inline with posts, before title"
281
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
282
 
283
- #: admin.inc.php:334 admin.inc.php:416
284
  #, fuzzy
285
  msgid "Display thumbnails inline with posts, after title"
286
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
287
 
288
- #: admin.inc.php:338 admin.inc.php:420
289
  msgid "Display only thumbnails, no text"
290
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
291
 
292
- #: admin.inc.php:342 admin.inc.php:424
293
  msgid "Do not display thumbnails, only text."
294
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
295
 
296
- #: admin.inc.php:346 admin.inc.php:428
297
  msgid "Maximum width of the thumbnail: "
298
  msgstr ""
299
 
300
- #: admin.inc.php:349 admin.inc.php:431
301
  msgid "Maximum height of the thumbnail: "
302
  msgstr ""
303
 
304
- #: admin.inc.php:352
305
  msgid "Style attributes / Width and Height HTML attributes:"
306
  msgstr ""
307
 
308
- #: admin.inc.php:356
309
  msgid ""
310
  "Style attributes are used for width and height. <code>style=\"max-width:"
311
  msgstr ""
312
 
313
- #: admin.inc.php:360
314
  msgid ""
315
  "HTML width and height attributes are used for width and height. <code>width="
316
  "\""
317
  msgstr ""
318
 
319
- #: admin.inc.php:364
320
  msgid "Use timthumb to generate thumbnails? "
321
  msgstr ""
322
 
323
- #: admin.inc.php:366
324
  msgid ""
325
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
326
  "\">timthumb</a> will be used to generate thumbnails"
327
  msgstr ""
328
 
329
- #: admin.inc.php:369
330
  msgid "Quality of thumbnails generated by timthumb"
331
  msgstr ""
332
 
333
- #: admin.inc.php:372
334
  msgid ""
335
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
336
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
337
  msgstr ""
338
 
339
- #: admin.inc.php:375
340
  #, fuzzy
341
  msgid "Post thumbnail meta field name: "
342
  msgstr "Berichtopties miniatuurafbeelding:"
343
 
344
- #: admin.inc.php:377
345
  msgid ""
346
  "The value of this field should contain the image source and is set in the "
347
  "<em>Add New Post</em> screen"
348
  msgstr ""
349
 
350
- #: admin.inc.php:380
351
  #, fuzzy
352
  msgid ""
353
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -357,7 +401,7 @@ msgstr ""
357
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
358
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
359
 
360
- #: admin.inc.php:382
361
  #, fuzzy
362
  msgid ""
363
  "This can slow down the loading of your page if the first image in the "
@@ -367,21 +411,21 @@ msgstr ""
367
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
368
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
369
 
370
- #: admin.inc.php:385
371
  msgid "Use default thumbnail? "
372
  msgstr ""
373
 
374
- #: admin.inc.php:387
375
  msgid ""
376
  "If checked, when no thumbnail is found, show a default one from the URL "
377
  "below. If not checked and no thumbnail is found, no image will be shown."
378
  msgstr ""
379
 
380
- #: admin.inc.php:390
381
  msgid "Default thumbnail: "
382
  msgstr ""
383
 
384
- #: admin.inc.php:392
385
  #, fuzzy
386
  msgid ""
387
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -393,92 +437,91 @@ msgstr ""
393
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
394
  "hieronder aangegeven:"
395
 
396
- #: admin.inc.php:398
397
  #, fuzzy
398
  msgid "Feed options"
399
  msgstr "Opties:"
400
 
401
- #: admin.inc.php:400
402
  msgid ""
403
  "Below options override the related posts settings for your blog feed. These "
404
  "only apply if you have selected to add related posts to Feeds in the General "
405
  "Options tab."
406
  msgstr ""
407
 
408
- #: admin.inc.php:437
409
  msgid "Custom Styles"
410
  msgstr ""
411
 
412
- #: admin.inc.php:439
413
  msgid "Custom CSS to add to header:"
414
  msgstr ""
415
 
416
- #: admin.inc.php:442
417
  msgid ""
418
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
419
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
420
  "\">FAQ</a> for available CSS classes to style."
421
  msgstr ""
422
 
423
- #: admin.inc.php:447
424
  #, fuzzy
425
  msgid "Save Options"
426
  msgstr "Opties:"
427
 
428
- #: admin.inc.php:448
429
  #, fuzzy
430
  msgid "Default Options"
431
  msgstr "Output Opties:"
432
 
433
- #: admin.inc.php:448
434
  msgid "Do you want to set options to Default?"
435
  msgstr "Wil je opties terug naar standaard instellen?"
436
 
437
- #: admin.inc.php:449
438
  msgid "Recreate Index"
439
  msgstr ""
440
 
441
- #: admin.inc.php:449
442
  msgid "Are you sure you want to recreate the index?"
443
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
444
 
445
- #: admin.inc.php:473
446
  msgid "Contextual Related Posts"
447
  msgstr "Contextual Related Posts"
448
 
449
- #: admin.inc.php:473 contextual-related-posts.php:314
450
  msgid "Related Posts"
451
  msgstr "Gerelateerde Berichten"
452
 
453
- #: admin.inc.php:486
454
  #, fuzzy
455
  msgid "plugin settings page"
456
  msgstr "plugin pagina"
457
 
458
- #: admin.inc.php:491
459
  msgid ""
460
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
461
  "visit the "
462
  msgstr ""
463
 
464
- #: admin.inc.php:491
465
  msgid " to configure."
466
  msgstr ""
467
 
468
- #: admin.inc.php:555
469
  msgid ""
470
  "An error occurred clearing the cache. Please contact your site administrator."
471
  "\\n\\nError message:\\n"
472
  msgstr ""
473
 
474
- #: admin.inc.php:561
475
  msgid " cached row(s) cleared"
476
  msgstr ""
477
 
478
  #: contextual-related-posts.php:123
479
- #, fuzzy
480
- msgid " Posted by "
481
- msgstr "Powered by"
482
 
483
  #: contextual-related-posts.php:138
484
  msgid "Powered by"
@@ -555,14 +598,18 @@ msgstr "<h3>Gerelateerde Berichten:</h3>"
555
  msgid "No related posts found"
556
  msgstr "Geen gerelateerde berichten gevonden"
557
 
558
- #: contextual-related-posts.php:807
559
  msgid "Settings"
560
  msgstr "Instellingen"
561
 
562
- #: contextual-related-posts.php:830
563
  msgid "Donate"
564
  msgstr "Doneren"
565
 
 
 
 
 
566
  #~ msgid "Follow @ajaydsouza on Twitter"
567
  #~ msgstr "Volg @ajaydsouza via Twitter"
568
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:11-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"
17
  "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:107
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
+ #: admin.inc.php:123
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
+ #: admin.inc.php:139
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
+ #: admin.inc.php:152
33
  msgid "Support the development"
34
  msgstr "Ondersteun de ontwikkeling"
35
 
36
+ #: admin.inc.php:160
37
  msgid "Enter amount in USD: "
38
  msgstr "Voer het bedrag in USD in:"
39
 
40
+ #: admin.inc.php:164
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
+ #: admin.inc.php:175
45
  #, fuzzy
46
  msgid "Quick Links"
47
  msgstr "Quick links"
48
 
49
+ #: admin.inc.php:177
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Contextual Related Posts "
53
 
54
+ #: admin.inc.php:178
55
  msgid "Other plugins"
56
  msgstr "Andere plugins"
57
 
58
+ #: admin.inc.php:179
59
  msgid "Ajay's blog"
60
  msgstr "Ajay's blog"
61
 
62
+ #: admin.inc.php:180
63
+ msgid "FAQ"
64
+ msgstr ""
65
+
66
+ #: admin.inc.php:181 contextual-related-posts.php:830
67
  msgid "Support"
68
  msgstr "Ondersteuning"
69
 
70
+ #: admin.inc.php:182
71
  msgid "Reviews"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:186
75
  msgid "Recent developments"
76
  msgstr "Recente ontwikkelingen"
77
 
78
+ #: admin.inc.php:196
79
  msgid "General options"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:198
83
  msgid "Cache output?"
84
  msgstr ""
85
 
86
+ #: admin.inc.php:200
87
  msgid ""
88
  "Enabling this option will cache the related posts output when the post is "
89
  "visited the first time. The cache is cleaned when you save this page."
90
  msgstr ""
91
 
92
+ #: admin.inc.php:201
93
  msgid "Clear cache"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:204 admin.inc.php:422
97
  msgid "Number of related posts to display: "
98
  msgstr "Aantal weer te geven gerelateerde berichten:"
99
 
100
+ #: admin.inc.php:207
101
+ msgid ""
102
+ "Maximum number of posts that will be displayed. The actual number may be "
103
+ "smaller if less related posts are found."
104
+ msgstr ""
105
+
106
+ #: admin.inc.php:210
107
  msgid "Related posts should be newer than:"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:212
111
  msgid "days"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:213
115
+ msgid ""
116
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
117
+ "it to 365 will show related posts from the last year only."
118
+ msgstr ""
119
+
120
+ #: admin.inc.php:216
121
+ msgid "Post types to include in results."
122
  msgstr ""
123
 
124
+ #: admin.inc.php:225
125
+ msgid ""
126
+ "These post types will be displayed in the list. Includes custom post types."
127
+ msgstr ""
128
+
129
+ #: admin.inc.php:228
130
  msgid "Find related posts based on content as well as title"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:230
134
  #, fuzzy
135
  msgid ""
136
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
140
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
141
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
142
 
143
+ #: admin.inc.php:233
144
+ msgid "Limit content to be compared"
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:235
148
+ msgid ""
149
+ "This sets the maximum words of the content that will be matched. 0 means no "
150
+ "limit."
151
+ msgstr ""
152
+
153
+ #: admin.inc.php:238
154
  msgid "List of post or page IDs to exclude from the results: "
155
  msgstr ""
156
 
157
+ #: admin.inc.php:240 admin.inc.php:327
158
+ msgid ""
159
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
160
  msgstr ""
161
 
162
  #: admin.inc.php:243
163
+ msgid "Categories to exclude from the results: "
164
+ msgstr ""
165
+
166
+ #: admin.inc.php:259
167
  msgid ""
168
  "Comma separated list of category slugs. The field above has an autocomplete "
169
  "so simply start typing in the starting letters and it will prompt you with "
170
  "options"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:262
174
  #, fuzzy
175
  msgid "Add related posts to:"
176
  msgstr "Voeg gerelateerde berichten toe aan feed"
177
 
178
+ #: admin.inc.php:264
179
  msgid "Posts"
180
  msgstr ""
181
 
182
+ #: admin.inc.php:265
183
  msgid "Pages"
184
  msgstr ""
185
 
186
+ #: admin.inc.php:266
187
  msgid "Home page"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:267
191
  msgid "Feeds"
192
  msgstr ""
193
 
194
+ #: admin.inc.php:268
195
  msgid "Category archives"
196
  msgstr ""
197
 
198
+ #: admin.inc.php:269
199
  msgid "Tag archives"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:270
203
  msgid "Other archives"
204
  msgstr ""
205
 
206
+ #: admin.inc.php:271
207
  #, fuzzy
208
  msgid ""
209
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
215
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon "
216
  "bestand waar je het wilt laten weergeven"
217
 
218
+ #: admin.inc.php:274
219
  msgid "Add a link to the plugin page as a final item in the list"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:276
223
  msgid " <em>Optional</em>"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:277
227
+ #, fuzzy
228
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
229
+ msgstr "Contextual Related Posts "
230
+
231
+ #: admin.inc.php:283
232
  #, fuzzy
233
  msgid "Output options"
234
  msgstr "Output Opties:"
235
 
236
+ #: admin.inc.php:285
237
  msgid "Title of related posts: "
238
  msgstr "Titel van gerelateerde berichten:"
239
 
240
+ #: admin.inc.php:288
241
+ msgid ""
242
+ "This is the main heading of the related posts. You can also display the "
243
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
244
+ "Posts to %postname%</code>"
245
+ msgstr ""
246
+
247
+ #: admin.inc.php:291
248
  msgid "When there are no posts, what should be shown?"
249
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
250
 
251
+ #: admin.inc.php:295
252
  msgid "Blank Output"
253
  msgstr "Lege Output"
254
 
255
+ #: admin.inc.php:299
256
  msgid "Display:"
257
  msgstr ""
258
 
259
+ #: admin.inc.php:303 admin.inc.php:425
260
  msgid "Show post excerpt in list?"
261
  msgstr "Laat bericht uittreksel zien in lijst?"
262
 
263
+ #: admin.inc.php:306
264
  msgid "Length of excerpt (in words): "
265
  msgstr "Lengte van uittreksel (in woorden):"
266
 
267
+ #: admin.inc.php:309
268
  #, fuzzy
269
  msgid "Show post author in list?"
270
  msgstr "Laat bericht uittreksel zien in lijst?"
271
 
272
+ #: admin.inc.php:312
273
  #, fuzzy
274
  msgid "Show post date in list?"
275
  msgstr "Laat bericht uittreksel zien in lijst?"
276
 
277
+ #: admin.inc.php:315
278
  msgid "Limit post title length (in characters)"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:318
282
  msgid "Open links in new window"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:321
286
  msgid "Add nofollow attribute to links in the list"
287
  msgstr ""
288
 
289
+ #: admin.inc.php:324
290
  #, fuzzy
291
  msgid "Exclude display of related posts on these posts / pages"
292
  msgstr "Voeg gerelateerde berichten toe aan feed"
293
 
294
+ #: admin.inc.php:330
 
 
 
 
295
  msgid "Customize the output:"
296
  msgstr "Aanpassen van de output:"
297
 
298
+ #: admin.inc.php:332
299
  msgid "HTML to display before the list of posts: "
300
  msgstr "Weer te geven HTML voor de berichtenlijst:"
301
 
302
+ #: admin.inc.php:335
303
  msgid "HTML to display before each list item: "
304
  msgstr "Weer te geven HTML voor elk item in de lijst:"
305
 
306
+ #: admin.inc.php:338
307
  msgid "HTML to display after each list item: "
308
  msgstr "Weer te geven HTML na elk item in de lijst:"
309
 
310
+ #: admin.inc.php:341
311
  msgid "HTML to display after the list of posts: "
312
  msgstr "Weer te geven HTML na de berichtenlijst:"
313
 
314
+ #: admin.inc.php:344
315
  msgid "Post thumbnail options:"
316
  msgstr "Berichtopties miniatuurafbeelding:"
317
 
318
+ #: admin.inc.php:346 admin.inc.php:428
319
  msgid "Location of post thumbnail:"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:350 admin.inc.php:432
323
  #, fuzzy
324
  msgid "Display thumbnails inline with posts, before title"
325
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
326
 
327
+ #: admin.inc.php:354 admin.inc.php:436
328
  #, fuzzy
329
  msgid "Display thumbnails inline with posts, after title"
330
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
331
 
332
+ #: admin.inc.php:358 admin.inc.php:440
333
  msgid "Display only thumbnails, no text"
334
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
335
 
336
+ #: admin.inc.php:362 admin.inc.php:444
337
  msgid "Do not display thumbnails, only text."
338
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
339
 
340
+ #: admin.inc.php:366 admin.inc.php:448
341
  msgid "Maximum width of the thumbnail: "
342
  msgstr ""
343
 
344
+ #: admin.inc.php:369 admin.inc.php:451
345
  msgid "Maximum height of the thumbnail: "
346
  msgstr ""
347
 
348
+ #: admin.inc.php:372
349
  msgid "Style attributes / Width and Height HTML attributes:"
350
  msgstr ""
351
 
352
+ #: admin.inc.php:376
353
  msgid ""
354
  "Style attributes are used for width and height. <code>style=\"max-width:"
355
  msgstr ""
356
 
357
+ #: admin.inc.php:380
358
  msgid ""
359
  "HTML width and height attributes are used for width and height. <code>width="
360
  "\""
361
  msgstr ""
362
 
363
+ #: admin.inc.php:384
364
  msgid "Use timthumb to generate thumbnails? "
365
  msgstr ""
366
 
367
+ #: admin.inc.php:386
368
  msgid ""
369
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
370
  "\">timthumb</a> will be used to generate thumbnails"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:389
374
  msgid "Quality of thumbnails generated by timthumb"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:392
378
  msgid ""
379
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
380
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
381
  msgstr ""
382
 
383
+ #: admin.inc.php:395
384
  #, fuzzy
385
  msgid "Post thumbnail meta field name: "
386
  msgstr "Berichtopties miniatuurafbeelding:"
387
 
388
+ #: admin.inc.php:397
389
  msgid ""
390
  "The value of this field should contain the image source and is set in the "
391
  "<em>Add New Post</em> screen"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:400
395
  #, fuzzy
396
  msgid ""
397
  "If the postmeta is not set, then should the plugin extract the first image "
401
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
402
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
403
 
404
+ #: admin.inc.php:402
405
  #, fuzzy
406
  msgid ""
407
  "This can slow down the loading of your page if the first image in the "
411
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
412
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
413
 
414
+ #: admin.inc.php:405
415
  msgid "Use default thumbnail? "
416
  msgstr ""
417
 
418
+ #: admin.inc.php:407
419
  msgid ""
420
  "If checked, when no thumbnail is found, show a default one from the URL "
421
  "below. If not checked and no thumbnail is found, no image will be shown."
422
  msgstr ""
423
 
424
+ #: admin.inc.php:410
425
  msgid "Default thumbnail: "
426
  msgstr ""
427
 
428
+ #: admin.inc.php:412
429
  #, fuzzy
430
  msgid ""
431
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
437
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
438
  "hieronder aangegeven:"
439
 
440
+ #: admin.inc.php:418
441
  #, fuzzy
442
  msgid "Feed options"
443
  msgstr "Opties:"
444
 
445
+ #: admin.inc.php:420
446
  msgid ""
447
  "Below options override the related posts settings for your blog feed. These "
448
  "only apply if you have selected to add related posts to Feeds in the General "
449
  "Options tab."
450
  msgstr ""
451
 
452
+ #: admin.inc.php:457
453
  msgid "Custom Styles"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:459
457
  msgid "Custom CSS to add to header:"
458
  msgstr ""
459
 
460
+ #: admin.inc.php:462
461
  msgid ""
462
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
463
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
464
  "\">FAQ</a> for available CSS classes to style."
465
  msgstr ""
466
 
467
+ #: admin.inc.php:467
468
  #, fuzzy
469
  msgid "Save Options"
470
  msgstr "Opties:"
471
 
472
+ #: admin.inc.php:468
473
  #, fuzzy
474
  msgid "Default Options"
475
  msgstr "Output Opties:"
476
 
477
+ #: admin.inc.php:468
478
  msgid "Do you want to set options to Default?"
479
  msgstr "Wil je opties terug naar standaard instellen?"
480
 
481
+ #: admin.inc.php:469
482
  msgid "Recreate Index"
483
  msgstr ""
484
 
485
+ #: admin.inc.php:469
486
  msgid "Are you sure you want to recreate the index?"
487
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
488
 
489
+ #: admin.inc.php:493
490
  msgid "Contextual Related Posts"
491
  msgstr "Contextual Related Posts"
492
 
493
+ #: admin.inc.php:493 contextual-related-posts.php:314
494
  msgid "Related Posts"
495
  msgstr "Gerelateerde Berichten"
496
 
497
+ #: admin.inc.php:506
498
  #, fuzzy
499
  msgid "plugin settings page"
500
  msgstr "plugin pagina"
501
 
502
+ #: admin.inc.php:511
503
  msgid ""
504
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
505
  "visit the "
506
  msgstr ""
507
 
508
+ #: admin.inc.php:511
509
  msgid " to configure."
510
  msgstr ""
511
 
512
+ #: admin.inc.php:575
513
  msgid ""
514
  "An error occurred clearing the cache. Please contact your site administrator."
515
  "\\n\\nError message:\\n"
516
  msgstr ""
517
 
518
+ #: admin.inc.php:581
519
  msgid " cached row(s) cleared"
520
  msgstr ""
521
 
522
  #: contextual-related-posts.php:123
523
+ msgid " by "
524
+ msgstr ""
 
525
 
526
  #: contextual-related-posts.php:138
527
  msgid "Powered by"
598
  msgid "No related posts found"
599
  msgstr "Geen gerelateerde berichten gevonden"
600
 
601
+ #: contextual-related-posts.php:808
602
  msgid "Settings"
603
  msgstr "Instellingen"
604
 
605
+ #: contextual-related-posts.php:831
606
  msgid "Donate"
607
  msgstr "Doneren"
608
 
609
+ #, fuzzy
610
+ #~ msgid " Posted by "
611
+ #~ msgstr "Powered by"
612
+
613
  #~ msgid "Follow @ajaydsouza on Twitter"
614
  #~ msgstr "Volg @ajaydsouza via Twitter"
615
 
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-08-19 23:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -15,99 +15,120 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr "Поддержка развития проекта"
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr "Введите сумму в долларах США:"
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
- #: admin.inc.php:174
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Быстрые ссылки"
46
 
47
- #: admin.inc.php:176
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Контекстные похожие посты"
51
 
52
- #: admin.inc.php:177
53
  msgid "Other plugins"
54
  msgstr "Другие плагины"
55
 
56
- #: admin.inc.php:178
57
  msgid "Ajay's blog"
58
  msgstr "Блог автора (Ajay, английский язык)"
59
 
60
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
61
  msgid "Support"
62
  msgstr "Поддержка"
63
 
64
- #: admin.inc.php:180
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:184
69
  msgid "Recent developments"
70
  msgstr "Последние разработки"
71
 
72
- #: admin.inc.php:194
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:196
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:198
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:199
87
  msgid "Clear cache"
88
  msgstr ""
89
 
90
- #: admin.inc.php:202 admin.inc.php:402
91
  msgid "Number of related posts to display: "
92
  msgstr "Количество отображаемых похожих постов:"
93
 
94
- #: admin.inc.php:205
 
 
 
 
 
 
95
  msgid "Related posts should be newer than:"
96
  msgstr ""
97
 
98
- #: admin.inc.php:206
99
  msgid "days"
100
  msgstr ""
101
 
102
- #: admin.inc.php:208
103
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
104
  msgstr ""
105
 
106
- #: admin.inc.php:219
 
 
 
 
 
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
- #: admin.inc.php:221
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -118,55 +139,70 @@ msgstr ""
118
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
119
  "опцию)"
120
 
121
- #: admin.inc.php:224
 
 
 
 
 
 
 
 
 
 
122
  msgid "List of post or page IDs to exclude from the results: "
123
  msgstr ""
124
 
125
- #: admin.inc.php:227
126
- msgid "Categories to exclude from the results: "
 
127
  msgstr ""
128
 
129
  #: admin.inc.php:243
 
 
 
 
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:246
137
  #, fuzzy
138
  msgid "Add related posts to:"
139
  msgstr "Добавить похожие посты в фид"
140
 
141
- #: admin.inc.php:248
142
  msgid "Posts"
143
  msgstr ""
144
 
145
- #: admin.inc.php:249
146
  msgid "Pages"
147
  msgstr ""
148
 
149
- #: admin.inc.php:250
150
  msgid "Home page"
151
  msgstr ""
152
 
153
- #: admin.inc.php:251
154
  msgid "Feeds"
155
  msgstr ""
156
 
157
- #: admin.inc.php:252
158
  msgid "Category archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:253
162
  msgid "Tag archives"
163
  msgstr ""
164
 
165
- #: admin.inc.php:254
166
  msgid "Other archives"
167
  msgstr ""
168
 
169
- #: admin.inc.php:255
170
  #, fuzzy
171
  msgid ""
172
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -178,175 +214,183 @@ msgstr ""
178
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на "
179
  "вашем сайте"
180
 
181
- #: admin.inc.php:258
182
  msgid "Add a link to the plugin page as a final item in the list"
183
  msgstr ""
184
 
185
- #: admin.inc.php:259
186
  msgid " <em>Optional</em>"
187
  msgstr ""
188
 
189
- #: admin.inc.php:266
 
 
 
 
 
190
  #, fuzzy
191
  msgid "Output options"
192
  msgstr "Опции вывода:"
193
 
194
- #: admin.inc.php:268
195
  msgid "Title of related posts: "
196
  msgstr "Названия связанных постов:"
197
 
198
- #: admin.inc.php:271
 
 
 
 
 
 
 
199
  msgid "When there are no posts, what should be shown?"
200
  msgstr "Когда нет сообщений, что должно быть показано?"
201
 
202
- #: admin.inc.php:275
203
  msgid "Blank Output"
204
  msgstr "Пустой выход"
205
 
206
- #: admin.inc.php:279
207
  msgid "Display:"
208
  msgstr ""
209
 
210
- #: admin.inc.php:283 admin.inc.php:405
211
  msgid "Show post excerpt in list?"
212
  msgstr "Показать выдержки из поста в списке?"
213
 
214
- #: admin.inc.php:286
215
  msgid "Length of excerpt (in words): "
216
  msgstr "Длина выдержки (в словах):"
217
 
218
- #: admin.inc.php:289
219
  #, fuzzy
220
  msgid "Show post author in list?"
221
  msgstr "Показать выдержки из поста в списке?"
222
 
223
- #: admin.inc.php:292
224
  #, fuzzy
225
  msgid "Show post date in list?"
226
  msgstr "Показать выдержки из поста в списке?"
227
 
228
- #: admin.inc.php:295
229
  msgid "Limit post title length (in characters)"
230
  msgstr ""
231
 
232
- #: admin.inc.php:298
233
  msgid "Open links in new window"
234
  msgstr ""
235
 
236
- #: admin.inc.php:301
237
  msgid "Add nofollow attribute to links in the list"
238
  msgstr ""
239
 
240
- #: admin.inc.php:304
241
  #, fuzzy
242
  msgid "Exclude display of related posts on these posts / pages"
243
  msgstr "Добавить похожие посты в фид"
244
 
245
- #: admin.inc.php:307
246
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
247
- msgstr ""
248
-
249
- #: admin.inc.php:310
250
  msgid "Customize the output:"
251
  msgstr "Настройки выхода:"
252
 
253
- #: admin.inc.php:312
254
  msgid "HTML to display before the list of posts: "
255
  msgstr "HTML для показа перед списком сообщений: "
256
 
257
- #: admin.inc.php:315
258
  msgid "HTML to display before each list item: "
259
  msgstr "HTML для показа перед каждым элементом списка: "
260
 
261
- #: admin.inc.php:318
262
  msgid "HTML to display after each list item: "
263
  msgstr "HTML для отображения после каждого элемента списка: "
264
 
265
- #: admin.inc.php:321
266
  msgid "HTML to display after the list of posts: "
267
  msgstr "HTML для отображения после списка сообщений: "
268
 
269
- #: admin.inc.php:324
270
  msgid "Post thumbnail options:"
271
  msgstr "Опции изображения поста:"
272
 
273
- #: admin.inc.php:326 admin.inc.php:408
274
  msgid "Location of post thumbnail:"
275
  msgstr ""
276
 
277
- #: admin.inc.php:330 admin.inc.php:412
278
  #, fuzzy
279
  msgid "Display thumbnails inline with posts, before title"
280
  msgstr "Показать эскизы в соответствии с сообщениями"
281
 
282
- #: admin.inc.php:334 admin.inc.php:416
283
  #, fuzzy
284
  msgid "Display thumbnails inline with posts, after title"
285
  msgstr "Показать эскизы в соответствии с сообщениями"
286
 
287
- #: admin.inc.php:338 admin.inc.php:420
288
  msgid "Display only thumbnails, no text"
289
  msgstr "Показывать только изображения, без текста"
290
 
291
- #: admin.inc.php:342 admin.inc.php:424
292
  msgid "Do not display thumbnails, only text."
293
  msgstr "Не показывать изображения, только текст"
294
 
295
- #: admin.inc.php:346 admin.inc.php:428
296
  msgid "Maximum width of the thumbnail: "
297
  msgstr ""
298
 
299
- #: admin.inc.php:349 admin.inc.php:431
300
  msgid "Maximum height of the thumbnail: "
301
  msgstr ""
302
 
303
- #: admin.inc.php:352
304
  msgid "Style attributes / Width and Height HTML attributes:"
305
  msgstr ""
306
 
307
- #: admin.inc.php:356
308
  msgid ""
309
  "Style attributes are used for width and height. <code>style=\"max-width:"
310
  msgstr ""
311
 
312
- #: admin.inc.php:360
313
  msgid ""
314
  "HTML width and height attributes are used for width and height. <code>width="
315
  "\""
316
  msgstr ""
317
 
318
- #: admin.inc.php:364
319
  msgid "Use timthumb to generate thumbnails? "
320
  msgstr ""
321
 
322
- #: admin.inc.php:366
323
  msgid ""
324
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
325
  "\">timthumb</a> will be used to generate thumbnails"
326
  msgstr ""
327
 
328
- #: admin.inc.php:369
329
  msgid "Quality of thumbnails generated by timthumb"
330
  msgstr ""
331
 
332
- #: admin.inc.php:372
333
  msgid ""
334
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
335
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
336
  msgstr ""
337
 
338
- #: admin.inc.php:375
339
  #, fuzzy
340
  msgid "Post thumbnail meta field name: "
341
  msgstr "Опции изображения поста:"
342
 
343
- #: admin.inc.php:377
344
  msgid ""
345
  "The value of this field should contain the image source and is set in the "
346
  "<em>Add New Post</em> screen"
347
  msgstr ""
348
 
349
- #: admin.inc.php:380
350
  #, fuzzy
351
  msgid ""
352
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -355,7 +399,7 @@ msgstr ""
355
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
356
  "может замедлить загрузку сообщения (если изображение слишком велико)"
357
 
358
- #: admin.inc.php:382
359
  #, fuzzy
360
  msgid ""
361
  "This can slow down the loading of your page if the first image in the "
@@ -364,21 +408,21 @@ msgstr ""
364
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
365
  "может замедлить загрузку сообщения (если изображение слишком велико)"
366
 
367
- #: admin.inc.php:385
368
  msgid "Use default thumbnail? "
369
  msgstr ""
370
 
371
- #: admin.inc.php:387
372
  msgid ""
373
  "If checked, when no thumbnail is found, show a default one from the URL "
374
  "below. If not checked and no thumbnail is found, no image will be shown."
375
  msgstr ""
376
 
377
- #: admin.inc.php:390
378
  msgid "Default thumbnail: "
379
  msgstr ""
380
 
381
- #: admin.inc.php:392
382
  #, fuzzy
383
  msgid ""
384
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -389,92 +433,91 @@ msgstr ""
389
  "обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
390
  "плагин будет показывать изображение по умолчанию, как указано ниже:"
391
 
392
- #: admin.inc.php:398
393
  #, fuzzy
394
  msgid "Feed options"
395
  msgstr "Опции:"
396
 
397
- #: admin.inc.php:400
398
  msgid ""
399
  "Below options override the related posts settings for your blog feed. These "
400
  "only apply if you have selected to add related posts to Feeds in the General "
401
  "Options tab."
402
  msgstr ""
403
 
404
- #: admin.inc.php:437
405
  msgid "Custom Styles"
406
  msgstr ""
407
 
408
- #: admin.inc.php:439
409
  msgid "Custom CSS to add to header:"
410
  msgstr ""
411
 
412
- #: admin.inc.php:442
413
  msgid ""
414
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
415
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
416
  "\">FAQ</a> for available CSS classes to style."
417
  msgstr ""
418
 
419
- #: admin.inc.php:447
420
  #, fuzzy
421
  msgid "Save Options"
422
  msgstr "Опции:"
423
 
424
- #: admin.inc.php:448
425
  #, fuzzy
426
  msgid "Default Options"
427
  msgstr "Опции вывода:"
428
 
429
- #: admin.inc.php:448
430
  msgid "Do you want to set options to Default?"
431
  msgstr "Вы хотите задать параметры по умолчанию?"
432
 
433
- #: admin.inc.php:449
434
  msgid "Recreate Index"
435
  msgstr ""
436
 
437
- #: admin.inc.php:449
438
  msgid "Are you sure you want to recreate the index?"
439
  msgstr "Вы уверены, что хотите воссоздать индекс?"
440
 
441
- #: admin.inc.php:473
442
  msgid "Contextual Related Posts"
443
  msgstr "Контекстные похожие посты"
444
 
445
- #: admin.inc.php:473 contextual-related-posts.php:314
446
  msgid "Related Posts"
447
  msgstr "Похожие посты"
448
 
449
- #: admin.inc.php:486
450
  #, fuzzy
451
  msgid "plugin settings page"
452
  msgstr "Страница плагина"
453
 
454
- #: admin.inc.php:491
455
  msgid ""
456
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
457
  "visit the "
458
  msgstr ""
459
 
460
- #: admin.inc.php:491
461
  msgid " to configure."
462
  msgstr ""
463
 
464
- #: admin.inc.php:555
465
  msgid ""
466
  "An error occurred clearing the cache. Please contact your site administrator."
467
  "\\n\\nError message:\\n"
468
  msgstr ""
469
 
470
- #: admin.inc.php:561
471
  msgid " cached row(s) cleared"
472
  msgstr ""
473
 
474
  #: contextual-related-posts.php:123
475
- #, fuzzy
476
- msgid " Posted by "
477
- msgstr "Автор:"
478
 
479
  #: contextual-related-posts.php:138
480
  msgid "Powered by"
@@ -551,14 +594,18 @@ msgstr "<h3>Похожие посты:</h3>"
551
  msgid "No related posts found"
552
  msgstr "Не найдены похожие посты"
553
 
554
- #: contextual-related-posts.php:807
555
  msgid "Settings"
556
  msgstr "Настройки"
557
 
558
- #: contextual-related-posts.php:830
559
  msgid "Donate"
560
  msgstr "Пожертвование"
561
 
 
 
 
 
562
  #~ msgid "Follow @ajaydsouza on Twitter"
563
  #~ msgstr "Следовать @ajaydsouza на Твиттере"
564
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:11-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr "Поддержка развития проекта"
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr "Введите сумму в долларах США:"
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
+ #: admin.inc.php:175
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Быстрые ссылки"
46
 
47
+ #: admin.inc.php:177
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Контекстные похожие посты"
51
 
52
+ #: admin.inc.php:178
53
  msgid "Other plugins"
54
  msgstr "Другие плагины"
55
 
56
+ #: admin.inc.php:179
57
  msgid "Ajay's blog"
58
  msgstr "Блог автора (Ajay, английский язык)"
59
 
60
+ #: admin.inc.php:180
61
+ msgid "FAQ"
62
+ msgstr ""
63
+
64
+ #: admin.inc.php:181 contextual-related-posts.php:830
65
  msgid "Support"
66
  msgstr "Поддержка"
67
 
68
+ #: admin.inc.php:182
69
  msgid "Reviews"
70
  msgstr ""
71
 
72
+ #: admin.inc.php:186
73
  msgid "Recent developments"
74
  msgstr "Последние разработки"
75
 
76
+ #: admin.inc.php:196
77
  msgid "General options"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:198
81
  msgid "Cache output?"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:200
85
  msgid ""
86
  "Enabling this option will cache the related posts output when the post is "
87
  "visited the first time. The cache is cleaned when you save this page."
88
  msgstr ""
89
 
90
+ #: admin.inc.php:201
91
  msgid "Clear cache"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:204 admin.inc.php:422
95
  msgid "Number of related posts to display: "
96
  msgstr "Количество отображаемых похожих постов:"
97
 
98
+ #: admin.inc.php:207
99
+ msgid ""
100
+ "Maximum number of posts that will be displayed. The actual number may be "
101
+ "smaller if less related posts are found."
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:210
105
  msgid "Related posts should be newer than:"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:212
109
  msgid "days"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:213
113
+ msgid ""
114
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
115
+ "it to 365 will show related posts from the last year only."
116
+ msgstr ""
117
+
118
+ #: admin.inc.php:216
119
+ msgid "Post types to include in results."
120
  msgstr ""
121
 
122
+ #: admin.inc.php:225
123
+ msgid ""
124
+ "These post types will be displayed in the list. Includes custom post types."
125
+ msgstr ""
126
+
127
+ #: admin.inc.php:228
128
  msgid "Find related posts based on content as well as title"
129
  msgstr ""
130
 
131
+ #: admin.inc.php:230
132
  #, fuzzy
133
  msgid ""
134
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
139
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
140
  "опцию)"
141
 
142
+ #: admin.inc.php:233
143
+ msgid "Limit content to be compared"
144
+ msgstr ""
145
+
146
+ #: admin.inc.php:235
147
+ msgid ""
148
+ "This sets the maximum words of the content that will be matched. 0 means no "
149
+ "limit."
150
+ msgstr ""
151
+
152
+ #: admin.inc.php:238
153
  msgid "List of post or page IDs to exclude from the results: "
154
  msgstr ""
155
 
156
+ #: admin.inc.php:240 admin.inc.php:327
157
+ msgid ""
158
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
159
  msgstr ""
160
 
161
  #: admin.inc.php:243
162
+ msgid "Categories to exclude from the results: "
163
+ msgstr ""
164
+
165
+ #: admin.inc.php:259
166
  msgid ""
167
  "Comma separated list of category slugs. The field above has an autocomplete "
168
  "so simply start typing in the starting letters and it will prompt you with "
169
  "options"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:262
173
  #, fuzzy
174
  msgid "Add related posts to:"
175
  msgstr "Добавить похожие посты в фид"
176
 
177
+ #: admin.inc.php:264
178
  msgid "Posts"
179
  msgstr ""
180
 
181
+ #: admin.inc.php:265
182
  msgid "Pages"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:266
186
  msgid "Home page"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:267
190
  msgid "Feeds"
191
  msgstr ""
192
 
193
+ #: admin.inc.php:268
194
  msgid "Category archives"
195
  msgstr ""
196
 
197
+ #: admin.inc.php:269
198
  msgid "Tag archives"
199
  msgstr ""
200
 
201
+ #: admin.inc.php:270
202
  msgid "Other archives"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:271
206
  #, fuzzy
207
  msgid ""
208
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
214
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на "
215
  "вашем сайте"
216
 
217
+ #: admin.inc.php:274
218
  msgid "Add a link to the plugin page as a final item in the list"
219
  msgstr ""
220
 
221
+ #: admin.inc.php:276
222
  msgid " <em>Optional</em>"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:277
226
+ #, fuzzy
227
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
228
+ msgstr "Контекстные похожие посты"
229
+
230
+ #: admin.inc.php:283
231
  #, fuzzy
232
  msgid "Output options"
233
  msgstr "Опции вывода:"
234
 
235
+ #: admin.inc.php:285
236
  msgid "Title of related posts: "
237
  msgstr "Названия связанных постов:"
238
 
239
+ #: admin.inc.php:288
240
+ msgid ""
241
+ "This is the main heading of the related posts. You can also display the "
242
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
243
+ "Posts to %postname%</code>"
244
+ msgstr ""
245
+
246
+ #: admin.inc.php:291
247
  msgid "When there are no posts, what should be shown?"
248
  msgstr "Когда нет сообщений, что должно быть показано?"
249
 
250
+ #: admin.inc.php:295
251
  msgid "Blank Output"
252
  msgstr "Пустой выход"
253
 
254
+ #: admin.inc.php:299
255
  msgid "Display:"
256
  msgstr ""
257
 
258
+ #: admin.inc.php:303 admin.inc.php:425
259
  msgid "Show post excerpt in list?"
260
  msgstr "Показать выдержки из поста в списке?"
261
 
262
+ #: admin.inc.php:306
263
  msgid "Length of excerpt (in words): "
264
  msgstr "Длина выдержки (в словах):"
265
 
266
+ #: admin.inc.php:309
267
  #, fuzzy
268
  msgid "Show post author in list?"
269
  msgstr "Показать выдержки из поста в списке?"
270
 
271
+ #: admin.inc.php:312
272
  #, fuzzy
273
  msgid "Show post date in list?"
274
  msgstr "Показать выдержки из поста в списке?"
275
 
276
+ #: admin.inc.php:315
277
  msgid "Limit post title length (in characters)"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:318
281
  msgid "Open links in new window"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:321
285
  msgid "Add nofollow attribute to links in the list"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:324
289
  #, fuzzy
290
  msgid "Exclude display of related posts on these posts / pages"
291
  msgstr "Добавить похожие посты в фид"
292
 
293
+ #: admin.inc.php:330
 
 
 
 
294
  msgid "Customize the output:"
295
  msgstr "Настройки выхода:"
296
 
297
+ #: admin.inc.php:332
298
  msgid "HTML to display before the list of posts: "
299
  msgstr "HTML для показа перед списком сообщений: "
300
 
301
+ #: admin.inc.php:335
302
  msgid "HTML to display before each list item: "
303
  msgstr "HTML для показа перед каждым элементом списка: "
304
 
305
+ #: admin.inc.php:338
306
  msgid "HTML to display after each list item: "
307
  msgstr "HTML для отображения после каждого элемента списка: "
308
 
309
+ #: admin.inc.php:341
310
  msgid "HTML to display after the list of posts: "
311
  msgstr "HTML для отображения после списка сообщений: "
312
 
313
+ #: admin.inc.php:344
314
  msgid "Post thumbnail options:"
315
  msgstr "Опции изображения поста:"
316
 
317
+ #: admin.inc.php:346 admin.inc.php:428
318
  msgid "Location of post thumbnail:"
319
  msgstr ""
320
 
321
+ #: admin.inc.php:350 admin.inc.php:432
322
  #, fuzzy
323
  msgid "Display thumbnails inline with posts, before title"
324
  msgstr "Показать эскизы в соответствии с сообщениями"
325
 
326
+ #: admin.inc.php:354 admin.inc.php:436
327
  #, fuzzy
328
  msgid "Display thumbnails inline with posts, after title"
329
  msgstr "Показать эскизы в соответствии с сообщениями"
330
 
331
+ #: admin.inc.php:358 admin.inc.php:440
332
  msgid "Display only thumbnails, no text"
333
  msgstr "Показывать только изображения, без текста"
334
 
335
+ #: admin.inc.php:362 admin.inc.php:444
336
  msgid "Do not display thumbnails, only text."
337
  msgstr "Не показывать изображения, только текст"
338
 
339
+ #: admin.inc.php:366 admin.inc.php:448
340
  msgid "Maximum width of the thumbnail: "
341
  msgstr ""
342
 
343
+ #: admin.inc.php:369 admin.inc.php:451
344
  msgid "Maximum height of the thumbnail: "
345
  msgstr ""
346
 
347
+ #: admin.inc.php:372
348
  msgid "Style attributes / Width and Height HTML attributes:"
349
  msgstr ""
350
 
351
+ #: admin.inc.php:376
352
  msgid ""
353
  "Style attributes are used for width and height. <code>style=\"max-width:"
354
  msgstr ""
355
 
356
+ #: admin.inc.php:380
357
  msgid ""
358
  "HTML width and height attributes are used for width and height. <code>width="
359
  "\""
360
  msgstr ""
361
 
362
+ #: admin.inc.php:384
363
  msgid "Use timthumb to generate thumbnails? "
364
  msgstr ""
365
 
366
+ #: admin.inc.php:386
367
  msgid ""
368
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
369
  "\">timthumb</a> will be used to generate thumbnails"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:389
373
  msgid "Quality of thumbnails generated by timthumb"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:392
377
  msgid ""
378
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
379
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:395
383
  #, fuzzy
384
  msgid "Post thumbnail meta field name: "
385
  msgstr "Опции изображения поста:"
386
 
387
+ #: admin.inc.php:397
388
  msgid ""
389
  "The value of this field should contain the image source and is set in the "
390
  "<em>Add New Post</em> screen"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:400
394
  #, fuzzy
395
  msgid ""
396
  "If the postmeta is not set, then should the plugin extract the first image "
399
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
400
  "может замедлить загрузку сообщения (если изображение слишком велико)"
401
 
402
+ #: admin.inc.php:402
403
  #, fuzzy
404
  msgid ""
405
  "This can slow down the loading of your page if the first image in the "
408
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
409
  "может замедлить загрузку сообщения (если изображение слишком велико)"
410
 
411
+ #: admin.inc.php:405
412
  msgid "Use default thumbnail? "
413
  msgstr ""
414
 
415
+ #: admin.inc.php:407
416
  msgid ""
417
  "If checked, when no thumbnail is found, show a default one from the URL "
418
  "below. If not checked and no thumbnail is found, no image will be shown."
419
  msgstr ""
420
 
421
+ #: admin.inc.php:410
422
  msgid "Default thumbnail: "
423
  msgstr ""
424
 
425
+ #: admin.inc.php:412
426
  #, fuzzy
427
  msgid ""
428
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
433
  "обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
434
  "плагин будет показывать изображение по умолчанию, как указано ниже:"
435
 
436
+ #: admin.inc.php:418
437
  #, fuzzy
438
  msgid "Feed options"
439
  msgstr "Опции:"
440
 
441
+ #: admin.inc.php:420
442
  msgid ""
443
  "Below options override the related posts settings for your blog feed. These "
444
  "only apply if you have selected to add related posts to Feeds in the General "
445
  "Options tab."
446
  msgstr ""
447
 
448
+ #: admin.inc.php:457
449
  msgid "Custom Styles"
450
  msgstr ""
451
 
452
+ #: admin.inc.php:459
453
  msgid "Custom CSS to add to header:"
454
  msgstr ""
455
 
456
+ #: admin.inc.php:462
457
  msgid ""
458
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
459
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
460
  "\">FAQ</a> for available CSS classes to style."
461
  msgstr ""
462
 
463
+ #: admin.inc.php:467
464
  #, fuzzy
465
  msgid "Save Options"
466
  msgstr "Опции:"
467
 
468
+ #: admin.inc.php:468
469
  #, fuzzy
470
  msgid "Default Options"
471
  msgstr "Опции вывода:"
472
 
473
+ #: admin.inc.php:468
474
  msgid "Do you want to set options to Default?"
475
  msgstr "Вы хотите задать параметры по умолчанию?"
476
 
477
+ #: admin.inc.php:469
478
  msgid "Recreate Index"
479
  msgstr ""
480
 
481
+ #: admin.inc.php:469
482
  msgid "Are you sure you want to recreate the index?"
483
  msgstr "Вы уверены, что хотите воссоздать индекс?"
484
 
485
+ #: admin.inc.php:493
486
  msgid "Contextual Related Posts"
487
  msgstr "Контекстные похожие посты"
488
 
489
+ #: admin.inc.php:493 contextual-related-posts.php:314
490
  msgid "Related Posts"
491
  msgstr "Похожие посты"
492
 
493
+ #: admin.inc.php:506
494
  #, fuzzy
495
  msgid "plugin settings page"
496
  msgstr "Страница плагина"
497
 
498
+ #: admin.inc.php:511
499
  msgid ""
500
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
501
  "visit the "
502
  msgstr ""
503
 
504
+ #: admin.inc.php:511
505
  msgid " to configure."
506
  msgstr ""
507
 
508
+ #: admin.inc.php:575
509
  msgid ""
510
  "An error occurred clearing the cache. Please contact your site administrator."
511
  "\\n\\nError message:\\n"
512
  msgstr ""
513
 
514
+ #: admin.inc.php:581
515
  msgid " cached row(s) cleared"
516
  msgstr ""
517
 
518
  #: contextual-related-posts.php:123
519
+ msgid " by "
520
+ msgstr ""
 
521
 
522
  #: contextual-related-posts.php:138
523
  msgid "Powered by"
594
  msgid "No related posts found"
595
  msgstr "Не найдены похожие посты"
596
 
597
+ #: contextual-related-posts.php:808
598
  msgid "Settings"
599
  msgstr "Настройки"
600
 
601
+ #: contextual-related-posts.php:831
602
  msgid "Donate"
603
  msgstr "Пожертвование"
604
 
605
+ #, fuzzy
606
+ #~ msgid " Posted by "
607
+ #~ msgstr "Автор:"
608
+
609
  #~ msgid "Follow @ajaydsouza on Twitter"
610
  #~ msgstr "Следовать @ajaydsouza на Твиттере"
611
 
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-08-19 23:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -15,155 +15,193 @@ msgstr ""
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:106
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
- #: admin.inc.php:122
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
- #: admin.inc.php:138
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
- #: admin.inc.php:151
31
  msgid "Support the development"
32
  msgstr "支持开发"
33
 
34
- #: admin.inc.php:159
35
  msgid "Enter amount in USD: "
36
  msgstr "输入美元金额:"
37
 
38
- #: admin.inc.php:163
39
  msgid "Send your donation to the author of"
40
  msgstr "捐赠给作者"
41
 
42
- #: admin.inc.php:174
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "快捷链接"
46
 
47
- #: admin.inc.php:176
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "相关日志"
51
 
52
- #: admin.inc.php:177
53
  msgid "Other plugins"
54
  msgstr "其他插件"
55
 
56
- #: admin.inc.php:178
57
  msgid "Ajay's blog"
58
  msgstr "Ajay 的博客"
59
 
60
- #: admin.inc.php:179 contextual-related-posts.php:829
 
 
 
 
61
  msgid "Support"
62
  msgstr "技术支持"
63
 
64
- #: admin.inc.php:180
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:184
69
  msgid "Recent developments"
70
  msgstr "最新开发"
71
 
72
- #: admin.inc.php:194
73
  msgid "General options"
74
  msgstr "一般设置"
75
 
76
- #: admin.inc.php:196
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:198
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:199
87
  msgid "Clear cache"
88
  msgstr ""
89
 
90
- #: admin.inc.php:202 admin.inc.php:402
91
  msgid "Number of related posts to display: "
92
  msgstr "相关日志数量:"
93
 
94
- #: admin.inc.php:205
 
 
 
 
 
 
95
  msgid "Related posts should be newer than:"
96
  msgstr ""
97
 
98
- #: admin.inc.php:206
99
  msgid "days"
100
  msgstr ""
101
 
102
- #: admin.inc.php:208
103
- msgid "Post types to include in results (including custom post types)"
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  msgstr "被索引的日志类型(包含自定义日志类型)"
105
 
106
- #: admin.inc.php:219
107
  msgid "Find related posts based on content as well as title"
108
  msgstr "根据标题和正文内容索引"
109
 
110
- #: admin.inc.php:221
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
114
  "or enabling \"Cache output\" above if you enable this."
115
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
116
 
117
- #: admin.inc.php:224
 
 
 
 
 
 
 
 
 
 
118
  msgid "List of post or page IDs to exclude from the results: "
119
  msgstr "排除的文章或页面 ID:"
120
 
121
- #: admin.inc.php:227
 
 
 
 
 
122
  #, fuzzy
123
  msgid "Categories to exclude from the results: "
124
  msgstr "排除的文章或页面 ID:"
125
 
126
- #: admin.inc.php:243
127
  msgid ""
128
  "Comma separated list of category slugs. The field above has an autocomplete "
129
  "so simply start typing in the starting letters and it will prompt you with "
130
  "options"
131
  msgstr ""
132
 
133
- #: admin.inc.php:246
134
  #, fuzzy
135
  msgid "Add related posts to:"
136
  msgstr "添加相关日志到 feed 里"
137
 
138
- #: admin.inc.php:248
139
  msgid "Posts"
140
  msgstr ""
141
 
142
- #: admin.inc.php:249
143
  msgid "Pages"
144
  msgstr ""
145
 
146
- #: admin.inc.php:250
147
  msgid "Home page"
148
  msgstr ""
149
 
150
- #: admin.inc.php:251
151
  msgid "Feeds"
152
  msgstr ""
153
 
154
- #: admin.inc.php:252
155
  msgid "Category archives"
156
  msgstr ""
157
 
158
- #: admin.inc.php:253
159
  msgid "Tag archives"
160
  msgstr ""
161
 
162
- #: admin.inc.php:254
163
  msgid "Other archives"
164
  msgstr ""
165
 
166
- #: admin.inc.php:255
167
  msgid ""
168
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
169
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
@@ -172,146 +210,154 @@ msgstr ""
172
  "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
173
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
174
 
175
- #: admin.inc.php:258
176
  msgid "Add a link to the plugin page as a final item in the list"
177
  msgstr "在相关日志后添加插件页面的链接"
178
 
179
- #: admin.inc.php:259
180
  msgid " <em>Optional</em>"
181
  msgstr " <em>可选</em>"
182
 
183
- #: admin.inc.php:266
 
 
 
 
 
184
  #, fuzzy
185
  msgid "Output options"
186
  msgstr "显示设置"
187
 
188
- #: admin.inc.php:268
189
  msgid "Title of related posts: "
190
  msgstr "相关日志的标题:"
191
 
192
- #: admin.inc.php:271
 
 
 
 
 
 
 
193
  msgid "When there are no posts, what should be shown?"
194
  msgstr "当不存在相关日志时,显示什么?"
195
 
196
- #: admin.inc.php:275
197
  msgid "Blank Output"
198
  msgstr "不显示"
199
 
200
- #: admin.inc.php:279
201
  msgid "Display:"
202
  msgstr ""
203
 
204
- #: admin.inc.php:283 admin.inc.php:405
205
  msgid "Show post excerpt in list?"
206
  msgstr "是否显示日志摘要?"
207
 
208
- #: admin.inc.php:286
209
  msgid "Length of excerpt (in words): "
210
  msgstr "摘要长度(词数):"
211
 
212
- #: admin.inc.php:289
213
  #, fuzzy
214
  msgid "Show post author in list?"
215
  msgstr "是否显示日志摘要?"
216
 
217
- #: admin.inc.php:292
218
  #, fuzzy
219
  msgid "Show post date in list?"
220
  msgstr "是否显示日志摘要?"
221
 
222
- #: admin.inc.php:295
223
  msgid "Limit post title length (in characters)"
224
  msgstr ""
225
 
226
- #: admin.inc.php:298
227
  msgid "Open links in new window"
228
  msgstr ""
229
 
230
- #: admin.inc.php:301
231
  msgid "Add nofollow attribute to links in the list"
232
  msgstr ""
233
 
234
- #: admin.inc.php:304
235
  #, fuzzy
236
  msgid "Exclude display of related posts on these posts / pages"
237
  msgstr "添加相关日志到页面里"
238
 
239
- #: admin.inc.php:307
240
- msgid "Enter comma separated list of IDs. e.g. 188,320,500"
241
- msgstr ""
242
-
243
- #: admin.inc.php:310
244
  msgid "Customize the output:"
245
  msgstr "自定义显示:"
246
 
247
- #: admin.inc.php:312
248
  msgid "HTML to display before the list of posts: "
249
  msgstr "显示在每篇日志后面的 HTML 标签:"
250
 
251
- #: admin.inc.php:315
252
  msgid "HTML to display before each list item: "
253
  msgstr "显示在每篇日志后面的 HTML 标签:"
254
 
255
- #: admin.inc.php:318
256
  msgid "HTML to display after each list item: "
257
  msgstr "显示在日志列表前面的 HTML 标签:"
258
 
259
- #: admin.inc.php:321
260
  msgid "HTML to display after the list of posts: "
261
  msgstr "显示在日志列表后面的 HTML 标签:"
262
 
263
- #: admin.inc.php:324
264
  msgid "Post thumbnail options:"
265
  msgstr "日志缩略图设置:"
266
 
267
- #: admin.inc.php:326 admin.inc.php:408
268
  msgid "Location of post thumbnail:"
269
  msgstr "日志缩略图位置:"
270
 
271
- #: admin.inc.php:330 admin.inc.php:412
272
  msgid "Display thumbnails inline with posts, before title"
273
  msgstr "在标题前显示缩略图"
274
 
275
- #: admin.inc.php:334 admin.inc.php:416
276
  msgid "Display thumbnails inline with posts, after title"
277
  msgstr "在标题后显示缩略图"
278
 
279
- #: admin.inc.php:338 admin.inc.php:420
280
  msgid "Display only thumbnails, no text"
281
  msgstr "不显示文本,只显示缩略图"
282
 
283
- #: admin.inc.php:342 admin.inc.php:424
284
  msgid "Do not display thumbnails, only text."
285
  msgstr "不显示缩略图,只显示文本"
286
 
287
- #: admin.inc.php:346 admin.inc.php:428
288
  msgid "Maximum width of the thumbnail: "
289
  msgstr "缩略图最大宽度"
290
 
291
- #: admin.inc.php:349 admin.inc.php:431
292
  msgid "Maximum height of the thumbnail: "
293
  msgstr "缩略图最大高度"
294
 
295
- #: admin.inc.php:352
296
  msgid "Style attributes / Width and Height HTML attributes:"
297
  msgstr ""
298
 
299
- #: admin.inc.php:356
300
  msgid ""
301
  "Style attributes are used for width and height. <code>style=\"max-width:"
302
  msgstr ""
303
 
304
- #: admin.inc.php:360
305
  msgid ""
306
  "HTML width and height attributes are used for width and height. <code>width="
307
  "\""
308
  msgstr ""
309
 
310
- #: admin.inc.php:364
311
  msgid "Use timthumb to generate thumbnails? "
312
  msgstr "是否使用 timthumb 生成缩略图?"
313
 
314
- #: admin.inc.php:366
315
  msgid ""
316
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
317
  "\">timthumb</a> will be used to generate thumbnails"
@@ -319,54 +365,54 @@ msgstr ""
319
  "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
320
  "\">timthumb</a> 生成缩略图"
321
 
322
- #: admin.inc.php:369
323
  msgid "Quality of thumbnails generated by timthumb"
324
  msgstr ""
325
 
326
- #: admin.inc.php:372
327
  msgid ""
328
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
329
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
330
  msgstr ""
331
 
332
- #: admin.inc.php:375
333
  msgid "Post thumbnail meta field name: "
334
  msgstr "日志缩略图自定义栏目的名称:"
335
 
336
- #: admin.inc.php:377
337
  msgid ""
338
  "The value of this field should contain the image source and is set in the "
339
  "<em>Add New Post</em> screen"
340
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
341
 
342
- #: admin.inc.php:380
343
  msgid ""
344
  "If the postmeta is not set, then should the plugin extract the first image "
345
  "from the post?"
346
  msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
347
 
348
- #: admin.inc.php:382
349
  msgid ""
350
  "This can slow down the loading of your page if the first image in the "
351
  "related posts is large in file-size"
352
  msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
353
 
354
- #: admin.inc.php:385
355
  msgid "Use default thumbnail? "
356
  msgstr "是否使用默认缩略图?"
357
 
358
- #: admin.inc.php:387
359
  msgid ""
360
  "If checked, when no thumbnail is found, show a default one from the URL "
361
  "below. If not checked and no thumbnail is found, no image will be shown."
362
  msgstr ""
363
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
364
 
365
- #: admin.inc.php:390
366
  msgid "Default thumbnail: "
367
  msgstr "默认缩略图:"
368
 
369
- #: admin.inc.php:392
370
  msgid ""
371
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
372
  "then it will check the meta field. If this is not available, then it will "
@@ -375,27 +421,27 @@ msgstr ""
375
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
376
  "示上面默认图像"
377
 
378
- #: admin.inc.php:398
379
  #, fuzzy
380
  msgid "Feed options"
381
  msgstr "一般设置"
382
 
383
- #: admin.inc.php:400
384
  msgid ""
385
  "Below options override the related posts settings for your blog feed. These "
386
  "only apply if you have selected to add related posts to Feeds in the General "
387
  "Options tab."
388
  msgstr ""
389
 
390
- #: admin.inc.php:437
391
  msgid "Custom Styles"
392
  msgstr "自定义样式"
393
 
394
- #: admin.inc.php:439
395
  msgid "Custom CSS to add to header:"
396
  msgstr "添加自定义 CSS 到 header:"
397
 
398
- #: admin.inc.php:442
399
  #, fuzzy
400
  msgid ""
401
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
@@ -405,62 +451,61 @@ msgstr ""
405
  "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
406
  "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
407
 
408
- #: admin.inc.php:447
409
  msgid "Save Options"
410
  msgstr "保存设置"
411
 
412
- #: admin.inc.php:448
413
  msgid "Default Options"
414
  msgstr "默认设置"
415
 
416
- #: admin.inc.php:448
417
  msgid "Do you want to set options to Default?"
418
  msgstr "是否要重置设置?"
419
 
420
- #: admin.inc.php:449
421
  msgid "Recreate Index"
422
  msgstr "重建索引"
423
 
424
- #: admin.inc.php:449
425
  msgid "Are you sure you want to recreate the index?"
426
  msgstr "是否要重建索引?"
427
 
428
- #: admin.inc.php:473
429
  msgid "Contextual Related Posts"
430
  msgstr "Contextual Related Posts"
431
 
432
- #: admin.inc.php:473 contextual-related-posts.php:314
433
  msgid "Related Posts"
434
  msgstr "相关日志"
435
 
436
- #: admin.inc.php:486
437
  msgid "plugin settings page"
438
  msgstr "插件设置页面"
439
 
440
- #: admin.inc.php:491
441
  msgid ""
442
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
443
  "visit the "
444
  msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
445
 
446
- #: admin.inc.php:491
447
  msgid " to configure."
448
  msgstr "设置插件。"
449
 
450
- #: admin.inc.php:555
451
  msgid ""
452
  "An error occurred clearing the cache. Please contact your site administrator."
453
  "\\n\\nError message:\\n"
454
  msgstr ""
455
 
456
- #: admin.inc.php:561
457
  msgid " cached row(s) cleared"
458
  msgstr ""
459
 
460
  #: contextual-related-posts.php:123
461
- #, fuzzy
462
- msgid " Posted by "
463
- msgstr "插件作者:"
464
 
465
  #: contextual-related-posts.php:138
466
  msgid "Powered by"
@@ -530,14 +575,18 @@ msgstr "<h3>相关日志:</h3>"
530
  msgid "No related posts found"
531
  msgstr "没有发现相关日志"
532
 
533
- #: contextual-related-posts.php:807
534
  msgid "Settings"
535
  msgstr "设置"
536
 
537
- #: contextual-related-posts.php:830
538
  msgid "Donate"
539
  msgstr "捐赠"
540
 
 
 
 
 
541
  #~ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
542
  #~ msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
543
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-11-08 20:11-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
15
  "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:107
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
+ #: admin.inc.php:123
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
+ #: admin.inc.php:139
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
+ #: admin.inc.php:152
31
  msgid "Support the development"
32
  msgstr "支持开发"
33
 
34
+ #: admin.inc.php:160
35
  msgid "Enter amount in USD: "
36
  msgstr "输入美元金额:"
37
 
38
+ #: admin.inc.php:164
39
  msgid "Send your donation to the author of"
40
  msgstr "捐赠给作者"
41
 
42
+ #: admin.inc.php:175
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "快捷链接"
46
 
47
+ #: admin.inc.php:177
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "相关日志"
51
 
52
+ #: admin.inc.php:178
53
  msgid "Other plugins"
54
  msgstr "其他插件"
55
 
56
+ #: admin.inc.php:179
57
  msgid "Ajay's blog"
58
  msgstr "Ajay 的博客"
59
 
60
+ #: admin.inc.php:180
61
+ msgid "FAQ"
62
+ msgstr ""
63
+
64
+ #: admin.inc.php:181 contextual-related-posts.php:830
65
  msgid "Support"
66
  msgstr "技术支持"
67
 
68
+ #: admin.inc.php:182
69
  msgid "Reviews"
70
  msgstr ""
71
 
72
+ #: admin.inc.php:186
73
  msgid "Recent developments"
74
  msgstr "最新开发"
75
 
76
+ #: admin.inc.php:196
77
  msgid "General options"
78
  msgstr "一般设置"
79
 
80
+ #: admin.inc.php:198
81
  msgid "Cache output?"
82
  msgstr ""
83
 
84
+ #: admin.inc.php:200
85
  msgid ""
86
  "Enabling this option will cache the related posts output when the post is "
87
  "visited the first time. The cache is cleaned when you save this page."
88
  msgstr ""
89
 
90
+ #: admin.inc.php:201
91
  msgid "Clear cache"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:204 admin.inc.php:422
95
  msgid "Number of related posts to display: "
96
  msgstr "相关日志数量:"
97
 
98
+ #: admin.inc.php:207
99
+ msgid ""
100
+ "Maximum number of posts that will be displayed. The actual number may be "
101
+ "smaller if less related posts are found."
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:210
105
  msgid "Related posts should be newer than:"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:212
109
  msgid "days"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:213
113
+ msgid ""
114
+ "This sets the cutoff period for which posts will be displayed. e.g. setting "
115
+ "it to 365 will show related posts from the last year only."
116
+ msgstr ""
117
+
118
+ #: admin.inc.php:216
119
+ #, fuzzy
120
+ msgid "Post types to include in results."
121
+ msgstr "被索引的日志类型(包含自定义日志类型)"
122
+
123
+ #: admin.inc.php:225
124
+ #, fuzzy
125
+ msgid ""
126
+ "These post types will be displayed in the list. Includes custom post types."
127
  msgstr "被索引的日志类型(包含自定义日志类型)"
128
 
129
+ #: admin.inc.php:228
130
  msgid "Find related posts based on content as well as title"
131
  msgstr "根据标题和正文内容索引"
132
 
133
+ #: admin.inc.php:230
134
  #, fuzzy
135
  msgid ""
136
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
137
  "or enabling \"Cache output\" above if you enable this."
138
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
139
 
140
+ #: admin.inc.php:233
141
+ msgid "Limit content to be compared"
142
+ msgstr ""
143
+
144
+ #: admin.inc.php:235
145
+ msgid ""
146
+ "This sets the maximum words of the content that will be matched. 0 means no "
147
+ "limit."
148
+ msgstr ""
149
+
150
+ #: admin.inc.php:238
151
  msgid "List of post or page IDs to exclude from the results: "
152
  msgstr "排除的文章或页面 ID:"
153
 
154
+ #: admin.inc.php:240 admin.inc.php:327
155
+ msgid ""
156
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
157
+ msgstr ""
158
+
159
+ #: admin.inc.php:243
160
  #, fuzzy
161
  msgid "Categories to exclude from the results: "
162
  msgstr "排除的文章或页面 ID:"
163
 
164
+ #: admin.inc.php:259
165
  msgid ""
166
  "Comma separated list of category slugs. The field above has an autocomplete "
167
  "so simply start typing in the starting letters and it will prompt you with "
168
  "options"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:262
172
  #, fuzzy
173
  msgid "Add related posts to:"
174
  msgstr "添加相关日志到 feed 里"
175
 
176
+ #: admin.inc.php:264
177
  msgid "Posts"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:265
181
  msgid "Pages"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:266
185
  msgid "Home page"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:267
189
  msgid "Feeds"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:268
193
  msgid "Category archives"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:269
197
  msgid "Tag archives"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:270
201
  msgid "Other archives"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:271
205
  msgid ""
206
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
207
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
210
  "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
211
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
212
 
213
+ #: admin.inc.php:274
214
  msgid "Add a link to the plugin page as a final item in the list"
215
  msgstr "在相关日志后添加插件页面的链接"
216
 
217
+ #: admin.inc.php:276
218
  msgid " <em>Optional</em>"
219
  msgstr " <em>可选</em>"
220
 
221
+ #: admin.inc.php:277
222
+ #, fuzzy
223
+ msgid "Adds a nofollow link to Contextual Related Posts homepage."
224
+ msgstr "相关日志"
225
+
226
+ #: admin.inc.php:283
227
  #, fuzzy
228
  msgid "Output options"
229
  msgstr "显示设置"
230
 
231
+ #: admin.inc.php:285
232
  msgid "Title of related posts: "
233
  msgstr "相关日志的标题:"
234
 
235
+ #: admin.inc.php:288
236
+ msgid ""
237
+ "This is the main heading of the related posts. You can also display the "
238
+ "current post title by using <code>%postname%</code>. e.g. <code>Related "
239
+ "Posts to %postname%</code>"
240
+ msgstr ""
241
+
242
+ #: admin.inc.php:291
243
  msgid "When there are no posts, what should be shown?"
244
  msgstr "当不存在相关日志时,显示什么?"
245
 
246
+ #: admin.inc.php:295
247
  msgid "Blank Output"
248
  msgstr "不显示"
249
 
250
+ #: admin.inc.php:299
251
  msgid "Display:"
252
  msgstr ""
253
 
254
+ #: admin.inc.php:303 admin.inc.php:425
255
  msgid "Show post excerpt in list?"
256
  msgstr "是否显示日志摘要?"
257
 
258
+ #: admin.inc.php:306
259
  msgid "Length of excerpt (in words): "
260
  msgstr "摘要长度(词数):"
261
 
262
+ #: admin.inc.php:309
263
  #, fuzzy
264
  msgid "Show post author in list?"
265
  msgstr "是否显示日志摘要?"
266
 
267
+ #: admin.inc.php:312
268
  #, fuzzy
269
  msgid "Show post date in list?"
270
  msgstr "是否显示日志摘要?"
271
 
272
+ #: admin.inc.php:315
273
  msgid "Limit post title length (in characters)"
274
  msgstr ""
275
 
276
+ #: admin.inc.php:318
277
  msgid "Open links in new window"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:321
281
  msgid "Add nofollow attribute to links in the list"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:324
285
  #, fuzzy
286
  msgid "Exclude display of related posts on these posts / pages"
287
  msgstr "添加相关日志到页面里"
288
 
289
+ #: admin.inc.php:330
 
 
 
 
290
  msgid "Customize the output:"
291
  msgstr "自定义显示:"
292
 
293
+ #: admin.inc.php:332
294
  msgid "HTML to display before the list of posts: "
295
  msgstr "显示在每篇日志后面的 HTML 标签:"
296
 
297
+ #: admin.inc.php:335
298
  msgid "HTML to display before each list item: "
299
  msgstr "显示在每篇日志后面的 HTML 标签:"
300
 
301
+ #: admin.inc.php:338
302
  msgid "HTML to display after each list item: "
303
  msgstr "显示在日志列表前面的 HTML 标签:"
304
 
305
+ #: admin.inc.php:341
306
  msgid "HTML to display after the list of posts: "
307
  msgstr "显示在日志列表后面的 HTML 标签:"
308
 
309
+ #: admin.inc.php:344
310
  msgid "Post thumbnail options:"
311
  msgstr "日志缩略图设置:"
312
 
313
+ #: admin.inc.php:346 admin.inc.php:428
314
  msgid "Location of post thumbnail:"
315
  msgstr "日志缩略图位置:"
316
 
317
+ #: admin.inc.php:350 admin.inc.php:432
318
  msgid "Display thumbnails inline with posts, before title"
319
  msgstr "在标题前显示缩略图"
320
 
321
+ #: admin.inc.php:354 admin.inc.php:436
322
  msgid "Display thumbnails inline with posts, after title"
323
  msgstr "在标题后显示缩略图"
324
 
325
+ #: admin.inc.php:358 admin.inc.php:440
326
  msgid "Display only thumbnails, no text"
327
  msgstr "不显示文本,只显示缩略图"
328
 
329
+ #: admin.inc.php:362 admin.inc.php:444
330
  msgid "Do not display thumbnails, only text."
331
  msgstr "不显示缩略图,只显示文本"
332
 
333
+ #: admin.inc.php:366 admin.inc.php:448
334
  msgid "Maximum width of the thumbnail: "
335
  msgstr "缩略图最大宽度"
336
 
337
+ #: admin.inc.php:369 admin.inc.php:451
338
  msgid "Maximum height of the thumbnail: "
339
  msgstr "缩略图最大高度"
340
 
341
+ #: admin.inc.php:372
342
  msgid "Style attributes / Width and Height HTML attributes:"
343
  msgstr ""
344
 
345
+ #: admin.inc.php:376
346
  msgid ""
347
  "Style attributes are used for width and height. <code>style=\"max-width:"
348
  msgstr ""
349
 
350
+ #: admin.inc.php:380
351
  msgid ""
352
  "HTML width and height attributes are used for width and height. <code>width="
353
  "\""
354
  msgstr ""
355
 
356
+ #: admin.inc.php:384
357
  msgid "Use timthumb to generate thumbnails? "
358
  msgstr "是否使用 timthumb 生成缩略图?"
359
 
360
+ #: admin.inc.php:386
361
  msgid ""
362
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
363
  "\">timthumb</a> will be used to generate thumbnails"
365
  "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
366
  "\">timthumb</a> 生成缩略图"
367
 
368
+ #: admin.inc.php:389
369
  msgid "Quality of thumbnails generated by timthumb"
370
  msgstr ""
371
 
372
+ #: admin.inc.php:392
373
  msgid ""
374
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
375
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
376
  msgstr ""
377
 
378
+ #: admin.inc.php:395
379
  msgid "Post thumbnail meta field name: "
380
  msgstr "日志缩略图自定义栏目的名称:"
381
 
382
+ #: admin.inc.php:397
383
  msgid ""
384
  "The value of this field should contain the image source and is set in the "
385
  "<em>Add New Post</em> screen"
386
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
387
 
388
+ #: admin.inc.php:400
389
  msgid ""
390
  "If the postmeta is not set, then should the plugin extract the first image "
391
  "from the post?"
392
  msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
393
 
394
+ #: admin.inc.php:402
395
  msgid ""
396
  "This can slow down the loading of your page if the first image in the "
397
  "related posts is large in file-size"
398
  msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
399
 
400
+ #: admin.inc.php:405
401
  msgid "Use default thumbnail? "
402
  msgstr "是否使用默认缩略图?"
403
 
404
+ #: admin.inc.php:407
405
  msgid ""
406
  "If checked, when no thumbnail is found, show a default one from the URL "
407
  "below. If not checked and no thumbnail is found, no image will be shown."
408
  msgstr ""
409
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
410
 
411
+ #: admin.inc.php:410
412
  msgid "Default thumbnail: "
413
  msgstr "默认缩略图:"
414
 
415
+ #: admin.inc.php:412
416
  msgid ""
417
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
418
  "then it will check the meta field. If this is not available, then it will "
421
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
422
  "示上面默认图像"
423
 
424
+ #: admin.inc.php:418
425
  #, fuzzy
426
  msgid "Feed options"
427
  msgstr "一般设置"
428
 
429
+ #: admin.inc.php:420
430
  msgid ""
431
  "Below options override the related posts settings for your blog feed. These "
432
  "only apply if you have selected to add related posts to Feeds in the General "
433
  "Options tab."
434
  msgstr ""
435
 
436
+ #: admin.inc.php:457
437
  msgid "Custom Styles"
438
  msgstr "自定义样式"
439
 
440
+ #: admin.inc.php:459
441
  msgid "Custom CSS to add to header:"
442
  msgstr "添加自定义 CSS 到 header:"
443
 
444
+ #: admin.inc.php:462
445
  #, fuzzy
446
  msgid ""
447
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
451
  "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
452
  "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
453
 
454
+ #: admin.inc.php:467
455
  msgid "Save Options"
456
  msgstr "保存设置"
457
 
458
+ #: admin.inc.php:468
459
  msgid "Default Options"
460
  msgstr "默认设置"
461
 
462
+ #: admin.inc.php:468
463
  msgid "Do you want to set options to Default?"
464
  msgstr "是否要重置设置?"
465
 
466
+ #: admin.inc.php:469
467
  msgid "Recreate Index"
468
  msgstr "重建索引"
469
 
470
+ #: admin.inc.php:469
471
  msgid "Are you sure you want to recreate the index?"
472
  msgstr "是否要重建索引?"
473
 
474
+ #: admin.inc.php:493
475
  msgid "Contextual Related Posts"
476
  msgstr "Contextual Related Posts"
477
 
478
+ #: admin.inc.php:493 contextual-related-posts.php:314
479
  msgid "Related Posts"
480
  msgstr "相关日志"
481
 
482
+ #: admin.inc.php:506
483
  msgid "plugin settings page"
484
  msgstr "插件设置页面"
485
 
486
+ #: admin.inc.php:511
487
  msgid ""
488
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
489
  "visit the "
490
  msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
491
 
492
+ #: admin.inc.php:511
493
  msgid " to configure."
494
  msgstr "设置插件。"
495
 
496
+ #: admin.inc.php:575
497
  msgid ""
498
  "An error occurred clearing the cache. Please contact your site administrator."
499
  "\\n\\nError message:\\n"
500
  msgstr ""
501
 
502
+ #: admin.inc.php:581
503
  msgid " cached row(s) cleared"
504
  msgstr ""
505
 
506
  #: contextual-related-posts.php:123
507
+ msgid " by "
508
+ msgstr ""
 
509
 
510
  #: contextual-related-posts.php:138
511
  msgid "Powered by"
575
  msgid "No related posts found"
576
  msgstr "没有发现相关日志"
577
 
578
+ #: contextual-related-posts.php:808
579
  msgid "Settings"
580
  msgstr "设置"
581
 
582
+ #: contextual-related-posts.php:831
583
  msgid "Donate"
584
  msgstr "捐赠"
585
 
586
+ #, fuzzy
587
+ #~ msgid " Posted by "
588
+ #~ msgstr "插件作者:"
589
+
590
  #~ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
591
  #~ msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
592
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.0
7
- Tested up to: 3.7
8
  License: GPLv2 or later
9
 
10
  Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
@@ -45,12 +45,22 @@ If you have been using this plugin and find this useful, do consider making a do
45
 
46
  == Upgrade Notice ==
47
 
48
- = 1.8.9.1 =
49
- * New: Select between CSS or HTML attributes for thumbnail width and height; Add author to posts; More options in the widget; More cache control;
50
  Check the Changelog for more information
51
 
52
  == Changelog ==
53
 
 
 
 
 
 
 
 
 
 
 
54
  = 1.8.9.1 =
55
  * Fixed: PHP error when fetching thumbnail for gallery posts
56
 
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.0
7
+ Tested up to: 3.8
8
  License: GPLv2 or later
9
 
10
  Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
45
 
46
  == Upgrade Notice ==
47
 
48
+ = 1.8.9.2 =
49
+ * New features; Modified widget class to `crp_related_widget`; Updated timthumb; Modified format of author name that is displayed;
50
  Check the Changelog for more information
51
 
52
  == Changelog ==
53
 
54
+ = 1.8.9.2 =
55
+ * New: Limit the numbers of characters of the content being compared. This can give a marginal boost to performance
56
+ * New: You can now choose to display the Post title in the Title of the Related posts, by using %postname%
57
+ * Modified: Widget class has been changed to `crp_related_widget`
58
+ * Modified: Including the author in the list will now use the Display Name which is set under “Display name publicly as” in the User Profile page
59
+ * Modified: Updated timthumb
60
+ * Modified: Better handling of `echo_ald_crp` - Thanks to <a href="http://www.flynsarmy.com/">flynsarmy</a> for this patch
61
+ * Fixed: If the Thumbnail meta field is omitted under Output Options, the plugin will automatically revert to its default value i.e. "post-image"
62
+ * Modified: More descriptions for the various options
63
+
64
  = 1.8.9.1 =
65
  * Fixed: PHP error when fetching thumbnail for gallery posts
66
 
timthumb/timthumb.php CHANGED
@@ -20,14 +20,14 @@
20
  * loaded by timthumb. This will save you having to re-edit these variables
21
  * everytime you download a new version
22
  */
23
- define ('VERSION', '2.8.11'); // Version of this script
24
  //Load a config file if it exists. Otherwise, use the values below
25
  if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
  if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
27
  if(! defined('DEBUG_LEVEL') ) define ('DEBUG_LEVEL', 1); // Debug level 1 is less noisy and 3 is the most noisy
28
  if(! defined('MEMORY_LIMIT') ) define ('MEMORY_LIMIT', '30M'); // Set PHP memory limit
29
  if(! defined('BLOCK_EXTERNAL_LEECHERS') ) define ('BLOCK_EXTERNAL_LEECHERS', false); // If the image or webshot is being loaded on an external site, display a red "No Hotlinking" gif.
30
-
31
  //Image fetching and caching
32
  if(! defined('ALLOW_EXTERNAL') ) define ('ALLOW_EXTERNAL', TRUE); // Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
33
  if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', false); // Less secure.
@@ -47,17 +47,23 @@ if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000
47
  if(! defined('BROWSER_CACHE_DISABLE') ) define ('BROWSER_CACHE_DISABLE', false); // Use for testing if you want to disable all browser caching
48
 
49
  //Image size and defaults
50
- if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum image width
51
- if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
- if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
- if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
- if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); // Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
- if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
- if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
- if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
58
- if(! defined('DEFAULT_S') ) define ('DEFAULT_S', 0); // Default sharpen value. Allows overrid in timthumb-config.php
59
- if(! defined('DEFAULT_CC') ) define ('DEFAULT_CC', 'ffffff'); // Default canvas colour. Allows overrid in timthumb-config.php
 
 
60
 
 
 
 
 
61
 
62
  //Image compression is enabled if either of these point to valid paths
63
 
@@ -136,6 +142,7 @@ if(! isset($ALLOWED_SITES)){
136
  'wordpress.com',
137
  'wordpress.org',
138
  'wp.com',
 
139
  );
140
  }
141
  // -------------------------------------------------------------
@@ -223,7 +230,7 @@ class timthumb {
223
  // nothing to worry about! :)
224
  $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
225
  header('Content-Type: image/gif');
226
- header('Content-Length: ' . sizeof($imgData));
227
  header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
228
  header("Pragma: no-cache");
229
  header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
@@ -419,13 +426,16 @@ class timthumb {
419
  }
420
  protected function serveErrors(){
421
  header ($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
 
 
 
422
  $html = '<ul>';
423
  foreach($this->errors as $err){
424
  $html .= '<li>' . htmlentities($err) . '</li>';
425
  }
426
  $html .= '</ul>';
427
  echo '<h1>A TimThumb error has occured</h1>The following error(s) occured:<br />' . $html . '<br />';
428
- echo '<br />Query String : ' . htmlentities ($_SERVER['QUERY_STRING']);
429
  echo '<br />TimThumb version : ' . VERSION . '</pre>';
430
  }
431
  protected function serveInternalImage(){
@@ -531,8 +541,8 @@ class timthumb {
531
 
532
  // set default width and height if neither are set already
533
  if ($new_width == 0 && $new_height == 0) {
534
- $new_width = 100;
535
- $new_height = 100;
536
  }
537
 
538
  // ensure size limits can not be abused
@@ -858,7 +868,11 @@ class timthumb {
858
  return $this->realpath($file);
859
  }
860
  return $this->error("Could not find your website document root and the file specified doesn't exist in timthumbs directory. We don't support serving files outside timthumb's directory without a document root for security reasons.");
861
- } //Do not go past this point without docRoot set
 
 
 
 
862
 
863
  //Try src under docRoot
864
  if(file_exists ($this->docRoot . '/' . $src)) {
20
  * loaded by timthumb. This will save you having to re-edit these variables
21
  * everytime you download a new version
22
  */
23
+ define ('VERSION', '2.8.13'); // Version of this script
24
  //Load a config file if it exists. Otherwise, use the values below
25
  if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
  if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
27
  if(! defined('DEBUG_LEVEL') ) define ('DEBUG_LEVEL', 1); // Debug level 1 is less noisy and 3 is the most noisy
28
  if(! defined('MEMORY_LIMIT') ) define ('MEMORY_LIMIT', '30M'); // Set PHP memory limit
29
  if(! defined('BLOCK_EXTERNAL_LEECHERS') ) define ('BLOCK_EXTERNAL_LEECHERS', false); // If the image or webshot is being loaded on an external site, display a red "No Hotlinking" gif.
30
+ if(! defined('DISPLAY_ERROR_MESSAGES') ) define ('DISPLAY_ERROR_MESSAGES', true); // Display error messages. Set to false to turn off errors (good for production websites)
31
  //Image fetching and caching
32
  if(! defined('ALLOW_EXTERNAL') ) define ('ALLOW_EXTERNAL', TRUE); // Allow image fetching from external websites. Will check against ALLOWED_SITES if ALLOW_ALL_EXTERNAL_SITES is false
33
  if(! defined('ALLOW_ALL_EXTERNAL_SITES') ) define ('ALLOW_ALL_EXTERNAL_SITES', false); // Less secure.
47
  if(! defined('BROWSER_CACHE_DISABLE') ) define ('BROWSER_CACHE_DISABLE', false); // Use for testing if you want to disable all browser caching
48
 
49
  //Image size and defaults
50
+ if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum image width
51
+ if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
+ if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
+ if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
+ if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); // Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
+ if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
+ if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
+ if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
58
+ if(! defined('DEFAULT_S') ) define ('DEFAULT_S', 0); // Default sharpen value. Allows overrid in timthumb-config.php
59
+ if(! defined('DEFAULT_CC') ) define ('DEFAULT_CC', 'ffffff'); // Default canvas colour. Allows overrid in timthumb-config.php
60
+ if(! defined('DEFAULT_WIDTH') ) define ('DEFAULT_WIDTH', 100); // Default thumbnail width. Allows overrid in timthumb-config.php
61
+ if(! defined('DEFAULT_HEIGHT') ) define ('DEFAULT_HEIGHT', 100); // Default thumbnail height. Allows overrid in timthumb-config.php
62
 
63
+ /**
64
+ * Additional Parameters:
65
+ * LOCAL_FILE_BASE_DIRECTORY = Override the DOCUMENT_ROOT. This is best used in timthumb-config.php
66
+ */
67
 
68
  //Image compression is enabled if either of these point to valid paths
69
 
142
  'wordpress.com',
143
  'wordpress.org',
144
  'wp.com',
145
+ 's3.amazonaws.com',
146
  );
147
  }
148
  // -------------------------------------------------------------
230
  // nothing to worry about! :)
231
  $imgData = base64_decode("R0lGODlhUAAMAIAAAP8AAP///yH5BAAHAP8ALAAAAABQAAwAAAJpjI+py+0Po5y0OgAMjjv01YUZ\nOGplhWXfNa6JCLnWkXplrcBmW+spbwvaVr/cDyg7IoFC2KbYVC2NQ5MQ4ZNao9Ynzjl9ScNYpneb\nDULB3RP6JuPuaGfuuV4fumf8PuvqFyhYtjdoeFgAADs=");
232
  header('Content-Type: image/gif');
233
+ header('Content-Length: ' . strlen($imgData));
234
  header('Cache-Control: no-store, no-cache, must-revalidate, max-age=0');
235
  header("Pragma: no-cache");
236
  header('Expires: ' . gmdate ('D, d M Y H:i:s', time()));
426
  }
427
  protected function serveErrors(){
428
  header ($_SERVER['SERVER_PROTOCOL'] . ' 400 Bad Request');
429
+ if ( ! DISPLAY_ERROR_MESSAGES ) {
430
+ return;
431
+ }
432
  $html = '<ul>';
433
  foreach($this->errors as $err){
434
  $html .= '<li>' . htmlentities($err) . '</li>';
435
  }
436
  $html .= '</ul>';
437
  echo '<h1>A TimThumb error has occured</h1>The following error(s) occured:<br />' . $html . '<br />';
438
+ echo '<br />Query String : ' . htmlentities( $_SERVER['QUERY_STRING'], ENT_QUOTES );
439
  echo '<br />TimThumb version : ' . VERSION . '</pre>';
440
  }
441
  protected function serveInternalImage(){
541
 
542
  // set default width and height if neither are set already
543
  if ($new_width == 0 && $new_height == 0) {
544
+ $new_width = (int) DEFAULT_WIDTH;
545
+ $new_height = (int) DEFAULT_HEIGHT;
546
  }
547
 
548
  // ensure size limits can not be abused
868
  return $this->realpath($file);
869
  }
870
  return $this->error("Could not find your website document root and the file specified doesn't exist in timthumbs directory. We don't support serving files outside timthumb's directory without a document root for security reasons.");
871
+ } else if ( ! is_dir( $this->docRoot ) ) {
872
+ $this->error("Server path does not exist. Ensure variable \$_SERVER['DOCUMENT_ROOT'] is set correctly");
873
+ }
874
+
875
+ //Do not go past this point without docRoot set
876
 
877
  //Try src under docRoot
878
  if(file_exists ($this->docRoot . '/' . $src)) {