Contextual Related Posts - Version 1.8.1

Version Description

  • New widget support; performance improvements; use the excerpt; exclude posts / pages by page id.

=

Download this release

Release Info

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

Code changes from version 1.8 to 1.8.1

admin.inc.php CHANGED
@@ -25,7 +25,6 @@ function crp_options() {
25
  $crp_settings[add_to_page] = (($_POST['add_to_page']) ? true : false);
26
  $crp_settings[add_to_feed] = (($_POST['add_to_feed']) ? true : false);
27
  $crp_settings[match_content] = (($_POST['match_content']) ? true : false);
28
- $crp_settings[exclude_pages] = (($_POST['exclude_pages']) ? true : false);
29
  $crp_settings[blank_output] = (($_POST['blank_output'] == 'blank' ) ? true : false);
30
  $crp_settings[blank_output_text] = $_POST['blank_output_text'];
31
  $crp_settings[post_thumb_op] = $_POST['post_thumb_op'];
@@ -44,6 +43,7 @@ function crp_options() {
44
  $crp_settings[excerpt_length] = intval($_POST['excerpt_length']);
45
  $crp_settings[show_credit] = (($_POST['show_credit']) ? true : false);
46
  $crp_settings[custom_CSS] = $_POST['custom_CSS'];
 
47
 
48
  $exclude_categories_slugs = explode(", ",$crp_settings[exclude_cat_slugs]);
49
 
@@ -123,18 +123,21 @@ function crp_options() {
123
  <input type="hidden" name="currency_code" value="USD">
124
  <input type="hidden" name="button_subtype" value="services">
125
  <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
126
- <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="<?php _e('Send your donation to the author of',CRP_LOCAL_NAME) ?> Contextual Related Posts?">
127
  <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
128
  </form>
129
  </div>
130
  </div>
131
  <div class="side-widget">
 
 
 
132
  <span class="title"><?php _e('Quick links') ?></span>
133
  <ul>
134
  <li><a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/"><?php _e('Contextual Related Posts ');_e('plugin page',CRP_LOCAL_NAME) ?></a></li>
135
  <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',CRP_LOCAL_NAME) ?></a></li>
136
  <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',CRP_LOCAL_NAME) ?></a></li>
137
- <li><a href="http://ajaydsouza.com/support/"><?php _e('Support',CRP_LOCAL_NAME) ?></a></li>
138
  <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',CRP_LOCAL_NAME) ?></a></li>
139
  </ul>
140
  </div>
@@ -143,9 +146,6 @@ function crp_options() {
143
  <?php require_once(ABSPATH . WPINC . '/rss.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1));
144
  ?>
145
  </div>
146
- <div class="side-widget">
147
- <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&amp;width=292&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=false&amp;header=true&amp;appId=113175385243" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
148
- </div>
149
  </div>
150
 
151
  <div id="options-div">
@@ -160,6 +160,26 @@ function crp_options() {
160
  <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
161
  <td><input type="textbox" name="limit" id="limit" value="<?php echo attribute_escape(stripslashes($crp_settings[limit])); ?>"></td>
162
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  <tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',CRP_LOCAL_NAME); ?></label></th>
164
  <td>
165
  <div style="position:relative;text-align:left">
@@ -187,26 +207,6 @@ function crp_options() {
187
  <tr style="vertical-align: top;"><th scope="row"><label for="add_to_feed"><?php _e('Add related posts to feed',CRP_LOCAL_NAME); ?></label></th>
188
  <td><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ($crp_settings[add_to_feed]) echo 'checked="checked"' ?> /></td>
189
  </tr>
190
- <tr style="vertical-align: top;"><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
191
- <td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings[match_content]) echo 'checked="checked"' ?> /> <br /><?php _e('If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)',CRP_LOCAL_NAME); ?></td>
192
- </tr>
193
- <tr style="vertical-align: top;"><th scope="row"><label for="exclude_pages"><?php _e('Exclude Pages in Related Posts',CRP_LOCAL_NAME); ?></label></th>
194
- <td><input type="checkbox" name="exclude_pages" id="exclude_pages" <?php if ($crp_settings[exclude_pages]) echo 'checked="checked"' ?> /></td>
195
- </tr>
196
- <tr style="vertical-align: top;"><th scope="row"><label for="exclude_pages"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></label></th>
197
- <td>
198
- <select name="post_types[]" multiple="multiple" size="<?php echo min(20,count($wp_post_types)); ?>">
199
- <?php foreach ($wp_post_types as $wp_post_type) {
200
- $post_type_op = '<option value="'.$wp_post_type.'"';
201
- if (in_array($wp_post_type, $posts_types_inc)) $post_type_op .= 'selected="selected"';
202
- $post_type_op .= '>'.$wp_post_type.'</option>';
203
- echo $post_type_op;
204
- }
205
- ?>
206
- </select>
207
- <br /><?php _e('Use CTRL on Windows and COMMAND on Mac to select multiple items',CRP_LOCAL_NAME); ?>
208
- </td>
209
- </tr>
210
  <tr style="vertical-align: top;"><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>
211
  <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>
212
  </tr>
@@ -304,16 +304,16 @@ function crp_options() {
304
  <?php _e('Custom Styles',CRP_LOCAL_NAME); ?>
305
  </h3>
306
  <table class="form-table">
307
- <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',ATA_LOCAL_NAME); ?></th>
308
  </tr>
309
  <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($crp_settings[custom_CSS]); ?></textarea>
310
- <br /><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ</a> for available CSS classes to style.',ATA_LOCAL_NAME); ?></em></td></tr>
311
  </table>
312
  </div>
313
  <p>
314
- <input type="submit" name="crp_save" id="crp_save" value="Save Options" style="border:#0C0 1px solid" />
315
- <input name="crp_default" type="submit" id="crp_default" value="Default Options" style="border:#F00 1px solid" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',CRP_LOCAL_NAME); ?>')) return false;" />
316
- <input name="crp_recreate" type="submit" id="crp_recreate" value="Recreate index" style="border:#00c 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to recreate the index?',CRP_LOCAL_NAME); ?>')) return false;" />
317
  </p>
318
  </fieldset>
319
  </form>
25
  $crp_settings[add_to_page] = (($_POST['add_to_page']) ? true : false);
26
  $crp_settings[add_to_feed] = (($_POST['add_to_feed']) ? true : false);
27
  $crp_settings[match_content] = (($_POST['match_content']) ? true : false);
 
28
  $crp_settings[blank_output] = (($_POST['blank_output'] == 'blank' ) ? true : false);
29
  $crp_settings[blank_output_text] = $_POST['blank_output_text'];
30
  $crp_settings[post_thumb_op] = $_POST['post_thumb_op'];
43
  $crp_settings[excerpt_length] = intval($_POST['excerpt_length']);
44
  $crp_settings[show_credit] = (($_POST['show_credit']) ? true : false);
45
  $crp_settings[custom_CSS] = $_POST['custom_CSS'];
46
+ $crp_settings[exclude_post_ids] = $_POST['exclude_post_ids'];
47
 
48
  $exclude_categories_slugs = explode(", ",$crp_settings[exclude_cat_slugs]);
49
 
123
  <input type="hidden" name="currency_code" value="USD">
124
  <input type="hidden" name="button_subtype" value="services">
125
  <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
126
+ <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="<?php _e('Send your donation to the author of',CRP_LOCAL_NAME) ?> Contextual Related Posts" title="<?php _e('Send your donation to the author of',CRP_LOCAL_NAME) ?> Contextual Related Posts">
127
  <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
128
  </form>
129
  </div>
130
  </div>
131
  <div class="side-widget">
132
+ <iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&amp;width=292&amp;height=62&amp;colorscheme=light&amp;show_faces=false&amp;border_color&amp;stream=false&amp;header=true&amp;appId=113175385243" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
133
+ </div>
134
+ <div class="side-widget">
135
  <span class="title"><?php _e('Quick links') ?></span>
136
  <ul>
137
  <li><a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/"><?php _e('Contextual Related Posts ');_e('plugin page',CRP_LOCAL_NAME) ?></a></li>
138
  <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',CRP_LOCAL_NAME) ?></a></li>
139
  <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',CRP_LOCAL_NAME) ?></a></li>
140
+ <li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e('Support',CRP_LOCAL_NAME) ?></a></li>
141
  <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',CRP_LOCAL_NAME) ?></a></li>
142
  </ul>
143
  </div>
146
  <?php require_once(ABSPATH . WPINC . '/rss.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1));
147
  ?>
148
  </div>
 
 
 
149
  </div>
150
 
151
  <div id="options-div">
160
  <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
161
  <td><input type="textbox" name="limit" id="limit" value="<?php echo attribute_escape(stripslashes($crp_settings[limit])); ?>"></td>
162
  </tr>
163
+ <tr style="vertical-align: top;"><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
164
+ <td>
165
+ <select name="post_types[]" multiple="multiple" size="<?php echo min(20,count($wp_post_types)); ?>">
166
+ <?php foreach ($wp_post_types as $wp_post_type) {
167
+ $post_type_op = '<option value="'.$wp_post_type.'"';
168
+ if (in_array($wp_post_type, $posts_types_inc)) $post_type_op .= 'selected="selected"';
169
+ $post_type_op .= '>'.$wp_post_type.'</option>';
170
+ echo $post_type_op;
171
+ }
172
+ ?>
173
+ </select>
174
+ <br /><?php _e('Use CTRL on Windows and COMMAND on Mac to select multiple items',CRP_LOCAL_NAME); ?>
175
+ </td>
176
+ </tr>
177
+ <tr style="vertical-align: top;"><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
178
+ <td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings[match_content]) echo 'checked="checked"' ?> /> <br /><?php _e('If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)',CRP_LOCAL_NAME); ?></td>
179
+ </tr>
180
+ <tr style="vertical-align: top;"><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>
181
+ <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo attribute_escape(stripslashes($crp_settings[exclude_post_ids])); ?>" style="width:250px"></td>
182
+ </tr>
183
  <tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',CRP_LOCAL_NAME); ?></label></th>
184
  <td>
185
  <div style="position:relative;text-align:left">
207
  <tr style="vertical-align: top;"><th scope="row"><label for="add_to_feed"><?php _e('Add related posts to feed',CRP_LOCAL_NAME); ?></label></th>
208
  <td><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ($crp_settings[add_to_feed]) echo 'checked="checked"' ?> /></td>
209
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  <tr style="vertical-align: top;"><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>
211
  <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>
212
  </tr>
304
  <?php _e('Custom Styles',CRP_LOCAL_NAME); ?>
305
  </h3>
306
  <table class="form-table">
307
+ <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
308
  </tr>
309
  <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($crp_settings[custom_CSS]); ?></textarea>
310
+ <br /><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ</a> for available CSS classes to style.',CRP_LOCAL_NAME); ?></em></td></tr>
311
  </table>
312
  </div>
313
  <p>
314
+ <input type="submit" name="crp_save" id="crp_save" value="<?php _e('Save Options',CRP_LOCAL_NAME); ?>" style="border:#0C0 1px solid" />
315
+ <input name="crp_default" type="submit" id="crp_default" value="<?php _e('Default Options',CRP_LOCAL_NAME); ?>" style="border:#F00 1px solid" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',CRP_LOCAL_NAME); ?>')) return false;" />
316
+ <input name="crp_recreate" type="submit" id="crp_recreate" value="<?php _e('Recreate Index',CRP_LOCAL_NAME); ?>" style="border:#00c 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to recreate the index?',CRP_LOCAL_NAME); ?>')) return false;" />
317
  </p>
318
  </fieldset>
319
  </form>
contextual-related-posts.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
- Version: 1.8
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
@@ -10,7 +10,7 @@ Author URI: http://ajaydsouza.com/
10
 
11
  if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
12
 
13
- define('ALD_crp_DIR', dirname(__FILE__));
14
  define('CRP_LOCAL_NAME', 'crp');
15
 
16
  // Pre-2.6 compatibility
@@ -31,7 +31,7 @@ function ald_crp_init() {
31
  //* Begin Localization Code */
32
  $crp_localizationName = CRP_LOCAL_NAME;
33
  $crp_comments_locale = get_locale();
34
- $crp_comments_mofile = ALD_crp_DIR . "/languages/" . $crp_localizationName . "-". $crp_comments_locale.".mo";
35
  load_textdomain($crp_localizationName, $crp_comments_mofile);
36
  //* End Localization Code */
37
  }
@@ -41,12 +41,32 @@ add_action('init', 'ald_crp_init');
41
  /*********************************************************************
42
  * Main Function (Do not edit) *
43
  ********************************************************************/
44
- function ald_crp() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  global $wpdb, $post, $single;
46
 
47
  $crp_settings = crp_read_options();
48
  parse_str($crp_settings['post_types'],$post_types);
49
- $limit = (stripslashes($crp_settings['limit']));
 
 
50
  $exclude_categories = explode(',',$crp_settings['exclude_categories']);
51
 
52
  // Make sure the post is not from the future
@@ -67,8 +87,9 @@ function ald_crp() {
67
  . "MATCH (post_title,post_content) AGAINST ('".$stuff."') "
68
  . "AND post_date <= '".$now."' "
69
  . "AND post_status = 'publish' "
70
- . "AND id != ".$post->ID." "
71
- . "AND ( ";
 
72
  $multiple = false;
73
  foreach ($post_types as $post_type) {
74
  if ( $multiple ) $sql .= ' OR ';
@@ -87,7 +108,7 @@ function ald_crp() {
87
  $output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
88
 
89
  if($searches){
90
- $output .= (stripslashes($crp_settings[title]));
91
  $output .= $crp_settings['before_list'];
92
  foreach($searches as $search) {
93
  $categorys = get_the_category($search->ID); //Fetch categories of the plugin
@@ -102,17 +123,17 @@ function ald_crp() {
102
  $output .= $crp_settings['before_list_item'];
103
 
104
  //$output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_link">'; // Add beginning of link
105
- if ($crp_settings['post_thumb_op']=='after') {
106
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_title">'.$title.'</a>'; // Add title if post thumbnail is to be displayed after
107
  }
108
- if ($crp_settings['post_thumb_op']=='inline' || $crp_settings['post_thumb_op']=='after' || $crp_settings['post_thumb_op']=='thumbs_only') {
109
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark">'.crp_get_the_post_thumbnail($search->ID).'</a>';
110
  }
111
- if ($crp_settings['post_thumb_op']=='inline' || $crp_settings['post_thumb_op']=='text_only') {
112
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_title">'.$title.'</a>'; // Add title when required by settings
113
  }
114
  //$output .= '</a>'; // Close the link
115
- if ($crp_settings['show_excerpt']) {
116
  $output .= '<span class="crp_excerpt"> '.crp_excerpt($search->ID,$crp_settings['excerpt_length']).'</span>';
117
  }
118
  $output .= $crp_settings['after_list_item'];
@@ -128,6 +149,7 @@ function ald_crp() {
128
  $output .= $crp_settings['after_list'];
129
  }else{
130
  $output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.__('No related posts found',CRP_LOCAL_NAME).'</p>';
 
131
  }
132
  if ((strpos($output, $crp_settings['before_list_item'])) === false) {
133
  $output = '<div id="crp_related">';
@@ -142,14 +164,13 @@ function ald_crp_content($content) {
142
 
143
  global $single;
144
  $crp_settings = crp_read_options();
145
- $output = ald_crp();
146
 
147
  if((is_single())&&($crp_settings['add_to_content'])) {
148
- return $content.$output;
149
  } elseif((is_page())&&($crp_settings['add_to_page'])) {
150
- return $content.$output;
151
  } elseif((is_feed())&&($crp_settings['add_to_feed'])) {
152
- return $content.$output;
153
  } else {
154
  return $content;
155
  }
@@ -157,10 +178,93 @@ function ald_crp_content($content) {
157
  add_filter('the_content', 'ald_crp_content');
158
 
159
  function echo_ald_crp() {
160
- $output = ald_crp();
161
- echo $output;
162
  }
163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  // Default Options
165
  function crp_default_options() {
166
  global $crp_url;
@@ -181,10 +285,10 @@ function crp_default_options() {
181
  'limit' => '5', // How many posts to display?
182
  'show_credit' => false, // Link to this plugin's page?
183
  'match_content' => true, // Match against post content as well as title
184
- 'exclude_pages' => true, // Exclude Pages
185
  'blank_output' => true, // Blank output?
186
  'exclude_categories' => '', // Exclude these categories
187
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
 
188
  'before_list' => '<ul>', // Before the entire list
189
  'after_list' => '</ul>', // After the entire list
190
  'before_list_item' => '<li>', // Before each list item
@@ -301,7 +405,8 @@ function crp_get_the_post_thumbnail($postid) {
301
 
302
  // Function to create an excerpt for the post
303
  function crp_excerpt($id,$excerpt_length){
304
- $content = get_post($id)->post_content;
 
305
  $out = strip_tags($content);
306
  $blah = explode(' ',$out);
307
  if (!$excerpt_length) $excerpt_length = 10;
@@ -321,9 +426,19 @@ function crp_excerpt($id,$excerpt_length){
321
  return $out;
322
  }
323
 
 
 
 
 
 
 
 
 
 
 
324
  // This function adds an Options page in WP Admin
325
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
326
- require_once(ALD_crp_DIR . "/admin.inc.php");
327
 
328
  // Add meta links
329
  function crp_plugin_actions( $links, $file ) {
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
+ Version: 1.8.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
10
 
11
  if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
12
 
13
+ define('ALD_CRP_DIR', dirname(__FILE__));
14
  define('CRP_LOCAL_NAME', 'crp');
15
 
16
  // Pre-2.6 compatibility
31
  //* Begin Localization Code */
32
  $crp_localizationName = CRP_LOCAL_NAME;
33
  $crp_comments_locale = get_locale();
34
+ $crp_comments_mofile = ALD_CRP_DIR . "/languages/" . $crp_localizationName . "-". $crp_comments_locale.".mo";
35
  load_textdomain($crp_localizationName, $crp_comments_mofile);
36
  //* End Localization Code */
37
  }
41
  /*********************************************************************
42
  * Main Function (Do not edit) *
43
  ********************************************************************/
44
+ function ald_crp( $args ) {
45
+ $defaults = array(
46
+ 'is_widget' => FALSE,
47
+ 'echo' => TRUE,
48
+ );
49
+ $defaults = array_merge($defaults, crp_read_options());
50
+
51
+ // Parse incomming $args into an array and merge it with $defaults
52
+ $args = wp_parse_args( $args, $defaults );
53
+
54
+ // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
55
+ extract( $args, EXTR_SKIP );
56
+
57
+ return get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op);
58
+ }
59
+
60
+
61
+ //function get_crp($is_widget = FALSE, $limit = '5', $show_excerpt = FALSE) {
62
+ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
63
  global $wpdb, $post, $single;
64
 
65
  $crp_settings = crp_read_options();
66
  parse_str($crp_settings['post_types'],$post_types);
67
+ if (empty($limit)) $limit = stripslashes($crp_settings['limit']);
68
+ if (empty($post_thumb_op)) $post_thumb_op = stripslashes($crp_settings['post_thumb_op']);
69
+ if (!isset($show_excerpt)) $show_excerpt = $crp_settings['show_excerpt'];
70
  $exclude_categories = explode(',',$crp_settings['exclude_categories']);
71
 
72
  // Make sure the post is not from the future
87
  . "MATCH (post_title,post_content) AGAINST ('".$stuff."') "
88
  . "AND post_date <= '".$now."' "
89
  . "AND post_status = 'publish' "
90
+ . "AND id != ".$post->ID." ";
91
+ if ($crp_settings[exclude_post_ids]!='') $sql .= "AND id NOT IN (".$crp_settings[exclude_post_ids].") ";
92
+ $sql .= "AND ( ";
93
  $multiple = false;
94
  foreach ($post_types as $post_type) {
95
  if ( $multiple ) $sql .= ' OR ';
108
  $output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
109
 
110
  if($searches){
111
+ if(!$is_widget) $output .= (stripslashes($crp_settings[title]));
112
  $output .= $crp_settings['before_list'];
113
  foreach($searches as $search) {
114
  $categorys = get_the_category($search->ID); //Fetch categories of the plugin
123
  $output .= $crp_settings['before_list_item'];
124
 
125
  //$output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_link">'; // Add beginning of link
126
+ if ($post_thumb_op=='after') {
127
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_title">'.$title.'</a>'; // Add title if post thumbnail is to be displayed after
128
  }
129
+ if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
130
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark">'.crp_get_the_post_thumbnail($search->ID).'</a>';
131
  }
132
+ if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
133
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_title">'.$title.'</a>'; // Add title when required by settings
134
  }
135
  //$output .= '</a>'; // Close the link
136
+ if ($show_excerpt) {
137
  $output .= '<span class="crp_excerpt"> '.crp_excerpt($search->ID,$crp_settings['excerpt_length']).'</span>';
138
  }
139
  $output .= $crp_settings['after_list_item'];
149
  $output .= $crp_settings['after_list'];
150
  }else{
151
  $output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.__('No related posts found',CRP_LOCAL_NAME).'</p>';
152
+ //$output .= '<p>'.strip_tags($sql).'</p>';
153
  }
154
  if ((strpos($output, $crp_settings['before_list_item'])) === false) {
155
  $output = '<div id="crp_related">';
164
 
165
  global $single;
166
  $crp_settings = crp_read_options();
 
167
 
168
  if((is_single())&&($crp_settings['add_to_content'])) {
169
+ return $content.ald_crp();
170
  } elseif((is_page())&&($crp_settings['add_to_page'])) {
171
+ return $content.ald_crp();
172
  } elseif((is_feed())&&($crp_settings['add_to_feed'])) {
173
+ return $content.ald_crp();
174
  } else {
175
  return $content;
176
  }
178
  add_filter('the_content', 'ald_crp_content');
179
 
180
  function echo_ald_crp() {
181
+ echo get_crp(FALSE);
 
182
  }
183
 
184
+ // Create a Wordpress Widget for CRP
185
+ class WidgetCRP extends WP_Widget
186
+ {
187
+ function WidgetCRP()
188
+ {
189
+ $widget_ops = array('classname' => 'widget_crp', 'description' => __( 'Display Related Posts',CRP_LOCAL_NAME) );
190
+ $this->WP_Widget('widget_crp',__('Related Posts',CRP_LOCAL_NAME), $widget_ops);
191
+ }
192
+ function form($instance) {
193
+ $title = esc_attr($instance['title']);
194
+ $limit = esc_attr($instance['limit']);
195
+ $show_excerpt = esc_attr($instance['show_excerpt']);
196
+ $post_thumb_op = esc_attr($instance['post_thumb_op']);
197
+ ?>
198
+ <p>
199
+ <label for="<?php echo $this->get_field_id('title'); ?>">
200
+ <?php _e('Title', CRP_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo attribute_escape($title); ?>" />
201
+ </label>
202
+ </p>
203
+ <p>
204
+ <label for="<?php echo $this->get_field_id('limit'); ?>">
205
+ <?php _e('No. of posts', CRP_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('limit'); ?>" name="<?php echo $this->get_field_name('limit'); ?>" type="text" value="<?php echo attribute_escape($limit); ?>" />
206
+ </label>
207
+ </p>
208
+ <p>
209
+ <?php _e('Thumbnail options', CRP_LOCAL_NAME); ?>: <br />
210
+ <select class="widefat" id="<?php echo $this->get_field_id('post_thumb_op'); ?>" name="<?php echo $this->get_field_name('post_thumb_op'); ?>">
211
+ <option value="inline" <?php if ($post_thumb_op=='inline') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, before title',CRP_LOCAL_NAME); ?></option>
212
+ <option value="after" <?php if ($post_thumb_op=='after') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, after title',CRP_LOCAL_NAME); ?></option>
213
+ <option value="thumbs_only" <?php if ($post_thumb_op=='thumbs_only') echo 'selected="selected"' ?>><?php _e('Only thumbnails, no text',CRP_LOCAL_NAME); ?></option>
214
+ <option value="text_only" <?php if ($post_thumb_op=='text_only') echo 'selected="selected"' ?>><?php _e('No thumbnails, only text.',CRP_LOCAL_NAME); ?></option>
215
+ </select>
216
+ </p>
217
+ <p>
218
+ <label for="<?php echo $this->get_field_id('show_excerpt'); ?>">
219
+ <input id="<?php echo $this->get_field_id('show_excerpt'); ?>" name="<?php echo $this->get_field_name('show_excerpt'); ?>" type="checkbox" <?php if ($show_excerpt) echo 'checked="checked"' ?> /> <?php _e(' Show excerpt?', CRP_LOCAL_NAME); ?>
220
+ </label>
221
+ </p>
222
+ <?php
223
+ } //ending form creation
224
+ function update($new_instance, $old_instance) {
225
+ $instance = $old_instance;
226
+ $instance['title'] = strip_tags($new_instance['title']);
227
+ $instance['limit'] = ($new_instance['limit']);
228
+ $instance['show_excerpt'] = ($new_instance['show_excerpt']);
229
+ $instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
230
+ return $instance;
231
+ } //ending update
232
+ function widget($args, $instance) {
233
+ global $wpdb;
234
+
235
+ extract($args, EXTR_SKIP);
236
+
237
+ $crp_settings = crp_read_options();
238
+
239
+ $title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($crp_settings[title]) : $instance['title']);
240
+ $limit = $instance['limit'];
241
+ $show_excerpt = $instance['show_excerpt'];
242
+ $post_thumb_op = $instance['post_thumb_op'];
243
+ if (empty($limit)) $limit = $crp_settings[limit];
244
+
245
+ $output = $before_widget;
246
+ $output .= $before_title . $title . $after_title;
247
+ $output .= ald_crp('is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op);
248
+ $output .= $after_widget;
249
+
250
+ if((is_single())&&($crp_settings['add_to_content'])) {
251
+ echo $output;
252
+ } elseif((is_page())&&($crp_settings['add_to_page'])) {
253
+ echo $output;
254
+ } elseif((is_feed())&&($crp_settings['add_to_feed'])) {
255
+ echo $output;
256
+ }
257
+
258
+ } //ending function widget
259
+ }
260
+ function init_ald_crp(){
261
+ if (function_exists('register_widget')) {
262
+ register_widget('WidgetCRP');
263
+ }
264
+ }
265
+ add_action('init', 'init_ald_crp', 1);
266
+
267
+
268
  // Default Options
269
  function crp_default_options() {
270
  global $crp_url;
285
  'limit' => '5', // How many posts to display?
286
  'show_credit' => false, // Link to this plugin's page?
287
  'match_content' => true, // Match against post content as well as title
 
288
  'blank_output' => true, // Blank output?
289
  'exclude_categories' => '', // Exclude these categories
290
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
291
+ 'exclude_post_ids' => '', // Comma separated list of page / post IDs
292
  'before_list' => '<ul>', // Before the entire list
293
  'after_list' => '</ul>', // After the entire list
294
  'before_list_item' => '<li>', // Before each list item
405
 
406
  // Function to create an excerpt for the post
407
  function crp_excerpt($id,$excerpt_length){
408
+ $content = get_post($id)->post_excerpt;
409
+ if ($content=='') $content = get_post($id)->post_content;
410
  $out = strip_tags($content);
411
  $blah = explode(' ',$out);
412
  if (!$excerpt_length) $excerpt_length = 10;
426
  return $out;
427
  }
428
 
429
+ // Function to save the global page ID. Used for the widget
430
+ // Code from: http://indrek.it/blog/wordpress-front-page-vs-home-page-and-getting-post-id-outside-or-after-the-loop-in-every-possible-way/
431
+ function crp_save_page_ID() {
432
+ // Declare globals as before
433
+ global $crp_page_id;
434
+ global $post;
435
+ $my_page_id = $post->ID;
436
+ }
437
+ add_action('wp_head', 'crp_save_page_ID');
438
+
439
  // This function adds an Options page in WP Admin
440
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
441
+ require_once(ALD_CRP_DIR . "/admin.inc.php");
442
 
443
  // Add meta links
444
  function crp_plugin_actions( $links, $file ) {
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: 2012-06-04 18:53-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"
@@ -42,37 +42,37 @@ msgstr ""
42
  msgid "Send your donation to the author of"
43
  msgstr ""
44
 
45
- #: admin.inc.php:132
46
  msgid "Quick links"
47
  msgstr ""
48
 
49
- #: admin.inc.php:134
50
  #, fuzzy
51
  msgid "Contextual Related Posts "
52
  msgstr "Related Posts (Lignende indlæg)"
53
 
54
- #: admin.inc.php:134
55
  msgid "plugin page"
56
  msgstr ""
57
 
58
- #: admin.inc.php:135
59
  msgid "Other plugins"
60
  msgstr ""
61
 
62
- #: admin.inc.php:136
63
  msgid "Ajay's blog"
64
  msgstr ""
65
 
66
- #: admin.inc.php:137
67
- #: contextual-related-posts.php:336
68
  msgid "Support"
69
  msgstr "Support"
70
 
71
- #: admin.inc.php:138
72
  msgid "Follow @ajaydsouza on Twitter"
73
  msgstr ""
74
 
75
- #: admin.inc.php:142
76
  msgid "Recent developments"
77
  msgstr ""
78
 
@@ -85,49 +85,49 @@ msgid "Number of related posts to display: "
85
  msgstr "Antal Lignende indlæg, der skal vises: "
86
 
87
  #: admin.inc.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  msgid "Exclude Categories: "
89
  msgstr "Udelad kategorier: "
90
 
91
- #: admin.inc.php:181
92
  msgid "Add related posts to the post content on single posts"
93
  msgstr ""
94
 
95
- #: admin.inc.php:182
96
- #: admin.inc.php:185
97
  #, fuzzy
98
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
99
  msgstr "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
100
 
101
- #: admin.inc.php:184
102
  #, fuzzy
103
  msgid "Add related posts to pages"
104
  msgstr "Tilføj Lignende indlæg til feeds"
105
 
106
- #: admin.inc.php:187
107
  msgid "Add related posts to feed"
108
  msgstr "Tilføj Lignende indlæg til feeds"
109
 
110
- #: admin.inc.php:190
111
- msgid "Find related posts based on content as well as title"
112
- msgstr ""
113
-
114
- #: admin.inc.php:191
115
- #, fuzzy
116
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
117
- msgstr "Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer dette)"
118
-
119
- #: admin.inc.php:193
120
- msgid "Exclude Pages in Related Posts"
121
- msgstr "Udelad sider i Lignende indlæg"
122
-
123
- #: admin.inc.php:196
124
- msgid "Post types to include in results (including custom post types)"
125
- msgstr ""
126
-
127
- #: admin.inc.php:207
128
- msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
129
- msgstr ""
130
-
131
  #: admin.inc.php:210
132
  msgid "Add a link to the plugin page as a final item in the list"
133
  msgstr ""
@@ -273,10 +273,24 @@ msgstr ""
273
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
274
  msgstr ""
275
 
 
 
 
 
 
 
 
 
 
 
276
  #: admin.inc.php:315
277
  msgid "Do you want to set options to Default?"
278
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
279
 
 
 
 
 
280
  #: admin.inc.php:316
281
  msgid "Are you sure you want to recreate the index?"
282
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
@@ -287,6 +301,7 @@ msgid "Contextual Related Posts"
287
  msgstr "Related Posts (Lignende indlæg)"
288
 
289
  #: admin.inc.php:346
 
290
  msgid "Related Posts"
291
  msgstr "Related Posts (Lignende indlæg)"
292
 
@@ -302,29 +317,71 @@ msgstr ""
302
  msgid " to configure."
303
  msgstr ""
304
 
305
- #: contextual-related-posts.php:125
306
  msgid "Powered by"
307
  msgstr ""
308
 
309
- #: contextual-related-posts.php:130
310
- #: contextual-related-posts.php:134
311
  msgid "No related posts found"
312
  msgstr "Ingen lignende indlæg fundet"
313
 
314
- #: contextual-related-posts.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "<h3>Related Posts:</h3>"
316
  msgstr "<h3>Lignende indlæg:</h3>"
317
 
318
- #: contextual-related-posts.php:335
319
  msgid "Settings"
320
  msgstr "Opsætning"
321
 
322
- #: contextual-related-posts.php:337
323
  msgid "Donate"
324
  msgstr "Donation"
325
 
326
- #~ msgid "Options:"
327
- #~ msgstr "Indstillinger:"
328
 
329
  #~ msgid ""
330
  #~ "Add related posts to the post content on single posts. <br />If you "
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:23-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"
42
  msgid "Send your donation to the author of"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:135
46
  msgid "Quick links"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:137
50
  #, fuzzy
51
  msgid "Contextual Related Posts "
52
  msgstr "Related Posts (Lignende indlæg)"
53
 
54
+ #: admin.inc.php:137
55
  msgid "plugin page"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:138
59
  msgid "Other plugins"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:139
63
  msgid "Ajay's blog"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:140
67
+ #: contextual-related-posts.php:451
68
  msgid "Support"
69
  msgstr "Support"
70
 
71
+ #: admin.inc.php:141
72
  msgid "Follow @ajaydsouza on Twitter"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:145
76
  msgid "Recent developments"
77
  msgstr ""
78
 
85
  msgstr "Antal Lignende indlæg, der skal vises: "
86
 
87
  #: admin.inc.php:163
88
+ msgid "Post types to include in results (including custom post types)"
89
+ msgstr ""
90
+
91
+ #: admin.inc.php:174
92
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
93
+ msgstr ""
94
+
95
+ #: admin.inc.php:177
96
+ msgid "Find related posts based on content as well as title"
97
+ msgstr ""
98
+
99
+ #: admin.inc.php:178
100
+ #, fuzzy
101
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
102
+ msgstr "Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer dette)"
103
+
104
+ #: admin.inc.php:180
105
+ msgid "List of post or page IDs to exclude from the results: "
106
+ msgstr ""
107
+
108
+ #: admin.inc.php:183
109
  msgid "Exclude Categories: "
110
  msgstr "Udelad kategorier: "
111
 
112
+ #: admin.inc.php:201
113
  msgid "Add related posts to the post content on single posts"
114
  msgstr ""
115
 
116
+ #: admin.inc.php:202
117
+ #: admin.inc.php:205
118
  #, fuzzy
119
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
120
  msgstr "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
121
 
122
+ #: admin.inc.php:204
123
  #, fuzzy
124
  msgid "Add related posts to pages"
125
  msgstr "Tilføj Lignende indlæg til feeds"
126
 
127
+ #: admin.inc.php:207
128
  msgid "Add related posts to feed"
129
  msgstr "Tilføj Lignende indlæg til feeds"
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  #: admin.inc.php:210
132
  msgid "Add a link to the plugin page as a final item in the list"
133
  msgstr ""
273
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
274
  msgstr ""
275
 
276
+ #: admin.inc.php:314
277
+ #, fuzzy
278
+ msgid "Save Options"
279
+ msgstr "Indstillinger:"
280
+
281
+ #: admin.inc.php:315
282
+ #, fuzzy
283
+ msgid "Default Options"
284
+ msgstr "Indstillinger for output:"
285
+
286
  #: admin.inc.php:315
287
  msgid "Do you want to set options to Default?"
288
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
289
 
290
+ #: admin.inc.php:316
291
+ msgid "Recreate Index"
292
+ msgstr ""
293
+
294
  #: admin.inc.php:316
295
  msgid "Are you sure you want to recreate the index?"
296
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
301
  msgstr "Related Posts (Lignende indlæg)"
302
 
303
  #: admin.inc.php:346
304
+ #: contextual-related-posts.php:190
305
  msgid "Related Posts"
306
  msgstr "Related Posts (Lignende indlæg)"
307
 
317
  msgid " to configure."
318
  msgstr ""
319
 
320
+ #: contextual-related-posts.php:146
321
  msgid "Powered by"
322
  msgstr ""
323
 
324
+ #: contextual-related-posts.php:151
325
+ #: contextual-related-posts.php:156
326
  msgid "No related posts found"
327
  msgstr "Ingen lignende indlæg fundet"
328
 
329
+ #: contextual-related-posts.php:189
330
+ #, fuzzy
331
+ msgid "Display Related Posts"
332
+ msgstr "Vis \"Ingen lignende indlæg\""
333
+
334
+ #: contextual-related-posts.php:200
335
+ msgid "Title"
336
+ msgstr ""
337
+
338
+ #: contextual-related-posts.php:205
339
+ msgid "No. of posts"
340
+ msgstr ""
341
+
342
+ #: contextual-related-posts.php:209
343
+ #, fuzzy
344
+ msgid "Thumbnail options"
345
+ msgstr "Indstillinger for indlægsminiaturer:"
346
+
347
+ #: contextual-related-posts.php:211
348
+ #, fuzzy
349
+ msgid "Thumbnails inline, before title"
350
+ msgstr "Vis miniaturer inline med indlæg"
351
+
352
+ #: contextual-related-posts.php:212
353
+ #, fuzzy
354
+ msgid "Thumbnails inline, after title"
355
+ msgstr "Vis miniaturer inline med indlæg"
356
+
357
+ #: contextual-related-posts.php:213
358
+ #, fuzzy
359
+ msgid "Only thumbnails, no text"
360
+ msgstr "Vis kun miniaturer, ingen tekst"
361
+
362
+ #: contextual-related-posts.php:214
363
+ #, fuzzy
364
+ msgid "No thumbnails, only text."
365
+ msgstr "Vis ikke miniaturer, kun tekst."
366
+
367
+ #: contextual-related-posts.php:219
368
+ msgid " Show excerpt?"
369
+ msgstr ""
370
+
371
+ #: contextual-related-posts.php:271
372
  msgid "<h3>Related Posts:</h3>"
373
  msgstr "<h3>Lignende indlæg:</h3>"
374
 
375
+ #: contextual-related-posts.php:450
376
  msgid "Settings"
377
  msgstr "Opsætning"
378
 
379
+ #: contextual-related-posts.php:452
380
  msgid "Donate"
381
  msgstr "Donation"
382
 
383
+ #~ msgid "Exclude Pages in Related Posts"
384
+ #~ msgstr "Udelad sider i Lignende indlæg"
385
 
386
  #~ msgid ""
387
  #~ "Add related posts to the post content on single posts. <br />If you "
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: 2012-06-04 18:53-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -38,36 +38,36 @@ msgstr "Den Betrag in USD eingeben: "
38
  msgid "Send your donation to the author of"
39
  msgstr "Schicken Sie eine Spende an den Autor von"
40
 
41
- #: admin.inc.php:132
42
  msgid "Quick links"
43
  msgstr "Links"
44
 
45
- #: admin.inc.php:134
46
  msgid "Contextual Related Posts "
47
  msgstr "Contextual Related Posts "
48
 
49
- #: admin.inc.php:134
50
  msgid "plugin page"
51
  msgstr "Plugin-Seite"
52
 
53
- #: admin.inc.php:135
54
  msgid "Other plugins"
55
  msgstr "Weitere Plugins"
56
 
57
- #: admin.inc.php:136
58
  msgid "Ajay's blog"
59
  msgstr "Ajay's Blog"
60
 
61
- #: admin.inc.php:137
62
- #: contextual-related-posts.php:336
63
  msgid "Support"
64
  msgstr "Support"
65
 
66
- #: admin.inc.php:138
67
  msgid "Follow @ajaydsouza on Twitter"
68
  msgstr "@ajaydsouza auf Twitter folgen"
69
 
70
- #: admin.inc.php:142
71
  msgid "Recent developments"
72
  msgstr "Neueste Entwicklungen"
73
 
@@ -80,49 +80,49 @@ msgid "Number of related posts to display: "
80
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
81
 
82
  #: admin.inc.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
  msgid "Exclude Categories: "
84
  msgstr "Kategorien ausschließen: "
85
 
86
- #: admin.inc.php:181
87
  msgid "Add related posts to the post content on single posts"
88
  msgstr ""
89
 
90
- #: admin.inc.php:182
91
- #: admin.inc.php:185
92
  #, fuzzy
93
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
94
  msgstr "Ähnliche Beiträge auch in statischen Seiten auflisten.<br />Wenn Sie das deaktivieren wollen, fügen Sie <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem die ähnlichen Beiträge aufgeliistet werden sollen"
95
 
96
- #: admin.inc.php:184
97
  #, fuzzy
98
  msgid "Add related posts to pages"
99
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
100
 
101
- #: admin.inc.php:187
102
  msgid "Add related posts to feed"
103
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
104
 
105
- #: admin.inc.php:190
106
- msgid "Find related posts based on content as well as title"
107
- msgstr ""
108
-
109
- #: admin.inc.php:191
110
- #, fuzzy
111
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
112
- msgstr "Ähnliche Beiträge sowohl im Beitragstitel als auch im Beitragsinhalt suchen. Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
113
-
114
- #: admin.inc.php:193
115
- msgid "Exclude Pages in Related Posts"
116
- msgstr "Statische Seiten in ähnlichen Beiträgen ausschließen"
117
-
118
- #: admin.inc.php:196
119
- msgid "Post types to include in results (including custom post types)"
120
- msgstr ""
121
-
122
- #: admin.inc.php:207
123
- msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
124
- msgstr ""
125
-
126
  #: admin.inc.php:210
127
  msgid "Add a link to the plugin page as a final item in the list"
128
  msgstr ""
@@ -270,10 +270,24 @@ msgstr ""
270
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
271
  msgstr ""
272
 
 
 
 
 
 
 
 
 
 
 
273
  #: admin.inc.php:315
274
  msgid "Do you want to set options to Default?"
275
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
276
 
 
 
 
 
277
  #: admin.inc.php:316
278
  msgid "Are you sure you want to recreate the index?"
279
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
@@ -283,6 +297,7 @@ msgid "Contextual Related Posts"
283
  msgstr "Contextual Related Posts"
284
 
285
  #: admin.inc.php:346
 
286
  msgid "Related Posts"
287
  msgstr "Related Posts"
288
 
@@ -299,29 +314,72 @@ msgstr ""
299
  msgid " to configure."
300
  msgstr ""
301
 
302
- #: contextual-related-posts.php:125
303
  msgid "Powered by"
304
  msgstr "Powered by"
305
 
306
- #: contextual-related-posts.php:130
307
- #: contextual-related-posts.php:134
308
  msgid "No related posts found"
309
  msgstr "Keine ähnlichen Beiträge gefunden"
310
 
311
- #: contextual-related-posts.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
  msgid "<h3>Related Posts:</h3>"
313
  msgstr "<h3>Ähnliche Beiträge:</h3>"
314
 
315
- #: contextual-related-posts.php:335
316
  msgid "Settings"
317
  msgstr "Einstellungen"
318
 
319
- #: contextual-related-posts.php:337
320
  msgid "Donate"
321
  msgstr "Spenden"
322
 
323
- #~ msgid "Options:"
324
- #~ msgstr "Optionen:"
325
 
326
  #~ msgid ""
327
  #~ "Add related posts to the post content on single posts. <br />If you "
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:22-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
38
  msgid "Send your donation to the author of"
39
  msgstr "Schicken Sie eine Spende an den Autor von"
40
 
41
+ #: admin.inc.php:135
42
  msgid "Quick links"
43
  msgstr "Links"
44
 
45
+ #: admin.inc.php:137
46
  msgid "Contextual Related Posts "
47
  msgstr "Contextual Related Posts "
48
 
49
+ #: admin.inc.php:137
50
  msgid "plugin page"
51
  msgstr "Plugin-Seite"
52
 
53
+ #: admin.inc.php:138
54
  msgid "Other plugins"
55
  msgstr "Weitere Plugins"
56
 
57
+ #: admin.inc.php:139
58
  msgid "Ajay's blog"
59
  msgstr "Ajay's Blog"
60
 
61
+ #: admin.inc.php:140
62
+ #: contextual-related-posts.php:451
63
  msgid "Support"
64
  msgstr "Support"
65
 
66
+ #: admin.inc.php:141
67
  msgid "Follow @ajaydsouza on Twitter"
68
  msgstr "@ajaydsouza auf Twitter folgen"
69
 
70
+ #: admin.inc.php:145
71
  msgid "Recent developments"
72
  msgstr "Neueste Entwicklungen"
73
 
80
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
81
 
82
  #: admin.inc.php:163
83
+ msgid "Post types to include in results (including custom post types)"
84
+ msgstr ""
85
+
86
+ #: admin.inc.php:174
87
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
88
+ msgstr ""
89
+
90
+ #: admin.inc.php:177
91
+ msgid "Find related posts based on content as well as title"
92
+ msgstr ""
93
+
94
+ #: admin.inc.php:178
95
+ #, fuzzy
96
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
97
+ msgstr "Ähnliche Beiträge sowohl im Beitragstitel als auch im Beitragsinhalt suchen. Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
98
+
99
+ #: admin.inc.php:180
100
+ msgid "List of post or page IDs to exclude from the results: "
101
+ msgstr ""
102
+
103
+ #: admin.inc.php:183
104
  msgid "Exclude Categories: "
105
  msgstr "Kategorien ausschließen: "
106
 
107
+ #: admin.inc.php:201
108
  msgid "Add related posts to the post content on single posts"
109
  msgstr ""
110
 
111
+ #: admin.inc.php:202
112
+ #: admin.inc.php:205
113
  #, fuzzy
114
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
115
  msgstr "Ähnliche Beiträge auch in statischen Seiten auflisten.<br />Wenn Sie das deaktivieren wollen, fügen Sie <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem die ähnlichen Beiträge aufgeliistet werden sollen"
116
 
117
+ #: admin.inc.php:204
118
  #, fuzzy
119
  msgid "Add related posts to pages"
120
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
121
 
122
+ #: admin.inc.php:207
123
  msgid "Add related posts to feed"
124
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  #: admin.inc.php:210
127
  msgid "Add a link to the plugin page as a final item in the list"
128
  msgstr ""
270
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
271
  msgstr ""
272
 
273
+ #: admin.inc.php:314
274
+ #, fuzzy
275
+ msgid "Save Options"
276
+ msgstr "Optionen:"
277
+
278
+ #: admin.inc.php:315
279
+ #, fuzzy
280
+ msgid "Default Options"
281
+ msgstr "Ausgabeotionen:"
282
+
283
  #: admin.inc.php:315
284
  msgid "Do you want to set options to Default?"
285
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
286
 
287
+ #: admin.inc.php:316
288
+ msgid "Recreate Index"
289
+ msgstr ""
290
+
291
  #: admin.inc.php:316
292
  msgid "Are you sure you want to recreate the index?"
293
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
297
  msgstr "Contextual Related Posts"
298
 
299
  #: admin.inc.php:346
300
+ #: contextual-related-posts.php:190
301
  msgid "Related Posts"
302
  msgstr "Related Posts"
303
 
314
  msgid " to configure."
315
  msgstr ""
316
 
317
+ #: contextual-related-posts.php:146
318
  msgid "Powered by"
319
  msgstr "Powered by"
320
 
321
+ #: contextual-related-posts.php:151
322
+ #: contextual-related-posts.php:156
323
  msgid "No related posts found"
324
  msgstr "Keine ähnlichen Beiträge gefunden"
325
 
326
+ #: contextual-related-posts.php:189
327
+ #, fuzzy
328
+ msgid "Display Related Posts"
329
+ msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
330
+
331
+ #: contextual-related-posts.php:200
332
+ msgid "Title"
333
+ msgstr ""
334
+
335
+ #: contextual-related-posts.php:205
336
+ msgid "No. of posts"
337
+ msgstr ""
338
+
339
+ #: contextual-related-posts.php:209
340
+ #, fuzzy
341
+ msgid "Thumbnail options"
342
+ msgstr "Optionen für die Beitrags-Thumbnails:"
343
+
344
+ #: contextual-related-posts.php:211
345
+ #, fuzzy
346
+ msgid "Thumbnails inline, before title"
347
+ msgstr "Thumbnails und Beitragstitel anzeigen"
348
+
349
+ #: contextual-related-posts.php:212
350
+ #, fuzzy
351
+ msgid "Thumbnails inline, after title"
352
+ msgstr "Thumbnails und Beitragstitel anzeigen"
353
+
354
+ #: contextual-related-posts.php:213
355
+ #, fuzzy
356
+ msgid "Only thumbnails, no text"
357
+ msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
358
+
359
+ #: contextual-related-posts.php:214
360
+ #, fuzzy
361
+ msgid "No thumbnails, only text."
362
+ msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
363
+
364
+ #: contextual-related-posts.php:219
365
+ #, fuzzy
366
+ msgid " Show excerpt?"
367
+ msgstr "Auszug des Beitrags in der Liste anzeigen?"
368
+
369
+ #: contextual-related-posts.php:271
370
  msgid "<h3>Related Posts:</h3>"
371
  msgstr "<h3>Ähnliche Beiträge:</h3>"
372
 
373
+ #: contextual-related-posts.php:450
374
  msgid "Settings"
375
  msgstr "Einstellungen"
376
 
377
+ #: contextual-related-posts.php:452
378
  msgid "Donate"
379
  msgstr "Spenden"
380
 
381
+ #~ msgid "Exclude Pages in Related Posts"
382
+ #~ msgstr "Statische Seiten in ähnlichen Beiträgen ausschließen"
383
 
384
  #~ msgid ""
385
  #~ "Add related posts to the post content on single posts. <br />If you "
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: 2012-06-04 18:52-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -38,36 +38,36 @@ msgstr ""
38
  msgid "Send your donation to the author of"
39
  msgstr ""
40
 
41
- #: admin.inc.php:132
42
  msgid "Quick links"
43
  msgstr ""
44
 
45
- #: admin.inc.php:134
46
  msgid "Contextual Related Posts "
47
  msgstr ""
48
 
49
- #: admin.inc.php:134
50
  msgid "plugin page"
51
  msgstr ""
52
 
53
- #: admin.inc.php:135
54
  msgid "Other plugins"
55
  msgstr ""
56
 
57
- #: admin.inc.php:136
58
  msgid "Ajay's blog"
59
  msgstr ""
60
 
61
- #: admin.inc.php:137
62
- #: contextual-related-posts.php:336
63
  msgid "Support"
64
  msgstr ""
65
 
66
- #: admin.inc.php:138
67
  msgid "Follow @ajaydsouza on Twitter"
68
  msgstr ""
69
 
70
- #: admin.inc.php:142
71
  msgid "Recent developments"
72
  msgstr ""
73
 
@@ -80,44 +80,44 @@ msgid "Number of related posts to display: "
80
  msgstr ""
81
 
82
  #: admin.inc.php:163
83
- msgid "Exclude Categories: "
84
  msgstr ""
85
 
86
- #: admin.inc.php:181
87
- msgid "Add related posts to the post content on single posts"
88
  msgstr ""
89
 
90
- #: admin.inc.php:182
91
- #: admin.inc.php:185
92
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
93
  msgstr ""
94
 
95
- #: admin.inc.php:184
96
- msgid "Add related posts to pages"
97
  msgstr ""
98
 
99
- #: admin.inc.php:187
100
- msgid "Add related posts to feed"
101
  msgstr ""
102
 
103
- #: admin.inc.php:190
104
- msgid "Find related posts based on content as well as title"
105
  msgstr ""
106
 
107
- #: admin.inc.php:191
108
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
109
  msgstr ""
110
 
111
- #: admin.inc.php:193
112
- msgid "Exclude Pages in Related Posts"
 
113
  msgstr ""
114
 
115
- #: admin.inc.php:196
116
- msgid "Post types to include in results (including custom post types)"
117
  msgstr ""
118
 
119
  #: admin.inc.php:207
120
- msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
121
  msgstr ""
122
 
123
  #: admin.inc.php:210
@@ -260,10 +260,22 @@ msgstr ""
260
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
261
  msgstr ""
262
 
 
 
 
 
 
 
 
 
263
  #: admin.inc.php:315
264
  msgid "Do you want to set options to Default?"
265
  msgstr ""
266
 
 
 
 
 
267
  #: admin.inc.php:316
268
  msgid "Are you sure you want to recreate the index?"
269
  msgstr ""
@@ -273,6 +285,7 @@ msgid "Contextual Related Posts"
273
  msgstr ""
274
 
275
  #: admin.inc.php:346
 
276
  msgid "Related Posts"
277
  msgstr ""
278
 
@@ -288,24 +301,60 @@ msgstr ""
288
  msgid " to configure."
289
  msgstr ""
290
 
291
- #: contextual-related-posts.php:125
292
  msgid "Powered by"
293
  msgstr ""
294
 
295
- #: contextual-related-posts.php:130
296
- #: contextual-related-posts.php:134
297
  msgid "No related posts found"
298
  msgstr ""
299
 
300
- #: contextual-related-posts.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  msgid "<h3>Related Posts:</h3>"
302
  msgstr ""
303
 
304
- #: contextual-related-posts.php:335
305
  msgid "Settings"
306
  msgstr ""
307
 
308
- #: contextual-related-posts.php:337
309
  msgid "Donate"
310
  msgstr ""
311
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:21-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
38
  msgid "Send your donation to the author of"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:135
42
  msgid "Quick links"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:137
46
  msgid "Contextual Related Posts "
47
  msgstr ""
48
 
49
+ #: admin.inc.php:137
50
  msgid "plugin page"
51
  msgstr ""
52
 
53
+ #: admin.inc.php:138
54
  msgid "Other plugins"
55
  msgstr ""
56
 
57
+ #: admin.inc.php:139
58
  msgid "Ajay's blog"
59
  msgstr ""
60
 
61
+ #: admin.inc.php:140
62
+ #: contextual-related-posts.php:451
63
  msgid "Support"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:141
67
  msgid "Follow @ajaydsouza on Twitter"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:145
71
  msgid "Recent developments"
72
  msgstr ""
73
 
80
  msgstr ""
81
 
82
  #: admin.inc.php:163
83
+ msgid "Post types to include in results (including custom post types)"
84
  msgstr ""
85
 
86
+ #: admin.inc.php:174
87
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
88
  msgstr ""
89
 
90
+ #: admin.inc.php:177
91
+ msgid "Find related posts based on content as well as title"
 
92
  msgstr ""
93
 
94
+ #: admin.inc.php:178
95
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:180
99
+ msgid "List of post or page IDs to exclude from the results: "
100
  msgstr ""
101
 
102
+ #: admin.inc.php:183
103
+ msgid "Exclude Categories: "
104
  msgstr ""
105
 
106
+ #: admin.inc.php:201
107
+ msgid "Add related posts to the post content on single posts"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:202
111
+ #: admin.inc.php:205
112
+ msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:204
116
+ msgid "Add related posts to pages"
117
  msgstr ""
118
 
119
  #: admin.inc.php:207
120
+ msgid "Add related posts to feed"
121
  msgstr ""
122
 
123
  #: admin.inc.php:210
260
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
261
  msgstr ""
262
 
263
+ #: admin.inc.php:314
264
+ msgid "Save Options"
265
+ msgstr ""
266
+
267
+ #: admin.inc.php:315
268
+ msgid "Default Options"
269
+ msgstr ""
270
+
271
  #: admin.inc.php:315
272
  msgid "Do you want to set options to Default?"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:316
276
+ msgid "Recreate Index"
277
+ msgstr ""
278
+
279
  #: admin.inc.php:316
280
  msgid "Are you sure you want to recreate the index?"
281
  msgstr ""
285
  msgstr ""
286
 
287
  #: admin.inc.php:346
288
+ #: contextual-related-posts.php:190
289
  msgid "Related Posts"
290
  msgstr ""
291
 
301
  msgid " to configure."
302
  msgstr ""
303
 
304
+ #: contextual-related-posts.php:146
305
  msgid "Powered by"
306
  msgstr ""
307
 
308
+ #: contextual-related-posts.php:151
309
+ #: contextual-related-posts.php:156
310
  msgid "No related posts found"
311
  msgstr ""
312
 
313
+ #: contextual-related-posts.php:189
314
+ msgid "Display Related Posts"
315
+ msgstr ""
316
+
317
+ #: contextual-related-posts.php:200
318
+ msgid "Title"
319
+ msgstr ""
320
+
321
+ #: contextual-related-posts.php:205
322
+ msgid "No. of posts"
323
+ msgstr ""
324
+
325
+ #: contextual-related-posts.php:209
326
+ msgid "Thumbnail options"
327
+ msgstr ""
328
+
329
+ #: contextual-related-posts.php:211
330
+ msgid "Thumbnails inline, before title"
331
+ msgstr ""
332
+
333
+ #: contextual-related-posts.php:212
334
+ msgid "Thumbnails inline, after title"
335
+ msgstr ""
336
+
337
+ #: contextual-related-posts.php:213
338
+ msgid "Only thumbnails, no text"
339
+ msgstr ""
340
+
341
+ #: contextual-related-posts.php:214
342
+ msgid "No thumbnails, only text."
343
+ msgstr ""
344
+
345
+ #: contextual-related-posts.php:219
346
+ msgid " Show excerpt?"
347
+ msgstr ""
348
+
349
+ #: contextual-related-posts.php:271
350
  msgid "<h3>Related Posts:</h3>"
351
  msgstr ""
352
 
353
+ #: contextual-related-posts.php:450
354
  msgid "Settings"
355
  msgstr ""
356
 
357
+ #: contextual-related-posts.php:452
358
  msgid "Donate"
359
  msgstr ""
360
 
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: 2012-06-04 18:52-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -38,36 +38,36 @@ msgstr ""
38
  msgid "Send your donation to the author of"
39
  msgstr ""
40
 
41
- #: admin.inc.php:132
42
  msgid "Quick links"
43
  msgstr ""
44
 
45
- #: admin.inc.php:134
46
  msgid "Contextual Related Posts "
47
  msgstr ""
48
 
49
- #: admin.inc.php:134
50
  msgid "plugin page"
51
  msgstr ""
52
 
53
- #: admin.inc.php:135
54
  msgid "Other plugins"
55
  msgstr ""
56
 
57
- #: admin.inc.php:136
58
  msgid "Ajay's blog"
59
  msgstr ""
60
 
61
- #: admin.inc.php:137
62
- #: contextual-related-posts.php:336
63
  msgid "Support"
64
  msgstr ""
65
 
66
- #: admin.inc.php:138
67
  msgid "Follow @ajaydsouza on Twitter"
68
  msgstr ""
69
 
70
- #: admin.inc.php:142
71
  msgid "Recent developments"
72
  msgstr ""
73
 
@@ -80,44 +80,44 @@ msgid "Number of related posts to display: "
80
  msgstr ""
81
 
82
  #: admin.inc.php:163
83
- msgid "Exclude Categories: "
84
  msgstr ""
85
 
86
- #: admin.inc.php:181
87
- msgid "Add related posts to the post content on single posts"
88
  msgstr ""
89
 
90
- #: admin.inc.php:182
91
- #: admin.inc.php:185
92
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
93
  msgstr ""
94
 
95
- #: admin.inc.php:184
96
- msgid "Add related posts to pages"
97
  msgstr ""
98
 
99
- #: admin.inc.php:187
100
- msgid "Add related posts to feed"
101
  msgstr ""
102
 
103
- #: admin.inc.php:190
104
- msgid "Find related posts based on content as well as title"
105
  msgstr ""
106
 
107
- #: admin.inc.php:191
108
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
109
  msgstr ""
110
 
111
- #: admin.inc.php:193
112
- msgid "Exclude Pages in Related Posts"
 
113
  msgstr ""
114
 
115
- #: admin.inc.php:196
116
- msgid "Post types to include in results (including custom post types)"
117
  msgstr ""
118
 
119
  #: admin.inc.php:207
120
- msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
121
  msgstr ""
122
 
123
  #: admin.inc.php:210
@@ -260,10 +260,22 @@ msgstr ""
260
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
261
  msgstr ""
262
 
 
 
 
 
 
 
 
 
263
  #: admin.inc.php:315
264
  msgid "Do you want to set options to Default?"
265
  msgstr ""
266
 
 
 
 
 
267
  #: admin.inc.php:316
268
  msgid "Are you sure you want to recreate the index?"
269
  msgstr ""
@@ -273,6 +285,7 @@ msgid "Contextual Related Posts"
273
  msgstr ""
274
 
275
  #: admin.inc.php:346
 
276
  msgid "Related Posts"
277
  msgstr ""
278
 
@@ -288,24 +301,60 @@ msgstr ""
288
  msgid " to configure."
289
  msgstr ""
290
 
291
- #: contextual-related-posts.php:125
292
  msgid "Powered by"
293
  msgstr ""
294
 
295
- #: contextual-related-posts.php:130
296
- #: contextual-related-posts.php:134
297
  msgid "No related posts found"
298
  msgstr ""
299
 
300
- #: contextual-related-posts.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  msgid "<h3>Related Posts:</h3>"
302
  msgstr ""
303
 
304
- #: contextual-related-posts.php:335
305
  msgid "Settings"
306
  msgstr ""
307
 
308
- #: contextual-related-posts.php:337
309
  msgid "Donate"
310
  msgstr ""
311
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:21-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
38
  msgid "Send your donation to the author of"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:135
42
  msgid "Quick links"
43
  msgstr ""
44
 
45
+ #: admin.inc.php:137
46
  msgid "Contextual Related Posts "
47
  msgstr ""
48
 
49
+ #: admin.inc.php:137
50
  msgid "plugin page"
51
  msgstr ""
52
 
53
+ #: admin.inc.php:138
54
  msgid "Other plugins"
55
  msgstr ""
56
 
57
+ #: admin.inc.php:139
58
  msgid "Ajay's blog"
59
  msgstr ""
60
 
61
+ #: admin.inc.php:140
62
+ #: contextual-related-posts.php:451
63
  msgid "Support"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:141
67
  msgid "Follow @ajaydsouza on Twitter"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:145
71
  msgid "Recent developments"
72
  msgstr ""
73
 
80
  msgstr ""
81
 
82
  #: admin.inc.php:163
83
+ msgid "Post types to include in results (including custom post types)"
84
  msgstr ""
85
 
86
+ #: admin.inc.php:174
87
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
88
  msgstr ""
89
 
90
+ #: admin.inc.php:177
91
+ msgid "Find related posts based on content as well as title"
 
92
  msgstr ""
93
 
94
+ #: admin.inc.php:178
95
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:180
99
+ msgid "List of post or page IDs to exclude from the results: "
100
  msgstr ""
101
 
102
+ #: admin.inc.php:183
103
+ msgid "Exclude Categories: "
104
  msgstr ""
105
 
106
+ #: admin.inc.php:201
107
+ msgid "Add related posts to the post content on single posts"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:202
111
+ #: admin.inc.php:205
112
+ msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
113
  msgstr ""
114
 
115
+ #: admin.inc.php:204
116
+ msgid "Add related posts to pages"
117
  msgstr ""
118
 
119
  #: admin.inc.php:207
120
+ msgid "Add related posts to feed"
121
  msgstr ""
122
 
123
  #: admin.inc.php:210
260
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
261
  msgstr ""
262
 
263
+ #: admin.inc.php:314
264
+ msgid "Save Options"
265
+ msgstr ""
266
+
267
+ #: admin.inc.php:315
268
+ msgid "Default Options"
269
+ msgstr ""
270
+
271
  #: admin.inc.php:315
272
  msgid "Do you want to set options to Default?"
273
  msgstr ""
274
 
275
+ #: admin.inc.php:316
276
+ msgid "Recreate Index"
277
+ msgstr ""
278
+
279
  #: admin.inc.php:316
280
  msgid "Are you sure you want to recreate the index?"
281
  msgstr ""
285
  msgstr ""
286
 
287
  #: admin.inc.php:346
288
+ #: contextual-related-posts.php:190
289
  msgid "Related Posts"
290
  msgstr ""
291
 
301
  msgid " to configure."
302
  msgstr ""
303
 
304
+ #: contextual-related-posts.php:146
305
  msgid "Powered by"
306
  msgstr ""
307
 
308
+ #: contextual-related-posts.php:151
309
+ #: contextual-related-posts.php:156
310
  msgid "No related posts found"
311
  msgstr ""
312
 
313
+ #: contextual-related-posts.php:189
314
+ msgid "Display Related Posts"
315
+ msgstr ""
316
+
317
+ #: contextual-related-posts.php:200
318
+ msgid "Title"
319
+ msgstr ""
320
+
321
+ #: contextual-related-posts.php:205
322
+ msgid "No. of posts"
323
+ msgstr ""
324
+
325
+ #: contextual-related-posts.php:209
326
+ msgid "Thumbnail options"
327
+ msgstr ""
328
+
329
+ #: contextual-related-posts.php:211
330
+ msgid "Thumbnails inline, before title"
331
+ msgstr ""
332
+
333
+ #: contextual-related-posts.php:212
334
+ msgid "Thumbnails inline, after title"
335
+ msgstr ""
336
+
337
+ #: contextual-related-posts.php:213
338
+ msgid "Only thumbnails, no text"
339
+ msgstr ""
340
+
341
+ #: contextual-related-posts.php:214
342
+ msgid "No thumbnails, only text."
343
+ msgstr ""
344
+
345
+ #: contextual-related-posts.php:219
346
+ msgid " Show excerpt?"
347
+ msgstr ""
348
+
349
+ #: contextual-related-posts.php:271
350
  msgid "<h3>Related Posts:</h3>"
351
  msgstr ""
352
 
353
+ #: contextual-related-posts.php:450
354
  msgid "Settings"
355
  msgstr ""
356
 
357
+ #: contextual-related-posts.php:452
358
  msgid "Donate"
359
  msgstr ""
360
 
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: 2012-06-04 18:54-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -39,36 +39,36 @@ msgstr "Ingresa monto en USD:"
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
- #: admin.inc.php:132
43
  msgid "Quick links"
44
  msgstr "Links rápidos"
45
 
46
- #: admin.inc.php:134
47
  msgid "Contextual Related Posts "
48
  msgstr "Posts relacionados contextualmente"
49
 
50
- #: admin.inc.php:134
51
  msgid "plugin page"
52
  msgstr "sitio del plugin"
53
 
54
- #: admin.inc.php:135
55
  msgid "Other plugins"
56
  msgstr "Otros plugins"
57
 
58
- #: admin.inc.php:136
59
  msgid "Ajay's blog"
60
  msgstr ""
61
 
62
- #: admin.inc.php:137
63
- #: contextual-related-posts.php:336
64
  msgid "Support"
65
  msgstr "Soporte"
66
 
67
- #: admin.inc.php:138
68
  msgid "Follow @ajaydsouza on Twitter"
69
  msgstr "Seguir @ajaydsouza en Twitter"
70
 
71
- #: admin.inc.php:142
72
  msgid "Recent developments"
73
  msgstr "Desarrollos recientes"
74
 
@@ -81,49 +81,49 @@ msgid "Number of related posts to display: "
81
  msgstr "Número de posts relacionados a mostrar:"
82
 
83
  #: admin.inc.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  msgid "Exclude Categories: "
85
  msgstr "Excluir Categorías:"
86
 
87
- #: admin.inc.php:181
88
  msgid "Add related posts to the post content on single posts"
89
  msgstr ""
90
 
91
- #: admin.inc.php:182
92
- #: admin.inc.php:185
93
  #, fuzzy
94
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
95
  msgstr "Agregar posts relacionados a páginas. <br />Si eliges desabilitar esto, por favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
96
 
97
- #: admin.inc.php:184
98
  #, fuzzy
99
  msgid "Add related posts to pages"
100
  msgstr "Agregar posts relacionados al feed"
101
 
102
- #: admin.inc.php:187
103
  msgid "Add related posts to feed"
104
  msgstr "Agregar posts relacionados al feed"
105
 
106
- #: admin.inc.php:190
107
- msgid "Find related posts based on content as well as title"
108
- msgstr ""
109
-
110
- #: admin.inc.php:191
111
- #, fuzzy
112
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
113
- msgstr "Encuentra posts relacionados basados en el contexto y el título. Si es deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de caché si activas esto)"
114
-
115
- #: admin.inc.php:193
116
- msgid "Exclude Pages in Related Posts"
117
- msgstr "Excluir Post Relacionados de las Páginas"
118
-
119
- #: admin.inc.php:196
120
- msgid "Post types to include in results (including custom post types)"
121
- msgstr ""
122
-
123
- #: admin.inc.php:207
124
- msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
125
- msgstr ""
126
-
127
  #: admin.inc.php:210
128
  msgid "Add a link to the plugin page as a final item in the list"
129
  msgstr ""
@@ -271,10 +271,24 @@ msgstr ""
271
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
272
  msgstr ""
273
 
 
 
 
 
 
 
 
 
 
 
274
  #: admin.inc.php:315
275
  msgid "Do you want to set options to Default?"
276
  msgstr "¿Quieres resetear las opciones?"
277
 
 
 
 
 
278
  #: admin.inc.php:316
279
  msgid "Are you sure you want to recreate the index?"
280
  msgstr "¿Está seguro que quiere recrear el index?"
@@ -284,6 +298,7 @@ msgid "Contextual Related Posts"
284
  msgstr "Posts Relacionados Contextualmente"
285
 
286
  #: admin.inc.php:346
 
287
  msgid "Related Posts"
288
  msgstr "Post Relacionados"
289
 
@@ -300,29 +315,72 @@ msgstr ""
300
  msgid " to configure."
301
  msgstr ""
302
 
303
- #: contextual-related-posts.php:125
304
  msgid "Powered by"
305
  msgstr "Creado por"
306
 
307
- #: contextual-related-posts.php:130
308
- #: contextual-related-posts.php:134
309
  msgid "No related posts found"
310
  msgstr "No hay posts relacionados"
311
 
312
- #: contextual-related-posts.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  msgid "<h3>Related Posts:</h3>"
314
  msgstr "<h3>Post Relacionados:</h3>"
315
 
316
- #: contextual-related-posts.php:335
317
  msgid "Settings"
318
  msgstr "Opciones"
319
 
320
- #: contextual-related-posts.php:337
321
  msgid "Donate"
322
  msgstr "Donar"
323
 
324
- #~ msgid "Options:"
325
- #~ msgstr "Opciones:"
326
 
327
  #~ msgid ""
328
  #~ "Add related posts to the post content on single posts. <br />If you "
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:23-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
+ #: admin.inc.php:135
43
  msgid "Quick links"
44
  msgstr "Links rápidos"
45
 
46
+ #: admin.inc.php:137
47
  msgid "Contextual Related Posts "
48
  msgstr "Posts relacionados contextualmente"
49
 
50
+ #: admin.inc.php:137
51
  msgid "plugin page"
52
  msgstr "sitio del plugin"
53
 
54
+ #: admin.inc.php:138
55
  msgid "Other plugins"
56
  msgstr "Otros plugins"
57
 
58
+ #: admin.inc.php:139
59
  msgid "Ajay's blog"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:140
63
+ #: contextual-related-posts.php:451
64
  msgid "Support"
65
  msgstr "Soporte"
66
 
67
+ #: admin.inc.php:141
68
  msgid "Follow @ajaydsouza on Twitter"
69
  msgstr "Seguir @ajaydsouza en Twitter"
70
 
71
+ #: admin.inc.php:145
72
  msgid "Recent developments"
73
  msgstr "Desarrollos recientes"
74
 
81
  msgstr "Número de posts relacionados a mostrar:"
82
 
83
  #: admin.inc.php:163
84
+ msgid "Post types to include in results (including custom post types)"
85
+ msgstr ""
86
+
87
+ #: admin.inc.php:174
88
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
89
+ msgstr ""
90
+
91
+ #: admin.inc.php:177
92
+ msgid "Find related posts based on content as well as title"
93
+ msgstr ""
94
+
95
+ #: admin.inc.php:178
96
+ #, fuzzy
97
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
98
+ msgstr "Encuentra posts relacionados basados en el contexto y el título. Si es deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de caché si activas esto)"
99
+
100
+ #: admin.inc.php:180
101
+ msgid "List of post or page IDs to exclude from the results: "
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:183
105
  msgid "Exclude Categories: "
106
  msgstr "Excluir Categorías:"
107
 
108
+ #: admin.inc.php:201
109
  msgid "Add related posts to the post content on single posts"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:202
113
+ #: admin.inc.php:205
114
  #, fuzzy
115
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
116
  msgstr "Agregar posts relacionados a páginas. <br />Si eliges desabilitar esto, por favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
117
 
118
+ #: admin.inc.php:204
119
  #, fuzzy
120
  msgid "Add related posts to pages"
121
  msgstr "Agregar posts relacionados al feed"
122
 
123
+ #: admin.inc.php:207
124
  msgid "Add related posts to feed"
125
  msgstr "Agregar posts relacionados al feed"
126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  #: admin.inc.php:210
128
  msgid "Add a link to the plugin page as a final item in the list"
129
  msgstr ""
271
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
272
  msgstr ""
273
 
274
+ #: admin.inc.php:314
275
+ #, fuzzy
276
+ msgid "Save Options"
277
+ msgstr "Opciones:"
278
+
279
+ #: admin.inc.php:315
280
+ #, fuzzy
281
+ msgid "Default Options"
282
+ msgstr "Opciones de Salida:"
283
+
284
  #: admin.inc.php:315
285
  msgid "Do you want to set options to Default?"
286
  msgstr "¿Quieres resetear las opciones?"
287
 
288
+ #: admin.inc.php:316
289
+ msgid "Recreate Index"
290
+ msgstr ""
291
+
292
  #: admin.inc.php:316
293
  msgid "Are you sure you want to recreate the index?"
294
  msgstr "¿Está seguro que quiere recrear el index?"
298
  msgstr "Posts Relacionados Contextualmente"
299
 
300
  #: admin.inc.php:346
301
+ #: contextual-related-posts.php:190
302
  msgid "Related Posts"
303
  msgstr "Post Relacionados"
304
 
315
  msgid " to configure."
316
  msgstr ""
317
 
318
+ #: contextual-related-posts.php:146
319
  msgid "Powered by"
320
  msgstr "Creado por"
321
 
322
+ #: contextual-related-posts.php:151
323
+ #: contextual-related-posts.php:156
324
  msgid "No related posts found"
325
  msgstr "No hay posts relacionados"
326
 
327
+ #: contextual-related-posts.php:189
328
+ #, fuzzy
329
+ msgid "Display Related Posts"
330
+ msgstr "Mostrar \"Posts No Relacionados\""
331
+
332
+ #: contextual-related-posts.php:200
333
+ msgid "Title"
334
+ msgstr ""
335
+
336
+ #: contextual-related-posts.php:205
337
+ msgid "No. of posts"
338
+ msgstr ""
339
+
340
+ #: contextual-related-posts.php:209
341
+ #, fuzzy
342
+ msgid "Thumbnail options"
343
+ msgstr "Opciones de miniaturas en el post:"
344
+
345
+ #: contextual-related-posts.php:211
346
+ #, fuzzy
347
+ msgid "Thumbnails inline, before title"
348
+ msgstr "Miniaturas en línea con los posts"
349
+
350
+ #: contextual-related-posts.php:212
351
+ #, fuzzy
352
+ msgid "Thumbnails inline, after title"
353
+ msgstr "Miniaturas en línea con los posts"
354
+
355
+ #: contextual-related-posts.php:213
356
+ #, fuzzy
357
+ msgid "Only thumbnails, no text"
358
+ msgstr "Solo miniaturas, sin texto"
359
+
360
+ #: contextual-related-posts.php:214
361
+ #, fuzzy
362
+ msgid "No thumbnails, only text."
363
+ msgstr "No mostrar miniaturas, solo texto."
364
+
365
+ #: contextual-related-posts.php:219
366
+ #, fuzzy
367
+ msgid " Show excerpt?"
368
+ msgstr "¿Mostrar extracto con los items?"
369
+
370
+ #: contextual-related-posts.php:271
371
  msgid "<h3>Related Posts:</h3>"
372
  msgstr "<h3>Post Relacionados:</h3>"
373
 
374
+ #: contextual-related-posts.php:450
375
  msgid "Settings"
376
  msgstr "Opciones"
377
 
378
+ #: contextual-related-posts.php:452
379
  msgid "Donate"
380
  msgstr "Donar"
381
 
382
+ #~ msgid "Exclude Pages in Related Posts"
383
+ #~ msgstr "Excluir Post Relacionados de las Páginas"
384
 
385
  #~ msgid ""
386
  #~ "Add related posts to the post content on single posts. <br />If you "
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: 2012-06-04 18:54-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"
@@ -39,36 +39,36 @@ msgstr "Inserisci la cifra in USD: "
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
- #: admin.inc.php:132
43
  msgid "Quick links"
44
  msgstr "Collegamenti veloci"
45
 
46
- #: admin.inc.php:134
47
  msgid "Contextual Related Posts "
48
  msgstr "Contextual Related Posts "
49
 
50
- #: admin.inc.php:134
51
  msgid "plugin page"
52
  msgstr "pagina plugin"
53
 
54
- #: admin.inc.php:135
55
  msgid "Other plugins"
56
  msgstr "Altri plugin"
57
 
58
- #: admin.inc.php:136
59
  msgid "Ajay's blog"
60
  msgstr "Il blog di Ajay"
61
 
62
- #: admin.inc.php:137
63
- #: contextual-related-posts.php:336
64
  msgid "Support"
65
  msgstr "Supporto"
66
 
67
- #: admin.inc.php:138
68
  msgid "Follow @ajaydsouza on Twitter"
69
  msgstr "Segui @ajaydsouza su Twitter"
70
 
71
- #: admin.inc.php:142
72
  msgid "Recent developments"
73
  msgstr "Sviluppi recenti"
74
 
@@ -81,49 +81,49 @@ msgid "Number of related posts to display: "
81
  msgstr "numero di articoli correlati da mostrare:"
82
 
83
  #: admin.inc.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  msgid "Exclude Categories: "
85
  msgstr "escludi le categorie:"
86
 
87
- #: admin.inc.php:181
88
  msgid "Add related posts to the post content on single posts"
89
  msgstr ""
90
 
91
- #: admin.inc.php:182
92
- #: admin.inc.php:185
93
  #, fuzzy
94
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
95
  msgstr "aggiungi gli articoli correlati alle pagine. <br />oppure disattiva ed inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
96
 
97
- #: admin.inc.php:184
98
  #, fuzzy
99
  msgid "Add related posts to pages"
100
  msgstr "aggiungi gli articoli correlati al feed"
101
 
102
- #: admin.inc.php:187
103
  msgid "Add related posts to feed"
104
  msgstr "aggiungi gli articoli correlati al feed"
105
 
106
- #: admin.inc.php:190
107
- msgid "Find related posts based on content as well as title"
108
- msgstr ""
109
-
110
- #: admin.inc.php:191
111
- #, fuzzy
112
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
113
- msgstr "Ricerca degli articoli correlati in relazione al contenuto ed al titolo. Se disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é preferibile attivare un plugin per la cache)"
114
-
115
- #: admin.inc.php:193
116
- msgid "Exclude Pages in Related Posts"
117
- msgstr "Escludi le pagine da Related Posts"
118
-
119
- #: admin.inc.php:196
120
- msgid "Post types to include in results (including custom post types)"
121
- msgstr ""
122
-
123
- #: admin.inc.php:207
124
- msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
125
- msgstr ""
126
-
127
  #: admin.inc.php:210
128
  msgid "Add a link to the plugin page as a final item in the list"
129
  msgstr ""
@@ -271,10 +271,24 @@ msgstr ""
271
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
272
  msgstr ""
273
 
 
 
 
 
 
 
 
 
 
 
274
  #: admin.inc.php:315
275
  msgid "Do you want to set options to Default?"
276
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
277
 
 
 
 
 
278
  #: admin.inc.php:316
279
  msgid "Are you sure you want to recreate the index?"
280
  msgstr "Sei certo di volere ricreare l'indice?"
@@ -284,6 +298,7 @@ msgid "Contextual Related Posts"
284
  msgstr "Contextual Related Posts"
285
 
286
  #: admin.inc.php:346
 
287
  msgid "Related Posts"
288
  msgstr "Related Posts"
289
 
@@ -300,29 +315,72 @@ msgstr ""
300
  msgid " to configure."
301
  msgstr ""
302
 
303
- #: contextual-related-posts.php:125
304
  msgid "Powered by"
305
  msgstr "Powered by"
306
 
307
- #: contextual-related-posts.php:130
308
- #: contextual-related-posts.php:134
309
  msgid "No related posts found"
310
  msgstr "Non é stato trovato alcun articolo correlato"
311
 
312
- #: contextual-related-posts.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  msgid "<h3>Related Posts:</h3>"
314
  msgstr "<h3>Related Posts:</h3>"
315
 
316
- #: contextual-related-posts.php:335
317
  msgid "Settings"
318
  msgstr "Impostazioni"
319
 
320
- #: contextual-related-posts.php:337
321
  msgid "Donate"
322
  msgstr "Donazioni"
323
 
324
- #~ msgid "Options:"
325
- #~ msgstr "Opzioni:"
326
 
327
  #~ msgid ""
328
  #~ "Add related posts to the post content on single posts. <br />If you "
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:23-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"
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
+ #: admin.inc.php:135
43
  msgid "Quick links"
44
  msgstr "Collegamenti veloci"
45
 
46
+ #: admin.inc.php:137
47
  msgid "Contextual Related Posts "
48
  msgstr "Contextual Related Posts "
49
 
50
+ #: admin.inc.php:137
51
  msgid "plugin page"
52
  msgstr "pagina plugin"
53
 
54
+ #: admin.inc.php:138
55
  msgid "Other plugins"
56
  msgstr "Altri plugin"
57
 
58
+ #: admin.inc.php:139
59
  msgid "Ajay's blog"
60
  msgstr "Il blog di Ajay"
61
 
62
+ #: admin.inc.php:140
63
+ #: contextual-related-posts.php:451
64
  msgid "Support"
65
  msgstr "Supporto"
66
 
67
+ #: admin.inc.php:141
68
  msgid "Follow @ajaydsouza on Twitter"
69
  msgstr "Segui @ajaydsouza su Twitter"
70
 
71
+ #: admin.inc.php:145
72
  msgid "Recent developments"
73
  msgstr "Sviluppi recenti"
74
 
81
  msgstr "numero di articoli correlati da mostrare:"
82
 
83
  #: admin.inc.php:163
84
+ msgid "Post types to include in results (including custom post types)"
85
+ msgstr ""
86
+
87
+ #: admin.inc.php:174
88
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
89
+ msgstr ""
90
+
91
+ #: admin.inc.php:177
92
+ msgid "Find related posts based on content as well as title"
93
+ msgstr ""
94
+
95
+ #: admin.inc.php:178
96
+ #, fuzzy
97
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
98
+ msgstr "Ricerca degli articoli correlati in relazione al contenuto ed al titolo. Se disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é preferibile attivare un plugin per la cache)"
99
+
100
+ #: admin.inc.php:180
101
+ msgid "List of post or page IDs to exclude from the results: "
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:183
105
  msgid "Exclude Categories: "
106
  msgstr "escludi le categorie:"
107
 
108
+ #: admin.inc.php:201
109
  msgid "Add related posts to the post content on single posts"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:202
113
+ #: admin.inc.php:205
114
  #, fuzzy
115
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
116
  msgstr "aggiungi gli articoli correlati alle pagine. <br />oppure disattiva ed inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
117
 
118
+ #: admin.inc.php:204
119
  #, fuzzy
120
  msgid "Add related posts to pages"
121
  msgstr "aggiungi gli articoli correlati al feed"
122
 
123
+ #: admin.inc.php:207
124
  msgid "Add related posts to feed"
125
  msgstr "aggiungi gli articoli correlati al feed"
126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  #: admin.inc.php:210
128
  msgid "Add a link to the plugin page as a final item in the list"
129
  msgstr ""
271
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
272
  msgstr ""
273
 
274
+ #: admin.inc.php:314
275
+ #, fuzzy
276
+ msgid "Save Options"
277
+ msgstr "Opzioni:"
278
+
279
+ #: admin.inc.php:315
280
+ #, fuzzy
281
+ msgid "Default Options"
282
+ msgstr "Opzioni output:"
283
+
284
  #: admin.inc.php:315
285
  msgid "Do you want to set options to Default?"
286
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
287
 
288
+ #: admin.inc.php:316
289
+ msgid "Recreate Index"
290
+ msgstr ""
291
+
292
  #: admin.inc.php:316
293
  msgid "Are you sure you want to recreate the index?"
294
  msgstr "Sei certo di volere ricreare l'indice?"
298
  msgstr "Contextual Related Posts"
299
 
300
  #: admin.inc.php:346
301
+ #: contextual-related-posts.php:190
302
  msgid "Related Posts"
303
  msgstr "Related Posts"
304
 
315
  msgid " to configure."
316
  msgstr ""
317
 
318
+ #: contextual-related-posts.php:146
319
  msgid "Powered by"
320
  msgstr "Powered by"
321
 
322
+ #: contextual-related-posts.php:151
323
+ #: contextual-related-posts.php:156
324
  msgid "No related posts found"
325
  msgstr "Non é stato trovato alcun articolo correlato"
326
 
327
+ #: contextual-related-posts.php:189
328
+ #, fuzzy
329
+ msgid "Display Related Posts"
330
+ msgstr "\"Nessun articolo correlato\""
331
+
332
+ #: contextual-related-posts.php:200
333
+ msgid "Title"
334
+ msgstr ""
335
+
336
+ #: contextual-related-posts.php:205
337
+ msgid "No. of posts"
338
+ msgstr ""
339
+
340
+ #: contextual-related-posts.php:209
341
+ #, fuzzy
342
+ msgid "Thumbnail options"
343
+ msgstr "Opzioni miniature articolo:"
344
+
345
+ #: contextual-related-posts.php:211
346
+ #, fuzzy
347
+ msgid "Thumbnails inline, before title"
348
+ msgstr "Mostra gli articoli con le miniature inline"
349
+
350
+ #: contextual-related-posts.php:212
351
+ #, fuzzy
352
+ msgid "Thumbnails inline, after title"
353
+ msgstr "Mostra gli articoli con le miniature inline"
354
+
355
+ #: contextual-related-posts.php:213
356
+ #, fuzzy
357
+ msgid "Only thumbnails, no text"
358
+ msgstr "Mostra le sole miniature, nessun testo"
359
+
360
+ #: contextual-related-posts.php:214
361
+ #, fuzzy
362
+ msgid "No thumbnails, only text."
363
+ msgstr "Non mostrare le miniature, solo testo."
364
+
365
+ #: contextual-related-posts.php:219
366
+ #, fuzzy
367
+ msgid " Show excerpt?"
368
+ msgstr "Desideri mostrare gli estratti?"
369
+
370
+ #: contextual-related-posts.php:271
371
  msgid "<h3>Related Posts:</h3>"
372
  msgstr "<h3>Related Posts:</h3>"
373
 
374
+ #: contextual-related-posts.php:450
375
  msgid "Settings"
376
  msgstr "Impostazioni"
377
 
378
+ #: contextual-related-posts.php:452
379
  msgid "Donate"
380
  msgstr "Donazioni"
381
 
382
+ #~ msgid "Exclude Pages in Related Posts"
383
+ #~ msgstr "Escludi le pagine da Related Posts"
384
 
385
  #~ msgid ""
386
  #~ "Add related posts to the post content on single posts. <br />If you "
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: 2012-06-04 18:54-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"
@@ -41,36 +41,36 @@ msgstr "Voer het bedrag in USD in:"
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
- #: admin.inc.php:132
45
  msgid "Quick links"
46
  msgstr "Quick links"
47
 
48
- #: admin.inc.php:134
49
  msgid "Contextual Related Posts "
50
  msgstr "Contextual Related Posts "
51
 
52
- #: admin.inc.php:134
53
  msgid "plugin page"
54
  msgstr "plugin pagina"
55
 
56
- #: admin.inc.php:135
57
  msgid "Other plugins"
58
  msgstr "Andere plugins"
59
 
60
- #: admin.inc.php:136
61
  msgid "Ajay's blog"
62
  msgstr "Ajay's blog"
63
 
64
- #: admin.inc.php:137
65
- #: contextual-related-posts.php:336
66
  msgid "Support"
67
  msgstr "Ondersteuning"
68
 
69
- #: admin.inc.php:138
70
  msgid "Follow @ajaydsouza on Twitter"
71
  msgstr "Volg @ajaydsouza via Twitter"
72
 
73
- #: admin.inc.php:142
74
  msgid "Recent developments"
75
  msgstr "Recente ontwikkelingen"
76
 
@@ -83,49 +83,49 @@ msgid "Number of related posts to display: "
83
  msgstr "Aantal weer te geven gerelateerde berichten:"
84
 
85
  #: admin.inc.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  msgid "Exclude Categories: "
87
  msgstr "Uitsluiten Categorieën"
88
 
89
- #: admin.inc.php:181
90
  msgid "Add related posts to the post content on single posts"
91
  msgstr ""
92
 
93
- #: admin.inc.php:182
94
- #: admin.inc.php:185
95
  #, fuzzy
96
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
97
  msgstr "Voeg gerelateerde berichten toe aan pagina's. <br />Wanneer je ervoor kiest om dit uit te zetten moet je de code <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon bestand waar je het wilt laten weergeven"
98
 
99
- #: admin.inc.php:184
100
  #, fuzzy
101
  msgid "Add related posts to pages"
102
  msgstr "Voeg gerelateerde berichten toe aan feed"
103
 
104
- #: admin.inc.php:187
105
  msgid "Add related posts to feed"
106
  msgstr "Voeg gerelateerde berichten toe aan feed"
107
 
108
- #: admin.inc.php:190
109
- msgid "Find related posts based on content as well as title"
110
- msgstr ""
111
-
112
- #: admin.inc.php:191
113
- #, fuzzy
114
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
115
- msgstr "Vind gerelateerde berichten gebaseerd op zowel content als titel. Indien niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het gebruik van een caching plugin aan wanneer je dit inschakelt)"
116
-
117
- #: admin.inc.php:193
118
- msgid "Exclude Pages in Related Posts"
119
- msgstr "Uitsluiten Pagina's in Gerelateerde Berichten"
120
-
121
- #: admin.inc.php:196
122
- msgid "Post types to include in results (including custom post types)"
123
- msgstr ""
124
-
125
- #: admin.inc.php:207
126
- msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
127
- msgstr ""
128
-
129
  #: admin.inc.php:210
130
  msgid "Add a link to the plugin page as a final item in the list"
131
  msgstr ""
@@ -273,10 +273,24 @@ msgstr ""
273
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
274
  msgstr ""
275
 
 
 
 
 
 
 
 
 
 
 
276
  #: admin.inc.php:315
277
  msgid "Do you want to set options to Default?"
278
  msgstr "Wil je opties terug naar standaard instellen?"
279
 
 
 
 
 
280
  #: admin.inc.php:316
281
  msgid "Are you sure you want to recreate the index?"
282
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
@@ -286,6 +300,7 @@ msgid "Contextual Related Posts"
286
  msgstr "Contextual Related Posts"
287
 
288
  #: admin.inc.php:346
 
289
  msgid "Related Posts"
290
  msgstr "Gerelateerde Berichten"
291
 
@@ -302,29 +317,72 @@ msgstr ""
302
  msgid " to configure."
303
  msgstr ""
304
 
305
- #: contextual-related-posts.php:125
306
  msgid "Powered by"
307
  msgstr "Powered by"
308
 
309
- #: contextual-related-posts.php:130
310
- #: contextual-related-posts.php:134
311
  msgid "No related posts found"
312
  msgstr "Geen gerelateerde berichten gevonden"
313
 
314
- #: contextual-related-posts.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "<h3>Related Posts:</h3>"
316
  msgstr "<h3>Gerelateerde Berichten:</h3>"
317
 
318
- #: contextual-related-posts.php:335
319
  msgid "Settings"
320
  msgstr "Instellingen"
321
 
322
- #: contextual-related-posts.php:337
323
  msgid "Donate"
324
  msgstr "Doneren"
325
 
326
- #~ msgid "Options:"
327
- #~ msgstr "Opties:"
328
 
329
  #~ msgid ""
330
  #~ "Add related posts to the post content on single posts. <br />If you "
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:23-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"
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
+ #: admin.inc.php:135
45
  msgid "Quick links"
46
  msgstr "Quick links"
47
 
48
+ #: admin.inc.php:137
49
  msgid "Contextual Related Posts "
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:137
53
  msgid "plugin page"
54
  msgstr "plugin pagina"
55
 
56
+ #: admin.inc.php:138
57
  msgid "Other plugins"
58
  msgstr "Andere plugins"
59
 
60
+ #: admin.inc.php:139
61
  msgid "Ajay's blog"
62
  msgstr "Ajay's blog"
63
 
64
+ #: admin.inc.php:140
65
+ #: contextual-related-posts.php:451
66
  msgid "Support"
67
  msgstr "Ondersteuning"
68
 
69
+ #: admin.inc.php:141
70
  msgid "Follow @ajaydsouza on Twitter"
71
  msgstr "Volg @ajaydsouza via Twitter"
72
 
73
+ #: admin.inc.php:145
74
  msgid "Recent developments"
75
  msgstr "Recente ontwikkelingen"
76
 
83
  msgstr "Aantal weer te geven gerelateerde berichten:"
84
 
85
  #: admin.inc.php:163
86
+ msgid "Post types to include in results (including custom post types)"
87
+ msgstr ""
88
+
89
+ #: admin.inc.php:174
90
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
91
+ msgstr ""
92
+
93
+ #: admin.inc.php:177
94
+ msgid "Find related posts based on content as well as title"
95
+ msgstr ""
96
+
97
+ #: admin.inc.php:178
98
+ #, fuzzy
99
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
100
+ msgstr "Vind gerelateerde berichten gebaseerd op zowel content als titel. Indien niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het gebruik van een caching plugin aan wanneer je dit inschakelt)"
101
+
102
+ #: admin.inc.php:180
103
+ msgid "List of post or page IDs to exclude from the results: "
104
+ msgstr ""
105
+
106
+ #: admin.inc.php:183
107
  msgid "Exclude Categories: "
108
  msgstr "Uitsluiten Categorieën"
109
 
110
+ #: admin.inc.php:201
111
  msgid "Add related posts to the post content on single posts"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:202
115
+ #: admin.inc.php:205
116
  #, fuzzy
117
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
118
  msgstr "Voeg gerelateerde berichten toe aan pagina's. <br />Wanneer je ervoor kiest om dit uit te zetten moet je de code <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon bestand waar je het wilt laten weergeven"
119
 
120
+ #: admin.inc.php:204
121
  #, fuzzy
122
  msgid "Add related posts to pages"
123
  msgstr "Voeg gerelateerde berichten toe aan feed"
124
 
125
+ #: admin.inc.php:207
126
  msgid "Add related posts to feed"
127
  msgstr "Voeg gerelateerde berichten toe aan feed"
128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  #: admin.inc.php:210
130
  msgid "Add a link to the plugin page as a final item in the list"
131
  msgstr ""
273
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
274
  msgstr ""
275
 
276
+ #: admin.inc.php:314
277
+ #, fuzzy
278
+ msgid "Save Options"
279
+ msgstr "Opties:"
280
+
281
+ #: admin.inc.php:315
282
+ #, fuzzy
283
+ msgid "Default Options"
284
+ msgstr "Output Opties:"
285
+
286
  #: admin.inc.php:315
287
  msgid "Do you want to set options to Default?"
288
  msgstr "Wil je opties terug naar standaard instellen?"
289
 
290
+ #: admin.inc.php:316
291
+ msgid "Recreate Index"
292
+ msgstr ""
293
+
294
  #: admin.inc.php:316
295
  msgid "Are you sure you want to recreate the index?"
296
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
300
  msgstr "Contextual Related Posts"
301
 
302
  #: admin.inc.php:346
303
+ #: contextual-related-posts.php:190
304
  msgid "Related Posts"
305
  msgstr "Gerelateerde Berichten"
306
 
317
  msgid " to configure."
318
  msgstr ""
319
 
320
+ #: contextual-related-posts.php:146
321
  msgid "Powered by"
322
  msgstr "Powered by"
323
 
324
+ #: contextual-related-posts.php:151
325
+ #: contextual-related-posts.php:156
326
  msgid "No related posts found"
327
  msgstr "Geen gerelateerde berichten gevonden"
328
 
329
+ #: contextual-related-posts.php:189
330
+ #, fuzzy
331
+ msgid "Display Related Posts"
332
+ msgstr "Weergave \"Geen Gerelateerde Berichten\""
333
+
334
+ #: contextual-related-posts.php:200
335
+ msgid "Title"
336
+ msgstr ""
337
+
338
+ #: contextual-related-posts.php:205
339
+ msgid "No. of posts"
340
+ msgstr ""
341
+
342
+ #: contextual-related-posts.php:209
343
+ #, fuzzy
344
+ msgid "Thumbnail options"
345
+ msgstr "Berichtopties miniatuurafbeelding:"
346
+
347
+ #: contextual-related-posts.php:211
348
+ #, fuzzy
349
+ msgid "Thumbnails inline, before title"
350
+ msgstr "Toon miniatuurafbeeldingen inline met berichten"
351
+
352
+ #: contextual-related-posts.php:212
353
+ #, fuzzy
354
+ msgid "Thumbnails inline, after title"
355
+ msgstr "Toon miniatuurafbeeldingen inline met berichten"
356
+
357
+ #: contextual-related-posts.php:213
358
+ #, fuzzy
359
+ msgid "Only thumbnails, no text"
360
+ msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
361
+
362
+ #: contextual-related-posts.php:214
363
+ #, fuzzy
364
+ msgid "No thumbnails, only text."
365
+ msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
366
+
367
+ #: contextual-related-posts.php:219
368
+ #, fuzzy
369
+ msgid " Show excerpt?"
370
+ msgstr "Laat bericht uittreksel zien in lijst?"
371
+
372
+ #: contextual-related-posts.php:271
373
  msgid "<h3>Related Posts:</h3>"
374
  msgstr "<h3>Gerelateerde Berichten:</h3>"
375
 
376
+ #: contextual-related-posts.php:450
377
  msgid "Settings"
378
  msgstr "Instellingen"
379
 
380
+ #: contextual-related-posts.php:452
381
  msgid "Donate"
382
  msgstr "Doneren"
383
 
384
+ #~ msgid "Exclude Pages in Related Posts"
385
+ #~ msgstr "Uitsluiten Pagina's in Gerelateerde Berichten"
386
 
387
  #~ msgid ""
388
  #~ "Add related posts to the post content on single posts. <br />If you "
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: 2012-06-04 18:54-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -39,36 +39,36 @@ msgstr "Введите сумму в долларах США:"
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
- #: admin.inc.php:132
43
  msgid "Quick links"
44
  msgstr "Быстрые ссылки"
45
 
46
- #: admin.inc.php:134
47
  msgid "Contextual Related Posts "
48
  msgstr "Контекстные похожие посты"
49
 
50
- #: admin.inc.php:134
51
  msgid "plugin page"
52
  msgstr "Страница плагина"
53
 
54
- #: admin.inc.php:135
55
  msgid "Other plugins"
56
  msgstr "Другие плагины"
57
 
58
- #: admin.inc.php:136
59
  msgid "Ajay's blog"
60
  msgstr "Блог автора (Ajay, английский язык)"
61
 
62
- #: admin.inc.php:137
63
- #: contextual-related-posts.php:336
64
  msgid "Support"
65
  msgstr "Поддержка"
66
 
67
- #: admin.inc.php:138
68
  msgid "Follow @ajaydsouza on Twitter"
69
  msgstr "Следовать @ajaydsouza на Твиттере"
70
 
71
- #: admin.inc.php:142
72
  msgid "Recent developments"
73
  msgstr "Последние разработки"
74
 
@@ -81,49 +81,49 @@ msgid "Number of related posts to display: "
81
  msgstr "Количество отображаемых похожих постов:"
82
 
83
  #: admin.inc.php:163
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
84
  msgid "Exclude Categories: "
85
  msgstr "Исключить категории:"
86
 
87
- #: admin.inc.php:181
88
  msgid "Add related posts to the post content on single posts"
89
  msgstr ""
90
 
91
- #: admin.inc.php:182
92
- #: admin.inc.php:185
93
  #, fuzzy
94
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
95
  msgstr "Показывать связанные посты на страницах. <br />Если вы захотите отключить эту опцию, пожалуйста, добавьте код: <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на вашем сайте"
96
 
97
- #: admin.inc.php:184
98
  #, fuzzy
99
  msgid "Add related posts to pages"
100
  msgstr "Добавить похожие посты в фид"
101
 
102
- #: admin.inc.php:187
103
  msgid "Add related posts to feed"
104
  msgstr "Добавить похожие посты в фид"
105
 
106
- #: admin.inc.php:190
107
- msgid "Find related posts based on content as well as title"
108
- msgstr ""
109
-
110
- #: admin.inc.php:191
111
- #, fuzzy
112
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
113
- msgstr "Найти связанные сообщения в зависимости от содержания и заголовка. Если вы не выберете эту опцию, то для поиска будут использоваться только заголовки сообщений. (Я рекомендую использовать плагин кэширования, если вы включите опцию)"
114
-
115
- #: admin.inc.php:193
116
- msgid "Exclude Pages in Related Posts"
117
- msgstr "Исключить страницы в Похожих постах"
118
-
119
- #: admin.inc.php:196
120
- msgid "Post types to include in results (including custom post types)"
121
- msgstr ""
122
-
123
- #: admin.inc.php:207
124
- msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
125
- msgstr ""
126
-
127
  #: admin.inc.php:210
128
  msgid "Add a link to the plugin page as a final item in the list"
129
  msgstr ""
@@ -271,10 +271,24 @@ msgstr ""
271
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
272
  msgstr ""
273
 
 
 
 
 
 
 
 
 
 
 
274
  #: admin.inc.php:315
275
  msgid "Do you want to set options to Default?"
276
  msgstr "Вы хотите задать параметры по умолчанию?"
277
 
 
 
 
 
278
  #: admin.inc.php:316
279
  msgid "Are you sure you want to recreate the index?"
280
  msgstr "Вы уверены, что хотите воссоздать индекс?"
@@ -284,6 +298,7 @@ msgid "Contextual Related Posts"
284
  msgstr "Контекстные похожие посты"
285
 
286
  #: admin.inc.php:346
 
287
  msgid "Related Posts"
288
  msgstr "Похожие посты"
289
 
@@ -300,29 +315,72 @@ msgstr ""
300
  msgid " to configure."
301
  msgstr ""
302
 
303
- #: contextual-related-posts.php:125
304
  msgid "Powered by"
305
  msgstr "Автор:"
306
 
307
- #: contextual-related-posts.php:130
308
- #: contextual-related-posts.php:134
309
  msgid "No related posts found"
310
  msgstr "Не найдены похожие посты"
311
 
312
- #: contextual-related-posts.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  msgid "<h3>Related Posts:</h3>"
314
  msgstr "<h3>Похожие посты:</h3>"
315
 
316
- #: contextual-related-posts.php:335
317
  msgid "Settings"
318
  msgstr "Настройки"
319
 
320
- #: contextual-related-posts.php:337
321
  msgid "Donate"
322
  msgstr "Пожертвование"
323
 
324
- #~ msgid "Options:"
325
- #~ msgstr "Опции:"
326
 
327
  #~ msgid ""
328
  #~ "Add related posts to the post content on single posts. <br />If you "
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:23-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
+ #: admin.inc.php:135
43
  msgid "Quick links"
44
  msgstr "Быстрые ссылки"
45
 
46
+ #: admin.inc.php:137
47
  msgid "Contextual Related Posts "
48
  msgstr "Контекстные похожие посты"
49
 
50
+ #: admin.inc.php:137
51
  msgid "plugin page"
52
  msgstr "Страница плагина"
53
 
54
+ #: admin.inc.php:138
55
  msgid "Other plugins"
56
  msgstr "Другие плагины"
57
 
58
+ #: admin.inc.php:139
59
  msgid "Ajay's blog"
60
  msgstr "Блог автора (Ajay, английский язык)"
61
 
62
+ #: admin.inc.php:140
63
+ #: contextual-related-posts.php:451
64
  msgid "Support"
65
  msgstr "Поддержка"
66
 
67
+ #: admin.inc.php:141
68
  msgid "Follow @ajaydsouza on Twitter"
69
  msgstr "Следовать @ajaydsouza на Твиттере"
70
 
71
+ #: admin.inc.php:145
72
  msgid "Recent developments"
73
  msgstr "Последние разработки"
74
 
81
  msgstr "Количество отображаемых похожих постов:"
82
 
83
  #: admin.inc.php:163
84
+ msgid "Post types to include in results (including custom post types)"
85
+ msgstr ""
86
+
87
+ #: admin.inc.php:174
88
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
89
+ msgstr ""
90
+
91
+ #: admin.inc.php:177
92
+ msgid "Find related posts based on content as well as title"
93
+ msgstr ""
94
+
95
+ #: admin.inc.php:178
96
+ #, fuzzy
97
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
98
+ msgstr "Найти связанные сообщения в зависимости от содержания и заголовка. Если вы не выберете эту опцию, то для поиска будут использоваться только заголовки сообщений. (Я рекомендую использовать плагин кэширования, если вы включите опцию)"
99
+
100
+ #: admin.inc.php:180
101
+ msgid "List of post or page IDs to exclude from the results: "
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:183
105
  msgid "Exclude Categories: "
106
  msgstr "Исключить категории:"
107
 
108
+ #: admin.inc.php:201
109
  msgid "Add related posts to the post content on single posts"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:202
113
+ #: admin.inc.php:205
114
  #, fuzzy
115
  msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
116
  msgstr "Показывать связанные посты на страницах. <br />Если вы захотите отключить эту опцию, пожалуйста, добавьте код: <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на вашем сайте"
117
 
118
+ #: admin.inc.php:204
119
  #, fuzzy
120
  msgid "Add related posts to pages"
121
  msgstr "Добавить похожие посты в фид"
122
 
123
+ #: admin.inc.php:207
124
  msgid "Add related posts to feed"
125
  msgstr "Добавить похожие посты в фид"
126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
127
  #: admin.inc.php:210
128
  msgid "Add a link to the plugin page as a final item in the list"
129
  msgstr ""
271
  msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
272
  msgstr ""
273
 
274
+ #: admin.inc.php:314
275
+ #, fuzzy
276
+ msgid "Save Options"
277
+ msgstr "Опции:"
278
+
279
+ #: admin.inc.php:315
280
+ #, fuzzy
281
+ msgid "Default Options"
282
+ msgstr "Опции вывода:"
283
+
284
  #: admin.inc.php:315
285
  msgid "Do you want to set options to Default?"
286
  msgstr "Вы хотите задать параметры по умолчанию?"
287
 
288
+ #: admin.inc.php:316
289
+ msgid "Recreate Index"
290
+ msgstr ""
291
+
292
  #: admin.inc.php:316
293
  msgid "Are you sure you want to recreate the index?"
294
  msgstr "Вы уверены, что хотите воссоздать индекс?"
298
  msgstr "Контекстные похожие посты"
299
 
300
  #: admin.inc.php:346
301
+ #: contextual-related-posts.php:190
302
  msgid "Related Posts"
303
  msgstr "Похожие посты"
304
 
315
  msgid " to configure."
316
  msgstr ""
317
 
318
+ #: contextual-related-posts.php:146
319
  msgid "Powered by"
320
  msgstr "Автор:"
321
 
322
+ #: contextual-related-posts.php:151
323
+ #: contextual-related-posts.php:156
324
  msgid "No related posts found"
325
  msgstr "Не найдены похожие посты"
326
 
327
+ #: contextual-related-posts.php:189
328
+ #, fuzzy
329
+ msgid "Display Related Posts"
330
+ msgstr "Показывать \"Нет похожих постов\""
331
+
332
+ #: contextual-related-posts.php:200
333
+ msgid "Title"
334
+ msgstr ""
335
+
336
+ #: contextual-related-posts.php:205
337
+ msgid "No. of posts"
338
+ msgstr ""
339
+
340
+ #: contextual-related-posts.php:209
341
+ #, fuzzy
342
+ msgid "Thumbnail options"
343
+ msgstr "Опции изображения поста:"
344
+
345
+ #: contextual-related-posts.php:211
346
+ #, fuzzy
347
+ msgid "Thumbnails inline, before title"
348
+ msgstr "Показать эскизы в соответствии с сообщениями"
349
+
350
+ #: contextual-related-posts.php:212
351
+ #, fuzzy
352
+ msgid "Thumbnails inline, after title"
353
+ msgstr "Показать эскизы в соответствии с сообщениями"
354
+
355
+ #: contextual-related-posts.php:213
356
+ #, fuzzy
357
+ msgid "Only thumbnails, no text"
358
+ msgstr "Показывать только изображения, без текста"
359
+
360
+ #: contextual-related-posts.php:214
361
+ #, fuzzy
362
+ msgid "No thumbnails, only text."
363
+ msgstr "Не показывать изображения, только текст"
364
+
365
+ #: contextual-related-posts.php:219
366
+ #, fuzzy
367
+ msgid " Show excerpt?"
368
+ msgstr "Показать выдержки из поста в списке?"
369
+
370
+ #: contextual-related-posts.php:271
371
  msgid "<h3>Related Posts:</h3>"
372
  msgstr "<h3>Похожие посты:</h3>"
373
 
374
+ #: contextual-related-posts.php:450
375
  msgid "Settings"
376
  msgstr "Настройки"
377
 
378
+ #: contextual-related-posts.php:452
379
  msgid "Donate"
380
  msgstr "Пожертвование"
381
 
382
+ #~ msgid "Exclude Pages in Related Posts"
383
+ #~ msgstr "Исключить страницы в Похожих постах"
384
 
385
  #~ msgid ""
386
  #~ "Add related posts to the post content on single posts. <br />If you "
languages/crp-zh_CN.mo ADDED
Binary file
languages/crp-zh_CN.po ADDED
@@ -0,0 +1,372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Contextual Related Posts\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-16 11:23-0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
13
+ "X-Poedit-Basepath: ../\n"
14
+ "X-Poedit-Language: Chinese\n"
15
+ "X-Poedit-Country: CHINA\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: admin.inc.php:70
19
+ msgid "Options saved successfully."
20
+ msgstr "成功保存设置。"
21
+
22
+ #: admin.inc.php:86
23
+ msgid "Options set to Default."
24
+ msgstr "已重置设置。"
25
+
26
+ #: admin.inc.php:101
27
+ msgid "Index recreated"
28
+ msgstr "已重新创建索引"
29
+
30
+ #: admin.inc.php:114
31
+ msgid "Support the development"
32
+ msgstr "支持开发"
33
+
34
+ #: admin.inc.php:122
35
+ msgid "Enter amount in USD: "
36
+ msgstr "输入美元金额:"
37
+
38
+ #: admin.inc.php:126
39
+ msgid "Send your donation to the author of"
40
+ msgstr "捐赠给作者"
41
+
42
+ #: admin.inc.php:135
43
+ msgid "Quick links"
44
+ msgstr "快速链接"
45
+
46
+ #: admin.inc.php:137
47
+ msgid "Contextual Related Posts "
48
+ msgstr "相关日志"
49
+
50
+ #: admin.inc.php:137
51
+ msgid "plugin page"
52
+ msgstr "插件页面"
53
+
54
+ #: admin.inc.php:138
55
+ msgid "Other plugins"
56
+ msgstr "其他插件"
57
+
58
+ #: admin.inc.php:139
59
+ msgid "Ajay's blog"
60
+ msgstr "Ajay 的博客"
61
+
62
+ #: admin.inc.php:140
63
+ #: contextual-related-posts.php:451
64
+ msgid "Support"
65
+ msgstr "技术支持"
66
+
67
+ #: admin.inc.php:141
68
+ msgid "Follow @ajaydsouza on Twitter"
69
+ msgstr "在推特上关注 @ajaydsouza"
70
+
71
+ #: admin.inc.php:145
72
+ msgid "Recent developments"
73
+ msgstr "最新开发"
74
+
75
+ #: admin.inc.php:157
76
+ msgid "General options"
77
+ msgstr "一般设置"
78
+
79
+ #: admin.inc.php:160
80
+ msgid "Number of related posts to display: "
81
+ msgstr "相关日志数量:"
82
+
83
+ #: admin.inc.php:163
84
+ msgid "Post types to include in results (including custom post types)"
85
+ msgstr "被索引的日志类型(包含自定义日志类型)"
86
+
87
+ #: admin.inc.php:174
88
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
89
+ msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
90
+
91
+ #: admin.inc.php:177
92
+ msgid "Find related posts based on content as well as title"
93
+ msgstr "根据标题和正文内容索引相关日志"
94
+
95
+ #: admin.inc.php:178
96
+ msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
97
+ msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
98
+
99
+ #: admin.inc.php:180
100
+ msgid "List of post or page IDs to exclude from the results: "
101
+ msgstr ""
102
+
103
+ #: admin.inc.php:183
104
+ msgid "Exclude Categories: "
105
+ msgstr "排除分类:"
106
+
107
+ #: admin.inc.php:201
108
+ msgid "Add related posts to the post content on single posts"
109
+ msgstr "添加相关日志到文章里"
110
+
111
+ #: admin.inc.php:202
112
+ #: admin.inc.php:205
113
+ msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
114
+ msgstr "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
115
+
116
+ #: admin.inc.php:204
117
+ msgid "Add related posts to pages"
118
+ msgstr "添加相关日志到页面里"
119
+
120
+ #: admin.inc.php:207
121
+ msgid "Add related posts to feed"
122
+ msgstr "添加相关日志到 feed 里"
123
+
124
+ #: admin.inc.php:210
125
+ msgid "Add a link to the plugin page as a final item in the list"
126
+ msgstr "在相关日志后添加插件页面的链接"
127
+
128
+ #: admin.inc.php:211
129
+ msgid " <em>Optional</em>"
130
+ msgstr " <em>可选</em>"
131
+
132
+ #: admin.inc.php:219
133
+ msgid "Output Options"
134
+ msgstr "显示设置"
135
+
136
+ #: admin.inc.php:222
137
+ msgid "Title of related posts: "
138
+ msgstr "相关日志的标题:"
139
+
140
+ #: admin.inc.php:225
141
+ msgid "When there are no posts, what should be shown?"
142
+ msgstr "当不存在相关日志时,显示什么?"
143
+
144
+ #: admin.inc.php:229
145
+ msgid "Blank Output"
146
+ msgstr "不显示"
147
+
148
+ #: admin.inc.php:233
149
+ msgid "Display \"No Related Posts\""
150
+ msgstr "显示 \"没有相关日志\""
151
+
152
+ #: admin.inc.php:237
153
+ msgid "Show post excerpt in list?"
154
+ msgstr "是否显示日志摘要?"
155
+
156
+ #: admin.inc.php:240
157
+ msgid "Length of excerpt (in words): "
158
+ msgstr "摘要长度(词数):"
159
+
160
+ #: admin.inc.php:243
161
+ msgid "Customize the output:"
162
+ msgstr "自定义显示:"
163
+
164
+ #: admin.inc.php:245
165
+ msgid "HTML to display before the list of posts: "
166
+ msgstr "显示在每篇日志后面的 HTML 标签:"
167
+
168
+ #: admin.inc.php:248
169
+ msgid "HTML to display before each list item: "
170
+ msgstr "显示在每篇日志后面的 HTML 标签:"
171
+
172
+ #: admin.inc.php:251
173
+ msgid "HTML to display after each list item: "
174
+ msgstr "显示在日志列表前面的 HTML 标签:"
175
+
176
+ #: admin.inc.php:254
177
+ msgid "HTML to display after the list of posts: "
178
+ msgstr "显示在日志列表后面的 HTML 标签:"
179
+
180
+ #: admin.inc.php:257
181
+ msgid "Post thumbnail options:"
182
+ msgstr "日志缩略图设置:"
183
+
184
+ #: admin.inc.php:259
185
+ msgid "Location of post thumbnail:"
186
+ msgstr "日志缩略图位置:"
187
+
188
+ #: admin.inc.php:263
189
+ msgid "Display thumbnails inline with posts, before title"
190
+ msgstr "在标题前显示缩略图"
191
+
192
+ #: admin.inc.php:267
193
+ msgid "Display thumbnails inline with posts, after title"
194
+ msgstr "在标题后显示缩略图"
195
+
196
+ #: admin.inc.php:271
197
+ msgid "Display only thumbnails, no text"
198
+ msgstr "不显示文本,只显示缩略图"
199
+
200
+ #: admin.inc.php:275
201
+ msgid "Do not display thumbnails, only text."
202
+ msgstr "不显示缩略图,只显示文本"
203
+
204
+ #: admin.inc.php:279
205
+ msgid "Maximum width of the thumbnail: "
206
+ msgstr "缩略图最大宽度"
207
+
208
+ #: admin.inc.php:282
209
+ msgid "Maximum height of the thumbnail: "
210
+ msgstr "缩略图最大高度"
211
+
212
+ #: admin.inc.php:285
213
+ msgid "Use timthumb to generate thumbnails? "
214
+ msgstr "是否使用 timthumb 生成缩略图?"
215
+
216
+ #: admin.inc.php:286
217
+ msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
218
+ msgstr "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> 生成缩略图"
219
+
220
+ #: admin.inc.php:288
221
+ msgid "Post thumbnail meta field name: "
222
+ msgstr "日志缩略图自定义栏目的名称:"
223
+
224
+ #: admin.inc.php:289
225
+ msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
226
+ msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
227
+
228
+ #: admin.inc.php:291
229
+ msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
230
+ msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
231
+
232
+ #: admin.inc.php:292
233
+ msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
234
+ msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
235
+
236
+ #: admin.inc.php:294
237
+ msgid "Use default thumbnail? "
238
+ msgstr "是否使用默认缩略图?"
239
+
240
+ #: admin.inc.php:295
241
+ msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
242
+ msgstr "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
243
+
244
+ #: admin.inc.php:297
245
+ msgid "Default thumbnail: "
246
+ msgstr "默认缩略图:"
247
+
248
+ #: admin.inc.php:298
249
+ msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
250
+ msgstr "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显示上面默认图像"
251
+
252
+ #: admin.inc.php:304
253
+ msgid "Custom Styles"
254
+ msgstr "自定义样式"
255
+
256
+ #: admin.inc.php:307
257
+ msgid "Custom CSS to add to header:"
258
+ msgstr "添加自定义 CSS 到 header:"
259
+
260
+ #: admin.inc.php:310
261
+ msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
262
+ msgstr "不要包含 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
263
+
264
+ #: admin.inc.php:314
265
+ #, fuzzy
266
+ msgid "Save Options"
267
+ msgstr "显示设置"
268
+
269
+ #: admin.inc.php:315
270
+ #, fuzzy
271
+ msgid "Default Options"
272
+ msgstr "显示设置"
273
+
274
+ #: admin.inc.php:315
275
+ msgid "Do you want to set options to Default?"
276
+ msgstr "是否要重置设置?"
277
+
278
+ #: admin.inc.php:316
279
+ msgid "Recreate Index"
280
+ msgstr ""
281
+
282
+ #: admin.inc.php:316
283
+ msgid "Are you sure you want to recreate the index?"
284
+ msgstr "是否要重建索引?"
285
+
286
+ #: admin.inc.php:346
287
+ msgid "Contextual Related Posts"
288
+ msgstr "Contextual Related Posts 相关日志"
289
+
290
+ #: admin.inc.php:346
291
+ #: contextual-related-posts.php:190
292
+ msgid "Related Posts"
293
+ msgstr "相关日志"
294
+
295
+ #: admin.inc.php:355
296
+ msgid "plugin settings page"
297
+ msgstr "插件设置页面"
298
+
299
+ #: admin.inc.php:360
300
+ msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
301
+ msgstr "Contextual Related Posts 已经安装/升级完毕。请访问"
302
+
303
+ #: admin.inc.php:360
304
+ msgid " to configure."
305
+ msgstr "设置插件"
306
+
307
+ #: contextual-related-posts.php:146
308
+ msgid "Powered by"
309
+ msgstr "插件作者:"
310
+
311
+ #: contextual-related-posts.php:151
312
+ #: contextual-related-posts.php:156
313
+ msgid "No related posts found"
314
+ msgstr "没有发现相关日志"
315
+
316
+ #: contextual-related-posts.php:189
317
+ #, fuzzy
318
+ msgid "Display Related Posts"
319
+ msgstr "显示 \"没有相关日志\""
320
+
321
+ #: contextual-related-posts.php:200
322
+ msgid "Title"
323
+ msgstr ""
324
+
325
+ #: contextual-related-posts.php:205
326
+ msgid "No. of posts"
327
+ msgstr ""
328
+
329
+ #: contextual-related-posts.php:209
330
+ #, fuzzy
331
+ msgid "Thumbnail options"
332
+ msgstr "日志缩略图设置:"
333
+
334
+ #: contextual-related-posts.php:211
335
+ #, fuzzy
336
+ msgid "Thumbnails inline, before title"
337
+ msgstr "在标题前显示缩略图"
338
+
339
+ #: contextual-related-posts.php:212
340
+ #, fuzzy
341
+ msgid "Thumbnails inline, after title"
342
+ msgstr "在标题后显示缩略图"
343
+
344
+ #: contextual-related-posts.php:213
345
+ #, fuzzy
346
+ msgid "Only thumbnails, no text"
347
+ msgstr "不显示文本,只显示缩略图"
348
+
349
+ #: contextual-related-posts.php:214
350
+ #, fuzzy
351
+ msgid "No thumbnails, only text."
352
+ msgstr "不显示缩略图,只显示文本"
353
+
354
+ #: contextual-related-posts.php:219
355
+ #, fuzzy
356
+ msgid " Show excerpt?"
357
+ msgstr "是否显示日志摘要?"
358
+
359
+ #: contextual-related-posts.php:271
360
+ msgid "<h3>Related Posts:</h3>"
361
+ msgstr "<h3>相关日志:</h3>"
362
+
363
+ #: contextual-related-posts.php:450
364
+ msgid "Settings"
365
+ msgstr "设置"
366
+
367
+ #: contextual-related-posts.php:452
368
+ msgid "Donate"
369
+ msgstr "捐赠"
370
+
371
+ #~ msgid "Exclude Pages in Related Posts"
372
+ #~ msgstr "在相关日志中排除页面"
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.4
8
  License: GPLv2 or later
9
 
10
  Increase reader retention and reduce bounce rates by displaying a set of related posts on your website or in your feed
@@ -35,12 +35,21 @@ The list is based on the content of the title and/or content of the posts which
35
 
36
  == Upgrade Notice ==
37
 
38
- = 1.8 =
39
- * Added support for WordPress Custom Post Types, new `Custom Styles` tab, timthumb support. Please visit the Settings page to configure soon after upgrade.
40
 
41
 
42
  == Changelog ==
43
 
 
 
 
 
 
 
 
 
 
44
  = 1.8 =
45
  * Modified: Replaced `id` attribute with `class` tag on non-singular pages. On singular pages it will display both `id` and `class`
46
  * Added: Option to use timthumb to create thumbnail images (turned ON by default)
@@ -213,7 +222,6 @@ You can also use this function to display related posts on any type of page gene
213
  Below are a few features that I plan on implementing in future versions of the plugin. However, there is no fixed time-frame for this and largely depends on how much time I can contribute to development.
214
 
215
  * Select random posts if there are no similar posts
216
- * Widget to display the related posts
217
  * Shortcode support
218
  * Exclude display on select categories and tags
219
  * Exclude display on select posts
@@ -222,7 +230,6 @@ Below are a few features that I plan on implementing in future versions of the p
222
  * Improved Custom post support
223
  * Multi-side support
224
  * Ready-made styles
225
- * Better post excerpt support
226
  * Upload your own default thumbnail
227
 
228
  If you would like a feature to be added, or if you already have the code for the feature, you can let us know by <a href="http://wordpress.org/support/plugin/contextual-related-posts">posting in this forum</a>.
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.0
7
+ Tested up to: 3.5
8
  License: GPLv2 or later
9
 
10
  Increase reader retention and reduce bounce rates by displaying a set of related posts on your website or in your feed
35
 
36
  == Upgrade Notice ==
37
 
38
+ = 1.8.1 =
39
+ * New widget support; performance improvements; use the excerpt; exclude posts / pages by page id.
40
 
41
 
42
  == Changelog ==
43
 
44
+ = 1.8.1 =
45
+ * Added: Widget support. Widget display follows the same settings as having the related posts after content.
46
+ * Added: Exclude posts and pages by ID
47
+ * Modified: Optimised performance when automatic insertion into content is turned off
48
+ * Modified: Plugin uses the default excerpt if it is set, else it creates one based on content. Both settings respect the excerpt length set in the plugin
49
+ * Modified: Fixed some language related issues. If you would like to translate the plugin or update a translation, please <a href="http://ajaydsouza.com/contact/">contact me</a>.
50
+ * Deleted: Redundant option to exclude display of the related posts on pages. You can use the custom post types feature instead
51
+ * Added: Chinese language file
52
+
53
  = 1.8 =
54
  * Modified: Replaced `id` attribute with `class` tag on non-singular pages. On singular pages it will display both `id` and `class`
55
  * Added: Option to use timthumb to create thumbnail images (turned ON by default)
222
  Below are a few features that I plan on implementing in future versions of the plugin. However, there is no fixed time-frame for this and largely depends on how much time I can contribute to development.
223
 
224
  * Select random posts if there are no similar posts
 
225
  * Shortcode support
226
  * Exclude display on select categories and tags
227
  * Exclude display on select posts
230
  * Improved Custom post support
231
  * Multi-side support
232
  * Ready-made styles
 
233
  * Upload your own default thumbnail
234
 
235
  If you would like a feature to be added, or if you already have the code for the feature, you can let us know by <a href="http://wordpress.org/support/plugin/contextual-related-posts">posting in this forum</a>.
screenshot-1.png CHANGED
Binary file