Contextual Related Posts - Version 1.9.1

Version Description

  • New Meta box on the Edit screens; Modifed match title algorithm; code cleanup and bug fixes; Check the Changelog for a full list of changes.

=

Download this release

Release Info

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

Code changes from version 1.9.0.1 to 1.9.1

README.md CHANGED
@@ -2,7 +2,7 @@
2
 
3
  __Requires:__ 3.0
4
 
5
- __Tested up to:__ 3.9
6
 
7
  __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
8
 
@@ -33,7 +33,7 @@ The plugin also comes with it's very own inbuilt stylesheet that let's your rela
33
  * **Thumbnail support**:
34
  * Support for WordPress post thumbnails
35
  * Auto-extract the first image in your post to be displayed as a thumbnail
36
- * Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>
37
  * Use timthumb to resize images or use your own filter function to resize post images
38
  * **Styles**: The output is wrapped in CSS classes which allows you to easily style the list. You can enter your custom CSS styles from within WordPress Admin area or use the style included.
39
  * **Customisable output**:
2
 
3
  __Requires:__ 3.0
4
 
5
+ __Tested up to:__ 4.0
6
 
7
  __License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
8
 
33
  * **Thumbnail support**:
34
  * Support for WordPress post thumbnails
35
  * Auto-extract the first image in your post to be displayed as a thumbnail
36
+ * Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>. Specify this using the meta box in your Edit screens.
37
  * Use timthumb to resize images or use your own filter function to resize post images
38
  * **Styles**: The output is wrapped in CSS classes which allows you to easily style the list. You can enter your custom CSS styles from within WordPress Admin area or use the style included.
39
  * **Customisable output**:
admin.inc.php CHANGED
@@ -1,11 +1,16 @@
1
  <?php
2
- /**********************************************************************
3
- * Admin Page *
4
- *********************************************************************/
 
 
 
 
 
5
  if ( ! defined( 'ABSPATH' ) ) die( "Aren't you supposed to come here via WP-Admin?" );
6
 
7
  /**
8
- * Plugin settings page.
9
  *
10
  * @access public
11
  * @return void
@@ -16,6 +21,7 @@ function crp_options() {
16
  $poststable = $wpdb->posts;
17
 
18
  $crp_settings = crp_read_options();
 
19
  $wp_post_types = get_post_types( array(
20
  'public' => true,
21
  ) );
@@ -26,15 +32,13 @@ function crp_options() {
26
  $posts_types_excl = array_intersect( $wp_post_types, $exclude_on_post_types );
27
 
28
  if ( ( isset( $_POST['crp_save'] ) ) && ( check_admin_referer( 'crp-plugin' ) ) ) {
29
- $crp_settings['title'] = wp_kses_post( $_POST['title'] );
 
 
30
  $crp_settings['limit'] = intval( $_POST['limit'] );
31
  $crp_settings['daily_range'] = intval( $_POST['daily_range'] );
32
- $crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_on_post_ids'] ) ) );
33
- $crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_post_ids'] ) ) );
34
  $crp_settings['match_content'] = ( isset( $_POST['match_content'] ) ? true : false );
35
  $crp_settings['match_content_words'] = intval( $_POST['match_content_words'] );
36
- $crp_settings['cache'] = ( isset( $_POST['cache'] ) ? true : false );
37
- $crp_settings['content_filter_priority'] = intval( $_POST['content_filter_priority'] );
38
 
39
  $crp_settings['add_to_content'] = ( isset( $_POST['add_to_content'] ) ? true : false );
40
  $crp_settings['add_to_page'] = ( isset( $_POST['add_to_page'] ) ? true : false );
@@ -44,31 +48,50 @@ function crp_options() {
44
  $crp_settings['add_to_tag_archives'] = ( isset( $_POST['add_to_tag_archives'] ) ? true : false );
45
  $crp_settings['add_to_archives'] = ( isset( $_POST['add_to_archives'] ) ? true : false );
46
 
47
- $crp_settings['title_length'] = intval( $_POST['title_length'] );
 
 
 
 
48
  $crp_settings['blank_output'] = ( ( $_POST['blank_output'] == 'blank' ) ? true : false );
49
  $crp_settings['blank_output_text'] = wp_kses_post( $_POST['blank_output_text'] );
 
 
 
 
 
 
 
 
 
 
50
  $crp_settings['before_list'] = wp_kses_post( $_POST['before_list'] );
51
  $crp_settings['after_list'] = wp_kses_post( $_POST['after_list'] );
52
  $crp_settings['before_list_item'] = wp_kses_post( $_POST['before_list_item'] );
53
  $crp_settings['after_list_item'] = wp_kses_post( $_POST['after_list_item'] );
54
 
 
 
 
55
  $crp_settings['post_thumb_op'] = wp_kses_post( $_POST['post_thumb_op'] );
56
- $crp_settings['thumb_meta'] = ( '' == $_POST['thumb_meta'] ? 'post-image' : wp_kses_post( $_POST['thumb_meta'] ) );
57
- $crp_settings['thumb_default'] = wp_kses_post( $_POST['thumb_default'] );
58
  $crp_settings['thumb_height'] = intval( $_POST['thumb_height'] );
59
  $crp_settings['thumb_width'] = intval( $_POST['thumb_width'] );
60
- $crp_settings['thumb_default_show'] = ( isset( $_POST['thumb_default_show'] ) ? true : false );
61
  $crp_settings['thumb_html'] = $_POST['thumb_html'];
 
 
 
 
62
  $crp_settings['thumb_timthumb'] = ( isset( $_POST['thumb_timthumb'] ) ? true : false );
63
  $crp_settings['thumb_timthumb_q'] = intval( $_POST['thumb_timthumb_q'] );
64
- $crp_settings['scan_images'] = ( isset( $_POST['scan_images'] ) ? true : false );
65
 
66
- $crp_settings['show_excerpt'] = ( isset( $_POST['show_excerpt'] ) ? true : false );
67
- $crp_settings['excerpt_length'] = intval( $_POST['excerpt_length'] );
68
- $crp_settings['show_date'] = ( isset( $_POST['show_date'] ) ? true : false );
69
- $crp_settings['show_author'] = ( isset( $_POST['show_author'] ) ? true : false );
70
- $crp_settings['show_credit'] = ( isset( $_POST['show_credit'] ) ? true : false );
 
71
 
 
72
  $crp_settings['custom_CSS'] = wp_kses_post( $_POST['custom_CSS'] );
73
 
74
  if ( isset( $_POST['include_default_style'] ) ) {
@@ -80,16 +103,7 @@ function crp_options() {
80
  $crp_settings['include_default_style'] = false;
81
  }
82
 
83
- $crp_settings['link_new_window'] = ( isset( $_POST['link_new_window'] ) ? true : false );
84
- $crp_settings['link_nofollow'] = ( isset( $_POST['link_nofollow'] ) ? true : false );
85
-
86
- $crp_settings['limit_feed'] = intval( $_POST['limit_feed'] );
87
- $crp_settings['post_thumb_op_feed'] = wp_kses_post( $_POST['post_thumb_op_feed'] );
88
- $crp_settings['thumb_height_feed'] = intval( $_POST['thumb_height_feed'] );
89
- $crp_settings['thumb_width_feed'] = intval( $_POST['thumb_width_feed'] );
90
- $crp_settings['show_excerpt_feed'] = ( isset( $_POST['show_excerpt_feed'] ) ? true : false );
91
-
92
-
93
  $crp_settings['exclude_cat_slugs'] = wp_kses_post( $_POST['exclude_cat_slugs'] );
94
  $exclude_categories_slugs = explode( ", ", $crp_settings['exclude_cat_slugs'] );
95
 
@@ -176,14 +190,14 @@ function crp_options() {
176
  <div class="inside">
177
  <table class="form-table">
178
  <tr><th scope="row"><label for="cache"><?php _e( 'Cache output?', CRP_LOCAL_NAME ); ?></label></th>
179
- <td><input type="checkbox" name="cache" id="cache" <?php if ($crp_settings['cache']) echo 'checked="checked"' ?> />
180
  <p class="description"><?php _e( 'Enabling this option will cache the related posts output when the post is visited the first time. The cache is cleaned when you save this page.', CRP_LOCAL_NAME ); ?></p>
181
  <p><input type="button" value="<?php _e( 'Clear cache', CRP_LOCAL_NAME ) ?>" onclick="return clearCache();" class="button-secondary" /></p>
182
  </td>
183
  </tr>
184
  <tr><th scope="row"><label for="limit"><?php _e( 'Number of related posts to display: ', CRP_LOCAL_NAME ); ?></label></th>
185
  <td>
186
- <input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>">
187
  <p class="description"><?php _e( 'Maximum number of posts that will be displayed. The actual number may be smaller if less related posts are found.', CRP_LOCAL_NAME ); ?></p>
188
  </td>
189
  </tr>
@@ -193,11 +207,13 @@ function crp_options() {
193
  <p class="description"><?php _e( 'This sets the cutoff period for which posts will be displayed. e.g. setting it to 365 will show related posts from the last year only.', CRP_LOCAL_NAME ); ?></p>
194
  </td>
195
  </tr>
196
- <tr><th scope="row"><?php _e( 'Post types to include in results.', CRP_LOCAL_NAME ); ?></th>
197
  <td>
198
  <?php foreach ( $wp_post_types as $wp_post_type ) {
199
  $post_type_op = '<label><input type="checkbox" name="post_types[]" value="' . $wp_post_type . '" ';
200
- if ( in_array( $wp_post_type, $posts_types_inc ) ) $post_type_op .= ' checked="checked" ';
 
 
201
  $post_type_op .= ' />'.$wp_post_type.'</label>&nbsp;&nbsp;';
202
  echo $post_type_op;
203
  }
@@ -205,7 +221,7 @@ function crp_options() {
205
  <p class="description"><?php _e( 'These post types will be displayed in the list. Includes custom post types.', CRP_LOCAL_NAME ); ?></p>
206
  </td>
207
  </tr>
208
- <tr><th scope="row"><label for="match_content"><?php _e( 'Find related posts based on content as well as title', CRP_LOCAL_NAME ); ?></label></th>
209
  <td><input type="checkbox" name="match_content" id="match_content" <?php if ( $crp_settings['match_content'] ) echo 'checked="checked"' ?> />
210
  <p class="description"><?php _e( 'If unchecked, only posts titles are used. I recommend using a caching plugin or enabling "Cache output" above if you enable this.', CRP_LOCAL_NAME ); ?></p>
211
  </td>
@@ -215,30 +231,6 @@ function crp_options() {
215
  <p class="description"><?php _e( 'This sets the maximum words of the content that will be matched. 0 means no limit.', CRP_LOCAL_NAME ); ?></p>
216
  </td>
217
  </tr>
218
- <tr><th scope="row"><label for="exclude_post_ids"><?php _e( 'List of post or page IDs to exclude from the results: ', CRP_LOCAL_NAME ); ?></label></th>
219
- <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr( stripslashes( $crp_settings['exclude_post_ids'] ) ); ?>" style="width:250px">
220
- <p class="description"><?php _e( 'Comma separated list of post, page or custom post type IDs. e.g. 188,320,500', CRP_LOCAL_NAME ); ?></p>
221
- </td>
222
- </tr>
223
- <tr><th scope="row"><label for="exclude_cat_slugs"><?php _e( 'Categories to exclude from the results: ', CRP_LOCAL_NAME ); ?></label></th>
224
- <td>
225
- <div style="position:relative;text-align:left">
226
- <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
227
- <tr><td><!--
228
- please see: http://chrisholland.blogspot.com/2004/09/geekstuff-css-display-inline-block.html
229
- to explain why i'm using a table here.
230
- You could replace the table/tr/td with a DIV, but you'd have to specify it's width and height
231
- -->
232
- <div class="myCustomFloaterContent">
233
- you should never be seeing this
234
- </div>
235
- </td></tr>
236
- </table>
237
- <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo ( stripslashes( $crp_settings['exclude_cat_slugs'] ) ); ?></textarea>
238
- </div>
239
- <p class="description"><?php _e( 'Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the starting letters and it will prompt you with options', CRP_LOCAL_NAME ); ?></p>
240
- </td>
241
- </tr>
242
  <tr><th scope="row"><?php _e( 'Add related posts to:', CRP_LOCAL_NAME ); ?></th>
243
  <td>
244
  <label><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ( $crp_settings['add_to_content'] ) echo 'checked="checked"' ?> /> <?php _e( 'Posts', CRP_LOCAL_NAME ); ?></label><br />
@@ -254,13 +246,13 @@ function crp_options() {
254
  <tr><th scope="row"><label for="content_filter_priority"><?php _e( 'Content filter priority:', CRP_LOCAL_NAME ); ?></label></th>
255
  <td>
256
  <input type="textbox" name="content_filter_priority" id="content_filter_priority" value="<?php echo esc_attr( stripslashes( $crp_settings['content_filter_priority'] ) ); ?>" />
257
- <p class="description"><?php _e( 'A higher number will cause the content above to be processed after other filters. Number below 10 is not recommended', CRP_LOCAL_NAME ); ?></p>
258
  </td>
259
  </tr>
260
- <tr><th scope="row"><label for="show_credit"><?php _e( 'Add a link to the plugin page as a final item in the list', CRP_LOCAL_NAME ); ?></label></th>
261
  <td>
262
  <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 ); ?>
263
- <p class="description"><?php _e( 'Adds a nofollow link to Contextual Related Posts homepage.', CRP_LOCAL_NAME ); ?></p>
264
  </td>
265
  </tr>
266
  </table>
@@ -289,19 +281,33 @@ function crp_options() {
289
  </td>
290
  </tr>
291
  <tr><th scope="row"><label for="show_excerpt"><?php _e( 'Show post excerpt in list?', CRP_LOCAL_NAME ); ?></label></th>
292
- <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ( $crp_settings['show_excerpt'] ) echo 'checked="checked"' ?> /></td>
 
 
 
293
  </tr>
294
  <tr><th scope="row"><label for="excerpt_length"><?php _e( 'Length of excerpt (in words): ', CRP_LOCAL_NAME ); ?></label></th>
295
- <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes( $crp_settings['excerpt_length'] ); ?>" /></td>
 
 
296
  </tr>
297
  <tr><th scope="row"><label for="show_author"><?php _e( 'Show post author in list?', CRP_LOCAL_NAME ); ?></label></th>
298
- <td><input type="checkbox" name="show_author" id="show_author" <?php if ( $crp_settings['show_author'] ) echo 'checked="checked"' ?> /></td>
 
 
 
299
  </tr>
300
  <tr><th scope="row"><label for="show_date"><?php _e( 'Show post date in list?', CRP_LOCAL_NAME ); ?></label></th>
301
- <td><input type="checkbox" name="show_date" id="show_date" <?php if ( $crp_settings['show_date'] ) echo 'checked="checked"' ?> /></td>
 
 
 
302
  </tr>
303
  <tr><th scope="row"><label for="title_length"><?php _e( 'Limit post title length (in characters)', CRP_LOCAL_NAME ); ?></label></th>
304
- <td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes( $crp_settings['title_length'] ); ?>" /></td>
 
 
 
305
  </tr>
306
  <tr><th scope="row"><label for="link_new_window"><?php _e( 'Open links in new window', CRP_LOCAL_NAME ); ?></label></th>
307
  <td><input type="checkbox" name="link_new_window" id="link_new_window" <?php if ( $crp_settings['link_new_window'] ) echo 'checked="checked"' ?> /></td>
@@ -309,12 +315,38 @@ function crp_options() {
309
  <tr><th scope="row"><label for="link_nofollow"><?php _e( 'Add nofollow attribute to links in the list', CRP_LOCAL_NAME ); ?></label></th>
310
  <td><input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ( $crp_settings['link_nofollow'] ) echo 'checked="checked"' ?> /></td>
311
  </tr>
 
 
 
 
 
 
 
312
  <tr><th scope="row"><label for="exclude_on_post_ids"><?php _e( 'Exclude display of related posts on these posts / pages', CRP_LOCAL_NAME ); ?></label></th>
313
  <td>
314
  <input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr( stripslashes( $crp_settings['exclude_on_post_ids'] ) ); ?>" style="width:250px">
315
  <p class="description"><?php _e( 'Comma separated list of post, page or custom post type IDs. e.g. 188,320,500', CRP_LOCAL_NAME ); ?></p>
316
  </td>
317
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
  <tr><th scope="row"><?php _e( 'Exclude display of related posts on these post types.', CRP_LOCAL_NAME ); ?></th>
319
  <td>
320
  <?php foreach ( $wp_post_types as $wp_post_type ) {
@@ -327,7 +359,7 @@ function crp_options() {
327
  <p class="description"><?php _e( 'The related posts will not display on any of the above selected post types', CRP_LOCAL_NAME ); ?></p>
328
  </td>
329
  </tr>
330
- <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e( 'Customize the output:', CRP_LOCAL_NAME ); ?></th>
331
  </tr>
332
  <tr><th scope="row"><label for="before_list"><?php _e( 'HTML to display before the list of posts: ', CRP_LOCAL_NAME ); ?></label></th>
333
  <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr( stripslashes( $crp_settings['before_list'] ) ); ?>" style="width:250px" /></td>
@@ -341,7 +373,7 @@ function crp_options() {
341
  <tr><th scope="row"><label for="after_list"><?php _e( 'HTML to display after the list of posts: ', CRP_LOCAL_NAME ); ?></label></th>
342
  <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr( stripslashes( $crp_settings['after_list'] ) ); ?>" style="width:250px" /></td>
343
  </tr>
344
- <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e( 'Post thumbnail options:', CRP_LOCAL_NAME ); ?></th>
345
  </tr>
346
  <tr><th scope="row"><label for="post_thumb_op"><?php _e( 'Location of post thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
347
  <td>
@@ -367,50 +399,55 @@ function crp_options() {
367
  <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_width'])); ?>" style="width:50px" />px</td>
368
  </tr>
369
  <tr><th scope="row"><label for="thumb_height"><?php _e( 'Maximum height of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
370
- <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_height'])); ?>" style="width:50px" />px</td>
 
 
 
 
 
371
  </tr>
372
  <tr><th scope="row"><label for="thumb_html"><?php _e( 'Style attributes / Width and Height HTML attributes:', CRP_LOCAL_NAME ); ?></label></th>
373
  <td>
374
  <label>
375
  <input type="radio" name="thumb_html" value="css" id="thumb_html_0" <?php if ( 'css' == $crp_settings['thumb_html'] ) echo 'checked="checked"' ?> />
376
- <?php _e( 'Style attributes are used for width and height. <code>style="max-width:' . $crp_settings['thumb_width'] . 'px;max-height:' . $crp_settings['thumb_height'] . 'px;"</code>', CRP_LOCAL_NAME ); ?></label>
377
  <br />
378
  <label>
379
  <input type="radio" name="thumb_html" value="html" id="thumb_html_1" <?php if ( 'html' == $crp_settings['thumb_html'] ) echo 'checked="checked"' ?> />
380
- <?php _e( 'HTML width and height attributes are used for width and height. <code>width="' . $crp_settings['thumb_width'] . '" height="' . $crp_settings['thumb_height'] . '"</code>', CRP_LOCAL_NAME ); ?></label>
381
  <br />
382
  </td>
383
  </tr>
384
  <tr><th scope="row"><label for="thumb_timthumb"><?php _e( 'Use timthumb to generate thumbnails? ', CRP_LOCAL_NAME ); ?></label></th>
385
  <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ( $crp_settings['thumb_timthumb'] ) echo 'checked="checked"' ?> />
386
- <p class="description"><?php _e( 'If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails', CRP_LOCAL_NAME ); ?></p>
387
  </td>
388
  </tr>
389
- <tr><th scope="row"><label for="thumb_timthumb_q"><?php _e( 'Quality of thumbnails generated by timthumb', CRP_LOCAL_NAME ); ?></label></th>
390
  <td>
391
- <input type="textbox" name="thumb_timthumb_q" id="thumb_timthumb_q" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_timthumb_q'] ) ); ?>" style="width:30px" />
392
- <p class="description"><?php _e( 'Enter values between 0 and 100 only. 100 is highest quality, however, it is also the highest file size. Suggested maximum value is 95. CRP default is 75.', CRP_LOCAL_NAME ); ?></p>
393
  </td>
394
  </tr>
395
- <tr><th scope="row"><label for="thumb_meta"><?php _e( 'Post thumbnail meta field name: ', CRP_LOCAL_NAME ); ?></label></th>
396
  <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_meta'] ) ); ?>">
397
  <p class="description"><?php _e( 'The value of this field should contain the image source and is set in the <em>Add New Post</em> screen', CRP_LOCAL_NAME ); ?></p>
398
  </td>
399
  </tr>
400
- <tr><th scope="row"><label for="scan_images"><?php _e( 'If the postmeta is not set, then should the plugin extract the first image from the post?', CRP_LOCAL_NAME ); ?></label></th>
401
  <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ( $crp_settings['scan_images'] ) echo 'checked="checked"' ?> />
402
- <p class="description"><?php _e( 'This can slow down the loading of your page if the first image in the related posts is large in file-size', CRP_LOCAL_NAME ); ?></p>
403
  </td>
404
  </tr>
405
- <tr><th scope="row"><label for="thumb_default_show"><?php _e( 'Use default thumbnail? ', CRP_LOCAL_NAME ); ?></label></th>
406
- <td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ( $crp_settings['thumb_default_show'] ) echo 'checked="checked"' ?> />
407
  <p class="description"><?php _e( 'If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.', CRP_LOCAL_NAME ); ?></p>
408
  </td>
409
  </tr>
410
- <tr><th scope="row"><label for="thumb_default"><?php _e( 'Default thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
411
  <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_default'] ) ); ?>" style="width:100%">
412
  <?php if( '' != $crp_settings['thumb_default'] ) echo "<img src='{$crp_settings['thumb_default']}' style='max-width:200px' />"; ?>
413
- <p class="description"><?php _e( 'The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above', CRP_LOCAL_NAME ); ?></p>
414
  </td>
415
  </tr>
416
  </table>
@@ -449,10 +486,10 @@ function crp_options() {
449
  </td>
450
  </tr>
451
  <tr><th scope="row"><label for="thumb_width_feed"><?php _e( 'Maximum width of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
452
- <td><input type="textbox" name="thumb_width_feed" id="thumb_width_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_width_feed'] ) ); ?>" style="width:30px" />px</td>
453
  </tr>
454
  <tr><th scope="row"><label for="thumb_height_feed"><?php _e( 'Maximum height of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
455
- <td><input type="textbox" name="thumb_height_feed" id="thumb_height_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_height_feed'] ) ); ?>" style="width:30px" />px</td>
456
  </tr>
457
  </table>
458
  </div>
@@ -496,9 +533,9 @@ function crp_options() {
496
  <input type="hidden" name="cmd" value="_xclick">
497
  <input type="hidden" name="business" value="donate@ajaydsouza.com">
498
  <input type="hidden" name="lc" value="IN">
499
- <input type="hidden" name="item_name" value="Donation for Contextual Related Posts">
500
- <input type="hidden" name="item_number" value="crp">
501
- <strong><?php _e( 'Enter amount in USD: ', CRP_LOCAL_NAME ); ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
502
  <input type="hidden" name="currency_code" value="USD">
503
  <input type="hidden" name="button_subtype" value="services">
504
  <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
@@ -524,11 +561,12 @@ function crp_options() {
524
  <div id="quick-links">
525
  <ul>
526
  <li><a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/"><?php _e( 'Contextual Related Posts plugin page', CRP_LOCAL_NAME ); ?></a></li>
527
- <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e( 'Other plugins', CRP_LOCAL_NAME ); ?></a></li>
528
- <li><a href="http://ajaydsouza.com/"><?php _e( 'Ajay\'s blog', CRP_LOCAL_NAME ); ?></a></li>
529
  <li><a href="https://wordpress.org/plugins/contextual-related-posts/faq/"><?php _e( 'FAQ', CRP_LOCAL_NAME ); ?></a></li>
530
  <li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e( 'Support', CRP_LOCAL_NAME ); ?></a></li>
531
  <li><a href="https://wordpress.org/support/view/plugin-reviews/contextual-related-posts"><?php _e( 'Reviews', CRP_LOCAL_NAME ); ?></a></li>
 
 
 
532
  </ul>
533
  </div>
534
  </div>
@@ -550,10 +588,8 @@ function crp_options() {
550
  * @return void
551
  */
552
  function crp_adminmenu() {
553
- if ( ( function_exists( 'add_options_page' ) ) ) {
554
- $plugin_page = add_options_page( __( "Contextual Related Posts", CRP_LOCAL_NAME ), __( "Related Posts", CRP_LOCAL_NAME ), 'manage_options', 'crp_options', 'crp_options' );
555
- add_action( 'admin_head-'. $plugin_page, 'crp_adminhead' );
556
- }
557
  }
558
  add_action( 'admin_menu', 'crp_adminmenu' );
559
 
@@ -701,4 +737,98 @@ function crp_ajax_clearcache() {
701
  add_action( 'wp_ajax_crp_clear_cache', 'crp_ajax_clearcache' );
702
 
703
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
704
  ?>
1
  <?php
2
+ /**
3
+ * Contextual Related Posts Admin interface.
4
+ *
5
+ * This page is accessible via Settings > Contextual Related Posts
6
+ *
7
+ * @package Contextual Related Posts
8
+ */
9
+
10
  if ( ! defined( 'ABSPATH' ) ) die( "Aren't you supposed to come here via WP-Admin?" );
11
 
12
  /**
13
+ * Function generates the plugin settings page.
14
  *
15
  * @access public
16
  * @return void
21
  $poststable = $wpdb->posts;
22
 
23
  $crp_settings = crp_read_options();
24
+
25
  $wp_post_types = get_post_types( array(
26
  'public' => true,
27
  ) );
32
  $posts_types_excl = array_intersect( $wp_post_types, $exclude_on_post_types );
33
 
34
  if ( ( isset( $_POST['crp_save'] ) ) && ( check_admin_referer( 'crp-plugin' ) ) ) {
35
+
36
+ // General options
37
+ $crp_settings['cache'] = ( isset( $_POST['cache'] ) ? true : false );
38
  $crp_settings['limit'] = intval( $_POST['limit'] );
39
  $crp_settings['daily_range'] = intval( $_POST['daily_range'] );
 
 
40
  $crp_settings['match_content'] = ( isset( $_POST['match_content'] ) ? true : false );
41
  $crp_settings['match_content_words'] = intval( $_POST['match_content_words'] );
 
 
42
 
43
  $crp_settings['add_to_content'] = ( isset( $_POST['add_to_content'] ) ? true : false );
44
  $crp_settings['add_to_page'] = ( isset( $_POST['add_to_page'] ) ? true : false );
48
  $crp_settings['add_to_tag_archives'] = ( isset( $_POST['add_to_tag_archives'] ) ? true : false );
49
  $crp_settings['add_to_archives'] = ( isset( $_POST['add_to_archives'] ) ? true : false );
50
 
51
+ $crp_settings['content_filter_priority'] = intval( $_POST['content_filter_priority'] );
52
+ $crp_settings['show_credit'] = ( isset( $_POST['show_credit'] ) ? true : false );
53
+
54
+ // Output options
55
+ $crp_settings['title'] = wp_kses_post( $_POST['title'] );
56
  $crp_settings['blank_output'] = ( ( $_POST['blank_output'] == 'blank' ) ? true : false );
57
  $crp_settings['blank_output_text'] = wp_kses_post( $_POST['blank_output_text'] );
58
+
59
+ $crp_settings['show_excerpt'] = ( isset( $_POST['show_excerpt'] ) ? true : false );
60
+ $crp_settings['show_date'] = ( isset( $_POST['show_date'] ) ? true : false );
61
+ $crp_settings['show_author'] = ( isset( $_POST['show_author'] ) ? true : false );
62
+ $crp_settings['excerpt_length'] = intval( $_POST['excerpt_length'] );
63
+ $crp_settings['title_length'] = intval( $_POST['title_length'] );
64
+
65
+ $crp_settings['link_new_window'] = ( isset( $_POST['link_new_window'] ) ? true : false );
66
+ $crp_settings['link_nofollow'] = ( isset( $_POST['link_nofollow'] ) ? true : false );
67
+
68
  $crp_settings['before_list'] = wp_kses_post( $_POST['before_list'] );
69
  $crp_settings['after_list'] = wp_kses_post( $_POST['after_list'] );
70
  $crp_settings['before_list_item'] = wp_kses_post( $_POST['before_list_item'] );
71
  $crp_settings['after_list_item'] = wp_kses_post( $_POST['after_list_item'] );
72
 
73
+ $crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_on_post_ids'] ) ) );
74
+ $crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'] == '' ? '' : implode( ',', array_map( 'intval', explode( ",", $_POST['exclude_post_ids'] ) ) );
75
+
76
  $crp_settings['post_thumb_op'] = wp_kses_post( $_POST['post_thumb_op'] );
 
 
77
  $crp_settings['thumb_height'] = intval( $_POST['thumb_height'] );
78
  $crp_settings['thumb_width'] = intval( $_POST['thumb_width'] );
 
79
  $crp_settings['thumb_html'] = $_POST['thumb_html'];
80
+ $crp_settings['thumb_meta'] = ( '' == $_POST['thumb_meta'] ? 'post-image' : wp_kses_post( $_POST['thumb_meta'] ) );
81
+ $crp_settings['scan_images'] = ( isset( $_POST['scan_images'] ) ? true : false );
82
+ $crp_settings['thumb_default'] = wp_kses_post( $_POST['thumb_default'] );
83
+ $crp_settings['thumb_default_show'] = ( isset( $_POST['thumb_default_show'] ) ? true : false );
84
  $crp_settings['thumb_timthumb'] = ( isset( $_POST['thumb_timthumb'] ) ? true : false );
85
  $crp_settings['thumb_timthumb_q'] = intval( $_POST['thumb_timthumb_q'] );
 
86
 
87
+ // Feed options
88
+ $crp_settings['limit_feed'] = intval( $_POST['limit_feed'] );
89
+ $crp_settings['post_thumb_op_feed'] = wp_kses_post( $_POST['post_thumb_op_feed'] );
90
+ $crp_settings['thumb_height_feed'] = intval( $_POST['thumb_height_feed'] );
91
+ $crp_settings['thumb_width_feed'] = intval( $_POST['thumb_width_feed'] );
92
+ $crp_settings['show_excerpt_feed'] = ( isset( $_POST['show_excerpt_feed'] ) ? true : false );
93
 
94
+ // Custom styles
95
  $crp_settings['custom_CSS'] = wp_kses_post( $_POST['custom_CSS'] );
96
 
97
  if ( isset( $_POST['include_default_style'] ) ) {
103
  $crp_settings['include_default_style'] = false;
104
  }
105
 
106
+ // Exclude categories
 
 
 
 
 
 
 
 
 
107
  $crp_settings['exclude_cat_slugs'] = wp_kses_post( $_POST['exclude_cat_slugs'] );
108
  $exclude_categories_slugs = explode( ", ", $crp_settings['exclude_cat_slugs'] );
109
 
190
  <div class="inside">
191
  <table class="form-table">
192
  <tr><th scope="row"><label for="cache"><?php _e( 'Cache output?', CRP_LOCAL_NAME ); ?></label></th>
193
+ <td><input type="checkbox" name="cache" id="cache" <?php if ( $crp_settings['cache'] ) echo 'checked="checked"' ?> />
194
  <p class="description"><?php _e( 'Enabling this option will cache the related posts output when the post is visited the first time. The cache is cleaned when you save this page.', CRP_LOCAL_NAME ); ?></p>
195
  <p><input type="button" value="<?php _e( 'Clear cache', CRP_LOCAL_NAME ) ?>" onclick="return clearCache();" class="button-secondary" /></p>
196
  </td>
197
  </tr>
198
  <tr><th scope="row"><label for="limit"><?php _e( 'Number of related posts to display: ', CRP_LOCAL_NAME ); ?></label></th>
199
  <td>
200
+ <input type="textbox" name="limit" id="limit" value="<?php echo esc_attr( stripslashes( $crp_settings['limit'] ) ); ?>">
201
  <p class="description"><?php _e( 'Maximum number of posts that will be displayed. The actual number may be smaller if less related posts are found.', CRP_LOCAL_NAME ); ?></p>
202
  </td>
203
  </tr>
207
  <p class="description"><?php _e( 'This sets the cutoff period for which posts will be displayed. e.g. setting it to 365 will show related posts from the last year only.', CRP_LOCAL_NAME ); ?></p>
208
  </td>
209
  </tr>
210
+ <tr><th scope="row"><?php _e( 'Post types to include in results:', CRP_LOCAL_NAME ); ?></th>
211
  <td>
212
  <?php foreach ( $wp_post_types as $wp_post_type ) {
213
  $post_type_op = '<label><input type="checkbox" name="post_types[]" value="' . $wp_post_type . '" ';
214
+ if ( in_array( $wp_post_type, $posts_types_inc ) ) {
215
+ $post_type_op .= ' checked="checked" ';
216
+ }
217
  $post_type_op .= ' />'.$wp_post_type.'</label>&nbsp;&nbsp;';
218
  echo $post_type_op;
219
  }
221
  <p class="description"><?php _e( 'These post types will be displayed in the list. Includes custom post types.', CRP_LOCAL_NAME ); ?></p>
222
  </td>
223
  </tr>
224
+ <tr><th scope="row"><label for="match_content"><?php _e( 'Find related posts based on content as well as title:', CRP_LOCAL_NAME ); ?></label></th>
225
  <td><input type="checkbox" name="match_content" id="match_content" <?php if ( $crp_settings['match_content'] ) echo 'checked="checked"' ?> />
226
  <p class="description"><?php _e( 'If unchecked, only posts titles are used. I recommend using a caching plugin or enabling "Cache output" above if you enable this.', CRP_LOCAL_NAME ); ?></p>
227
  </td>
231
  <p class="description"><?php _e( 'This sets the maximum words of the content that will be matched. 0 means no limit.', CRP_LOCAL_NAME ); ?></p>
232
  </td>
233
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  <tr><th scope="row"><?php _e( 'Add related posts to:', CRP_LOCAL_NAME ); ?></th>
235
  <td>
236
  <label><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ( $crp_settings['add_to_content'] ) echo 'checked="checked"' ?> /> <?php _e( 'Posts', CRP_LOCAL_NAME ); ?></label><br />
246
  <tr><th scope="row"><label for="content_filter_priority"><?php _e( 'Content filter priority:', CRP_LOCAL_NAME ); ?></label></th>
247
  <td>
248
  <input type="textbox" name="content_filter_priority" id="content_filter_priority" value="<?php echo esc_attr( stripslashes( $crp_settings['content_filter_priority'] ) ); ?>" />
249
+ <p class="description"><?php _e( 'A higher number will cause the content above to be processed after other filters. Number below 10 is not recommended.', CRP_LOCAL_NAME ); ?></p>
250
  </td>
251
  </tr>
252
+ <tr><th scope="row"><label for="show_credit"><?php _e( "Tell the world you're using Contextual Related Posts:", CRP_LOCAL_NAME ); ?></label></th>
253
  <td>
254
  <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 ); ?>
255
+ <p class="description"><?php _e( 'Adds a nofollow link to Contextual Related Posts homepage as the last time in the list.', CRP_LOCAL_NAME ); ?></p>
256
  </td>
257
  </tr>
258
  </table>
281
  </td>
282
  </tr>
283
  <tr><th scope="row"><label for="show_excerpt"><?php _e( 'Show post excerpt in list?', CRP_LOCAL_NAME ); ?></label></th>
284
+ <td>
285
+ <input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ( $crp_settings['show_excerpt'] ) echo 'checked="checked"' ?> />
286
+ <p class="description"><?php printf( __( "Displays the excerpt of the post. If you do not provide an explicit excerpt to a post (in the post editor's optional excerpt field), it will display an automatic excerpt which refers to the first %d words of the post's content", CRP_LOCAL_NAME ), $crp_settings['excerpt_length'] ); ?></p>
287
+ </td>
288
  </tr>
289
  <tr><th scope="row"><label for="excerpt_length"><?php _e( 'Length of excerpt (in words): ', CRP_LOCAL_NAME ); ?></label></th>
290
+ <td>
291
+ <input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes( $crp_settings['excerpt_length'] ); ?>" />
292
+ </td>
293
  </tr>
294
  <tr><th scope="row"><label for="show_author"><?php _e( 'Show post author in list?', CRP_LOCAL_NAME ); ?></label></th>
295
+ <td>
296
+ <input type="checkbox" name="show_author" id="show_author" <?php if ( $crp_settings['show_author'] ) echo 'checked="checked"' ?> />
297
+ <p class="description"><?php _e( 'Displays the author name prefixed with "by". e.g. by John Doe', CRP_LOCAL_NAME ); ?></p>
298
+ </td>
299
  </tr>
300
  <tr><th scope="row"><label for="show_date"><?php _e( 'Show post date in list?', CRP_LOCAL_NAME ); ?></label></th>
301
+ <td>
302
+ <input type="checkbox" name="show_date" id="show_date" <?php if ( $crp_settings['show_date'] ) echo 'checked="checked"' ?> />
303
+ <p class="description"><?php _e( "Displays the date of the post. Uses the same date format set in General Options", CRP_LOCAL_NAME ); ?></p>
304
+ </td>
305
  </tr>
306
  <tr><th scope="row"><label for="title_length"><?php _e( 'Limit post title length (in characters)', CRP_LOCAL_NAME ); ?></label></th>
307
+ <td>
308
+ <input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes( $crp_settings['title_length'] ); ?>" />
309
+ <p class="description"><?php _e( "Any title longer than the number of characters set above will be cut and appended with a &helip;", CRP_LOCAL_NAME ); ?></p>
310
+ </td>
311
  </tr>
312
  <tr><th scope="row"><label for="link_new_window"><?php _e( 'Open links in new window', CRP_LOCAL_NAME ); ?></label></th>
313
  <td><input type="checkbox" name="link_new_window" id="link_new_window" <?php if ( $crp_settings['link_new_window'] ) echo 'checked="checked"' ?> /></td>
315
  <tr><th scope="row"><label for="link_nofollow"><?php _e( 'Add nofollow attribute to links in the list', CRP_LOCAL_NAME ); ?></label></th>
316
  <td><input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ( $crp_settings['link_nofollow'] ) echo 'checked="checked"' ?> /></td>
317
  </tr>
318
+ <tr><th scope="row" colspan="2" style="background: #eee; padding-left: 5px;"><?php _e( 'Exclusion settings:', CRP_LOCAL_NAME ); ?></th>
319
+ </tr>
320
+ <tr><th scope="row"><label for="exclude_post_ids"><?php _e( 'List of post or page IDs to exclude from the results:', CRP_LOCAL_NAME ); ?></label></th>
321
+ <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr( stripslashes( $crp_settings['exclude_post_ids'] ) ); ?>" style="width:250px">
322
+ <p class="description"><?php _e( 'Comma separated list of post, page or custom post type IDs. e.g. 188,320,500', CRP_LOCAL_NAME ); ?></p>
323
+ </td>
324
+ </tr>
325
  <tr><th scope="row"><label for="exclude_on_post_ids"><?php _e( 'Exclude display of related posts on these posts / pages', CRP_LOCAL_NAME ); ?></label></th>
326
  <td>
327
  <input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr( stripslashes( $crp_settings['exclude_on_post_ids'] ) ); ?>" style="width:250px">
328
  <p class="description"><?php _e( 'Comma separated list of post, page or custom post type IDs. e.g. 188,320,500', CRP_LOCAL_NAME ); ?></p>
329
  </td>
330
  </tr>
331
+ <tr><th scope="row"><label for="exclude_cat_slugs"><?php _e( 'Categories to exclude from the results: ', CRP_LOCAL_NAME ); ?></label></th>
332
+ <td>
333
+ <div style="position:relative;text-align:left">
334
+ <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
335
+ <tr><td><!--
336
+ please see: http://chrisholland.blogspot.com/2004/09/geekstuff-css-display-inline-block.html
337
+ to explain why i'm using a table here.
338
+ You could replace the table/tr/td with a DIV, but you'd have to specify it's width and height
339
+ -->
340
+ <div class="myCustomFloaterContent">
341
+ you should never be seeing this
342
+ </div>
343
+ </td></tr>
344
+ </table>
345
+ <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo ( stripslashes( $crp_settings['exclude_cat_slugs'] ) ); ?></textarea>
346
+ </div>
347
+ <p class="description"><?php _e( 'Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the beginning of your category name and it will prompt you with options.', CRP_LOCAL_NAME ); ?></p>
348
+ </td>
349
+ </tr>
350
  <tr><th scope="row"><?php _e( 'Exclude display of related posts on these post types.', CRP_LOCAL_NAME ); ?></th>
351
  <td>
352
  <?php foreach ( $wp_post_types as $wp_post_type ) {
359
  <p class="description"><?php _e( 'The related posts will not display on any of the above selected post types', CRP_LOCAL_NAME ); ?></p>
360
  </td>
361
  </tr>
362
+ <tr><th scope="row" colspan="2" style="background: #eee; padding-left: 5px;"><?php _e( 'Customize the output:', CRP_LOCAL_NAME ); ?></th>
363
  </tr>
364
  <tr><th scope="row"><label for="before_list"><?php _e( 'HTML to display before the list of posts: ', CRP_LOCAL_NAME ); ?></label></th>
365
  <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr( stripslashes( $crp_settings['before_list'] ) ); ?>" style="width:250px" /></td>
373
  <tr><th scope="row"><label for="after_list"><?php _e( 'HTML to display after the list of posts: ', CRP_LOCAL_NAME ); ?></label></th>
374
  <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr( stripslashes( $crp_settings['after_list'] ) ); ?>" style="width:250px" /></td>
375
  </tr>
376
+ <tr><th scope="row" colspan="2" style="background: #eee; padding-left: 5px;"><?php _e( 'Post thumbnail options:', CRP_LOCAL_NAME ); ?></th>
377
  </tr>
378
  <tr><th scope="row"><label for="post_thumb_op"><?php _e( 'Location of post thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
379
  <td>
399
  <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_width'])); ?>" style="width:50px" />px</td>
400
  </tr>
401
  <tr><th scope="row"><label for="thumb_height"><?php _e( 'Maximum height of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
402
+ <td>
403
+ <input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_height'])); ?>" style="width:50px" />px
404
+ <?php if ( $crp_settings['include_default_style'] ) { ?>
405
+ <p class="description"><?php _e( "Since you're using the default styles set under the Custom Styles section, the width and height is fixed at 150px", CRP_LOCAL_NAME ); ?></p>
406
+ <?php } ?>
407
+ </td>
408
  </tr>
409
  <tr><th scope="row"><label for="thumb_html"><?php _e( 'Style attributes / Width and Height HTML attributes:', CRP_LOCAL_NAME ); ?></label></th>
410
  <td>
411
  <label>
412
  <input type="radio" name="thumb_html" value="css" id="thumb_html_0" <?php if ( 'css' == $crp_settings['thumb_html'] ) echo 'checked="checked"' ?> />
413
+ <?php _e( 'Style attributes are used for width and height.', CRP_LOCAL_NAME ); echo ' <code>style="max-width:' . $crp_settings['thumb_width'] . 'px;max-height:' . $crp_settings['thumb_height'] . 'px;"</code>'; ?></label>
414
  <br />
415
  <label>
416
  <input type="radio" name="thumb_html" value="html" id="thumb_html_1" <?php if ( 'html' == $crp_settings['thumb_html'] ) echo 'checked="checked"' ?> />
417
+ <?php _e( 'HTML width and height attributes are used for width and height.', CRP_LOCAL_NAME ); echo ' <code>width="' . $crp_settings['thumb_width'] . '" height="' . $crp_settings['thumb_height'] . '"</code>'; ?></label>
418
  <br />
419
  </td>
420
  </tr>
421
  <tr><th scope="row"><label for="thumb_timthumb"><?php _e( 'Use timthumb to generate thumbnails? ', CRP_LOCAL_NAME ); ?></label></th>
422
  <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ( $crp_settings['thumb_timthumb'] ) echo 'checked="checked"' ?> />
423
+ <p class="description"><?php _e( 'If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/" target="_blank">timthumb</a> will be used to generate thumbnails', CRP_LOCAL_NAME ); ?></p>
424
  </td>
425
  </tr>
426
+ <tr><th scope="row"><label for="thumb_timthumb_q"><?php _e( 'Quality of thumbnails generated by timthumb:', CRP_LOCAL_NAME ); ?></label></th>
427
  <td>
428
+ <input type="textbox" name="thumb_timthumb_q" id="thumb_timthumb_q" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_timthumb_q'] ) ); ?>" style="width:50px" />
429
+ <p class="description"><?php _e( 'Enter values between 0 and 100 only. 100 is highest quality and the highest file size. Suggested maximum value is 95. CRP default is 75.', CRP_LOCAL_NAME ); ?></p>
430
  </td>
431
  </tr>
432
+ <tr><th scope="row"><label for="thumb_meta"><?php _e( 'Post thumbnail meta field name:', CRP_LOCAL_NAME ); ?></label></th>
433
  <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_meta'] ) ); ?>">
434
  <p class="description"><?php _e( 'The value of this field should contain the image source and is set in the <em>Add New Post</em> screen', CRP_LOCAL_NAME ); ?></p>
435
  </td>
436
  </tr>
437
+ <tr><th scope="row"><label for="scan_images"><?php _e( 'Extract the first image from the post?', CRP_LOCAL_NAME ); ?></label></th>
438
  <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ( $crp_settings['scan_images'] ) echo 'checked="checked"' ?> />
439
+ <p class="description"><?php _e( 'This will only happen if there is no post thumbnail set and no image URL is specified in the meta field.', CRP_LOCAL_NAME ); ?></p>
440
  </td>
441
  </tr>
442
+ <tr><th scope="row"><label for="thumb_default_show"><?php _e( 'Use default thumbnail?', CRP_LOCAL_NAME ); ?></label></th>
443
+ <td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ( $crp_settings['thumb_default_show'] ) echo 'checked="checked"' ?> />
444
  <p class="description"><?php _e( 'If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.', CRP_LOCAL_NAME ); ?></p>
445
  </td>
446
  </tr>
447
+ <tr><th scope="row"><label for="thumb_default"><?php _e( 'Default thumbnail:', CRP_LOCAL_NAME ); ?></label></th>
448
  <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_default'] ) ); ?>" style="width:100%">
449
  <?php if( '' != $crp_settings['thumb_default'] ) echo "<img src='{$crp_settings['thumb_default']}' style='max-width:200px' />"; ?>
450
+ <p class="description"><?php _e( "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above.", CRP_LOCAL_NAME ); ?></p>
451
  </td>
452
  </tr>
453
  </table>
486
  </td>
487
  </tr>
488
  <tr><th scope="row"><label for="thumb_width_feed"><?php _e( 'Maximum width of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
489
+ <td><input type="textbox" name="thumb_width_feed" id="thumb_width_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_width_feed'] ) ); ?>" style="width:50px" />px</td>
490
  </tr>
491
  <tr><th scope="row"><label for="thumb_height_feed"><?php _e( 'Maximum height of the thumbnail: ', CRP_LOCAL_NAME ); ?></label></th>
492
+ <td><input type="textbox" name="thumb_height_feed" id="thumb_height_feed" value="<?php echo esc_attr( stripslashes( $crp_settings['thumb_height_feed'] ) ); ?>" style="width:50px" />px</td>
493
  </tr>
494
  </table>
495
  </div>
533
  <input type="hidden" name="cmd" value="_xclick">
534
  <input type="hidden" name="business" value="donate@ajaydsouza.com">
535
  <input type="hidden" name="lc" value="IN">
536
+ <input type="hidden" name="item_name" value="<?php _e( 'Donation for Contextual Related Posts', CRP_LOCAL_NAME ); ?>">
537
+ <input type="hidden" name="item_number" value="crp_plugin_settings">
538
+ <strong><?php _e( 'Enter amount in USD:', CRP_LOCAL_NAME ); ?></strong> <input name="amount" value="10.00" size="6" type="text"><br />
539
  <input type="hidden" name="currency_code" value="USD">
540
  <input type="hidden" name="button_subtype" value="services">
541
  <input type="hidden" name="bn" value="PP-BuyNowBF:btn_donate_LG.gif:NonHosted">
561
  <div id="quick-links">
562
  <ul>
563
  <li><a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/"><?php _e( 'Contextual Related Posts plugin page', CRP_LOCAL_NAME ); ?></a></li>
 
 
564
  <li><a href="https://wordpress.org/plugins/contextual-related-posts/faq/"><?php _e( 'FAQ', CRP_LOCAL_NAME ); ?></a></li>
565
  <li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e( 'Support', CRP_LOCAL_NAME ); ?></a></li>
566
  <li><a href="https://wordpress.org/support/view/plugin-reviews/contextual-related-posts"><?php _e( 'Reviews', CRP_LOCAL_NAME ); ?></a></li>
567
+ <li><a href="https://github.com/ajaydsouza/contextual-related-posts"><?php _e( 'Github repository', CRP_LOCAL_NAME ); ?></a></li>
568
+ <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e( 'Other plugins', CRP_LOCAL_NAME ); ?></a></li>
569
+ <li><a href="http://ajaydsouza.com/"><?php _e( "Ajay's blog", CRP_LOCAL_NAME ); ?></a></li>
570
  </ul>
571
  </div>
572
  </div>
588
  * @return void
589
  */
590
  function crp_adminmenu() {
591
+ $plugin_page = add_options_page( __( "Contextual Related Posts", CRP_LOCAL_NAME ), __( "Related Posts", CRP_LOCAL_NAME ), 'manage_options', 'crp_options', 'crp_options' );
592
+ add_action( 'admin_head-'. $plugin_page, 'crp_adminhead' );
 
 
593
  }
594
  add_action( 'admin_menu', 'crp_adminmenu' );
595
 
737
  add_action( 'wp_ajax_crp_clear_cache', 'crp_ajax_clearcache' );
738
 
739
 
740
+ /**
741
+ * Function to add meta box in Write screens.
742
+ *
743
+ * @access public
744
+ * @param text $post_type
745
+ * @param object $post
746
+ * @return void
747
+ */
748
+ function crp_add_meta_box( $post_type, $post ) {
749
+
750
+ add_meta_box(
751
+ 'crp_metabox',
752
+ __( 'Contextual Related Posts', CRP_LOCAL_NAME ),
753
+ 'crp_call_meta_box',
754
+ $post_type,
755
+ 'advanced',
756
+ 'default'
757
+ );
758
+
759
+ }
760
+ add_action( 'add_meta_boxes', 'crp_add_meta_box' , 10, 2 );
761
+
762
+
763
+ /**
764
+ * Function to call the meta box.
765
+ *
766
+ * @access public
767
+ * @return void
768
+ */
769
+ function crp_call_meta_box() {
770
+ global $post, $crp_settings;
771
+
772
+ // Add an nonce field so we can check for it later.
773
+ wp_nonce_field( 'crp_meta_box', 'crp_meta_box_nonce' );
774
+
775
+ $results = get_post_meta( $post->ID, $crp_settings['thumb_meta'], true );
776
+ $value = ( $results ) ? $results : '';
777
+ ?>
778
+ <p>
779
+ <label for="thumb_meta"><?php _e( "Location of thumbnail:", CRP_LOCAL_NAME ); ?></label>
780
+ <input type="text" id="thumb_meta" name="thumb_meta" value="<?php echo esc_attr( $value ) ?>" style="width:100%" />
781
+ <em><?php _e( "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This image will be used for the post. It will be resized to the thumbnail size set under Settings &raquo; Related Posts &raquo; Output Options", CRP_LOCAL_NAME ); ?></em>
782
+ <em><?php _e( "The URL above is saved in the meta field: ", CRP_LOCAL_NAME ); ?></em><strong><?php echo $crp_settings['thumb_meta']; ?></strong>
783
+ </p>
784
+
785
+ <?php
786
+ if ( $results ) {
787
+ echo '<img src="' . $value . '" style="max-width:100%" />';
788
+ }
789
+ }
790
+
791
+
792
+ /**
793
+ * Function to save the meta box.
794
+ *
795
+ * @access public
796
+ * @param mixed $post_id
797
+ * @return void
798
+ */
799
+ function crp_save_meta_box( $post_id ) {
800
+ global $crp_settings;
801
+
802
+ // Bail if we're doing an auto save
803
+ if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) return;
804
+
805
+ // if our nonce isn't there, or we can't verify it, bail
806
+ if ( ! isset( $_POST['crp_meta_box_nonce'] ) || ! wp_verify_nonce( $_POST['crp_meta_box_nonce'], 'crp_meta_box' ) ) return;
807
+
808
+ // if our current user can't edit this post, bail
809
+ if ( ! current_user_can( 'edit_post' ) ) return;
810
+
811
+ if ( isset( $_POST['thumb_meta'] ) ) {
812
+ $thumb_meta = $_POST['thumb_meta'] == '' ? '' : $_POST['thumb_meta'];
813
+ }
814
+
815
+ $crp_post_meta = get_post_meta( $post_id, $crp_settings['thumb_meta'], true );
816
+ if ( $crp_post_meta && '' != $crp_post_meta ) {
817
+ $gotmeta = true;
818
+ } else {
819
+ $gotmeta = false;
820
+ }
821
+
822
+ if ( $gotmeta && '' != $thumb_meta ) {
823
+ update_post_meta( $post_id, $crp_settings['thumb_meta'], $thumb_meta );
824
+ } elseif ( ! $gotmeta && '' != $thumb_meta ) {
825
+ add_post_meta( $post_id, $crp_settings['thumb_meta'], $thumb_meta );
826
+ } else {
827
+ delete_post_meta( $post_id, $crp_settings['thumb_meta'] );
828
+ }
829
+
830
+ }
831
+ add_action( 'save_post', 'crp_save_meta_box' );
832
+
833
+
834
  ?>
contextual-related-posts.php CHANGED
@@ -1,24 +1,24 @@
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
- Version: 1.9.0.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
8
  Author URI: http://ajaydsouza.com/
9
  */
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
  // Guess the location
17
- $crp_path = plugin_dir_path(__FILE__);
18
- $crp_url = plugins_url().'/'.plugin_basename(dirname(__FILE__));
19
 
20
  // Set $crp_settings as a global variable to prevent relookups in every function
21
- global $crp_settings;
22
  $crp_settings = crp_read_options();
23
 
24
 
@@ -42,14 +42,13 @@ add_action('plugins_loaded', 'ald_crp_lang_init');
42
  * @return string HTML formatted list of related posts
43
  */
44
  function ald_crp( $args ) {
45
- global $wpdb, $post, $single;
46
- global $crp_settings;
47
 
48
  $defaults = array(
49
  'is_widget' => FALSE,
50
  'echo' => TRUE,
51
  );
52
- $defaults = array_merge($defaults, $crp_settings);
53
 
54
  // Parse incomming $args into an array and merge it with $defaults
55
  $args = wp_parse_args( $args, $defaults );
@@ -74,7 +73,7 @@ function ald_crp( $args ) {
74
  'strict_limit' => TRUE,
75
  ) ) );
76
 
77
- $output = ( is_singular() ) ? '<div id="crp_related" class="crp_related' . ( $is_widget ? '_widget' : '' ).'">' : '<div class="crp_related' . ( $is_widget ? '_widget' : '' ).'">';
78
 
79
  if ( $results ) {
80
  $loop_counter = 0;
@@ -94,7 +93,7 @@ function ald_crp( $args ) {
94
  }
95
 
96
  if ( ! $p_in_c ) {
97
- $output .= apply_filters( 'crp_before_list_item', $before_list_item );
98
 
99
  if ( 'after' == $post_thumb_op ) {
100
  $output .= '<a href="' . get_permalink( $result->ID ) . '" ' . $rel_attribute . ' ' . $target_attribute . 'class="crp_title">' . $title . '</a>'; // Add title if post thumbnail is to be displayed after
@@ -122,7 +121,7 @@ function ald_crp( $args ) {
122
  }
123
  if ( $show_author ) {
124
  $author_info = get_userdata( $result->post_author );
125
- $author_name = ucwords( trim( stripslashes( $author_info->display_name ) ) );
126
  $author_link = get_author_posts_url( $author_info->ID );
127
 
128
  $output .= '<span class="crp_author"> ' . __( ' by ', CRP_LOCAL_NAME ).'<a href="' . $author_link . '">' . $author_name . '</a></span> ';
@@ -150,19 +149,19 @@ function ald_crp( $args ) {
150
  }
151
  if ( false === ( strpos( $output, $before_list_item ) ) ) {
152
  $output = '<div id="crp_related">';
153
- $output .= ($blank_output) ? ' ' : '<p>'.$blank_output_text.'</p>';
154
  }
155
  $output .= '</div>';
156
 
157
 
158
  //Support caching to speed up retrieval
159
- if ( !empty($cache) ) {
160
  if ($is_widget)
161
- update_post_meta($post->ID, 'crp_related_posts_widget', $output, '');
162
  else
163
- update_post_meta($post->ID, 'crp_related_posts', $output, '');
164
  }
165
- return apply_filters('ald_crp',$output);
166
  }
167
 
168
 
@@ -219,9 +218,11 @@ function get_crp_posts_id( $args ) {
219
 
220
  // Are we matching only the title or the post content as well?
221
  if( $match_content ) {
222
- $stuff = $post->post_title. ' ' . crp_excerpt( $post->ID, $match_content_words, false );
 
223
  } else {
224
  $stuff = $post->post_title;
 
225
  }
226
 
227
  // Limit the related posts by time
@@ -240,7 +241,7 @@ function get_crp_posts_id( $args ) {
240
  $sql = "
241
  SELECT DISTINCT ID
242
  FROM ".$wpdb->posts."
243
- WHERE MATCH (post_title,post_content) AGAINST ('%s')
244
  AND post_date < '%s'
245
  AND post_date >= '%s'
246
  AND post_status = 'publish'
@@ -290,11 +291,11 @@ add_action( 'template_redirect', 'crp_content_prepare_filter' );
290
  * @param string $content
291
  * @return string After the filter has been processed
292
  */
293
- function ald_crp_content($content) {
294
 
295
  global $single, $post, $crp_settings;
296
 
297
- if ( !in_the_loop() ) return $content;
298
 
299
  $exclude_on_post_ids = explode( ',', $crp_settings['exclude_on_post_ids'] );
300
  if ( in_array( $post->ID, $exclude_on_post_ids ) ) return $content; // Exit without adding related posts
@@ -336,7 +337,7 @@ function ald_crp_rss( $content ) {
336
 
337
  if ( $crp_settings['add_to_feed'] ) {
338
  $output = $content;
339
- $output .= ald_crp('is_widget=0&limit='.$limit_feed.'&show_excerpt='.$show_excerpt_feed.'&post_thumb_op='.$post_thumb_op_feed);
340
  return $output;
341
  } else {
342
  return $content;
@@ -364,14 +365,27 @@ function echo_ald_crp( $args = array() ) {
364
  *
365
  * @extends WP_Widget
366
  */
367
- class WidgetCRP extends WP_Widget
368
- {
369
- function WidgetCRP()
370
- {
371
- $widget_ops = array( 'classname' => 'widget_crp', 'description' => __( 'Display Related Posts', CRP_LOCAL_NAME ) );
372
- $this->WP_Widget( 'widget_crp', __( 'Related Posts', CRP_LOCAL_NAME ), $widget_ops );
 
 
 
 
 
373
  }
374
- function form( $instance ) {
 
 
 
 
 
 
 
 
375
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
376
  $limit = isset( $instance['limit'] ) ? esc_attr( $instance['limit'] ) : '';
377
  $show_excerpt = isset( $instance['show_excerpt'] ) ? esc_attr( $instance['show_excerpt'] ) : '';
@@ -427,7 +441,18 @@ class WidgetCRP extends WP_Widget
427
  </p>
428
  <?php
429
  } //ending form creation
430
- function update( $new_instance, $old_instance ) {
 
 
 
 
 
 
 
 
 
 
 
431
  $instance = $old_instance;
432
  $instance['title'] = strip_tags( $new_instance['title'] );
433
  $instance['limit'] = $new_instance['limit'];
@@ -440,7 +465,16 @@ class WidgetCRP extends WP_Widget
440
  delete_post_meta_by_key( 'crp_related_posts_widget' ); // Delete the cache
441
  return $instance;
442
  } //ending update
443
- function widget( $args, $instance ) {
 
 
 
 
 
 
 
 
 
444
  global $wpdb, $post;
445
 
446
  extract( $args, EXTR_SKIP );
@@ -478,18 +512,17 @@ class WidgetCRP extends WP_Widget
478
  } //ending function widget
479
  }
480
 
 
481
  /**
482
  * Initialise the widgets.
483
  *
484
  * @access public
485
  * @return void
486
  */
487
- function init_ald_crp(){
488
- if ( function_exists( 'register_widget' ) ) {
489
- register_widget( 'WidgetCRP' );
490
- }
491
  }
492
- add_action( 'widgets_init', 'init_ald_crp' );
493
 
494
 
495
  /**
@@ -501,9 +534,9 @@ add_action( 'widgets_init', 'init_ald_crp' );
501
  function crp_heading_styles() {
502
  global $crp_settings;
503
 
504
- if ($crp_settings['include_default_style']) {
505
- wp_register_style('crp_list_style', plugins_url('css/default-style.css', __FILE__));
506
- wp_enqueue_style('crp_list_style');
507
  }
508
  }
509
  add_action( 'wp_enqueue_scripts', 'crp_heading_styles' );
@@ -547,23 +580,22 @@ function crp_default_options() {
547
  global $crp_url;
548
  $title = __( '<h3>Related Posts:</h3>', CRP_LOCAL_NAME );
549
  $blank_output_text = __( 'No related posts found', CRP_LOCAL_NAME );
550
- $thumb_default = $crp_url.'/default.png';
551
  // get relevant post types
552
  $args = array(
553
- 'public' => true,
554
- '_builtin' => true
555
- );
556
  $post_types = http_build_query( get_post_types( $args ), '', '&' );
557
 
558
  $crp_settings = array(
559
- 'title' => $title, // Add before the content
560
  'cache' => false, // Cache output for faster page load
561
- 'daily_range' => '1095', // How old posts should be displayed?
562
  'limit' => '5', // How many posts to display?
563
- 'show_credit' => false, // Link to this plugin's page?
 
564
  'match_content' => true, // Match against post content as well as title
565
  'match_content_words' => '0', // How many characters of content should be matched? 0 for all chars
566
- 'post_types' => $post_types, // WordPress custom post types
567
 
568
  'add_to_content' => true, // Add related posts to content (only on single posts)
569
  'add_to_page' => true, // Add related posts to content (only on single pages)
@@ -573,52 +605,60 @@ function crp_default_options() {
573
  'add_to_tag_archives' => false, // Add related posts to tag archives
574
  'add_to_archives' => false, // Add related posts to other archives
575
 
 
 
 
 
 
576
  'blank_output' => true, // Blank output?
577
  'blank_output_text' => $blank_output_text, // Blank output text
578
 
579
- 'exclude_categories' => '', // Exclude these categories
580
- 'exclude_cat_slugs' => '', // Exclude these categories (slugs)
581
- 'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
582
- 'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
583
- 'exclude_on_post_types' => '', // WordPress custom post types
 
 
 
584
 
585
  'before_list' => '<ul>', // Before the entire list
586
  'after_list' => '</ul>', // After the entire list
587
  'before_list_item' => '<li>', // Before each list item
588
  'after_list_item' => '</li>', // After each list item
589
 
 
 
 
 
 
 
590
  'post_thumb_op' => 'text_only', // Default option to display text and no thumbnails in posts
591
  'thumb_height' => '50', // Height of thumbnails
592
  'thumb_width' => '50', // Width of thumbnails
593
  'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
594
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
 
595
  'thumb_default' => $thumb_default, // Default thumbnail image
596
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
597
  'thumb_timthumb' => true, // Use timthumb
598
  'thumb_timthumb_q' => '75', // Quality attribute for timthumb
599
- 'scan_images' => false, // Scan post for images
600
 
601
- 'show_excerpt' => false, // Show post excerpt in list item
602
- 'show_date' => false, // Show date in list item
603
- 'show_author' => false, // Show author in list item
604
-
605
- 'excerpt_length' => '10', // Length of characters
606
- 'title_length' => '60', // Limit length of post title
607
-
608
- 'custom_CSS' => '', // Custom CSS to style the output
609
- 'include_default_style' => false, // Include without VAT
610
  'limit_feed' => '5', // How many posts to display in feeds
611
  'post_thumb_op_feed' => 'text_only', // Default option to display text and no thumbnails in Feeds
612
  'thumb_height_feed' => '50', // Height of thumbnails in feed
613
  'thumb_width_feed' => '50', // Width of thumbnails in feed
614
  'show_excerpt_feed' => false, // Show description in list item in feed
615
- 'link_new_window' => false, // Open link in new window - Includes target="_blank" to links
616
- 'link_nofollow' => false, // Includes rel="nofollow" to links
617
- 'content_filter_priority' => 10, // Content priority
 
618
  );
619
- return $crp_settings;
620
  }
621
 
 
622
  /**
623
  * Function to read options from the database.
624
  *
@@ -643,15 +683,15 @@ function crp_read_options() {
643
  update_option('ald_crp_settings', $crp_settings);
644
  }
645
 
646
- return $crp_settings;
647
-
648
  }
649
 
 
650
  /**
651
- * Header function.
652
  *
653
  * @access public
654
- * @return etring Echoed string with the CSS output in the Header
655
  */
656
  function crp_header() {
657
  global $wpdb, $post, $single, $crp_settings;
@@ -672,7 +712,7 @@ function crp_header() {
672
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
673
  } elseif( ( ( is_tax() ) || ( is_author() ) || ( is_date() ) ) && ( $crp_settings['add_to_archives'] ) ) {
674
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
675
- } elseif ( is_active_widget( false, false, 'WidgetCRP', true ) ) {
676
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
677
  }
678
  }
@@ -681,7 +721,7 @@ add_action( 'wp_head', 'crp_header' );
681
 
682
 
683
  /**
684
- * Create full text index on activation.
685
  *
686
  * @access public
687
  * @return void
@@ -703,10 +743,7 @@ function ald_crp_activate() {
703
  $wpdb->show_errors();
704
 
705
  }
706
-
707
- if ( function_exists( 'register_activation_hook' ) ) {
708
- register_activation_hook( __FILE__, 'ald_crp_activate' );
709
- }
710
 
711
 
712
  /**
@@ -720,7 +757,7 @@ if ( function_exists( 'register_activation_hook' ) ) {
720
  * @param strint|int $thumb_timthumb_q
721
  * @return string Post image output
722
  */
723
- function crp_scale_thumbs( $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q ) {
724
  global $crp_url;
725
 
726
  if ( $thumb_timthumb ) {
@@ -730,7 +767,7 @@ function crp_scale_thumbs( $postimage, $thumb_width, $thumb_height, $thumb_timth
730
  }
731
  return $new_pi;
732
  }
733
- add_filter( 'crp_postimage', 'crp_scale_thumbs', 10, 5 );
734
 
735
 
736
  /**
@@ -775,7 +812,7 @@ function crp_get_the_post_thumbnail( $args = array() ) {
775
  if ( ( $postimage[1] < $thumb_width ) || ( $postimage[2] < $thumb_height ) ) {
776
  $postimage = wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) , 'full' );
777
  }
778
- $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q );
779
  $output .= '<img src="' . $postimage . '" alt="' . $title . '" title="' . $title . '" ' . $thumb_html . ' border="0" class="' . $class . '" />';
780
  } else {
781
  $postimage = get_post_meta( $result->ID, $thumb_meta, true ); // Check the post meta first
@@ -795,7 +832,7 @@ function crp_get_the_post_thumbnail( $args = array() ) {
795
  $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
796
  }
797
  if ( $postimage ) {
798
- $postimage = apply_filters( $filter, $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q );
799
  $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' border="0" class="'.$class.'" />';
800
  }
801
  }
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
+ Version: 1.9.1
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
6
  Description: Displaying a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
7
  Author: Ajay D'Souza
8
  Author URI: http://ajaydsouza.com/
9
  */
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
  // Guess the location
17
+ $crp_path = plugin_dir_path( __FILE__ );
18
+ $crp_url = plugins_url() . '/' . plugin_basename( dirname( __FILE__ ) );
19
 
20
  // Set $crp_settings as a global variable to prevent relookups in every function
21
+ global $crp_settings;
22
  $crp_settings = crp_read_options();
23
 
24
 
42
  * @return string HTML formatted list of related posts
43
  */
44
  function ald_crp( $args ) {
45
+ global $wpdb, $post, $single, $crp_settings;
 
46
 
47
  $defaults = array(
48
  'is_widget' => FALSE,
49
  'echo' => TRUE,
50
  );
51
+ $defaults = array_merge( $defaults, $crp_settings );
52
 
53
  // Parse incomming $args into an array and merge it with $defaults
54
  $args = wp_parse_args( $args, $defaults );
73
  'strict_limit' => TRUE,
74
  ) ) );
75
 
76
+ $output = ( is_singular() ) ? '<div id="crp_related" class="crp_related' . ( $is_widget ? '_widget' : '' ) . '">' : '<div class="crp_related' . ( $is_widget ? '_widget' : '' ) . '">';
77
 
78
  if ( $results ) {
79
  $loop_counter = 0;
93
  }
94
 
95
  if ( ! $p_in_c ) {
96
+ $output .= apply_filters( 'crp_before_list_item', $before_list_item, $result ); // Pass the post object to the filter
97
 
98
  if ( 'after' == $post_thumb_op ) {
99
  $output .= '<a href="' . get_permalink( $result->ID ) . '" ' . $rel_attribute . ' ' . $target_attribute . 'class="crp_title">' . $title . '</a>'; // Add title if post thumbnail is to be displayed after
121
  }
122
  if ( $show_author ) {
123
  $author_info = get_userdata( $result->post_author );
124
+ $author_name = apply_filters( 'crp_author_name', ucwords( trim( stripslashes( $author_info->display_name ) ) ), $author_info );
125
  $author_link = get_author_posts_url( $author_info->ID );
126
 
127
  $output .= '<span class="crp_author"> ' . __( ' by ', CRP_LOCAL_NAME ).'<a href="' . $author_link . '">' . $author_name . '</a></span> ';
149
  }
150
  if ( false === ( strpos( $output, $before_list_item ) ) ) {
151
  $output = '<div id="crp_related">';
152
+ $output .= ($blank_output) ? ' ' : '<p>' . $blank_output_text . '</p>';
153
  }
154
  $output .= '</div>';
155
 
156
 
157
  //Support caching to speed up retrieval
158
+ if ( ! empty( $cache ) ) {
159
  if ($is_widget)
160
+ update_post_meta( $post->ID, 'crp_related_posts_widget', $output, '' );
161
  else
162
+ update_post_meta( $post->ID, 'crp_related_posts', $output, '' );
163
  }
164
+ return apply_filters( 'ald_crp', $output );
165
  }
166
 
167
 
218
 
219
  // Are we matching only the title or the post content as well?
220
  if( $match_content ) {
221
+ $stuff = $post->post_title . ' ' . crp_excerpt( $post->ID, $match_content_words, false );
222
+ $fields = "post_title,post_content";
223
  } else {
224
  $stuff = $post->post_title;
225
+ $fields = "post_title";
226
  }
227
 
228
  // Limit the related posts by time
241
  $sql = "
242
  SELECT DISTINCT ID
243
  FROM ".$wpdb->posts."
244
+ WHERE MATCH (" . $fields . ") AGAINST ('%s')
245
  AND post_date < '%s'
246
  AND post_date >= '%s'
247
  AND post_status = 'publish'
291
  * @param string $content
292
  * @return string After the filter has been processed
293
  */
294
+ function ald_crp_content( $content ) {
295
 
296
  global $single, $post, $crp_settings;
297
 
298
+ if ( ! in_the_loop() ) return $content;
299
 
300
  $exclude_on_post_ids = explode( ',', $crp_settings['exclude_on_post_ids'] );
301
  if ( in_array( $post->ID, $exclude_on_post_ids ) ) return $content; // Exit without adding related posts
337
 
338
  if ( $crp_settings['add_to_feed'] ) {
339
  $output = $content;
340
+ $output .= ald_crp( 'is_widget=0&limit='.$limit_feed.'&show_excerpt='.$show_excerpt_feed.'&post_thumb_op='.$post_thumb_op_feed );
341
  return $output;
342
  } else {
343
  return $content;
365
  *
366
  * @extends WP_Widget
367
  */
368
+ class CRP_Widget extends WP_Widget {
369
+
370
+ /**
371
+ * Register widget with WordPress.
372
+ */
373
+ function __construct() {
374
+ parent::__construct(
375
+ 'widget_crp', // Base ID
376
+ __( 'Related Posts [CRP]', CRP_LOCAL_NAME ), // Name
377
+ array( 'description' => __( 'Display Related Posts', CRP_LOCAL_NAME ), ) // Args
378
+ );
379
  }
380
+
381
+ /**
382
+ * Back-end widget form.
383
+ *
384
+ * @see WP_Widget::form()
385
+ *
386
+ * @param array $instance Previously saved values from database.
387
+ */
388
+ public function form( $instance ) {
389
  $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : '';
390
  $limit = isset( $instance['limit'] ) ? esc_attr( $instance['limit'] ) : '';
391
  $show_excerpt = isset( $instance['show_excerpt'] ) ? esc_attr( $instance['show_excerpt'] ) : '';
441
  </p>
442
  <?php
443
  } //ending form creation
444
+
445
+ /**
446
+ * Sanitize widget form values as they are saved.
447
+ *
448
+ * @see WP_Widget::update()
449
+ *
450
+ * @param array $new_instance Values just sent to be saved.
451
+ * @param array $old_instance Previously saved values from database.
452
+ *
453
+ * @return array Updated safe values to be saved.
454
+ */
455
+ public function update( $new_instance, $old_instance ) {
456
  $instance = $old_instance;
457
  $instance['title'] = strip_tags( $new_instance['title'] );
458
  $instance['limit'] = $new_instance['limit'];
465
  delete_post_meta_by_key( 'crp_related_posts_widget' ); // Delete the cache
466
  return $instance;
467
  } //ending update
468
+
469
+ /**
470
+ * Front-end display of widget.
471
+ *
472
+ * @see WP_Widget::widget()
473
+ *
474
+ * @param array $args Widget arguments.
475
+ * @param array $instance Saved values from database.
476
+ */
477
+ public function widget( $args, $instance ) {
478
  global $wpdb, $post;
479
 
480
  extract( $args, EXTR_SKIP );
512
  } //ending function widget
513
  }
514
 
515
+
516
  /**
517
  * Initialise the widgets.
518
  *
519
  * @access public
520
  * @return void
521
  */
522
+ function register_crp_widget() {
523
+ register_widget( 'CRP_Widget' );
 
 
524
  }
525
+ add_action( 'widgets_init', 'register_crp_widget' );
526
 
527
 
528
  /**
534
  function crp_heading_styles() {
535
  global $crp_settings;
536
 
537
+ if ( $crp_settings['include_default_style'] ) {
538
+ wp_register_style( 'crp_list_style', plugins_url( 'css/default-style.css', __FILE__ ) );
539
+ wp_enqueue_style( 'crp_list_style' );
540
  }
541
  }
542
  add_action( 'wp_enqueue_scripts', 'crp_heading_styles' );
580
  global $crp_url;
581
  $title = __( '<h3>Related Posts:</h3>', CRP_LOCAL_NAME );
582
  $blank_output_text = __( 'No related posts found', CRP_LOCAL_NAME );
583
+ $thumb_default = $crp_url . '/default.png';
584
  // get relevant post types
585
  $args = array(
586
+ 'public' => true,
587
+ '_builtin' => true
588
+ );
589
  $post_types = http_build_query( get_post_types( $args ), '', '&' );
590
 
591
  $crp_settings = array(
592
+ // General options
593
  'cache' => false, // Cache output for faster page load
 
594
  'limit' => '5', // How many posts to display?
595
+ 'daily_range' => '1095', // How old posts should be displayed?
596
+ 'post_types' => $post_types, // WordPress custom post types
597
  'match_content' => true, // Match against post content as well as title
598
  'match_content_words' => '0', // How many characters of content should be matched? 0 for all chars
 
599
 
600
  'add_to_content' => true, // Add related posts to content (only on single posts)
601
  'add_to_page' => true, // Add related posts to content (only on single pages)
605
  'add_to_tag_archives' => false, // Add related posts to tag archives
606
  'add_to_archives' => false, // Add related posts to other archives
607
 
608
+ 'content_filter_priority' => 10, // Content priority
609
+ 'show_credit' => false, // Link to this plugin's page?
610
+
611
+ // Output options
612
+ 'title' => $title, // Add before the content
613
  'blank_output' => true, // Blank output?
614
  'blank_output_text' => $blank_output_text, // Blank output text
615
 
616
+ 'show_excerpt' => false, // Show post excerpt in list item
617
+ 'show_date' => false, // Show date in list item
618
+ 'show_author' => false, // Show author in list item
619
+ 'excerpt_length' => '10', // Length of characters
620
+ 'title_length' => '60', // Limit length of post title
621
+
622
+ 'link_new_window' => false, // Open link in new window - Includes target="_blank" to links
623
+ 'link_nofollow' => false, // Includes rel="nofollow" to links
624
 
625
  'before_list' => '<ul>', // Before the entire list
626
  'after_list' => '</ul>', // After the entire list
627
  'before_list_item' => '<li>', // Before each list item
628
  'after_list_item' => '</li>', // After each list item
629
 
630
+ 'exclude_categories' => '', // Exclude these categories
631
+ 'exclude_cat_slugs' => '', // Exclude these categories (slugs)
632
+ 'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
633
+ 'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
634
+ 'exclude_on_post_types' => '', // WordPress custom post types
635
+
636
  'post_thumb_op' => 'text_only', // Default option to display text and no thumbnails in posts
637
  'thumb_height' => '50', // Height of thumbnails
638
  'thumb_width' => '50', // Width of thumbnails
639
  'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
640
  'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
641
+ 'scan_images' => false, // Scan post for images
642
  'thumb_default' => $thumb_default, // Default thumbnail image
643
  'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
644
  'thumb_timthumb' => true, // Use timthumb
645
  'thumb_timthumb_q' => '75', // Quality attribute for timthumb
 
646
 
647
+ // Feed options
 
 
 
 
 
 
 
 
648
  'limit_feed' => '5', // How many posts to display in feeds
649
  'post_thumb_op_feed' => 'text_only', // Default option to display text and no thumbnails in Feeds
650
  'thumb_height_feed' => '50', // Height of thumbnails in feed
651
  'thumb_width_feed' => '50', // Width of thumbnails in feed
652
  'show_excerpt_feed' => false, // Show description in list item in feed
653
+
654
+ // Custom styles
655
+ 'custom_CSS' => '', // Custom CSS to style the output
656
+ 'include_default_style' => false, // Include without VAT
657
  );
658
+ return apply_filters( 'crp_default_options', $crp_settings );
659
  }
660
 
661
+
662
  /**
663
  * Function to read options from the database.
664
  *
683
  update_option('ald_crp_settings', $crp_settings);
684
  }
685
 
686
+ return apply_filters( 'crp_read_options', $crp_settings );
 
687
  }
688
 
689
+
690
  /**
691
+ * Filter for wp_head to include the custom CSS.
692
  *
693
  * @access public
694
+ * @return string Echoed string with the CSS output in the Header
695
  */
696
  function crp_header() {
697
  global $wpdb, $post, $single, $crp_settings;
712
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
713
  } elseif( ( ( is_tax() ) || ( is_author() ) || ( is_date() ) ) && ( $crp_settings['add_to_archives'] ) ) {
714
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
715
+ } elseif ( is_active_widget( false, false, 'CRP_Widget', true ) ) {
716
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
717
  }
718
  }
721
 
722
 
723
  /**
724
+ * Create FULLTEXT index on activation.
725
  *
726
  * @access public
727
  * @return void
743
  $wpdb->show_errors();
744
 
745
  }
746
+ register_activation_hook( __FILE__, 'ald_crp_activate' );
 
 
 
747
 
748
 
749
  /**
757
  * @param strint|int $thumb_timthumb_q
758
  * @return string Post image output
759
  */
760
+ function crp_scale_thumbs( $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $post ) {
761
  global $crp_url;
762
 
763
  if ( $thumb_timthumb ) {
767
  }
768
  return $new_pi;
769
  }
770
+ add_filter( 'crp_postimage', 'crp_scale_thumbs', 10, 6 );
771
 
772
 
773
  /**
812
  if ( ( $postimage[1] < $thumb_width ) || ( $postimage[2] < $thumb_height ) ) {
813
  $postimage = wp_get_attachment_image_src( get_post_thumbnail_id( $result->ID ) , 'full' );
814
  }
815
+ $postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $result );
816
  $output .= '<img src="' . $postimage . '" alt="' . $title . '" title="' . $title . '" ' . $thumb_html . ' border="0" class="' . $class . '" />';
817
  } else {
818
  $postimage = get_post_meta( $result->ID, $thumb_meta, true ); // Check the post meta first
832
  $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
833
  }
834
  if ( $postimage ) {
835
+ $postimage = apply_filters( $filter, $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q, $result );
836
  $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' border="0" class="'.$class.'" />';
837
  }
838
  }
index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // Silence is golden
languages/crp-da_DK.mo CHANGED
Binary file
languages/crp-da_DK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -18,74 +18,74 @@ msgstr ""
18
  "X-Generator: Poedit 1.6.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: admin.inc.php:127
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
- #: admin.inc.php:147
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
- #: admin.inc.php:163
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
- #: admin.inc.php:175
34
  msgid "General options"
35
  msgstr ""
36
 
37
- #: admin.inc.php:178
38
  msgid "Cache output?"
39
  msgstr ""
40
 
41
- #: admin.inc.php:180
42
  msgid ""
43
  "Enabling this option will cache the related posts output when the post is "
44
  "visited the first time. The cache is cleaned when you save this page."
45
  msgstr ""
46
 
47
- #: admin.inc.php:181
48
  msgid "Clear cache"
49
  msgstr ""
50
 
51
- #: admin.inc.php:184 admin.inc.php:425
52
  msgid "Number of related posts to display: "
53
  msgstr "Antal Lignende indlæg, der skal vises: "
54
 
55
- #: admin.inc.php:187
56
  msgid ""
57
  "Maximum number of posts that will be displayed. The actual number may be "
58
  "smaller if less related posts are found."
59
  msgstr ""
60
 
61
- #: admin.inc.php:190
62
  msgid "Related posts should be newer than:"
63
  msgstr ""
64
 
65
- #: admin.inc.php:192
66
  msgid "days"
67
  msgstr ""
68
 
69
- #: admin.inc.php:193
70
  msgid ""
71
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
72
  "it to 365 will show related posts from the last year only."
73
  msgstr ""
74
 
75
- #: admin.inc.php:196
76
- msgid "Post types to include in results."
77
  msgstr ""
78
 
79
- #: admin.inc.php:205
80
  msgid ""
81
  "These post types will be displayed in the list. Includes custom post types."
82
  msgstr ""
83
 
84
- #: admin.inc.php:208
85
- msgid "Find related posts based on content as well as title"
86
  msgstr ""
87
 
88
- #: admin.inc.php:210
89
  #, fuzzy
90
  msgid ""
91
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -95,70 +95,50 @@ msgstr ""
95
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
96
  "dette)"
97
 
98
- #: admin.inc.php:213
99
  msgid "Limit content to be compared"
100
  msgstr ""
101
 
102
- #: admin.inc.php:215
103
  msgid ""
104
  "This sets the maximum words of the content that will be matched. 0 means no "
105
  "limit."
106
  msgstr ""
107
 
108
- #: admin.inc.php:218
109
- msgid "List of post or page IDs to exclude from the results: "
110
- msgstr ""
111
-
112
- #: admin.inc.php:220 admin.inc.php:315
113
- msgid ""
114
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
115
- msgstr ""
116
-
117
- #: admin.inc.php:223
118
- msgid "Categories to exclude from the results: "
119
- msgstr ""
120
-
121
- #: admin.inc.php:239
122
- msgid ""
123
- "Comma separated list of category slugs. The field above has an autocomplete "
124
- "so simply start typing in the starting letters and it will prompt you with "
125
- "options"
126
- msgstr ""
127
-
128
- #: admin.inc.php:242
129
  #, fuzzy
130
  msgid "Add related posts to:"
131
  msgstr "Tilføj Lignende indlæg til feeds"
132
 
133
- #: admin.inc.php:244
134
  msgid "Posts"
135
  msgstr ""
136
 
137
- #: admin.inc.php:245
138
  msgid "Pages"
139
  msgstr ""
140
 
141
- #: admin.inc.php:246
142
  msgid "Home page"
143
  msgstr ""
144
 
145
- #: admin.inc.php:247
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
- #: admin.inc.php:248
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
- #: admin.inc.php:249
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
- #: admin.inc.php:250
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:251
162
  #, fuzzy
163
  msgid ""
164
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -170,454 +150,536 @@ msgstr ""
170
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din "
171
  "skabelonfil, hvor du ønsker de lignende indlæg vist"
172
 
173
- #: admin.inc.php:254
174
  msgid "Content filter priority:"
175
  msgstr ""
176
 
177
- #: admin.inc.php:257
178
  msgid ""
179
  "A higher number will cause the content above to be processed after other "
180
- "filters. Number below 10 is not recommended"
181
  msgstr ""
182
 
183
- #: admin.inc.php:260
184
- msgid "Add a link to the plugin page as a final item in the list"
185
- msgstr ""
 
186
 
187
- #: admin.inc.php:262
188
  msgid " <em>Optional</em>"
189
  msgstr ""
190
 
191
- #: admin.inc.php:263
192
  #, fuzzy
193
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
194
  msgstr "Related Posts (Lignende indlæg)"
195
 
196
- #: admin.inc.php:270
197
  #, fuzzy
198
  msgid "Output options"
199
  msgstr "Indstillinger for output:"
200
 
201
- #: admin.inc.php:273
202
  msgid "Title of related posts: "
203
  msgstr "Titel på Lignende indlæg: "
204
 
205
- #: admin.inc.php:276
206
  msgid ""
207
  "This is the main heading of the related posts. You can also display the "
208
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
209
  "Posts to %postname%</code>"
210
  msgstr ""
211
 
212
- #: admin.inc.php:279
213
  msgid "When there are no posts, what should be shown?"
214
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
215
 
216
- #: admin.inc.php:283
217
  msgid "Blank Output"
218
  msgstr "Intet"
219
 
220
- #: admin.inc.php:287
221
  msgid "Display:"
222
  msgstr ""
223
 
224
- #: admin.inc.php:291 admin.inc.php:428
225
  msgid "Show post excerpt in list?"
226
  msgstr ""
227
 
228
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
229
  msgid "Length of excerpt (in words): "
230
  msgstr ""
231
 
232
- #: admin.inc.php:297
233
  msgid "Show post author in list?"
234
  msgstr ""
235
 
 
 
 
 
236
  #: admin.inc.php:300
237
  msgid "Show post date in list?"
238
  msgstr ""
239
 
240
  #: admin.inc.php:303
241
- msgid "Limit post title length (in characters)"
 
 
242
  msgstr ""
243
 
244
  #: admin.inc.php:306
245
- msgid "Open links in new window"
246
  msgstr ""
247
 
248
  #: admin.inc.php:309
249
- msgid "Add nofollow attribute to links in the list"
 
 
250
  msgstr ""
251
 
252
  #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  #, fuzzy
254
  msgid "Exclude display of related posts on these posts / pages"
255
  msgstr "Tilføj Lignende indlæg til feeds"
256
 
257
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
258
  #, fuzzy
259
  msgid "Exclude display of related posts on these post types."
260
  msgstr "Tilføj Lignende indlæg til feeds"
261
 
262
- #: admin.inc.php:327
263
  msgid ""
264
  "The related posts will not display on any of the above selected post types"
265
  msgstr ""
266
 
267
- #: admin.inc.php:330
268
  msgid "Customize the output:"
269
  msgstr "Tilpas outputtet:"
270
 
271
- #: admin.inc.php:332
272
  msgid "HTML to display before the list of posts: "
273
  msgstr "HTML, der skal vises før listen med indlæg: "
274
 
275
- #: admin.inc.php:335
276
  msgid "HTML to display before each list item: "
277
  msgstr "HTML, der skal vises før hvert punkt på listen: "
278
 
279
- #: admin.inc.php:338
280
  msgid "HTML to display after each list item: "
281
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
282
 
283
- #: admin.inc.php:341
284
  msgid "HTML to display after the list of posts: "
285
  msgstr "HTML, der skal vises efter listen med indlæg: "
286
 
287
- #: admin.inc.php:344
288
  msgid "Post thumbnail options:"
289
  msgstr "Indstillinger for indlægsminiaturer:"
290
 
291
- #: admin.inc.php:346 admin.inc.php:431
292
  msgid "Location of post thumbnail:"
293
  msgstr ""
294
 
295
- #: admin.inc.php:350 admin.inc.php:435
296
  #, fuzzy
297
  msgid "Display thumbnails inline with posts, before title"
298
  msgstr "Vis miniaturer inline med indlæg"
299
 
300
- #: admin.inc.php:354 admin.inc.php:439
301
  #, fuzzy
302
  msgid "Display thumbnails inline with posts, after title"
303
  msgstr "Vis miniaturer inline med indlæg"
304
 
305
- #: admin.inc.php:358 admin.inc.php:443
306
  msgid "Display only thumbnails, no text"
307
  msgstr "Vis kun miniaturer, ingen tekst"
308
 
309
- #: admin.inc.php:362 admin.inc.php:447
310
  msgid "Do not display thumbnails, only text."
311
  msgstr "Vis ikke miniaturer, kun tekst."
312
 
313
- #: admin.inc.php:366 admin.inc.php:451
314
  msgid "Maximum width of the thumbnail: "
315
  msgstr ""
316
 
317
- #: admin.inc.php:369 admin.inc.php:454
318
  msgid "Maximum height of the thumbnail: "
319
  msgstr ""
320
 
321
- #: admin.inc.php:372
 
 
 
 
 
 
322
  msgid "Style attributes / Width and Height HTML attributes:"
323
  msgstr ""
324
 
325
- #: admin.inc.php:376
326
- msgid ""
327
- "Style attributes are used for width and height. <code>style=\"max-width:"
328
  msgstr ""
329
 
330
- #: admin.inc.php:380
331
- msgid ""
332
- "HTML width and height attributes are used for width and height. <code>width="
333
- "\""
334
  msgstr ""
335
 
336
- #: admin.inc.php:384
337
  msgid "Use timthumb to generate thumbnails? "
338
  msgstr ""
339
 
340
- #: admin.inc.php:386
341
  msgid ""
342
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
343
- "\">timthumb</a> will be used to generate thumbnails"
344
  msgstr ""
345
 
346
- #: admin.inc.php:389
347
- msgid "Quality of thumbnails generated by timthumb"
348
  msgstr ""
349
 
350
- #: admin.inc.php:392
351
  msgid ""
352
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
353
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
354
  msgstr ""
355
 
356
- #: admin.inc.php:395
357
  #, fuzzy
358
- msgid "Post thumbnail meta field name: "
359
  msgstr "Indstillinger for indlægsminiaturer:"
360
 
361
- #: admin.inc.php:397
362
  msgid ""
363
  "The value of this field should contain the image source and is set in the "
364
  "<em>Add New Post</em> screen"
365
  msgstr ""
366
 
367
- #: admin.inc.php:400
368
- msgid ""
369
- "If the postmeta is not set, then should the plugin extract the first image "
370
- "from the post?"
371
  msgstr ""
372
 
373
- #: admin.inc.php:402
374
  msgid ""
375
- "This can slow down the loading of your page if the first image in the "
376
- "related posts is large in file-size"
377
  msgstr ""
378
 
379
- #: admin.inc.php:405
380
- msgid "Use default thumbnail? "
381
  msgstr ""
382
 
383
- #: admin.inc.php:407
384
  msgid ""
385
  "If checked, when no thumbnail is found, show a default one from the URL "
386
  "below. If not checked and no thumbnail is found, no image will be shown."
387
  msgstr ""
388
 
389
- #: admin.inc.php:410
390
- msgid "Default thumbnail: "
391
- msgstr ""
 
392
 
393
- #: admin.inc.php:413
394
  #, fuzzy
395
  msgid ""
396
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
397
  "then it will check the meta field. If this is not available, then it will "
398
- "show the default image as specified above"
399
  msgstr ""
400
  "Pluginnet tjekker først, om indlægget indeholder en miniature. Hvis "
401
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
402
  "findes, vil det vise standardbilledet specificeret nedenfor:"
403
 
404
- #: admin.inc.php:420
405
  #, fuzzy
406
  msgid "Feed options"
407
  msgstr "Indstillinger:"
408
 
409
- #: admin.inc.php:423
410
  msgid ""
411
  "Below options override the related posts settings for your blog feed. These "
412
  "only apply if you have selected to add related posts to Feeds in the General "
413
  "Options tab."
414
  msgstr ""
415
 
416
- #: admin.inc.php:461
417
  msgid "Custom styles"
418
  msgstr ""
419
 
420
- #: admin.inc.php:464
421
  msgid "Use default style included in the plugin?"
422
  msgstr ""
423
 
424
- #: admin.inc.php:467
425
  msgid ""
426
  "Contextual Related Posts includes a default style that makes your popular "
427
  "posts list to look pretty. Check the box above if you want to use this."
428
  msgstr ""
429
 
430
- #: admin.inc.php:468
431
  msgid ""
432
  "Enabling this option will automatically turn on the thumbnails and set their "
433
  "width and height to 150px. Disabling this will not turn off thumbnails or "
434
  "change their dimensions."
435
  msgstr ""
436
 
437
- #: admin.inc.php:471
438
  msgid "Custom CSS to add to header:"
439
  msgstr ""
440
 
441
- #: admin.inc.php:475
442
  msgid ""
443
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
444
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
445
  "\">FAQ</a> for available CSS classes to style."
446
  msgstr ""
447
 
448
- #: admin.inc.php:482
449
  #, fuzzy
450
  msgid "Save Options"
451
  msgstr "Indstillinger:"
452
 
453
- #: admin.inc.php:483
454
  #, fuzzy
455
  msgid "Default Options"
456
  msgstr "Indstillinger for output:"
457
 
458
- #: admin.inc.php:483
459
  msgid "Do you want to set options to Default?"
460
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
461
 
462
- #: admin.inc.php:484
463
  msgid "Recreate Index"
464
  msgstr ""
465
 
466
- #: admin.inc.php:484
467
  msgid "Are you sure you want to recreate the index?"
468
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
469
 
470
- #: admin.inc.php:492
471
  #, fuzzy
472
  msgid "Support the development"
473
  msgstr "Støt udviklingen"
474
 
475
- #: admin.inc.php:501
476
- msgid "Enter amount in USD: "
 
 
 
 
 
477
  msgstr ""
478
 
479
- #: admin.inc.php:505
480
  msgid "Send your donation to the author of"
481
  msgstr ""
482
 
483
- #: admin.inc.php:512
484
  msgid "Follow me"
485
  msgstr ""
486
 
487
- #: admin.inc.php:522
488
  msgid "Quick links"
489
  msgstr ""
490
 
491
- #: admin.inc.php:526
492
  #, fuzzy
493
  msgid "Contextual Related Posts plugin page"
494
  msgstr "Related Posts (Lignende indlæg)"
495
 
496
- #: admin.inc.php:527
497
- msgid "Other plugins"
498
- msgstr ""
499
-
500
- #: admin.inc.php:528
501
- msgid "Ajay's blog"
502
- msgstr ""
503
-
504
- #: admin.inc.php:529
505
  msgid "FAQ"
506
  msgstr ""
507
 
508
- #: admin.inc.php:530 contextual-related-posts.php:927
509
  msgid "Support"
510
  msgstr "Support"
511
 
512
- #: admin.inc.php:531
513
  msgid "Reviews"
514
  msgstr ""
515
 
516
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
517
  #, fuzzy
518
  msgid "Contextual Related Posts"
519
  msgstr "Related Posts (Lignende indlæg)"
520
 
521
- #: admin.inc.php:554 contextual-related-posts.php:372
522
  msgid "Related Posts"
523
  msgstr "Related Posts (Lignende indlæg)"
524
 
525
- #: admin.inc.php:658
526
  msgid "plugin settings page"
527
  msgstr ""
528
 
529
- #: admin.inc.php:692
530
  msgid ""
531
  "An error occurred clearing the cache. Please contact your site administrator."
532
  "\\n\\nError message:\\n"
533
  msgstr ""
534
 
535
- #: admin.inc.php:697
536
  msgid " cached row(s) cleared"
537
  msgstr ""
538
 
539
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
540
  msgid " by "
541
  msgstr ""
542
 
543
- #: contextual-related-posts.php:143
544
  msgid "Powered by"
545
  msgstr ""
546
 
547
- #: contextual-related-posts.php:371
 
 
 
 
 
548
  #, fuzzy
549
  msgid "Display Related Posts"
550
  msgstr "Vis \"Ingen lignende indlæg\""
551
 
552
- #: contextual-related-posts.php:386
553
  msgid "Title"
554
  msgstr ""
555
 
556
- #: contextual-related-posts.php:391
557
  msgid "No. of posts"
558
  msgstr ""
559
 
560
- #: contextual-related-posts.php:396
561
  msgid " Show excerpt?"
562
  msgstr ""
563
 
564
- #: contextual-related-posts.php:401
565
  msgid " Show author?"
566
  msgstr ""
567
 
568
- #: contextual-related-posts.php:406
569
  msgid " Show date?"
570
  msgstr ""
571
 
572
- #: contextual-related-posts.php:410
573
  #, fuzzy
574
  msgid "Thumbnail options"
575
  msgstr "Indstillinger for indlægsminiaturer:"
576
 
577
- #: contextual-related-posts.php:412
578
  #, fuzzy
579
  msgid "Thumbnails inline, before title"
580
  msgstr "Vis miniaturer inline med indlæg"
581
 
582
- #: contextual-related-posts.php:413
583
  #, fuzzy
584
  msgid "Thumbnails inline, after title"
585
  msgstr "Vis miniaturer inline med indlæg"
586
 
587
- #: contextual-related-posts.php:414
588
  #, fuzzy
589
  msgid "Only thumbnails, no text"
590
  msgstr "Vis kun miniaturer, ingen tekst"
591
 
592
- #: contextual-related-posts.php:415
593
  #, fuzzy
594
  msgid "No thumbnails, only text."
595
  msgstr "Vis ikke miniaturer, kun tekst."
596
 
597
- #: contextual-related-posts.php:420
598
  #, fuzzy
599
  msgid "Thumbnail height"
600
  msgstr "Indstillinger for indlægsminiaturer:"
601
 
602
- #: contextual-related-posts.php:425
603
  #, fuzzy
604
  msgid "Thumbnail width"
605
  msgstr "Indstillinger for indlægsminiaturer:"
606
 
607
- #: contextual-related-posts.php:548
608
  msgid "<h3>Related Posts:</h3>"
609
  msgstr "<h3>Lignende indlæg:</h3>"
610
 
611
- #: contextual-related-posts.php:549
612
  #, fuzzy
613
  msgid "No related posts found"
614
  msgstr "Ingen lignende indlæg fundet"
615
 
616
- #: contextual-related-posts.php:907
617
  msgid "Settings"
618
  msgstr "Opsætning"
619
 
620
- #: contextual-related-posts.php:928
621
  msgid "Donate"
622
  msgstr "Donation"
623
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
18
  "X-Generator: Poedit 1.6.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: admin.inc.php:141
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
+ #: admin.inc.php:161
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
+ #: admin.inc.php:177
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
+ #: admin.inc.php:189
34
  msgid "General options"
35
  msgstr ""
36
 
37
+ #: admin.inc.php:192
38
  msgid "Cache output?"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:194
42
  msgid ""
43
  "Enabling this option will cache the related posts output when the post is "
44
  "visited the first time. The cache is cleaned when you save this page."
45
  msgstr ""
46
 
47
+ #: admin.inc.php:195
48
  msgid "Clear cache"
49
  msgstr ""
50
 
51
+ #: admin.inc.php:198 admin.inc.php:462
52
  msgid "Number of related posts to display: "
53
  msgstr "Antal Lignende indlæg, der skal vises: "
54
 
55
+ #: admin.inc.php:201
56
  msgid ""
57
  "Maximum number of posts that will be displayed. The actual number may be "
58
  "smaller if less related posts are found."
59
  msgstr ""
60
 
61
+ #: admin.inc.php:204
62
  msgid "Related posts should be newer than:"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:206
66
  msgid "days"
67
  msgstr ""
68
 
69
+ #: admin.inc.php:207
70
  msgid ""
71
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
72
  "it to 365 will show related posts from the last year only."
73
  msgstr ""
74
 
75
+ #: admin.inc.php:210
76
+ msgid "Post types to include in results:"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:221
80
  msgid ""
81
  "These post types will be displayed in the list. Includes custom post types."
82
  msgstr ""
83
 
84
+ #: admin.inc.php:224
85
+ msgid "Find related posts based on content as well as title:"
86
  msgstr ""
87
 
88
+ #: admin.inc.php:226
89
  #, fuzzy
90
  msgid ""
91
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
95
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
96
  "dette)"
97
 
98
+ #: admin.inc.php:229
99
  msgid "Limit content to be compared"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:231
103
  msgid ""
104
  "This sets the maximum words of the content that will be matched. 0 means no "
105
  "limit."
106
  msgstr ""
107
 
108
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  #, fuzzy
110
  msgid "Add related posts to:"
111
  msgstr "Tilføj Lignende indlæg til feeds"
112
 
113
+ #: admin.inc.php:236
114
  msgid "Posts"
115
  msgstr ""
116
 
117
+ #: admin.inc.php:237
118
  msgid "Pages"
119
  msgstr ""
120
 
121
+ #: admin.inc.php:238
122
  msgid "Home page"
123
  msgstr ""
124
 
125
+ #: admin.inc.php:239
126
  msgid "Feeds"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:240
130
  msgid "Category archives"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:241
134
  msgid "Tag archives"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:242
138
  msgid "Other archives"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:243
142
  #, fuzzy
143
  msgid ""
144
  "If you choose to disable this, please add <code>&lt;?php if "
150
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din "
151
  "skabelonfil, hvor du ønsker de lignende indlæg vist"
152
 
153
+ #: admin.inc.php:246
154
  msgid "Content filter priority:"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:249
158
  msgid ""
159
  "A higher number will cause the content above to be processed after other "
160
+ "filters. Number below 10 is not recommended."
161
  msgstr ""
162
 
163
+ #: admin.inc.php:252
164
+ #, fuzzy
165
+ msgid "Tell the world you're using Contextual Related Posts:"
166
+ msgstr "Related Posts (Lignende indlæg)"
167
 
168
+ #: admin.inc.php:254
169
  msgid " <em>Optional</em>"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:255
173
  #, fuzzy
174
+ msgid ""
175
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
176
+ "in the list."
177
  msgstr "Related Posts (Lignende indlæg)"
178
 
179
+ #: admin.inc.php:262
180
  #, fuzzy
181
  msgid "Output options"
182
  msgstr "Indstillinger for output:"
183
 
184
+ #: admin.inc.php:265
185
  msgid "Title of related posts: "
186
  msgstr "Titel på Lignende indlæg: "
187
 
188
+ #: admin.inc.php:268
189
  msgid ""
190
  "This is the main heading of the related posts. You can also display the "
191
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
192
  "Posts to %postname%</code>"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:271
196
  msgid "When there are no posts, what should be shown?"
197
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
198
 
199
+ #: admin.inc.php:275
200
  msgid "Blank Output"
201
  msgstr "Intet"
202
 
203
+ #: admin.inc.php:279
204
  msgid "Display:"
205
  msgstr ""
206
 
207
+ #: admin.inc.php:283 admin.inc.php:465
208
  msgid "Show post excerpt in list?"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:286
212
+ #, php-format
213
+ msgid ""
214
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
215
+ "to a post (in the post editor's optional excerpt field), it will display an "
216
+ "automatic excerpt which refers to the first %d words of the post's content"
217
+ msgstr ""
218
+
219
+ #: admin.inc.php:289
220
  msgid "Length of excerpt (in words): "
221
  msgstr ""
222
 
223
+ #: admin.inc.php:294
224
  msgid "Show post author in list?"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:297
228
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
229
+ msgstr ""
230
+
231
  #: admin.inc.php:300
232
  msgid "Show post date in list?"
233
  msgstr ""
234
 
235
  #: admin.inc.php:303
236
+ msgid ""
237
+ "Displays the date of the post. Uses the same date format set in General "
238
+ "Options"
239
  msgstr ""
240
 
241
  #: admin.inc.php:306
242
+ msgid "Limit post title length (in characters)"
243
  msgstr ""
244
 
245
  #: admin.inc.php:309
246
+ msgid ""
247
+ "Any title longer than the number of characters set above will be cut and "
248
+ "appended with a &helip;"
249
  msgstr ""
250
 
251
  #: admin.inc.php:312
252
+ msgid "Open links in new window"
253
+ msgstr ""
254
+
255
+ #: admin.inc.php:315
256
+ msgid "Add nofollow attribute to links in the list"
257
+ msgstr ""
258
+
259
+ #: admin.inc.php:318
260
+ msgid "Exclusion settings:"
261
+ msgstr ""
262
+
263
+ #: admin.inc.php:320
264
+ msgid "List of post or page IDs to exclude from the results:"
265
+ msgstr ""
266
+
267
+ #: admin.inc.php:322 admin.inc.php:328
268
+ msgid ""
269
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
270
+ msgstr ""
271
+
272
+ #: admin.inc.php:325
273
  #, fuzzy
274
  msgid "Exclude display of related posts on these posts / pages"
275
  msgstr "Tilføj Lignende indlæg til feeds"
276
 
277
+ #: admin.inc.php:331
278
+ msgid "Categories to exclude from the results: "
279
+ msgstr ""
280
+
281
+ #: admin.inc.php:347
282
+ msgid ""
283
+ "Comma separated list of category slugs. The field above has an autocomplete "
284
+ "so simply start typing in the beginning of your category name and it will "
285
+ "prompt you with options."
286
+ msgstr ""
287
+
288
+ #: admin.inc.php:350
289
  #, fuzzy
290
  msgid "Exclude display of related posts on these post types."
291
  msgstr "Tilføj Lignende indlæg til feeds"
292
 
293
+ #: admin.inc.php:359
294
  msgid ""
295
  "The related posts will not display on any of the above selected post types"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:362
299
  msgid "Customize the output:"
300
  msgstr "Tilpas outputtet:"
301
 
302
+ #: admin.inc.php:364
303
  msgid "HTML to display before the list of posts: "
304
  msgstr "HTML, der skal vises før listen med indlæg: "
305
 
306
+ #: admin.inc.php:367
307
  msgid "HTML to display before each list item: "
308
  msgstr "HTML, der skal vises før hvert punkt på listen: "
309
 
310
+ #: admin.inc.php:370
311
  msgid "HTML to display after each list item: "
312
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
313
 
314
+ #: admin.inc.php:373
315
  msgid "HTML to display after the list of posts: "
316
  msgstr "HTML, der skal vises efter listen med indlæg: "
317
 
318
+ #: admin.inc.php:376
319
  msgid "Post thumbnail options:"
320
  msgstr "Indstillinger for indlægsminiaturer:"
321
 
322
+ #: admin.inc.php:378 admin.inc.php:468
323
  msgid "Location of post thumbnail:"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:382 admin.inc.php:472
327
  #, fuzzy
328
  msgid "Display thumbnails inline with posts, before title"
329
  msgstr "Vis miniaturer inline med indlæg"
330
 
331
+ #: admin.inc.php:386 admin.inc.php:476
332
  #, fuzzy
333
  msgid "Display thumbnails inline with posts, after title"
334
  msgstr "Vis miniaturer inline med indlæg"
335
 
336
+ #: admin.inc.php:390 admin.inc.php:480
337
  msgid "Display only thumbnails, no text"
338
  msgstr "Vis kun miniaturer, ingen tekst"
339
 
340
+ #: admin.inc.php:394 admin.inc.php:484
341
  msgid "Do not display thumbnails, only text."
342
  msgstr "Vis ikke miniaturer, kun tekst."
343
 
344
+ #: admin.inc.php:398 admin.inc.php:488
345
  msgid "Maximum width of the thumbnail: "
346
  msgstr ""
347
 
348
+ #: admin.inc.php:401 admin.inc.php:491
349
  msgid "Maximum height of the thumbnail: "
350
  msgstr ""
351
 
352
+ #: admin.inc.php:405
353
+ msgid ""
354
+ "Since you're using the default styles set under the Custom Styles section, "
355
+ "the width and height is fixed at 150px"
356
+ msgstr ""
357
+
358
+ #: admin.inc.php:409
359
  msgid "Style attributes / Width and Height HTML attributes:"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:413
363
+ msgid "Style attributes are used for width and height."
 
364
  msgstr ""
365
 
366
+ #: admin.inc.php:417
367
+ msgid "HTML width and height attributes are used for width and height."
 
 
368
  msgstr ""
369
 
370
+ #: admin.inc.php:421
371
  msgid "Use timthumb to generate thumbnails? "
372
  msgstr ""
373
 
374
+ #: admin.inc.php:423
375
  msgid ""
376
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
377
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
378
  msgstr ""
379
 
380
+ #: admin.inc.php:426
381
+ msgid "Quality of thumbnails generated by timthumb:"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:429
385
  msgid ""
386
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
387
+ "file size. Suggested maximum value is 95. CRP default is 75."
388
  msgstr ""
389
 
390
+ #: admin.inc.php:432
391
  #, fuzzy
392
+ msgid "Post thumbnail meta field name:"
393
  msgstr "Indstillinger for indlægsminiaturer:"
394
 
395
+ #: admin.inc.php:434
396
  msgid ""
397
  "The value of this field should contain the image source and is set in the "
398
  "<em>Add New Post</em> screen"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:437
402
+ msgid "Extract the first image from the post?"
 
 
403
  msgstr ""
404
 
405
+ #: admin.inc.php:439
406
  msgid ""
407
+ "This will only happen if there is no post thumbnail set and no image URL is "
408
+ "specified in the meta field."
409
  msgstr ""
410
 
411
+ #: admin.inc.php:442
412
+ msgid "Use default thumbnail?"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:444
416
  msgid ""
417
  "If checked, when no thumbnail is found, show a default one from the URL "
418
  "below. If not checked and no thumbnail is found, no image will be shown."
419
  msgstr ""
420
 
421
+ #: admin.inc.php:447
422
+ #, fuzzy
423
+ msgid "Default thumbnail:"
424
+ msgstr "Indstillinger for output:"
425
 
426
+ #: admin.inc.php:450
427
  #, fuzzy
428
  msgid ""
429
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
430
  "then it will check the meta field. If this is not available, then it will "
431
+ "show the default image as specified above."
432
  msgstr ""
433
  "Pluginnet tjekker først, om indlægget indeholder en miniature. Hvis "
434
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
435
  "findes, vil det vise standardbilledet specificeret nedenfor:"
436
 
437
+ #: admin.inc.php:457
438
  #, fuzzy
439
  msgid "Feed options"
440
  msgstr "Indstillinger:"
441
 
442
+ #: admin.inc.php:460
443
  msgid ""
444
  "Below options override the related posts settings for your blog feed. These "
445
  "only apply if you have selected to add related posts to Feeds in the General "
446
  "Options tab."
447
  msgstr ""
448
 
449
+ #: admin.inc.php:498
450
  msgid "Custom styles"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:501
454
  msgid "Use default style included in the plugin?"
455
  msgstr ""
456
 
457
+ #: admin.inc.php:504
458
  msgid ""
459
  "Contextual Related Posts includes a default style that makes your popular "
460
  "posts list to look pretty. Check the box above if you want to use this."
461
  msgstr ""
462
 
463
+ #: admin.inc.php:505
464
  msgid ""
465
  "Enabling this option will automatically turn on the thumbnails and set their "
466
  "width and height to 150px. Disabling this will not turn off thumbnails or "
467
  "change their dimensions."
468
  msgstr ""
469
 
470
+ #: admin.inc.php:508
471
  msgid "Custom CSS to add to header:"
472
  msgstr ""
473
 
474
+ #: admin.inc.php:512
475
  msgid ""
476
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
477
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
478
  "\">FAQ</a> for available CSS classes to style."
479
  msgstr ""
480
 
481
+ #: admin.inc.php:519
482
  #, fuzzy
483
  msgid "Save Options"
484
  msgstr "Indstillinger:"
485
 
486
+ #: admin.inc.php:520
487
  #, fuzzy
488
  msgid "Default Options"
489
  msgstr "Indstillinger for output:"
490
 
491
+ #: admin.inc.php:520
492
  msgid "Do you want to set options to Default?"
493
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
494
 
495
+ #: admin.inc.php:521
496
  msgid "Recreate Index"
497
  msgstr ""
498
 
499
+ #: admin.inc.php:521
500
  msgid "Are you sure you want to recreate the index?"
501
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
502
 
503
+ #: admin.inc.php:529
504
  #, fuzzy
505
  msgid "Support the development"
506
  msgstr "Støt udviklingen"
507
 
508
+ #: admin.inc.php:536
509
+ #, fuzzy
510
+ msgid "Donation for Contextual Related Posts"
511
+ msgstr "Related Posts (Lignende indlæg)"
512
+
513
+ #: admin.inc.php:538
514
+ msgid "Enter amount in USD:"
515
  msgstr ""
516
 
517
+ #: admin.inc.php:542
518
  msgid "Send your donation to the author of"
519
  msgstr ""
520
 
521
+ #: admin.inc.php:549
522
  msgid "Follow me"
523
  msgstr ""
524
 
525
+ #: admin.inc.php:559
526
  msgid "Quick links"
527
  msgstr ""
528
 
529
+ #: admin.inc.php:563
530
  #, fuzzy
531
  msgid "Contextual Related Posts plugin page"
532
  msgstr "Related Posts (Lignende indlæg)"
533
 
534
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
535
  msgid "FAQ"
536
  msgstr ""
537
 
538
+ #: admin.inc.php:565 contextual-related-posts.php:964
539
  msgid "Support"
540
  msgstr "Support"
541
 
542
+ #: admin.inc.php:566
543
  msgid "Reviews"
544
  msgstr ""
545
 
546
+ #: admin.inc.php:567
547
+ msgid "Github repository"
548
+ msgstr ""
549
+
550
+ #: admin.inc.php:568
551
+ msgid "Other plugins"
552
+ msgstr ""
553
+
554
+ #: admin.inc.php:569
555
+ msgid "Ajay's blog"
556
+ msgstr ""
557
+
558
+ #: admin.inc.php:591 admin.inc.php:752
559
  #, fuzzy
560
  msgid "Contextual Related Posts"
561
  msgstr "Related Posts (Lignende indlæg)"
562
 
563
+ #: admin.inc.php:591
564
  msgid "Related Posts"
565
  msgstr "Related Posts (Lignende indlæg)"
566
 
567
+ #: admin.inc.php:694
568
  msgid "plugin settings page"
569
  msgstr ""
570
 
571
+ #: admin.inc.php:728
572
  msgid ""
573
  "An error occurred clearing the cache. Please contact your site administrator."
574
  "\\n\\nError message:\\n"
575
  msgstr ""
576
 
577
+ #: admin.inc.php:733
578
  msgid " cached row(s) cleared"
579
  msgstr ""
580
 
581
+ #: admin.inc.php:779
582
+ msgid "Location of thumbnail:"
583
+ msgstr ""
584
+
585
+ #: admin.inc.php:781
586
+ msgid ""
587
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
588
+ "image will be used for the post. It will be resized to the thumbnail size "
589
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
590
+ msgstr ""
591
+
592
+ #: admin.inc.php:782
593
+ msgid "The URL above is saved in the meta field: "
594
+ msgstr ""
595
+
596
+ #: contextual-related-posts.php:127
597
  msgid " by "
598
  msgstr ""
599
 
600
+ #: contextual-related-posts.php:142
601
  msgid "Powered by"
602
  msgstr ""
603
 
604
+ #: contextual-related-posts.php:376
605
+ #, fuzzy
606
+ msgid "Related Posts [CRP]"
607
+ msgstr "Related Posts (Lignende indlæg)"
608
+
609
+ #: contextual-related-posts.php:377
610
  #, fuzzy
611
  msgid "Display Related Posts"
612
  msgstr "Vis \"Ingen lignende indlæg\""
613
 
614
+ #: contextual-related-posts.php:400
615
  msgid "Title"
616
  msgstr ""
617
 
618
+ #: contextual-related-posts.php:405
619
  msgid "No. of posts"
620
  msgstr ""
621
 
622
+ #: contextual-related-posts.php:410
623
  msgid " Show excerpt?"
624
  msgstr ""
625
 
626
+ #: contextual-related-posts.php:415
627
  msgid " Show author?"
628
  msgstr ""
629
 
630
+ #: contextual-related-posts.php:420
631
  msgid " Show date?"
632
  msgstr ""
633
 
634
+ #: contextual-related-posts.php:424
635
  #, fuzzy
636
  msgid "Thumbnail options"
637
  msgstr "Indstillinger for indlægsminiaturer:"
638
 
639
+ #: contextual-related-posts.php:426
640
  #, fuzzy
641
  msgid "Thumbnails inline, before title"
642
  msgstr "Vis miniaturer inline med indlæg"
643
 
644
+ #: contextual-related-posts.php:427
645
  #, fuzzy
646
  msgid "Thumbnails inline, after title"
647
  msgstr "Vis miniaturer inline med indlæg"
648
 
649
+ #: contextual-related-posts.php:428
650
  #, fuzzy
651
  msgid "Only thumbnails, no text"
652
  msgstr "Vis kun miniaturer, ingen tekst"
653
 
654
+ #: contextual-related-posts.php:429
655
  #, fuzzy
656
  msgid "No thumbnails, only text."
657
  msgstr "Vis ikke miniaturer, kun tekst."
658
 
659
+ #: contextual-related-posts.php:434
660
  #, fuzzy
661
  msgid "Thumbnail height"
662
  msgstr "Indstillinger for indlægsminiaturer:"
663
 
664
+ #: contextual-related-posts.php:439
665
  #, fuzzy
666
  msgid "Thumbnail width"
667
  msgstr "Indstillinger for indlægsminiaturer:"
668
 
669
+ #: contextual-related-posts.php:581
670
  msgid "<h3>Related Posts:</h3>"
671
  msgstr "<h3>Lignende indlæg:</h3>"
672
 
673
+ #: contextual-related-posts.php:582
674
  #, fuzzy
675
  msgid "No related posts found"
676
  msgstr "Ingen lignende indlæg fundet"
677
 
678
+ #: contextual-related-posts.php:944
679
  msgid "Settings"
680
  msgstr "Opsætning"
681
 
682
+ #: contextual-related-posts.php:965
683
  msgid "Donate"
684
  msgstr "Donation"
685
 
languages/crp-de_DE.mo CHANGED
Binary file
languages/crp-de_DE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -16,27 +16,27 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: admin.inc.php:127
20
  msgid "Options saved successfully."
21
  msgstr "Optionen erfolgreich gespeichert."
22
 
23
- #: admin.inc.php:147
24
  msgid "Options set to Default."
25
  msgstr "Optionen auf die Voreinstellungen gesetzt."
26
 
27
- #: admin.inc.php:163
28
  msgid "Index recreated"
29
  msgstr "Index neu aufgebaut"
30
 
31
- #: admin.inc.php:175
32
  msgid "General options"
33
  msgstr "Allgemeine Optionen"
34
 
35
- #: admin.inc.php:178
36
  msgid "Cache output?"
37
  msgstr "Cache Ausgabe?"
38
 
39
- #: admin.inc.php:180
40
  msgid ""
41
  "Enabling this option will cache the related posts output when the post is "
42
  "visited the first time. The cache is cleaned when you save this page."
@@ -45,15 +45,15 @@ msgstr ""
45
  "gespeichert, sobald ein Beitrag das erste Mal aufgerufen wird. Der Cache "
46
  "wird geleert, wenn diese Seite gespeichert wird."
47
 
48
- #: admin.inc.php:181
49
  msgid "Clear cache"
50
  msgstr "Lösche den Cache"
51
 
52
- #: admin.inc.php:184 admin.inc.php:425
53
  msgid "Number of related posts to display: "
54
  msgstr "Anzahl der ähnlichen Beiträge, die angezeigt werden sollen:"
55
 
56
- #: admin.inc.php:187
57
  msgid ""
58
  "Maximum number of posts that will be displayed. The actual number may be "
59
  "smaller if less related posts are found."
@@ -61,15 +61,15 @@ msgstr ""
61
  "Maximale Anzahl an ähnlichen Beiträgen, die angezeigt werden soll. Diese "
62
  "kann auch geringer sein, wenn weniger ähnliche Beiträge gefunden werden."
63
 
64
- #: admin.inc.php:190
65
  msgid "Related posts should be newer than:"
66
  msgstr "Ähnliche Beiträge sollen neuer sein als:"
67
 
68
- #: admin.inc.php:192
69
  msgid "days"
70
  msgstr "Tage"
71
 
72
- #: admin.inc.php:193
73
  msgid ""
74
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
75
  "it to 365 will show related posts from the last year only."
@@ -78,23 +78,25 @@ msgstr ""
78
  "werden. Zum Beispiel 365 eintragen, damit nur Beiträge aus dem letzten Jahr "
79
  "angezeigt werden."
80
 
81
- #: admin.inc.php:196
82
- msgid "Post types to include in results."
 
83
  msgstr "Beitragsarten, die einbezogen werden sollen."
84
 
85
- #: admin.inc.php:205
86
  msgid ""
87
  "These post types will be displayed in the list. Includes custom post types."
88
  msgstr ""
89
  "Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
90
  "benutzerdefinierter Beitragsarten (custom post types)."
91
 
92
- #: admin.inc.php:208
93
- msgid "Find related posts based on content as well as title"
 
94
  msgstr ""
95
  "Finde ähnliche Beiträge basierend auf dem Inhalt als auch auf dem Titel"
96
 
97
- #: admin.inc.php:210
98
  msgid ""
99
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
100
  "or enabling \"Cache output\" above if you enable this."
@@ -103,11 +105,11 @@ msgstr ""
103
  "empfehle ein Caching Plugin oder das Anschalten der Cache Ausgabe, wenn "
104
  "diese Einstellung ausgewählt ist."
105
 
106
- #: admin.inc.php:213
107
  msgid "Limit content to be compared"
108
  msgstr "Begrenze den Inhalt, der verglichen werden soll"
109
 
110
- #: admin.inc.php:215
111
  msgid ""
112
  "This sets the maximum words of the content that will be matched. 0 means no "
113
  "limit."
@@ -115,66 +117,39 @@ msgstr ""
115
  "Dies setzt die maximale Anzahl an Worten aus dem Inhalt, die benutzt wird. 0 "
116
  "bedeutet keine Begrenzung."
117
 
118
- #: admin.inc.php:218
119
- msgid "List of post or page IDs to exclude from the results: "
120
- msgstr ""
121
- "Liste deine Beitrags- oder Seiten-IDs auf, die aus den Ergebnissen "
122
- "ausgeschlossen werden sollen:"
123
-
124
- #: admin.inc.php:220 admin.inc.php:315
125
- msgid ""
126
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
127
- msgstr ""
128
- "Mit Komma getrennte Liste der IDs von Beiträgen, Seiten oder "
129
- "benutzerdefinierter Beitragsarten (custom post types). Beispiel: 188,320,500"
130
-
131
- #: admin.inc.php:223
132
- msgid "Categories to exclude from the results: "
133
- msgstr "Kategorien, die von den Ergebnissen ausgeschlossen werden sollen:"
134
-
135
- #: admin.inc.php:239
136
- msgid ""
137
- "Comma separated list of category slugs. The field above has an autocomplete "
138
- "so simply start typing in the starting letters and it will prompt you with "
139
- "options"
140
- msgstr ""
141
- "Mit Komma getrennte Liste der Kategorie Slugs. Das obige Feld benutzt "
142
- "Autovervollständigung, beginne einfach zu tippen und du bekommst Kategorien "
143
- "vorgeschlagen."
144
-
145
- #: admin.inc.php:242
146
  msgid "Add related posts to:"
147
  msgstr "Füge ähnliche Beiträge hinzu:"
148
 
149
- #: admin.inc.php:244
150
  msgid "Posts"
151
  msgstr "Beiträge"
152
 
153
- #: admin.inc.php:245
154
  msgid "Pages"
155
  msgstr "Seiten"
156
 
157
- #: admin.inc.php:246
158
  msgid "Home page"
159
  msgstr "Homepage"
160
 
161
- #: admin.inc.php:247
162
  msgid "Feeds"
163
  msgstr "Feeds"
164
 
165
- #: admin.inc.php:248
166
  msgid "Category archives"
167
  msgstr "Kategorie Archive"
168
 
169
- #: admin.inc.php:249
170
  msgid "Tag archives"
171
  msgstr "Schlagwort Archive"
172
 
173
- #: admin.inc.php:250
174
  msgid "Other archives"
175
  msgstr "Andere Archive"
176
 
177
- #: admin.inc.php:251
178
  #, fuzzy
179
  msgid ""
180
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -185,38 +160,42 @@ msgstr ""
185
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> zu deinen "
186
  "Theme-Templates, wo die ähnlichen Beiträge angezeigt werden sollen"
187
 
188
- #: admin.inc.php:254
189
  msgid "Content filter priority:"
190
  msgstr ""
191
 
192
- #: admin.inc.php:257
193
  msgid ""
194
  "A higher number will cause the content above to be processed after other "
195
- "filters. Number below 10 is not recommended"
196
  msgstr ""
197
 
198
- #: admin.inc.php:260
199
- msgid "Add a link to the plugin page as a final item in the list"
200
- msgstr "Füge einen Link zu der Plugin-Seite hinzu als letzten Punkt der Liste"
 
201
 
202
- #: admin.inc.php:262
203
  msgid " <em>Optional</em>"
204
  msgstr "<em>Optional</em>"
205
 
206
- #: admin.inc.php:263
207
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
 
208
  msgstr ""
209
  "Fügt einen nofollow Link zu Homepage von Contextual Related Posts hinzu."
210
 
211
- #: admin.inc.php:270
212
  msgid "Output options"
213
  msgstr "Ausgabe Einstellungen"
214
 
215
- #: admin.inc.php:273
216
  msgid "Title of related posts: "
217
  msgstr "Überschrift der ähnlichen Beiträge:"
218
 
219
- #: admin.inc.php:276
220
  msgid ""
221
  "This is the main heading of the related posts. You can also display the "
222
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
@@ -226,59 +205,117 @@ msgstr ""
226
  "aktuellen Beitragstitel anzeigen lassen mit <code>%postname%</code>. "
227
  "Beispielsweise: <code>Ähnliche Beiträge zu %postname%</code>"
228
 
229
- #: admin.inc.php:279
230
  msgid "When there are no posts, what should be shown?"
231
  msgstr ""
232
  "Wenn keine ähnlichen Beiträge gefunden wurden, was soll angezeigt werden?"
233
 
234
- #: admin.inc.php:283
235
  msgid "Blank Output"
236
  msgstr "Gar nichts"
237
 
238
- #: admin.inc.php:287
239
  msgid "Display:"
240
  msgstr "Zeige an:"
241
 
242
- #: admin.inc.php:291 admin.inc.php:428
243
  msgid "Show post excerpt in list?"
244
  msgstr "Soll ein Auszug in der Liste angezeigt werden?"
245
 
246
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
247
  msgid "Length of excerpt (in words): "
248
  msgstr "Länge des Auszugs (in Worten):"
249
 
250
- #: admin.inc.php:297
251
  msgid "Show post author in list?"
252
  msgstr "Zeige den Autor des Beitrags an in der Liste?"
253
 
 
 
 
 
254
  #: admin.inc.php:300
255
  msgid "Show post date in list?"
256
  msgstr "Zeige das Datum des Beitrags in der Liste an?"
257
 
258
  #: admin.inc.php:303
 
 
 
 
 
 
259
  msgid "Limit post title length (in characters)"
260
  msgstr "Begrenze den Titel des Beitrags (in Zeichen)"
261
 
262
- #: admin.inc.php:306
 
 
 
 
 
 
263
  msgid "Open links in new window"
264
  msgstr "Öffne die Links in einem neuen Fenster"
265
 
266
- #: admin.inc.php:309
267
  msgid "Add nofollow attribute to links in the list"
268
  msgstr "Füge nofollow zu den Links aus der Liste hinzu"
269
 
270
- #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  msgid "Exclude display of related posts on these posts / pages"
272
  msgstr ""
273
  "Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
274
 
275
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
276
  #, fuzzy
277
  msgid "Exclude display of related posts on these post types."
278
  msgstr ""
279
  "Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
280
 
281
- #: admin.inc.php:327
282
  #, fuzzy
283
  msgid ""
284
  "The related posts will not display on any of the above selected post types"
@@ -286,104 +323,113 @@ msgstr ""
286
  "Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
287
  "benutzerdefinierter Beitragsarten (custom post types)."
288
 
289
- #: admin.inc.php:330
290
  msgid "Customize the output:"
291
  msgstr "Passe die Ausgabe an:"
292
 
293
- #: admin.inc.php:332
294
  msgid "HTML to display before the list of posts: "
295
  msgstr "HTML vor der Liste ähnlicher Beiträge:"
296
 
297
- #: admin.inc.php:335
298
  msgid "HTML to display before each list item: "
299
  msgstr "HTML-Code vor jedem Listenelement:"
300
 
301
- #: admin.inc.php:338
302
  msgid "HTML to display after each list item: "
303
  msgstr "HTML-Code nach jedem Listenelement:"
304
 
305
- #: admin.inc.php:341
306
  msgid "HTML to display after the list of posts: "
307
  msgstr "HTML-Code nach der Liste ähnlicher Beiträge:"
308
 
309
- #: admin.inc.php:344
310
  msgid "Post thumbnail options:"
311
  msgstr "Einstellungen der Beitragsvorschaubilder:"
312
 
313
- #: admin.inc.php:346 admin.inc.php:431
314
  msgid "Location of post thumbnail:"
315
  msgstr "Ort der Beitragsvorschaubilder"
316
 
317
- #: admin.inc.php:350 admin.inc.php:435
318
  msgid "Display thumbnails inline with posts, before title"
319
  msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; vor dem Titel"
320
 
321
- #: admin.inc.php:354 admin.inc.php:439
322
  msgid "Display thumbnails inline with posts, after title"
323
  msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; nach dem Titel"
324
 
325
- #: admin.inc.php:358 admin.inc.php:443
326
  msgid "Display only thumbnails, no text"
327
  msgstr "Zeige nur die Vorschaubilder an; keinen Text"
328
 
329
- #: admin.inc.php:362 admin.inc.php:447
330
  msgid "Do not display thumbnails, only text."
331
  msgstr "Zeige keine Vorschaubilder an; nur Text"
332
 
333
- #: admin.inc.php:366 admin.inc.php:451
334
  msgid "Maximum width of the thumbnail: "
335
  msgstr "Maximale Breite der Vorschaubilder:"
336
 
337
- #: admin.inc.php:369 admin.inc.php:454
338
  msgid "Maximum height of the thumbnail: "
339
  msgstr "Maximale Höhe der Vorschaubilder:"
340
 
341
- #: admin.inc.php:372
 
 
 
 
 
 
342
  msgid "Style attributes / Width and Height HTML attributes:"
343
  msgstr "Breite und Höhe mit CSS oder HTML festlegen:"
344
 
345
- #: admin.inc.php:376
346
- msgid ""
347
- "Style attributes are used for width and height. <code>style=\"max-width:"
348
  msgstr ""
349
  "CSS Attribute werden für Breite und Höhe benutzt. <code>style=\"max-width:"
350
 
351
- #: admin.inc.php:380
352
- msgid ""
353
- "HTML width and height attributes are used for width and height. <code>width="
354
- "\""
355
  msgstr "HTML Attribute werden für Breite und Höhe benutzt. <code>width=\""
356
 
357
- #: admin.inc.php:384
358
  msgid "Use timthumb to generate thumbnails? "
359
  msgstr "Benutze timthumb um die Vorschaubilder zu erstellen?"
360
 
361
- #: admin.inc.php:386
 
362
  msgid ""
363
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
364
- "\">timthumb</a> will be used to generate thumbnails"
365
  msgstr ""
366
  "Wenn ausgewählt wird <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
367
  "\">timthumb</a> zur Erstellung der Vorschaubilder benutzt"
368
 
369
- #: admin.inc.php:389
370
- msgid "Quality of thumbnails generated by timthumb"
 
371
  msgstr "Qualität der Vorschaubilder von timthumb"
372
 
373
- #: admin.inc.php:392
 
374
  msgid ""
375
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
376
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
377
  msgstr ""
378
  "Trage einen Wert zwischen 0 und 100 ein. 100 ist die höchste Qualität, "
379
  "bedeutet aber auch die größte Dateigröße. 95 ist der empfohlene Wert. Die "
380
  "Voreinstellung ist 75."
381
 
382
- #: admin.inc.php:395
383
- msgid "Post thumbnail meta field name: "
 
384
  msgstr "Name des benutzerdefiniertes Feld des Vorschaubildes:"
385
 
386
- #: admin.inc.php:397
387
  msgid ""
388
  "The value of this field should contain the image source and is set in the "
389
  "<em>Add New Post</em> screen"
@@ -391,27 +437,22 @@ msgstr ""
391
  "Der Wert dieses Feldes sollte die Bildquelle enthalten. Sie wird unter "
392
  "<em>Neuen Beitrag erstellen</em> gesetzt"
393
 
394
- #: admin.inc.php:400
395
- msgid ""
396
- "If the postmeta is not set, then should the plugin extract the first image "
397
- "from the post?"
398
  msgstr ""
399
- "Wenn die benutzerdefinierten Felder nicht gesetzt wurden, soll das Plugin "
400
- "dann das erste Bild des Beitrags heraussuchen?"
401
 
402
- #: admin.inc.php:402
403
  msgid ""
404
- "This can slow down the loading of your page if the first image in the "
405
- "related posts is large in file-size"
406
  msgstr ""
407
- "Dies kann den Ladevorgang der Seite erhöhen, wenn das erste Bild in dem "
408
- "ähnlichen Beitrag eine große Dateigröße hat"
409
 
410
- #: admin.inc.php:405
411
- msgid "Use default thumbnail? "
 
412
  msgstr "Benutze das Standard-Vorschaubild?"
413
 
414
- #: admin.inc.php:407
415
  msgid ""
416
  "If checked, when no thumbnail is found, show a default one from the URL "
417
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -420,26 +461,28 @@ msgstr ""
420
  "unterhalb geladen. Wenn es nicht ausgewählt ist und kein Vorschaubild "
421
  "gefunden wird, wird kein Vorschaubild angezeigt."
422
 
423
- #: admin.inc.php:410
424
- msgid "Default thumbnail: "
 
425
  msgstr "Standard-Vorschaubild: "
426
 
427
- #: admin.inc.php:413
 
428
  msgid ""
429
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
430
  "then it will check the meta field. If this is not available, then it will "
431
- "show the default image as specified above"
432
  msgstr ""
433
  "Das Plugin wird zuerst prüfen, ob der Beitrag ein Vorschaubild hat. Dann "
434
  "wird es die benutzerdefinierten Felder überprüfen. Wenn auch hier keines "
435
  "eingetragen ist, wird das Standard-Vorschaubild benutzt, das oben definiert "
436
  "wurde"
437
 
438
- #: admin.inc.php:420
439
  msgid "Feed options"
440
  msgstr "Feed Einstellungen"
441
 
442
- #: admin.inc.php:423
443
  msgid ""
444
  "Below options override the related posts settings for your blog feed. These "
445
  "only apply if you have selected to add related posts to Feeds in the General "
@@ -450,33 +493,33 @@ msgstr ""
450
  "allgemeinen Einstellungen ausgewählt hast, dass ähnliche Beiträge auch in "
451
  "den Feeds angezeigt werden sollen. "
452
 
453
- #: admin.inc.php:461
454
  #, fuzzy
455
  msgid "Custom styles"
456
  msgstr "Eigenes CSS"
457
 
458
- #: admin.inc.php:464
459
  msgid "Use default style included in the plugin?"
460
  msgstr ""
461
 
462
- #: admin.inc.php:467
463
  msgid ""
464
  "Contextual Related Posts includes a default style that makes your popular "
465
  "posts list to look pretty. Check the box above if you want to use this."
466
  msgstr ""
467
 
468
- #: admin.inc.php:468
469
  msgid ""
470
  "Enabling this option will automatically turn on the thumbnails and set their "
471
  "width and height to 150px. Disabling this will not turn off thumbnails or "
472
  "change their dimensions."
473
  msgstr ""
474
 
475
- #: admin.inc.php:471
476
  msgid "Custom CSS to add to header:"
477
  msgstr "Eigenes CSS, das im Header-Bereich hinzugefügt werden soll:"
478
 
479
- #: admin.inc.php:475
480
  msgid ""
481
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
482
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
@@ -486,84 +529,94 @@ msgstr ""
486
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
487
  "\">FAQ</a> (en) für benutzbare CSS Klassen an."
488
 
489
- #: admin.inc.php:482
490
  msgid "Save Options"
491
  msgstr "Optionen speichern"
492
 
493
- #: admin.inc.php:483
494
  msgid "Default Options"
495
  msgstr "Standardoptionen"
496
 
497
- #: admin.inc.php:483
498
  msgid "Do you want to set options to Default?"
499
  msgstr "Möchtest du Einstellungen zurücksetzen?"
500
 
501
- #: admin.inc.php:484
502
  msgid "Recreate Index"
503
  msgstr "Erstelle den Index neu"
504
 
505
- #: admin.inc.php:484
506
  msgid "Are you sure you want to recreate the index?"
507
  msgstr "Bist du sicher, den Index neu zu erstellen?"
508
 
509
- #: admin.inc.php:492
510
  msgid "Support the development"
511
  msgstr "Unterstütze die Entwicklung"
512
 
513
- #: admin.inc.php:501
514
- msgid "Enter amount in USD: "
 
 
 
 
 
 
515
  msgstr "Trage einen Betrag in USD ein:"
516
 
517
- #: admin.inc.php:505
518
  msgid "Send your donation to the author of"
519
  msgstr "Schicke dein Geschenk an den Entwickler von"
520
 
521
- #: admin.inc.php:512
522
  msgid "Follow me"
523
  msgstr ""
524
 
525
- #: admin.inc.php:522
526
  #, fuzzy
527
  msgid "Quick links"
528
  msgstr "Quick Links"
529
 
530
- #: admin.inc.php:526
531
  msgid "Contextual Related Posts plugin page"
532
  msgstr "Contextual Related Posts Pluginseite"
533
 
534
- #: admin.inc.php:527
535
- msgid "Other plugins"
536
- msgstr "Andere Plugins"
537
-
538
- #: admin.inc.php:528
539
- msgid "Ajay's blog"
540
- msgstr "Ajay's Blog"
541
-
542
- #: admin.inc.php:529
543
  msgid "FAQ"
544
  msgstr "FAQ"
545
 
546
- #: admin.inc.php:530 contextual-related-posts.php:927
547
  msgid "Support"
548
  msgstr "Support"
549
 
550
- #: admin.inc.php:531
551
  msgid "Reviews"
552
  msgstr "Rezensionen"
553
 
554
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
555
  msgid "Contextual Related Posts"
556
  msgstr "Contextual Related Posts"
557
 
558
- #: admin.inc.php:554 contextual-related-posts.php:372
559
  msgid "Related Posts"
560
  msgstr "Ähnliche Beiträge"
561
 
562
- #: admin.inc.php:658
563
  msgid "plugin settings page"
564
  msgstr "Einstellungen des Plugins"
565
 
566
- #: admin.inc.php:692
567
  msgid ""
568
  "An error occurred clearing the cache. Please contact your site administrator."
569
  "\\n\\nError message:\\n"
@@ -571,86 +624,125 @@ msgstr ""
571
  "Ein Fehler trat beim Löschen des Caches auf. Bitte kontaktiere den "
572
  "Administrator der Seite.\\n\\nError message:\\n"
573
 
574
- #: admin.inc.php:697
575
  msgid " cached row(s) cleared"
576
  msgstr "Die Reihe(n) im Cache wurde(n) gelöscht"
577
 
578
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
579
  msgid " by "
580
  msgstr "von"
581
 
582
- #: contextual-related-posts.php:143
583
  msgid "Powered by"
584
  msgstr "Powered by"
585
 
586
- #: contextual-related-posts.php:371
 
 
 
 
 
587
  msgid "Display Related Posts"
588
  msgstr "Zeige ähnliche Beiträge an"
589
 
590
- #: contextual-related-posts.php:386
591
  msgid "Title"
592
  msgstr "Titel"
593
 
594
- #: contextual-related-posts.php:391
595
  msgid "No. of posts"
596
  msgstr ""
597
 
598
- #: contextual-related-posts.php:396
599
  msgid " Show excerpt?"
600
  msgstr "Zeige einen Textauszug?"
601
 
602
- #: contextual-related-posts.php:401
603
  msgid " Show author?"
604
  msgstr "Zeige den Autor?"
605
 
606
- #: contextual-related-posts.php:406
607
  msgid " Show date?"
608
  msgstr "Zeige das Datum?"
609
 
610
- #: contextual-related-posts.php:410
611
  msgid "Thumbnail options"
612
  msgstr "Optionen des Vorschaubildes"
613
 
614
- #: contextual-related-posts.php:412
615
  msgid "Thumbnails inline, before title"
616
  msgstr "Vorschaubilder inline, vor dem Titel"
617
 
618
- #: contextual-related-posts.php:413
619
  msgid "Thumbnails inline, after title"
620
  msgstr "Vorschaubilder inline, hinter dem Titel"
621
 
622
- #: contextual-related-posts.php:414
623
  msgid "Only thumbnails, no text"
624
  msgstr "Nur Vorschaubilder, kein Text"
625
 
626
- #: contextual-related-posts.php:415
627
  msgid "No thumbnails, only text."
628
  msgstr "Keine Vorschaubilder, nur Text"
629
 
630
- #: contextual-related-posts.php:420
631
  msgid "Thumbnail height"
632
  msgstr "Höhe des Vorschaubildes"
633
 
634
- #: contextual-related-posts.php:425
635
  msgid "Thumbnail width"
636
  msgstr "Breite des Vorschaubildes"
637
 
638
- #: contextual-related-posts.php:548
639
  msgid "<h3>Related Posts:</h3>"
640
  msgstr "<h3>Ähnliche Beiträge:</h3>"
641
 
642
- #: contextual-related-posts.php:549
643
  msgid "No related posts found"
644
  msgstr "Es wurden keine ähnlichen Beiträge gefunden"
645
 
646
- #: contextual-related-posts.php:907
647
  msgid "Settings"
648
  msgstr "Einstellungen"
649
 
650
- #: contextual-related-posts.php:928
651
  msgid "Donate"
652
  msgstr "Spende"
653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  #~ msgid "Recent developments"
655
  #~ msgstr "Aktuelle Entwicklungen"
656
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: admin.inc.php:141
20
  msgid "Options saved successfully."
21
  msgstr "Optionen erfolgreich gespeichert."
22
 
23
+ #: admin.inc.php:161
24
  msgid "Options set to Default."
25
  msgstr "Optionen auf die Voreinstellungen gesetzt."
26
 
27
+ #: admin.inc.php:177
28
  msgid "Index recreated"
29
  msgstr "Index neu aufgebaut"
30
 
31
+ #: admin.inc.php:189
32
  msgid "General options"
33
  msgstr "Allgemeine Optionen"
34
 
35
+ #: admin.inc.php:192
36
  msgid "Cache output?"
37
  msgstr "Cache Ausgabe?"
38
 
39
+ #: admin.inc.php:194
40
  msgid ""
41
  "Enabling this option will cache the related posts output when the post is "
42
  "visited the first time. The cache is cleaned when you save this page."
45
  "gespeichert, sobald ein Beitrag das erste Mal aufgerufen wird. Der Cache "
46
  "wird geleert, wenn diese Seite gespeichert wird."
47
 
48
+ #: admin.inc.php:195
49
  msgid "Clear cache"
50
  msgstr "Lösche den Cache"
51
 
52
+ #: admin.inc.php:198 admin.inc.php:462
53
  msgid "Number of related posts to display: "
54
  msgstr "Anzahl der ähnlichen Beiträge, die angezeigt werden sollen:"
55
 
56
+ #: admin.inc.php:201
57
  msgid ""
58
  "Maximum number of posts that will be displayed. The actual number may be "
59
  "smaller if less related posts are found."
61
  "Maximale Anzahl an ähnlichen Beiträgen, die angezeigt werden soll. Diese "
62
  "kann auch geringer sein, wenn weniger ähnliche Beiträge gefunden werden."
63
 
64
+ #: admin.inc.php:204
65
  msgid "Related posts should be newer than:"
66
  msgstr "Ähnliche Beiträge sollen neuer sein als:"
67
 
68
+ #: admin.inc.php:206
69
  msgid "days"
70
  msgstr "Tage"
71
 
72
+ #: admin.inc.php:207
73
  msgid ""
74
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
75
  "it to 365 will show related posts from the last year only."
78
  "werden. Zum Beispiel 365 eintragen, damit nur Beiträge aus dem letzten Jahr "
79
  "angezeigt werden."
80
 
81
+ #: admin.inc.php:210
82
+ #, fuzzy
83
+ msgid "Post types to include in results:"
84
  msgstr "Beitragsarten, die einbezogen werden sollen."
85
 
86
+ #: admin.inc.php:221
87
  msgid ""
88
  "These post types will be displayed in the list. Includes custom post types."
89
  msgstr ""
90
  "Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
91
  "benutzerdefinierter Beitragsarten (custom post types)."
92
 
93
+ #: admin.inc.php:224
94
+ #, fuzzy
95
+ msgid "Find related posts based on content as well as title:"
96
  msgstr ""
97
  "Finde ähnliche Beiträge basierend auf dem Inhalt als auch auf dem Titel"
98
 
99
+ #: admin.inc.php:226
100
  msgid ""
101
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
102
  "or enabling \"Cache output\" above if you enable this."
105
  "empfehle ein Caching Plugin oder das Anschalten der Cache Ausgabe, wenn "
106
  "diese Einstellung ausgewählt ist."
107
 
108
+ #: admin.inc.php:229
109
  msgid "Limit content to be compared"
110
  msgstr "Begrenze den Inhalt, der verglichen werden soll"
111
 
112
+ #: admin.inc.php:231
113
  msgid ""
114
  "This sets the maximum words of the content that will be matched. 0 means no "
115
  "limit."
117
  "Dies setzt die maximale Anzahl an Worten aus dem Inhalt, die benutzt wird. 0 "
118
  "bedeutet keine Begrenzung."
119
 
120
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  msgid "Add related posts to:"
122
  msgstr "Füge ähnliche Beiträge hinzu:"
123
 
124
+ #: admin.inc.php:236
125
  msgid "Posts"
126
  msgstr "Beiträge"
127
 
128
+ #: admin.inc.php:237
129
  msgid "Pages"
130
  msgstr "Seiten"
131
 
132
+ #: admin.inc.php:238
133
  msgid "Home page"
134
  msgstr "Homepage"
135
 
136
+ #: admin.inc.php:239
137
  msgid "Feeds"
138
  msgstr "Feeds"
139
 
140
+ #: admin.inc.php:240
141
  msgid "Category archives"
142
  msgstr "Kategorie Archive"
143
 
144
+ #: admin.inc.php:241
145
  msgid "Tag archives"
146
  msgstr "Schlagwort Archive"
147
 
148
+ #: admin.inc.php:242
149
  msgid "Other archives"
150
  msgstr "Andere Archive"
151
 
152
+ #: admin.inc.php:243
153
  #, fuzzy
154
  msgid ""
155
  "If you choose to disable this, please add <code>&lt;?php if "
160
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> zu deinen "
161
  "Theme-Templates, wo die ähnlichen Beiträge angezeigt werden sollen"
162
 
163
+ #: admin.inc.php:246
164
  msgid "Content filter priority:"
165
  msgstr ""
166
 
167
+ #: admin.inc.php:249
168
  msgid ""
169
  "A higher number will cause the content above to be processed after other "
170
+ "filters. Number below 10 is not recommended."
171
  msgstr ""
172
 
173
+ #: admin.inc.php:252
174
+ #, fuzzy
175
+ msgid "Tell the world you're using Contextual Related Posts:"
176
+ msgstr "Contextual Related Posts"
177
 
178
+ #: admin.inc.php:254
179
  msgid " <em>Optional</em>"
180
  msgstr "<em>Optional</em>"
181
 
182
+ #: admin.inc.php:255
183
+ #, fuzzy
184
+ msgid ""
185
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
186
+ "in the list."
187
  msgstr ""
188
  "Fügt einen nofollow Link zu Homepage von Contextual Related Posts hinzu."
189
 
190
+ #: admin.inc.php:262
191
  msgid "Output options"
192
  msgstr "Ausgabe Einstellungen"
193
 
194
+ #: admin.inc.php:265
195
  msgid "Title of related posts: "
196
  msgstr "Überschrift der ähnlichen Beiträge:"
197
 
198
+ #: admin.inc.php:268
199
  msgid ""
200
  "This is the main heading of the related posts. You can also display the "
201
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
205
  "aktuellen Beitragstitel anzeigen lassen mit <code>%postname%</code>. "
206
  "Beispielsweise: <code>Ähnliche Beiträge zu %postname%</code>"
207
 
208
+ #: admin.inc.php:271
209
  msgid "When there are no posts, what should be shown?"
210
  msgstr ""
211
  "Wenn keine ähnlichen Beiträge gefunden wurden, was soll angezeigt werden?"
212
 
213
+ #: admin.inc.php:275
214
  msgid "Blank Output"
215
  msgstr "Gar nichts"
216
 
217
+ #: admin.inc.php:279
218
  msgid "Display:"
219
  msgstr "Zeige an:"
220
 
221
+ #: admin.inc.php:283 admin.inc.php:465
222
  msgid "Show post excerpt in list?"
223
  msgstr "Soll ein Auszug in der Liste angezeigt werden?"
224
 
225
+ #: admin.inc.php:286
226
+ #, php-format
227
+ msgid ""
228
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
229
+ "to a post (in the post editor's optional excerpt field), it will display an "
230
+ "automatic excerpt which refers to the first %d words of the post's content"
231
+ msgstr ""
232
+
233
+ #: admin.inc.php:289
234
  msgid "Length of excerpt (in words): "
235
  msgstr "Länge des Auszugs (in Worten):"
236
 
237
+ #: admin.inc.php:294
238
  msgid "Show post author in list?"
239
  msgstr "Zeige den Autor des Beitrags an in der Liste?"
240
 
241
+ #: admin.inc.php:297
242
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
243
+ msgstr ""
244
+
245
  #: admin.inc.php:300
246
  msgid "Show post date in list?"
247
  msgstr "Zeige das Datum des Beitrags in der Liste an?"
248
 
249
  #: admin.inc.php:303
250
+ msgid ""
251
+ "Displays the date of the post. Uses the same date format set in General "
252
+ "Options"
253
+ msgstr ""
254
+
255
+ #: admin.inc.php:306
256
  msgid "Limit post title length (in characters)"
257
  msgstr "Begrenze den Titel des Beitrags (in Zeichen)"
258
 
259
+ #: admin.inc.php:309
260
+ msgid ""
261
+ "Any title longer than the number of characters set above will be cut and "
262
+ "appended with a &helip;"
263
+ msgstr ""
264
+
265
+ #: admin.inc.php:312
266
  msgid "Open links in new window"
267
  msgstr "Öffne die Links in einem neuen Fenster"
268
 
269
+ #: admin.inc.php:315
270
  msgid "Add nofollow attribute to links in the list"
271
  msgstr "Füge nofollow zu den Links aus der Liste hinzu"
272
 
273
+ #: admin.inc.php:318
274
+ #, fuzzy
275
+ msgid "Exclusion settings:"
276
+ msgstr "Einstellungen des Plugins"
277
+
278
+ #: admin.inc.php:320
279
+ #, fuzzy
280
+ msgid "List of post or page IDs to exclude from the results:"
281
+ msgstr ""
282
+ "Liste deine Beitrags- oder Seiten-IDs auf, die aus den Ergebnissen "
283
+ "ausgeschlossen werden sollen:"
284
+
285
+ #: admin.inc.php:322 admin.inc.php:328
286
+ msgid ""
287
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
288
+ msgstr ""
289
+ "Mit Komma getrennte Liste der IDs von Beiträgen, Seiten oder "
290
+ "benutzerdefinierter Beitragsarten (custom post types). Beispiel: 188,320,500"
291
+
292
+ #: admin.inc.php:325
293
  msgid "Exclude display of related posts on these posts / pages"
294
  msgstr ""
295
  "Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
296
 
297
+ #: admin.inc.php:331
298
+ msgid "Categories to exclude from the results: "
299
+ msgstr "Kategorien, die von den Ergebnissen ausgeschlossen werden sollen:"
300
+
301
+ #: admin.inc.php:347
302
+ #, fuzzy
303
+ msgid ""
304
+ "Comma separated list of category slugs. The field above has an autocomplete "
305
+ "so simply start typing in the beginning of your category name and it will "
306
+ "prompt you with options."
307
+ msgstr ""
308
+ "Mit Komma getrennte Liste der Kategorie Slugs. Das obige Feld benutzt "
309
+ "Autovervollständigung, beginne einfach zu tippen und du bekommst Kategorien "
310
+ "vorgeschlagen."
311
+
312
+ #: admin.inc.php:350
313
  #, fuzzy
314
  msgid "Exclude display of related posts on these post types."
315
  msgstr ""
316
  "Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
317
 
318
+ #: admin.inc.php:359
319
  #, fuzzy
320
  msgid ""
321
  "The related posts will not display on any of the above selected post types"
323
  "Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
324
  "benutzerdefinierter Beitragsarten (custom post types)."
325
 
326
+ #: admin.inc.php:362
327
  msgid "Customize the output:"
328
  msgstr "Passe die Ausgabe an:"
329
 
330
+ #: admin.inc.php:364
331
  msgid "HTML to display before the list of posts: "
332
  msgstr "HTML vor der Liste ähnlicher Beiträge:"
333
 
334
+ #: admin.inc.php:367
335
  msgid "HTML to display before each list item: "
336
  msgstr "HTML-Code vor jedem Listenelement:"
337
 
338
+ #: admin.inc.php:370
339
  msgid "HTML to display after each list item: "
340
  msgstr "HTML-Code nach jedem Listenelement:"
341
 
342
+ #: admin.inc.php:373
343
  msgid "HTML to display after the list of posts: "
344
  msgstr "HTML-Code nach der Liste ähnlicher Beiträge:"
345
 
346
+ #: admin.inc.php:376
347
  msgid "Post thumbnail options:"
348
  msgstr "Einstellungen der Beitragsvorschaubilder:"
349
 
350
+ #: admin.inc.php:378 admin.inc.php:468
351
  msgid "Location of post thumbnail:"
352
  msgstr "Ort der Beitragsvorschaubilder"
353
 
354
+ #: admin.inc.php:382 admin.inc.php:472
355
  msgid "Display thumbnails inline with posts, before title"
356
  msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; vor dem Titel"
357
 
358
+ #: admin.inc.php:386 admin.inc.php:476
359
  msgid "Display thumbnails inline with posts, after title"
360
  msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; nach dem Titel"
361
 
362
+ #: admin.inc.php:390 admin.inc.php:480
363
  msgid "Display only thumbnails, no text"
364
  msgstr "Zeige nur die Vorschaubilder an; keinen Text"
365
 
366
+ #: admin.inc.php:394 admin.inc.php:484
367
  msgid "Do not display thumbnails, only text."
368
  msgstr "Zeige keine Vorschaubilder an; nur Text"
369
 
370
+ #: admin.inc.php:398 admin.inc.php:488
371
  msgid "Maximum width of the thumbnail: "
372
  msgstr "Maximale Breite der Vorschaubilder:"
373
 
374
+ #: admin.inc.php:401 admin.inc.php:491
375
  msgid "Maximum height of the thumbnail: "
376
  msgstr "Maximale Höhe der Vorschaubilder:"
377
 
378
+ #: admin.inc.php:405
379
+ msgid ""
380
+ "Since you're using the default styles set under the Custom Styles section, "
381
+ "the width and height is fixed at 150px"
382
+ msgstr ""
383
+
384
+ #: admin.inc.php:409
385
  msgid "Style attributes / Width and Height HTML attributes:"
386
  msgstr "Breite und Höhe mit CSS oder HTML festlegen:"
387
 
388
+ #: admin.inc.php:413
389
+ #, fuzzy
390
+ msgid "Style attributes are used for width and height."
391
  msgstr ""
392
  "CSS Attribute werden für Breite und Höhe benutzt. <code>style=\"max-width:"
393
 
394
+ #: admin.inc.php:417
395
+ #, fuzzy
396
+ msgid "HTML width and height attributes are used for width and height."
 
397
  msgstr "HTML Attribute werden für Breite und Höhe benutzt. <code>width=\""
398
 
399
+ #: admin.inc.php:421
400
  msgid "Use timthumb to generate thumbnails? "
401
  msgstr "Benutze timthumb um die Vorschaubilder zu erstellen?"
402
 
403
+ #: admin.inc.php:423
404
+ #, fuzzy
405
  msgid ""
406
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
407
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
408
  msgstr ""
409
  "Wenn ausgewählt wird <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
410
  "\">timthumb</a> zur Erstellung der Vorschaubilder benutzt"
411
 
412
+ #: admin.inc.php:426
413
+ #, fuzzy
414
+ msgid "Quality of thumbnails generated by timthumb:"
415
  msgstr "Qualität der Vorschaubilder von timthumb"
416
 
417
+ #: admin.inc.php:429
418
+ #, fuzzy
419
  msgid ""
420
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
421
+ "file size. Suggested maximum value is 95. CRP default is 75."
422
  msgstr ""
423
  "Trage einen Wert zwischen 0 und 100 ein. 100 ist die höchste Qualität, "
424
  "bedeutet aber auch die größte Dateigröße. 95 ist der empfohlene Wert. Die "
425
  "Voreinstellung ist 75."
426
 
427
+ #: admin.inc.php:432
428
+ #, fuzzy
429
+ msgid "Post thumbnail meta field name:"
430
  msgstr "Name des benutzerdefiniertes Feld des Vorschaubildes:"
431
 
432
+ #: admin.inc.php:434
433
  msgid ""
434
  "The value of this field should contain the image source and is set in the "
435
  "<em>Add New Post</em> screen"
437
  "Der Wert dieses Feldes sollte die Bildquelle enthalten. Sie wird unter "
438
  "<em>Neuen Beitrag erstellen</em> gesetzt"
439
 
440
+ #: admin.inc.php:437
441
+ msgid "Extract the first image from the post?"
 
 
442
  msgstr ""
 
 
443
 
444
+ #: admin.inc.php:439
445
  msgid ""
446
+ "This will only happen if there is no post thumbnail set and no image URL is "
447
+ "specified in the meta field."
448
  msgstr ""
 
 
449
 
450
+ #: admin.inc.php:442
451
+ #, fuzzy
452
+ msgid "Use default thumbnail?"
453
  msgstr "Benutze das Standard-Vorschaubild?"
454
 
455
+ #: admin.inc.php:444
456
  msgid ""
457
  "If checked, when no thumbnail is found, show a default one from the URL "
458
  "below. If not checked and no thumbnail is found, no image will be shown."
461
  "unterhalb geladen. Wenn es nicht ausgewählt ist und kein Vorschaubild "
462
  "gefunden wird, wird kein Vorschaubild angezeigt."
463
 
464
+ #: admin.inc.php:447
465
+ #, fuzzy
466
+ msgid "Default thumbnail:"
467
  msgstr "Standard-Vorschaubild: "
468
 
469
+ #: admin.inc.php:450
470
+ #, fuzzy
471
  msgid ""
472
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
473
  "then it will check the meta field. If this is not available, then it will "
474
+ "show the default image as specified above."
475
  msgstr ""
476
  "Das Plugin wird zuerst prüfen, ob der Beitrag ein Vorschaubild hat. Dann "
477
  "wird es die benutzerdefinierten Felder überprüfen. Wenn auch hier keines "
478
  "eingetragen ist, wird das Standard-Vorschaubild benutzt, das oben definiert "
479
  "wurde"
480
 
481
+ #: admin.inc.php:457
482
  msgid "Feed options"
483
  msgstr "Feed Einstellungen"
484
 
485
+ #: admin.inc.php:460
486
  msgid ""
487
  "Below options override the related posts settings for your blog feed. These "
488
  "only apply if you have selected to add related posts to Feeds in the General "
493
  "allgemeinen Einstellungen ausgewählt hast, dass ähnliche Beiträge auch in "
494
  "den Feeds angezeigt werden sollen. "
495
 
496
+ #: admin.inc.php:498
497
  #, fuzzy
498
  msgid "Custom styles"
499
  msgstr "Eigenes CSS"
500
 
501
+ #: admin.inc.php:501
502
  msgid "Use default style included in the plugin?"
503
  msgstr ""
504
 
505
+ #: admin.inc.php:504
506
  msgid ""
507
  "Contextual Related Posts includes a default style that makes your popular "
508
  "posts list to look pretty. Check the box above if you want to use this."
509
  msgstr ""
510
 
511
+ #: admin.inc.php:505
512
  msgid ""
513
  "Enabling this option will automatically turn on the thumbnails and set their "
514
  "width and height to 150px. Disabling this will not turn off thumbnails or "
515
  "change their dimensions."
516
  msgstr ""
517
 
518
+ #: admin.inc.php:508
519
  msgid "Custom CSS to add to header:"
520
  msgstr "Eigenes CSS, das im Header-Bereich hinzugefügt werden soll:"
521
 
522
+ #: admin.inc.php:512
523
  msgid ""
524
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
525
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
529
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
530
  "\">FAQ</a> (en) für benutzbare CSS Klassen an."
531
 
532
+ #: admin.inc.php:519
533
  msgid "Save Options"
534
  msgstr "Optionen speichern"
535
 
536
+ #: admin.inc.php:520
537
  msgid "Default Options"
538
  msgstr "Standardoptionen"
539
 
540
+ #: admin.inc.php:520
541
  msgid "Do you want to set options to Default?"
542
  msgstr "Möchtest du Einstellungen zurücksetzen?"
543
 
544
+ #: admin.inc.php:521
545
  msgid "Recreate Index"
546
  msgstr "Erstelle den Index neu"
547
 
548
+ #: admin.inc.php:521
549
  msgid "Are you sure you want to recreate the index?"
550
  msgstr "Bist du sicher, den Index neu zu erstellen?"
551
 
552
+ #: admin.inc.php:529
553
  msgid "Support the development"
554
  msgstr "Unterstütze die Entwicklung"
555
 
556
+ #: admin.inc.php:536
557
+ #, fuzzy
558
+ msgid "Donation for Contextual Related Posts"
559
+ msgstr "Contextual Related Posts"
560
+
561
+ #: admin.inc.php:538
562
+ #, fuzzy
563
+ msgid "Enter amount in USD:"
564
  msgstr "Trage einen Betrag in USD ein:"
565
 
566
+ #: admin.inc.php:542
567
  msgid "Send your donation to the author of"
568
  msgstr "Schicke dein Geschenk an den Entwickler von"
569
 
570
+ #: admin.inc.php:549
571
  msgid "Follow me"
572
  msgstr ""
573
 
574
+ #: admin.inc.php:559
575
  #, fuzzy
576
  msgid "Quick links"
577
  msgstr "Quick Links"
578
 
579
+ #: admin.inc.php:563
580
  msgid "Contextual Related Posts plugin page"
581
  msgstr "Contextual Related Posts Pluginseite"
582
 
583
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
584
  msgid "FAQ"
585
  msgstr "FAQ"
586
 
587
+ #: admin.inc.php:565 contextual-related-posts.php:964
588
  msgid "Support"
589
  msgstr "Support"
590
 
591
+ #: admin.inc.php:566
592
  msgid "Reviews"
593
  msgstr "Rezensionen"
594
 
595
+ #: admin.inc.php:567
596
+ msgid "Github repository"
597
+ msgstr ""
598
+
599
+ #: admin.inc.php:568
600
+ msgid "Other plugins"
601
+ msgstr "Andere Plugins"
602
+
603
+ #: admin.inc.php:569
604
+ msgid "Ajay's blog"
605
+ msgstr "Ajay's Blog"
606
+
607
+ #: admin.inc.php:591 admin.inc.php:752
608
  msgid "Contextual Related Posts"
609
  msgstr "Contextual Related Posts"
610
 
611
+ #: admin.inc.php:591
612
  msgid "Related Posts"
613
  msgstr "Ähnliche Beiträge"
614
 
615
+ #: admin.inc.php:694
616
  msgid "plugin settings page"
617
  msgstr "Einstellungen des Plugins"
618
 
619
+ #: admin.inc.php:728
620
  msgid ""
621
  "An error occurred clearing the cache. Please contact your site administrator."
622
  "\\n\\nError message:\\n"
624
  "Ein Fehler trat beim Löschen des Caches auf. Bitte kontaktiere den "
625
  "Administrator der Seite.\\n\\nError message:\\n"
626
 
627
+ #: admin.inc.php:733
628
  msgid " cached row(s) cleared"
629
  msgstr "Die Reihe(n) im Cache wurde(n) gelöscht"
630
 
631
+ #: admin.inc.php:779
632
+ #, fuzzy
633
+ msgid "Location of thumbnail:"
634
+ msgstr "Ort der Beitragsvorschaubilder"
635
+
636
+ #: admin.inc.php:781
637
+ msgid ""
638
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
639
+ "image will be used for the post. It will be resized to the thumbnail size "
640
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
641
+ msgstr ""
642
+
643
+ #: admin.inc.php:782
644
+ msgid "The URL above is saved in the meta field: "
645
+ msgstr ""
646
+
647
+ #: contextual-related-posts.php:127
648
  msgid " by "
649
  msgstr "von"
650
 
651
+ #: contextual-related-posts.php:142
652
  msgid "Powered by"
653
  msgstr "Powered by"
654
 
655
+ #: contextual-related-posts.php:376
656
+ #, fuzzy
657
+ msgid "Related Posts [CRP]"
658
+ msgstr "Ähnliche Beiträge"
659
+
660
+ #: contextual-related-posts.php:377
661
  msgid "Display Related Posts"
662
  msgstr "Zeige ähnliche Beiträge an"
663
 
664
+ #: contextual-related-posts.php:400
665
  msgid "Title"
666
  msgstr "Titel"
667
 
668
+ #: contextual-related-posts.php:405
669
  msgid "No. of posts"
670
  msgstr ""
671
 
672
+ #: contextual-related-posts.php:410
673
  msgid " Show excerpt?"
674
  msgstr "Zeige einen Textauszug?"
675
 
676
+ #: contextual-related-posts.php:415
677
  msgid " Show author?"
678
  msgstr "Zeige den Autor?"
679
 
680
+ #: contextual-related-posts.php:420
681
  msgid " Show date?"
682
  msgstr "Zeige das Datum?"
683
 
684
+ #: contextual-related-posts.php:424
685
  msgid "Thumbnail options"
686
  msgstr "Optionen des Vorschaubildes"
687
 
688
+ #: contextual-related-posts.php:426
689
  msgid "Thumbnails inline, before title"
690
  msgstr "Vorschaubilder inline, vor dem Titel"
691
 
692
+ #: contextual-related-posts.php:427
693
  msgid "Thumbnails inline, after title"
694
  msgstr "Vorschaubilder inline, hinter dem Titel"
695
 
696
+ #: contextual-related-posts.php:428
697
  msgid "Only thumbnails, no text"
698
  msgstr "Nur Vorschaubilder, kein Text"
699
 
700
+ #: contextual-related-posts.php:429
701
  msgid "No thumbnails, only text."
702
  msgstr "Keine Vorschaubilder, nur Text"
703
 
704
+ #: contextual-related-posts.php:434
705
  msgid "Thumbnail height"
706
  msgstr "Höhe des Vorschaubildes"
707
 
708
+ #: contextual-related-posts.php:439
709
  msgid "Thumbnail width"
710
  msgstr "Breite des Vorschaubildes"
711
 
712
+ #: contextual-related-posts.php:581
713
  msgid "<h3>Related Posts:</h3>"
714
  msgstr "<h3>Ähnliche Beiträge:</h3>"
715
 
716
+ #: contextual-related-posts.php:582
717
  msgid "No related posts found"
718
  msgstr "Es wurden keine ähnlichen Beiträge gefunden"
719
 
720
+ #: contextual-related-posts.php:944
721
  msgid "Settings"
722
  msgstr "Einstellungen"
723
 
724
+ #: contextual-related-posts.php:965
725
  msgid "Donate"
726
  msgstr "Spende"
727
 
728
+ #~ msgid "Add a link to the plugin page as a final item in the list"
729
+ #~ msgstr ""
730
+ #~ "Füge einen Link zu der Plugin-Seite hinzu als letzten Punkt der Liste"
731
+
732
+ #~ msgid ""
733
+ #~ "If the postmeta is not set, then should the plugin extract the first "
734
+ #~ "image from the post?"
735
+ #~ msgstr ""
736
+ #~ "Wenn die benutzerdefinierten Felder nicht gesetzt wurden, soll das Plugin "
737
+ #~ "dann das erste Bild des Beitrags heraussuchen?"
738
+
739
+ #~ msgid ""
740
+ #~ "This can slow down the loading of your page if the first image in the "
741
+ #~ "related posts is large in file-size"
742
+ #~ msgstr ""
743
+ #~ "Dies kann den Ladevorgang der Seite erhöhen, wenn das erste Bild in dem "
744
+ #~ "ähnlichen Beitrag eine große Dateigröße hat"
745
+
746
  #~ msgid "Recent developments"
747
  #~ msgstr "Aktuelle Entwicklungen"
748
 
languages/crp-en_US.mo CHANGED
Binary file
languages/crp-en_US.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23: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"
@@ -15,569 +15,627 @@ msgstr ""
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:127
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin.inc.php:147
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:163
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin.inc.php:175
31
  msgid "General options"
32
  msgstr ""
33
 
34
- #: admin.inc.php:178
35
  msgid "Cache output?"
36
  msgstr ""
37
 
38
- #: admin.inc.php:180
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
42
  msgstr ""
43
 
44
- #: admin.inc.php:181
45
  msgid "Clear cache"
46
  msgstr ""
47
 
48
- #: admin.inc.php:184 admin.inc.php:425
49
  msgid "Number of related posts to display: "
50
  msgstr ""
51
 
52
- #: admin.inc.php:187
53
  msgid ""
54
  "Maximum number of posts that will be displayed. The actual number may be "
55
  "smaller if less related posts are found."
56
  msgstr ""
57
 
58
- #: admin.inc.php:190
59
  msgid "Related posts should be newer than:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:192
63
  msgid "days"
64
  msgstr ""
65
 
66
- #: admin.inc.php:193
67
  msgid ""
68
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
69
  "it to 365 will show related posts from the last year only."
70
  msgstr ""
71
 
72
- #: admin.inc.php:196
73
- msgid "Post types to include in results."
74
  msgstr ""
75
 
76
- #: admin.inc.php:205
77
  msgid ""
78
  "These post types will be displayed in the list. Includes custom post types."
79
  msgstr ""
80
 
81
- #: admin.inc.php:208
82
- msgid "Find related posts based on content as well as title"
83
  msgstr ""
84
 
85
- #: admin.inc.php:210
86
  msgid ""
87
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
88
  "or enabling \"Cache output\" above if you enable this."
89
  msgstr ""
90
 
91
- #: admin.inc.php:213
92
  msgid "Limit content to be compared"
93
  msgstr ""
94
 
95
- #: admin.inc.php:215
96
  msgid ""
97
  "This sets the maximum words of the content that will be matched. 0 means no "
98
  "limit."
99
  msgstr ""
100
 
101
- #: admin.inc.php:218
102
- msgid "List of post or page IDs to exclude from the results: "
103
- msgstr ""
104
-
105
- #: admin.inc.php:220 admin.inc.php:315
106
- msgid ""
107
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
108
- msgstr ""
109
-
110
- #: admin.inc.php:223
111
- msgid "Categories to exclude from the results: "
112
- msgstr ""
113
-
114
- #: admin.inc.php:239
115
- msgid ""
116
- "Comma separated list of category slugs. The field above has an autocomplete "
117
- "so simply start typing in the starting letters and it will prompt you with "
118
- "options"
119
- msgstr ""
120
-
121
- #: admin.inc.php:242
122
  msgid "Add related posts to:"
123
  msgstr ""
124
 
125
- #: admin.inc.php:244
126
  msgid "Posts"
127
  msgstr ""
128
 
129
- #: admin.inc.php:245
130
  msgid "Pages"
131
  msgstr ""
132
 
133
- #: admin.inc.php:246
134
  msgid "Home page"
135
  msgstr ""
136
 
137
- #: admin.inc.php:247
138
  msgid "Feeds"
139
  msgstr ""
140
 
141
- #: admin.inc.php:248
142
  msgid "Category archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:249
146
  msgid "Tag archives"
147
  msgstr ""
148
 
149
- #: admin.inc.php:250
150
  msgid "Other archives"
151
  msgstr ""
152
 
153
- #: admin.inc.php:251
154
  msgid ""
155
  "If you choose to disable this, please add <code>&lt;?php if "
156
  "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
157
  "template file where you want it displayed"
158
  msgstr ""
159
 
160
- #: admin.inc.php:254
161
  msgid "Content filter priority:"
162
  msgstr ""
163
 
164
- #: admin.inc.php:257
165
  msgid ""
166
  "A higher number will cause the content above to be processed after other "
167
- "filters. Number below 10 is not recommended"
168
  msgstr ""
169
 
170
- #: admin.inc.php:260
171
- msgid "Add a link to the plugin page as a final item in the list"
172
  msgstr ""
173
 
174
- #: admin.inc.php:262
175
  msgid " <em>Optional</em>"
176
  msgstr ""
177
 
178
- #: admin.inc.php:263
179
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
180
  msgstr ""
181
 
182
- #: admin.inc.php:270
183
  msgid "Output options"
184
  msgstr ""
185
 
186
- #: admin.inc.php:273
187
  msgid "Title of related posts: "
188
  msgstr ""
189
 
190
- #: admin.inc.php:276
191
  msgid ""
192
  "This is the main heading of the related posts. You can also display the "
193
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
194
  "Posts to %postname%</code>"
195
  msgstr ""
196
 
197
- #: admin.inc.php:279
198
  msgid "When there are no posts, what should be shown?"
199
  msgstr ""
200
 
201
- #: admin.inc.php:283
202
  msgid "Blank Output"
203
  msgstr ""
204
 
205
- #: admin.inc.php:287
206
  msgid "Display:"
207
  msgstr ""
208
 
209
- #: admin.inc.php:291 admin.inc.php:428
210
  msgid "Show post excerpt in list?"
211
  msgstr ""
212
 
213
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
214
  msgid "Length of excerpt (in words): "
215
  msgstr ""
216
 
217
- #: admin.inc.php:297
218
  msgid "Show post author in list?"
219
  msgstr ""
220
 
 
 
 
 
221
  #: admin.inc.php:300
222
  msgid "Show post date in list?"
223
  msgstr ""
224
 
225
  #: admin.inc.php:303
226
- msgid "Limit post title length (in characters)"
 
 
227
  msgstr ""
228
 
229
  #: admin.inc.php:306
230
- msgid "Open links in new window"
231
  msgstr ""
232
 
233
  #: admin.inc.php:309
234
- msgid "Add nofollow attribute to links in the list"
 
 
235
  msgstr ""
236
 
237
  #: admin.inc.php:312
238
- msgid "Exclude display of related posts on these posts / pages"
 
 
 
 
239
  msgstr ""
240
 
241
  #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "Exclude display of related posts on these post types."
243
  msgstr ""
244
 
245
- #: admin.inc.php:327
246
  msgid ""
247
  "The related posts will not display on any of the above selected post types"
248
  msgstr ""
249
 
250
- #: admin.inc.php:330
251
  msgid "Customize the output:"
252
  msgstr ""
253
 
254
- #: admin.inc.php:332
255
  msgid "HTML to display before the list of posts: "
256
  msgstr ""
257
 
258
- #: admin.inc.php:335
259
  msgid "HTML to display before each list item: "
260
  msgstr ""
261
 
262
- #: admin.inc.php:338
263
  msgid "HTML to display after each list item: "
264
  msgstr ""
265
 
266
- #: admin.inc.php:341
267
  msgid "HTML to display after the list of posts: "
268
  msgstr ""
269
 
270
- #: admin.inc.php:344
271
  msgid "Post thumbnail options:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:346 admin.inc.php:431
275
  msgid "Location of post thumbnail:"
276
  msgstr ""
277
 
278
- #: admin.inc.php:350 admin.inc.php:435
279
  msgid "Display thumbnails inline with posts, before title"
280
  msgstr ""
281
 
282
- #: admin.inc.php:354 admin.inc.php:439
283
  msgid "Display thumbnails inline with posts, after title"
284
  msgstr ""
285
 
286
- #: admin.inc.php:358 admin.inc.php:443
287
  msgid "Display only thumbnails, no text"
288
  msgstr ""
289
 
290
- #: admin.inc.php:362 admin.inc.php:447
291
  msgid "Do not display thumbnails, only text."
292
  msgstr ""
293
 
294
- #: admin.inc.php:366 admin.inc.php:451
295
  msgid "Maximum width of the thumbnail: "
296
  msgstr ""
297
 
298
- #: admin.inc.php:369 admin.inc.php:454
299
  msgid "Maximum height of the thumbnail: "
300
  msgstr ""
301
 
302
- #: admin.inc.php:372
 
 
 
 
 
 
303
  msgid "Style attributes / Width and Height HTML attributes:"
304
  msgstr ""
305
 
306
- #: admin.inc.php:376
307
- msgid ""
308
- "Style attributes are used for width and height. <code>style=\"max-width:"
309
  msgstr ""
310
 
311
- #: admin.inc.php:380
312
- msgid ""
313
- "HTML width and height attributes are used for width and height. <code>width="
314
- "\""
315
  msgstr ""
316
 
317
- #: admin.inc.php:384
318
  msgid "Use timthumb to generate thumbnails? "
319
  msgstr ""
320
 
321
- #: admin.inc.php:386
322
  msgid ""
323
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
324
- "\">timthumb</a> will be used to generate thumbnails"
325
  msgstr ""
326
 
327
- #: admin.inc.php:389
328
- msgid "Quality of thumbnails generated by timthumb"
329
  msgstr ""
330
 
331
- #: admin.inc.php:392
332
  msgid ""
333
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
334
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
335
  msgstr ""
336
 
337
- #: admin.inc.php:395
338
- msgid "Post thumbnail meta field name: "
339
  msgstr ""
340
 
341
- #: admin.inc.php:397
342
  msgid ""
343
  "The value of this field should contain the image source and is set in the "
344
  "<em>Add New Post</em> screen"
345
  msgstr ""
346
 
347
- #: admin.inc.php:400
348
- msgid ""
349
- "If the postmeta is not set, then should the plugin extract the first image "
350
- "from the post?"
351
  msgstr ""
352
 
353
- #: admin.inc.php:402
354
  msgid ""
355
- "This can slow down the loading of your page if the first image in the "
356
- "related posts is large in file-size"
357
  msgstr ""
358
 
359
- #: admin.inc.php:405
360
- msgid "Use default thumbnail? "
361
  msgstr ""
362
 
363
- #: admin.inc.php:407
364
  msgid ""
365
  "If checked, when no thumbnail is found, show a default one from the URL "
366
  "below. If not checked and no thumbnail is found, no image will be shown."
367
  msgstr ""
368
 
369
- #: admin.inc.php:410
370
- msgid "Default thumbnail: "
371
  msgstr ""
372
 
373
- #: admin.inc.php:413
374
  msgid ""
375
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
376
  "then it will check the meta field. If this is not available, then it will "
377
- "show the default image as specified above"
378
  msgstr ""
379
 
380
- #: admin.inc.php:420
381
  msgid "Feed options"
382
  msgstr ""
383
 
384
- #: admin.inc.php:423
385
  msgid ""
386
  "Below options override the related posts settings for your blog feed. These "
387
  "only apply if you have selected to add related posts to Feeds in the General "
388
  "Options tab."
389
  msgstr ""
390
 
391
- #: admin.inc.php:461
392
  msgid "Custom styles"
393
  msgstr ""
394
 
395
- #: admin.inc.php:464
396
  msgid "Use default style included in the plugin?"
397
  msgstr ""
398
 
399
- #: admin.inc.php:467
400
  msgid ""
401
  "Contextual Related Posts includes a default style that makes your popular "
402
  "posts list to look pretty. Check the box above if you want to use this."
403
  msgstr ""
404
 
405
- #: admin.inc.php:468
406
  msgid ""
407
  "Enabling this option will automatically turn on the thumbnails and set their "
408
  "width and height to 150px. Disabling this will not turn off thumbnails or "
409
  "change their dimensions."
410
  msgstr ""
411
 
412
- #: admin.inc.php:471
413
  msgid "Custom CSS to add to header:"
414
  msgstr ""
415
 
416
- #: admin.inc.php:475
417
  msgid ""
418
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
419
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
420
  "\">FAQ</a> for available CSS classes to style."
421
  msgstr ""
422
 
423
- #: admin.inc.php:482
424
  msgid "Save Options"
425
  msgstr ""
426
 
427
- #: admin.inc.php:483
428
  msgid "Default Options"
429
  msgstr ""
430
 
431
- #: admin.inc.php:483
432
  msgid "Do you want to set options to Default?"
433
  msgstr ""
434
 
435
- #: admin.inc.php:484
436
  msgid "Recreate Index"
437
  msgstr ""
438
 
439
- #: admin.inc.php:484
440
  msgid "Are you sure you want to recreate the index?"
441
  msgstr ""
442
 
443
- #: admin.inc.php:492
444
  msgid "Support the development"
445
  msgstr ""
446
 
447
- #: admin.inc.php:501
448
- msgid "Enter amount in USD: "
449
  msgstr ""
450
 
451
- #: admin.inc.php:505
 
 
 
 
452
  msgid "Send your donation to the author of"
453
  msgstr ""
454
 
455
- #: admin.inc.php:512
456
  msgid "Follow me"
457
  msgstr ""
458
 
459
- #: admin.inc.php:522
460
  msgid "Quick links"
461
  msgstr ""
462
 
463
- #: admin.inc.php:526
464
  msgid "Contextual Related Posts plugin page"
465
  msgstr ""
466
 
467
- #: admin.inc.php:527
468
- msgid "Other plugins"
469
  msgstr ""
470
 
471
- #: admin.inc.php:528
472
- msgid "Ajay's blog"
473
  msgstr ""
474
 
475
- #: admin.inc.php:529
476
- msgid "FAQ"
477
  msgstr ""
478
 
479
- #: admin.inc.php:530 contextual-related-posts.php:927
480
- msgid "Support"
481
  msgstr ""
482
 
483
- #: admin.inc.php:531
484
- msgid "Reviews"
 
 
 
 
485
  msgstr ""
486
 
487
- #: admin.inc.php:554
488
  msgid "Contextual Related Posts"
489
  msgstr ""
490
 
491
- #: admin.inc.php:554 contextual-related-posts.php:372
492
  msgid "Related Posts"
493
  msgstr ""
494
 
495
- #: admin.inc.php:658
496
  msgid "plugin settings page"
497
  msgstr ""
498
 
499
- #: admin.inc.php:692
500
  msgid ""
501
  "An error occurred clearing the cache. Please contact your site administrator."
502
  "\\n\\nError message:\\n"
503
  msgstr ""
504
 
505
- #: admin.inc.php:697
506
  msgid " cached row(s) cleared"
507
  msgstr ""
508
 
509
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
  msgid " by "
511
  msgstr ""
512
 
513
- #: contextual-related-posts.php:143
514
  msgid "Powered by"
515
  msgstr ""
516
 
517
- #: contextual-related-posts.php:371
 
 
 
 
518
  msgid "Display Related Posts"
519
  msgstr ""
520
 
521
- #: contextual-related-posts.php:386
522
  msgid "Title"
523
  msgstr ""
524
 
525
- #: contextual-related-posts.php:391
526
  msgid "No. of posts"
527
  msgstr ""
528
 
529
- #: contextual-related-posts.php:396
530
  msgid " Show excerpt?"
531
  msgstr ""
532
 
533
- #: contextual-related-posts.php:401
534
  msgid " Show author?"
535
  msgstr ""
536
 
537
- #: contextual-related-posts.php:406
538
  msgid " Show date?"
539
  msgstr ""
540
 
541
- #: contextual-related-posts.php:410
542
  msgid "Thumbnail options"
543
  msgstr ""
544
 
545
- #: contextual-related-posts.php:412
546
  msgid "Thumbnails inline, before title"
547
  msgstr ""
548
 
549
- #: contextual-related-posts.php:413
550
  msgid "Thumbnails inline, after title"
551
  msgstr ""
552
 
553
- #: contextual-related-posts.php:414
554
  msgid "Only thumbnails, no text"
555
  msgstr ""
556
 
557
- #: contextual-related-posts.php:415
558
  msgid "No thumbnails, only text."
559
  msgstr ""
560
 
561
- #: contextual-related-posts.php:420
562
  msgid "Thumbnail height"
563
  msgstr ""
564
 
565
- #: contextual-related-posts.php:425
566
  msgid "Thumbnail width"
567
  msgstr ""
568
 
569
- #: contextual-related-posts.php:548
570
  msgid "<h3>Related Posts:</h3>"
571
  msgstr ""
572
 
573
- #: contextual-related-posts.php:549
574
  msgid "No related posts found"
575
  msgstr ""
576
 
577
- #: contextual-related-posts.php:907
578
  msgid "Settings"
579
  msgstr ""
580
 
581
- #: contextual-related-posts.php:928
582
  msgid "Donate"
583
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:35-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:141
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:161
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:177
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:189
31
  msgid "General options"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:192
35
  msgid "Cache output?"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:194
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
42
  msgstr ""
43
 
44
+ #: admin.inc.php:195
45
  msgid "Clear cache"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:198 admin.inc.php:462
49
  msgid "Number of related posts to display: "
50
  msgstr ""
51
 
52
+ #: admin.inc.php:201
53
  msgid ""
54
  "Maximum number of posts that will be displayed. The actual number may be "
55
  "smaller if less related posts are found."
56
  msgstr ""
57
 
58
+ #: admin.inc.php:204
59
  msgid "Related posts should be newer than:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:206
63
  msgid "days"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:207
67
  msgid ""
68
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
69
  "it to 365 will show related posts from the last year only."
70
  msgstr ""
71
 
72
+ #: admin.inc.php:210
73
+ msgid "Post types to include in results:"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:221
77
  msgid ""
78
  "These post types will be displayed in the list. Includes custom post types."
79
  msgstr ""
80
 
81
+ #: admin.inc.php:224
82
+ msgid "Find related posts based on content as well as title:"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:226
86
  msgid ""
87
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
88
  "or enabling \"Cache output\" above if you enable this."
89
  msgstr ""
90
 
91
+ #: admin.inc.php:229
92
  msgid "Limit content to be compared"
93
  msgstr ""
94
 
95
+ #: admin.inc.php:231
96
  msgid ""
97
  "This sets the maximum words of the content that will be matched. 0 means no "
98
  "limit."
99
  msgstr ""
100
 
101
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  msgid "Add related posts to:"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:236
106
  msgid "Posts"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:237
110
  msgid "Pages"
111
  msgstr ""
112
 
113
+ #: admin.inc.php:238
114
  msgid "Home page"
115
  msgstr ""
116
 
117
+ #: admin.inc.php:239
118
  msgid "Feeds"
119
  msgstr ""
120
 
121
+ #: admin.inc.php:240
122
  msgid "Category archives"
123
  msgstr ""
124
 
125
+ #: admin.inc.php:241
126
  msgid "Tag archives"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:242
130
  msgid "Other archives"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:243
134
  msgid ""
135
  "If you choose to disable this, please add <code>&lt;?php if "
136
  "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
137
  "template file where you want it displayed"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:246
141
  msgid "Content filter priority:"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:249
145
  msgid ""
146
  "A higher number will cause the content above to be processed after other "
147
+ "filters. Number below 10 is not recommended."
148
  msgstr ""
149
 
150
+ #: admin.inc.php:252
151
+ msgid "Tell the world you're using Contextual Related Posts:"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:254
155
  msgid " <em>Optional</em>"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:255
159
+ msgid ""
160
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
161
+ "in the list."
162
  msgstr ""
163
 
164
+ #: admin.inc.php:262
165
  msgid "Output options"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:265
169
  msgid "Title of related posts: "
170
  msgstr ""
171
 
172
+ #: admin.inc.php:268
173
  msgid ""
174
  "This is the main heading of the related posts. You can also display the "
175
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
176
  "Posts to %postname%</code>"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:271
180
  msgid "When there are no posts, what should be shown?"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:275
184
  msgid "Blank Output"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:279
188
  msgid "Display:"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:283 admin.inc.php:465
192
  msgid "Show post excerpt in list?"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:286
196
+ #, php-format
197
+ msgid ""
198
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
199
+ "to a post (in the post editor's optional excerpt field), it will display an "
200
+ "automatic excerpt which refers to the first %d words of the post's content"
201
+ msgstr ""
202
+
203
+ #: admin.inc.php:289
204
  msgid "Length of excerpt (in words): "
205
  msgstr ""
206
 
207
+ #: admin.inc.php:294
208
  msgid "Show post author in list?"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:297
212
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
213
+ msgstr ""
214
+
215
  #: admin.inc.php:300
216
  msgid "Show post date in list?"
217
  msgstr ""
218
 
219
  #: admin.inc.php:303
220
+ msgid ""
221
+ "Displays the date of the post. Uses the same date format set in General "
222
+ "Options"
223
  msgstr ""
224
 
225
  #: admin.inc.php:306
226
+ msgid "Limit post title length (in characters)"
227
  msgstr ""
228
 
229
  #: admin.inc.php:309
230
+ msgid ""
231
+ "Any title longer than the number of characters set above will be cut and "
232
+ "appended with a &helip;"
233
  msgstr ""
234
 
235
  #: admin.inc.php:312
236
+ msgid "Open links in new window"
237
+ msgstr ""
238
+
239
+ #: admin.inc.php:315
240
+ msgid "Add nofollow attribute to links in the list"
241
  msgstr ""
242
 
243
  #: admin.inc.php:318
244
+ msgid "Exclusion settings:"
245
+ msgstr ""
246
+
247
+ #: admin.inc.php:320
248
+ msgid "List of post or page IDs to exclude from the results:"
249
+ msgstr ""
250
+
251
+ #: admin.inc.php:322 admin.inc.php:328
252
+ msgid ""
253
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
254
+ msgstr ""
255
+
256
+ #: admin.inc.php:325
257
+ msgid "Exclude display of related posts on these posts / pages"
258
+ msgstr ""
259
+
260
+ #: admin.inc.php:331
261
+ msgid "Categories to exclude from the results: "
262
+ msgstr ""
263
+
264
+ #: admin.inc.php:347
265
+ msgid ""
266
+ "Comma separated list of category slugs. The field above has an autocomplete "
267
+ "so simply start typing in the beginning of your category name and it will "
268
+ "prompt you with options."
269
+ msgstr ""
270
+
271
+ #: admin.inc.php:350
272
  msgid "Exclude display of related posts on these post types."
273
  msgstr ""
274
 
275
+ #: admin.inc.php:359
276
  msgid ""
277
  "The related posts will not display on any of the above selected post types"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:362
281
  msgid "Customize the output:"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:364
285
  msgid "HTML to display before the list of posts: "
286
  msgstr ""
287
 
288
+ #: admin.inc.php:367
289
  msgid "HTML to display before each list item: "
290
  msgstr ""
291
 
292
+ #: admin.inc.php:370
293
  msgid "HTML to display after each list item: "
294
  msgstr ""
295
 
296
+ #: admin.inc.php:373
297
  msgid "HTML to display after the list of posts: "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:376
301
  msgid "Post thumbnail options:"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:378 admin.inc.php:468
305
  msgid "Location of post thumbnail:"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:382 admin.inc.php:472
309
  msgid "Display thumbnails inline with posts, before title"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:386 admin.inc.php:476
313
  msgid "Display thumbnails inline with posts, after title"
314
  msgstr ""
315
 
316
+ #: admin.inc.php:390 admin.inc.php:480
317
  msgid "Display only thumbnails, no text"
318
  msgstr ""
319
 
320
+ #: admin.inc.php:394 admin.inc.php:484
321
  msgid "Do not display thumbnails, only text."
322
  msgstr ""
323
 
324
+ #: admin.inc.php:398 admin.inc.php:488
325
  msgid "Maximum width of the thumbnail: "
326
  msgstr ""
327
 
328
+ #: admin.inc.php:401 admin.inc.php:491
329
  msgid "Maximum height of the thumbnail: "
330
  msgstr ""
331
 
332
+ #: admin.inc.php:405
333
+ msgid ""
334
+ "Since you're using the default styles set under the Custom Styles section, "
335
+ "the width and height is fixed at 150px"
336
+ msgstr ""
337
+
338
+ #: admin.inc.php:409
339
  msgid "Style attributes / Width and Height HTML attributes:"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:413
343
+ msgid "Style attributes are used for width and height."
 
344
  msgstr ""
345
 
346
+ #: admin.inc.php:417
347
+ msgid "HTML width and height attributes are used for width and height."
 
 
348
  msgstr ""
349
 
350
+ #: admin.inc.php:421
351
  msgid "Use timthumb to generate thumbnails? "
352
  msgstr ""
353
 
354
+ #: admin.inc.php:423
355
  msgid ""
356
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
357
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:426
361
+ msgid "Quality of thumbnails generated by timthumb:"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:429
365
  msgid ""
366
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
367
+ "file size. Suggested maximum value is 95. CRP default is 75."
368
  msgstr ""
369
 
370
+ #: admin.inc.php:432
371
+ msgid "Post thumbnail meta field name:"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:434
375
  msgid ""
376
  "The value of this field should contain the image source and is set in the "
377
  "<em>Add New Post</em> screen"
378
  msgstr ""
379
 
380
+ #: admin.inc.php:437
381
+ msgid "Extract the first image from the post?"
 
 
382
  msgstr ""
383
 
384
+ #: admin.inc.php:439
385
  msgid ""
386
+ "This will only happen if there is no post thumbnail set and no image URL is "
387
+ "specified in the meta field."
388
  msgstr ""
389
 
390
+ #: admin.inc.php:442
391
+ msgid "Use default thumbnail?"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:444
395
  msgid ""
396
  "If checked, when no thumbnail is found, show a default one from the URL "
397
  "below. If not checked and no thumbnail is found, no image will be shown."
398
  msgstr ""
399
 
400
+ #: admin.inc.php:447
401
+ msgid "Default thumbnail:"
402
  msgstr ""
403
 
404
+ #: admin.inc.php:450
405
  msgid ""
406
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
407
  "then it will check the meta field. If this is not available, then it will "
408
+ "show the default image as specified above."
409
  msgstr ""
410
 
411
+ #: admin.inc.php:457
412
  msgid "Feed options"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:460
416
  msgid ""
417
  "Below options override the related posts settings for your blog feed. These "
418
  "only apply if you have selected to add related posts to Feeds in the General "
419
  "Options tab."
420
  msgstr ""
421
 
422
+ #: admin.inc.php:498
423
  msgid "Custom styles"
424
  msgstr ""
425
 
426
+ #: admin.inc.php:501
427
  msgid "Use default style included in the plugin?"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:504
431
  msgid ""
432
  "Contextual Related Posts includes a default style that makes your popular "
433
  "posts list to look pretty. Check the box above if you want to use this."
434
  msgstr ""
435
 
436
+ #: admin.inc.php:505
437
  msgid ""
438
  "Enabling this option will automatically turn on the thumbnails and set their "
439
  "width and height to 150px. Disabling this will not turn off thumbnails or "
440
  "change their dimensions."
441
  msgstr ""
442
 
443
+ #: admin.inc.php:508
444
  msgid "Custom CSS to add to header:"
445
  msgstr ""
446
 
447
+ #: admin.inc.php:512
448
  msgid ""
449
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
450
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
451
  "\">FAQ</a> for available CSS classes to style."
452
  msgstr ""
453
 
454
+ #: admin.inc.php:519
455
  msgid "Save Options"
456
  msgstr ""
457
 
458
+ #: admin.inc.php:520
459
  msgid "Default Options"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:520
463
  msgid "Do you want to set options to Default?"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:521
467
  msgid "Recreate Index"
468
  msgstr ""
469
 
470
+ #: admin.inc.php:521
471
  msgid "Are you sure you want to recreate the index?"
472
  msgstr ""
473
 
474
+ #: admin.inc.php:529
475
  msgid "Support the development"
476
  msgstr ""
477
 
478
+ #: admin.inc.php:536
479
+ msgid "Donation for Contextual Related Posts"
480
  msgstr ""
481
 
482
+ #: admin.inc.php:538
483
+ msgid "Enter amount in USD:"
484
+ msgstr ""
485
+
486
+ #: admin.inc.php:542
487
  msgid "Send your donation to the author of"
488
  msgstr ""
489
 
490
+ #: admin.inc.php:549
491
  msgid "Follow me"
492
  msgstr ""
493
 
494
+ #: admin.inc.php:559
495
  msgid "Quick links"
496
  msgstr ""
497
 
498
+ #: admin.inc.php:563
499
  msgid "Contextual Related Posts plugin page"
500
  msgstr ""
501
 
502
+ #: admin.inc.php:564
503
+ msgid "FAQ"
504
  msgstr ""
505
 
506
+ #: admin.inc.php:565 contextual-related-posts.php:964
507
+ msgid "Support"
508
  msgstr ""
509
 
510
+ #: admin.inc.php:566
511
+ msgid "Reviews"
512
  msgstr ""
513
 
514
+ #: admin.inc.php:567
515
+ msgid "Github repository"
516
  msgstr ""
517
 
518
+ #: admin.inc.php:568
519
+ msgid "Other plugins"
520
+ msgstr ""
521
+
522
+ #: admin.inc.php:569
523
+ msgid "Ajay's blog"
524
  msgstr ""
525
 
526
+ #: admin.inc.php:591 admin.inc.php:752
527
  msgid "Contextual Related Posts"
528
  msgstr ""
529
 
530
+ #: admin.inc.php:591
531
  msgid "Related Posts"
532
  msgstr ""
533
 
534
+ #: admin.inc.php:694
535
  msgid "plugin settings page"
536
  msgstr ""
537
 
538
+ #: admin.inc.php:728
539
  msgid ""
540
  "An error occurred clearing the cache. Please contact your site administrator."
541
  "\\n\\nError message:\\n"
542
  msgstr ""
543
 
544
+ #: admin.inc.php:733
545
  msgid " cached row(s) cleared"
546
  msgstr ""
547
 
548
+ #: admin.inc.php:779
549
+ msgid "Location of thumbnail:"
550
+ msgstr ""
551
+
552
+ #: admin.inc.php:781
553
+ msgid ""
554
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
555
+ "image will be used for the post. It will be resized to the thumbnail size "
556
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
557
+ msgstr ""
558
+
559
+ #: admin.inc.php:782
560
+ msgid "The URL above is saved in the meta field: "
561
+ msgstr ""
562
+
563
+ #: contextual-related-posts.php:127
564
  msgid " by "
565
  msgstr ""
566
 
567
+ #: contextual-related-posts.php:142
568
  msgid "Powered by"
569
  msgstr ""
570
 
571
+ #: contextual-related-posts.php:376
572
+ msgid "Related Posts [CRP]"
573
+ msgstr ""
574
+
575
+ #: contextual-related-posts.php:377
576
  msgid "Display Related Posts"
577
  msgstr ""
578
 
579
+ #: contextual-related-posts.php:400
580
  msgid "Title"
581
  msgstr ""
582
 
583
+ #: contextual-related-posts.php:405
584
  msgid "No. of posts"
585
  msgstr ""
586
 
587
+ #: contextual-related-posts.php:410
588
  msgid " Show excerpt?"
589
  msgstr ""
590
 
591
+ #: contextual-related-posts.php:415
592
  msgid " Show author?"
593
  msgstr ""
594
 
595
+ #: contextual-related-posts.php:420
596
  msgid " Show date?"
597
  msgstr ""
598
 
599
+ #: contextual-related-posts.php:424
600
  msgid "Thumbnail options"
601
  msgstr ""
602
 
603
+ #: contextual-related-posts.php:426
604
  msgid "Thumbnails inline, before title"
605
  msgstr ""
606
 
607
+ #: contextual-related-posts.php:427
608
  msgid "Thumbnails inline, after title"
609
  msgstr ""
610
 
611
+ #: contextual-related-posts.php:428
612
  msgid "Only thumbnails, no text"
613
  msgstr ""
614
 
615
+ #: contextual-related-posts.php:429
616
  msgid "No thumbnails, only text."
617
  msgstr ""
618
 
619
+ #: contextual-related-posts.php:434
620
  msgid "Thumbnail height"
621
  msgstr ""
622
 
623
+ #: contextual-related-posts.php:439
624
  msgid "Thumbnail width"
625
  msgstr ""
626
 
627
+ #: contextual-related-posts.php:581
628
  msgid "<h3>Related Posts:</h3>"
629
  msgstr ""
630
 
631
+ #: contextual-related-posts.php:582
632
  msgid "No related posts found"
633
  msgstr ""
634
 
635
+ #: contextual-related-posts.php:944
636
  msgid "Settings"
637
  msgstr ""
638
 
639
+ #: contextual-related-posts.php:965
640
  msgid "Donate"
641
  msgstr ""
languages/crp-en_US.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23: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"
@@ -15,569 +15,627 @@ msgstr ""
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:127
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
- #: admin.inc.php:147
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:163
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin.inc.php:175
31
  msgid "General options"
32
  msgstr ""
33
 
34
- #: admin.inc.php:178
35
  msgid "Cache output?"
36
  msgstr ""
37
 
38
- #: admin.inc.php:180
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
42
  msgstr ""
43
 
44
- #: admin.inc.php:181
45
  msgid "Clear cache"
46
  msgstr ""
47
 
48
- #: admin.inc.php:184 admin.inc.php:425
49
  msgid "Number of related posts to display: "
50
  msgstr ""
51
 
52
- #: admin.inc.php:187
53
  msgid ""
54
  "Maximum number of posts that will be displayed. The actual number may be "
55
  "smaller if less related posts are found."
56
  msgstr ""
57
 
58
- #: admin.inc.php:190
59
  msgid "Related posts should be newer than:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:192
63
  msgid "days"
64
  msgstr ""
65
 
66
- #: admin.inc.php:193
67
  msgid ""
68
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
69
  "it to 365 will show related posts from the last year only."
70
  msgstr ""
71
 
72
- #: admin.inc.php:196
73
- msgid "Post types to include in results."
74
  msgstr ""
75
 
76
- #: admin.inc.php:205
77
  msgid ""
78
  "These post types will be displayed in the list. Includes custom post types."
79
  msgstr ""
80
 
81
- #: admin.inc.php:208
82
- msgid "Find related posts based on content as well as title"
83
  msgstr ""
84
 
85
- #: admin.inc.php:210
86
  msgid ""
87
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
88
  "or enabling \"Cache output\" above if you enable this."
89
  msgstr ""
90
 
91
- #: admin.inc.php:213
92
  msgid "Limit content to be compared"
93
  msgstr ""
94
 
95
- #: admin.inc.php:215
96
  msgid ""
97
  "This sets the maximum words of the content that will be matched. 0 means no "
98
  "limit."
99
  msgstr ""
100
 
101
- #: admin.inc.php:218
102
- msgid "List of post or page IDs to exclude from the results: "
103
- msgstr ""
104
-
105
- #: admin.inc.php:220 admin.inc.php:315
106
- msgid ""
107
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
108
- msgstr ""
109
-
110
- #: admin.inc.php:223
111
- msgid "Categories to exclude from the results: "
112
- msgstr ""
113
-
114
- #: admin.inc.php:239
115
- msgid ""
116
- "Comma separated list of category slugs. The field above has an autocomplete "
117
- "so simply start typing in the starting letters and it will prompt you with "
118
- "options"
119
- msgstr ""
120
-
121
- #: admin.inc.php:242
122
  msgid "Add related posts to:"
123
  msgstr ""
124
 
125
- #: admin.inc.php:244
126
  msgid "Posts"
127
  msgstr ""
128
 
129
- #: admin.inc.php:245
130
  msgid "Pages"
131
  msgstr ""
132
 
133
- #: admin.inc.php:246
134
  msgid "Home page"
135
  msgstr ""
136
 
137
- #: admin.inc.php:247
138
  msgid "Feeds"
139
  msgstr ""
140
 
141
- #: admin.inc.php:248
142
  msgid "Category archives"
143
  msgstr ""
144
 
145
- #: admin.inc.php:249
146
  msgid "Tag archives"
147
  msgstr ""
148
 
149
- #: admin.inc.php:250
150
  msgid "Other archives"
151
  msgstr ""
152
 
153
- #: admin.inc.php:251
154
  msgid ""
155
  "If you choose to disable this, please add <code>&lt;?php if "
156
  "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
157
  "template file where you want it displayed"
158
  msgstr ""
159
 
160
- #: admin.inc.php:254
161
  msgid "Content filter priority:"
162
  msgstr ""
163
 
164
- #: admin.inc.php:257
165
  msgid ""
166
  "A higher number will cause the content above to be processed after other "
167
- "filters. Number below 10 is not recommended"
168
  msgstr ""
169
 
170
- #: admin.inc.php:260
171
- msgid "Add a link to the plugin page as a final item in the list"
172
  msgstr ""
173
 
174
- #: admin.inc.php:262
175
  msgid " <em>Optional</em>"
176
  msgstr ""
177
 
178
- #: admin.inc.php:263
179
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
180
  msgstr ""
181
 
182
- #: admin.inc.php:270
183
  msgid "Output options"
184
  msgstr ""
185
 
186
- #: admin.inc.php:273
187
  msgid "Title of related posts: "
188
  msgstr ""
189
 
190
- #: admin.inc.php:276
191
  msgid ""
192
  "This is the main heading of the related posts. You can also display the "
193
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
194
  "Posts to %postname%</code>"
195
  msgstr ""
196
 
197
- #: admin.inc.php:279
198
  msgid "When there are no posts, what should be shown?"
199
  msgstr ""
200
 
201
- #: admin.inc.php:283
202
  msgid "Blank Output"
203
  msgstr ""
204
 
205
- #: admin.inc.php:287
206
  msgid "Display:"
207
  msgstr ""
208
 
209
- #: admin.inc.php:291 admin.inc.php:428
210
  msgid "Show post excerpt in list?"
211
  msgstr ""
212
 
213
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
214
  msgid "Length of excerpt (in words): "
215
  msgstr ""
216
 
217
- #: admin.inc.php:297
218
  msgid "Show post author in list?"
219
  msgstr ""
220
 
 
 
 
 
221
  #: admin.inc.php:300
222
  msgid "Show post date in list?"
223
  msgstr ""
224
 
225
  #: admin.inc.php:303
226
- msgid "Limit post title length (in characters)"
 
 
227
  msgstr ""
228
 
229
  #: admin.inc.php:306
230
- msgid "Open links in new window"
231
  msgstr ""
232
 
233
  #: admin.inc.php:309
234
- msgid "Add nofollow attribute to links in the list"
 
 
235
  msgstr ""
236
 
237
  #: admin.inc.php:312
238
- msgid "Exclude display of related posts on these posts / pages"
 
 
 
 
239
  msgstr ""
240
 
241
  #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "Exclude display of related posts on these post types."
243
  msgstr ""
244
 
245
- #: admin.inc.php:327
246
  msgid ""
247
  "The related posts will not display on any of the above selected post types"
248
  msgstr ""
249
 
250
- #: admin.inc.php:330
251
  msgid "Customize the output:"
252
  msgstr ""
253
 
254
- #: admin.inc.php:332
255
  msgid "HTML to display before the list of posts: "
256
  msgstr ""
257
 
258
- #: admin.inc.php:335
259
  msgid "HTML to display before each list item: "
260
  msgstr ""
261
 
262
- #: admin.inc.php:338
263
  msgid "HTML to display after each list item: "
264
  msgstr ""
265
 
266
- #: admin.inc.php:341
267
  msgid "HTML to display after the list of posts: "
268
  msgstr ""
269
 
270
- #: admin.inc.php:344
271
  msgid "Post thumbnail options:"
272
  msgstr ""
273
 
274
- #: admin.inc.php:346 admin.inc.php:431
275
  msgid "Location of post thumbnail:"
276
  msgstr ""
277
 
278
- #: admin.inc.php:350 admin.inc.php:435
279
  msgid "Display thumbnails inline with posts, before title"
280
  msgstr ""
281
 
282
- #: admin.inc.php:354 admin.inc.php:439
283
  msgid "Display thumbnails inline with posts, after title"
284
  msgstr ""
285
 
286
- #: admin.inc.php:358 admin.inc.php:443
287
  msgid "Display only thumbnails, no text"
288
  msgstr ""
289
 
290
- #: admin.inc.php:362 admin.inc.php:447
291
  msgid "Do not display thumbnails, only text."
292
  msgstr ""
293
 
294
- #: admin.inc.php:366 admin.inc.php:451
295
  msgid "Maximum width of the thumbnail: "
296
  msgstr ""
297
 
298
- #: admin.inc.php:369 admin.inc.php:454
299
  msgid "Maximum height of the thumbnail: "
300
  msgstr ""
301
 
302
- #: admin.inc.php:372
 
 
 
 
 
 
303
  msgid "Style attributes / Width and Height HTML attributes:"
304
  msgstr ""
305
 
306
- #: admin.inc.php:376
307
- msgid ""
308
- "Style attributes are used for width and height. <code>style=\"max-width:"
309
  msgstr ""
310
 
311
- #: admin.inc.php:380
312
- msgid ""
313
- "HTML width and height attributes are used for width and height. <code>width="
314
- "\""
315
  msgstr ""
316
 
317
- #: admin.inc.php:384
318
  msgid "Use timthumb to generate thumbnails? "
319
  msgstr ""
320
 
321
- #: admin.inc.php:386
322
  msgid ""
323
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
324
- "\">timthumb</a> will be used to generate thumbnails"
325
  msgstr ""
326
 
327
- #: admin.inc.php:389
328
- msgid "Quality of thumbnails generated by timthumb"
329
  msgstr ""
330
 
331
- #: admin.inc.php:392
332
  msgid ""
333
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
334
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
335
  msgstr ""
336
 
337
- #: admin.inc.php:395
338
- msgid "Post thumbnail meta field name: "
339
  msgstr ""
340
 
341
- #: admin.inc.php:397
342
  msgid ""
343
  "The value of this field should contain the image source and is set in the "
344
  "<em>Add New Post</em> screen"
345
  msgstr ""
346
 
347
- #: admin.inc.php:400
348
- msgid ""
349
- "If the postmeta is not set, then should the plugin extract the first image "
350
- "from the post?"
351
  msgstr ""
352
 
353
- #: admin.inc.php:402
354
  msgid ""
355
- "This can slow down the loading of your page if the first image in the "
356
- "related posts is large in file-size"
357
  msgstr ""
358
 
359
- #: admin.inc.php:405
360
- msgid "Use default thumbnail? "
361
  msgstr ""
362
 
363
- #: admin.inc.php:407
364
  msgid ""
365
  "If checked, when no thumbnail is found, show a default one from the URL "
366
  "below. If not checked and no thumbnail is found, no image will be shown."
367
  msgstr ""
368
 
369
- #: admin.inc.php:410
370
- msgid "Default thumbnail: "
371
  msgstr ""
372
 
373
- #: admin.inc.php:413
374
  msgid ""
375
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
376
  "then it will check the meta field. If this is not available, then it will "
377
- "show the default image as specified above"
378
  msgstr ""
379
 
380
- #: admin.inc.php:420
381
  msgid "Feed options"
382
  msgstr ""
383
 
384
- #: admin.inc.php:423
385
  msgid ""
386
  "Below options override the related posts settings for your blog feed. These "
387
  "only apply if you have selected to add related posts to Feeds in the General "
388
  "Options tab."
389
  msgstr ""
390
 
391
- #: admin.inc.php:461
392
  msgid "Custom styles"
393
  msgstr ""
394
 
395
- #: admin.inc.php:464
396
  msgid "Use default style included in the plugin?"
397
  msgstr ""
398
 
399
- #: admin.inc.php:467
400
  msgid ""
401
  "Contextual Related Posts includes a default style that makes your popular "
402
  "posts list to look pretty. Check the box above if you want to use this."
403
  msgstr ""
404
 
405
- #: admin.inc.php:468
406
  msgid ""
407
  "Enabling this option will automatically turn on the thumbnails and set their "
408
  "width and height to 150px. Disabling this will not turn off thumbnails or "
409
  "change their dimensions."
410
  msgstr ""
411
 
412
- #: admin.inc.php:471
413
  msgid "Custom CSS to add to header:"
414
  msgstr ""
415
 
416
- #: admin.inc.php:475
417
  msgid ""
418
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
419
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
420
  "\">FAQ</a> for available CSS classes to style."
421
  msgstr ""
422
 
423
- #: admin.inc.php:482
424
  msgid "Save Options"
425
  msgstr ""
426
 
427
- #: admin.inc.php:483
428
  msgid "Default Options"
429
  msgstr ""
430
 
431
- #: admin.inc.php:483
432
  msgid "Do you want to set options to Default?"
433
  msgstr ""
434
 
435
- #: admin.inc.php:484
436
  msgid "Recreate Index"
437
  msgstr ""
438
 
439
- #: admin.inc.php:484
440
  msgid "Are you sure you want to recreate the index?"
441
  msgstr ""
442
 
443
- #: admin.inc.php:492
444
  msgid "Support the development"
445
  msgstr ""
446
 
447
- #: admin.inc.php:501
448
- msgid "Enter amount in USD: "
449
  msgstr ""
450
 
451
- #: admin.inc.php:505
 
 
 
 
452
  msgid "Send your donation to the author of"
453
  msgstr ""
454
 
455
- #: admin.inc.php:512
456
  msgid "Follow me"
457
  msgstr ""
458
 
459
- #: admin.inc.php:522
460
  msgid "Quick links"
461
  msgstr ""
462
 
463
- #: admin.inc.php:526
464
  msgid "Contextual Related Posts plugin page"
465
  msgstr ""
466
 
467
- #: admin.inc.php:527
468
- msgid "Other plugins"
469
  msgstr ""
470
 
471
- #: admin.inc.php:528
472
- msgid "Ajay's blog"
473
  msgstr ""
474
 
475
- #: admin.inc.php:529
476
- msgid "FAQ"
477
  msgstr ""
478
 
479
- #: admin.inc.php:530 contextual-related-posts.php:927
480
- msgid "Support"
481
  msgstr ""
482
 
483
- #: admin.inc.php:531
484
- msgid "Reviews"
 
 
 
 
485
  msgstr ""
486
 
487
- #: admin.inc.php:554
488
  msgid "Contextual Related Posts"
489
  msgstr ""
490
 
491
- #: admin.inc.php:554 contextual-related-posts.php:372
492
  msgid "Related Posts"
493
  msgstr ""
494
 
495
- #: admin.inc.php:658
496
  msgid "plugin settings page"
497
  msgstr ""
498
 
499
- #: admin.inc.php:692
500
  msgid ""
501
  "An error occurred clearing the cache. Please contact your site administrator."
502
  "\\n\\nError message:\\n"
503
  msgstr ""
504
 
505
- #: admin.inc.php:697
506
  msgid " cached row(s) cleared"
507
  msgstr ""
508
 
509
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
  msgid " by "
511
  msgstr ""
512
 
513
- #: contextual-related-posts.php:143
514
  msgid "Powered by"
515
  msgstr ""
516
 
517
- #: contextual-related-posts.php:371
 
 
 
 
518
  msgid "Display Related Posts"
519
  msgstr ""
520
 
521
- #: contextual-related-posts.php:386
522
  msgid "Title"
523
  msgstr ""
524
 
525
- #: contextual-related-posts.php:391
526
  msgid "No. of posts"
527
  msgstr ""
528
 
529
- #: contextual-related-posts.php:396
530
  msgid " Show excerpt?"
531
  msgstr ""
532
 
533
- #: contextual-related-posts.php:401
534
  msgid " Show author?"
535
  msgstr ""
536
 
537
- #: contextual-related-posts.php:406
538
  msgid " Show date?"
539
  msgstr ""
540
 
541
- #: contextual-related-posts.php:410
542
  msgid "Thumbnail options"
543
  msgstr ""
544
 
545
- #: contextual-related-posts.php:412
546
  msgid "Thumbnails inline, before title"
547
  msgstr ""
548
 
549
- #: contextual-related-posts.php:413
550
  msgid "Thumbnails inline, after title"
551
  msgstr ""
552
 
553
- #: contextual-related-posts.php:414
554
  msgid "Only thumbnails, no text"
555
  msgstr ""
556
 
557
- #: contextual-related-posts.php:415
558
  msgid "No thumbnails, only text."
559
  msgstr ""
560
 
561
- #: contextual-related-posts.php:420
562
  msgid "Thumbnail height"
563
  msgstr ""
564
 
565
- #: contextual-related-posts.php:425
566
  msgid "Thumbnail width"
567
  msgstr ""
568
 
569
- #: contextual-related-posts.php:548
570
  msgid "<h3>Related Posts:</h3>"
571
  msgstr ""
572
 
573
- #: contextual-related-posts.php:549
574
  msgid "No related posts found"
575
  msgstr ""
576
 
577
- #: contextual-related-posts.php:907
578
  msgid "Settings"
579
  msgstr ""
580
 
581
- #: contextual-related-posts.php:928
582
  msgid "Donate"
583
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:35-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:141
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:161
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:177
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:189
31
  msgid "General options"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:192
35
  msgid "Cache output?"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:194
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
42
  msgstr ""
43
 
44
+ #: admin.inc.php:195
45
  msgid "Clear cache"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:198 admin.inc.php:462
49
  msgid "Number of related posts to display: "
50
  msgstr ""
51
 
52
+ #: admin.inc.php:201
53
  msgid ""
54
  "Maximum number of posts that will be displayed. The actual number may be "
55
  "smaller if less related posts are found."
56
  msgstr ""
57
 
58
+ #: admin.inc.php:204
59
  msgid "Related posts should be newer than:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:206
63
  msgid "days"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:207
67
  msgid ""
68
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
69
  "it to 365 will show related posts from the last year only."
70
  msgstr ""
71
 
72
+ #: admin.inc.php:210
73
+ msgid "Post types to include in results:"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:221
77
  msgid ""
78
  "These post types will be displayed in the list. Includes custom post types."
79
  msgstr ""
80
 
81
+ #: admin.inc.php:224
82
+ msgid "Find related posts based on content as well as title:"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:226
86
  msgid ""
87
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
88
  "or enabling \"Cache output\" above if you enable this."
89
  msgstr ""
90
 
91
+ #: admin.inc.php:229
92
  msgid "Limit content to be compared"
93
  msgstr ""
94
 
95
+ #: admin.inc.php:231
96
  msgid ""
97
  "This sets the maximum words of the content that will be matched. 0 means no "
98
  "limit."
99
  msgstr ""
100
 
101
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  msgid "Add related posts to:"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:236
106
  msgid "Posts"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:237
110
  msgid "Pages"
111
  msgstr ""
112
 
113
+ #: admin.inc.php:238
114
  msgid "Home page"
115
  msgstr ""
116
 
117
+ #: admin.inc.php:239
118
  msgid "Feeds"
119
  msgstr ""
120
 
121
+ #: admin.inc.php:240
122
  msgid "Category archives"
123
  msgstr ""
124
 
125
+ #: admin.inc.php:241
126
  msgid "Tag archives"
127
  msgstr ""
128
 
129
+ #: admin.inc.php:242
130
  msgid "Other archives"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:243
134
  msgid ""
135
  "If you choose to disable this, please add <code>&lt;?php if "
136
  "( function_exists( 'echo_ald_crp' ) ) echo_ald_crp(); ?&gt;</code> to your "
137
  "template file where you want it displayed"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:246
141
  msgid "Content filter priority:"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:249
145
  msgid ""
146
  "A higher number will cause the content above to be processed after other "
147
+ "filters. Number below 10 is not recommended."
148
  msgstr ""
149
 
150
+ #: admin.inc.php:252
151
+ msgid "Tell the world you're using Contextual Related Posts:"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:254
155
  msgid " <em>Optional</em>"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:255
159
+ msgid ""
160
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
161
+ "in the list."
162
  msgstr ""
163
 
164
+ #: admin.inc.php:262
165
  msgid "Output options"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:265
169
  msgid "Title of related posts: "
170
  msgstr ""
171
 
172
+ #: admin.inc.php:268
173
  msgid ""
174
  "This is the main heading of the related posts. You can also display the "
175
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
176
  "Posts to %postname%</code>"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:271
180
  msgid "When there are no posts, what should be shown?"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:275
184
  msgid "Blank Output"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:279
188
  msgid "Display:"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:283 admin.inc.php:465
192
  msgid "Show post excerpt in list?"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:286
196
+ #, php-format
197
+ msgid ""
198
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
199
+ "to a post (in the post editor's optional excerpt field), it will display an "
200
+ "automatic excerpt which refers to the first %d words of the post's content"
201
+ msgstr ""
202
+
203
+ #: admin.inc.php:289
204
  msgid "Length of excerpt (in words): "
205
  msgstr ""
206
 
207
+ #: admin.inc.php:294
208
  msgid "Show post author in list?"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:297
212
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
213
+ msgstr ""
214
+
215
  #: admin.inc.php:300
216
  msgid "Show post date in list?"
217
  msgstr ""
218
 
219
  #: admin.inc.php:303
220
+ msgid ""
221
+ "Displays the date of the post. Uses the same date format set in General "
222
+ "Options"
223
  msgstr ""
224
 
225
  #: admin.inc.php:306
226
+ msgid "Limit post title length (in characters)"
227
  msgstr ""
228
 
229
  #: admin.inc.php:309
230
+ msgid ""
231
+ "Any title longer than the number of characters set above will be cut and "
232
+ "appended with a &helip;"
233
  msgstr ""
234
 
235
  #: admin.inc.php:312
236
+ msgid "Open links in new window"
237
+ msgstr ""
238
+
239
+ #: admin.inc.php:315
240
+ msgid "Add nofollow attribute to links in the list"
241
  msgstr ""
242
 
243
  #: admin.inc.php:318
244
+ msgid "Exclusion settings:"
245
+ msgstr ""
246
+
247
+ #: admin.inc.php:320
248
+ msgid "List of post or page IDs to exclude from the results:"
249
+ msgstr ""
250
+
251
+ #: admin.inc.php:322 admin.inc.php:328
252
+ msgid ""
253
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
254
+ msgstr ""
255
+
256
+ #: admin.inc.php:325
257
+ msgid "Exclude display of related posts on these posts / pages"
258
+ msgstr ""
259
+
260
+ #: admin.inc.php:331
261
+ msgid "Categories to exclude from the results: "
262
+ msgstr ""
263
+
264
+ #: admin.inc.php:347
265
+ msgid ""
266
+ "Comma separated list of category slugs. The field above has an autocomplete "
267
+ "so simply start typing in the beginning of your category name and it will "
268
+ "prompt you with options."
269
+ msgstr ""
270
+
271
+ #: admin.inc.php:350
272
  msgid "Exclude display of related posts on these post types."
273
  msgstr ""
274
 
275
+ #: admin.inc.php:359
276
  msgid ""
277
  "The related posts will not display on any of the above selected post types"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:362
281
  msgid "Customize the output:"
282
  msgstr ""
283
 
284
+ #: admin.inc.php:364
285
  msgid "HTML to display before the list of posts: "
286
  msgstr ""
287
 
288
+ #: admin.inc.php:367
289
  msgid "HTML to display before each list item: "
290
  msgstr ""
291
 
292
+ #: admin.inc.php:370
293
  msgid "HTML to display after each list item: "
294
  msgstr ""
295
 
296
+ #: admin.inc.php:373
297
  msgid "HTML to display after the list of posts: "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:376
301
  msgid "Post thumbnail options:"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:378 admin.inc.php:468
305
  msgid "Location of post thumbnail:"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:382 admin.inc.php:472
309
  msgid "Display thumbnails inline with posts, before title"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:386 admin.inc.php:476
313
  msgid "Display thumbnails inline with posts, after title"
314
  msgstr ""
315
 
316
+ #: admin.inc.php:390 admin.inc.php:480
317
  msgid "Display only thumbnails, no text"
318
  msgstr ""
319
 
320
+ #: admin.inc.php:394 admin.inc.php:484
321
  msgid "Do not display thumbnails, only text."
322
  msgstr ""
323
 
324
+ #: admin.inc.php:398 admin.inc.php:488
325
  msgid "Maximum width of the thumbnail: "
326
  msgstr ""
327
 
328
+ #: admin.inc.php:401 admin.inc.php:491
329
  msgid "Maximum height of the thumbnail: "
330
  msgstr ""
331
 
332
+ #: admin.inc.php:405
333
+ msgid ""
334
+ "Since you're using the default styles set under the Custom Styles section, "
335
+ "the width and height is fixed at 150px"
336
+ msgstr ""
337
+
338
+ #: admin.inc.php:409
339
  msgid "Style attributes / Width and Height HTML attributes:"
340
  msgstr ""
341
 
342
+ #: admin.inc.php:413
343
+ msgid "Style attributes are used for width and height."
 
344
  msgstr ""
345
 
346
+ #: admin.inc.php:417
347
+ msgid "HTML width and height attributes are used for width and height."
 
 
348
  msgstr ""
349
 
350
+ #: admin.inc.php:421
351
  msgid "Use timthumb to generate thumbnails? "
352
  msgstr ""
353
 
354
+ #: admin.inc.php:423
355
  msgid ""
356
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
357
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
358
  msgstr ""
359
 
360
+ #: admin.inc.php:426
361
+ msgid "Quality of thumbnails generated by timthumb:"
362
  msgstr ""
363
 
364
+ #: admin.inc.php:429
365
  msgid ""
366
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
367
+ "file size. Suggested maximum value is 95. CRP default is 75."
368
  msgstr ""
369
 
370
+ #: admin.inc.php:432
371
+ msgid "Post thumbnail meta field name:"
372
  msgstr ""
373
 
374
+ #: admin.inc.php:434
375
  msgid ""
376
  "The value of this field should contain the image source and is set in the "
377
  "<em>Add New Post</em> screen"
378
  msgstr ""
379
 
380
+ #: admin.inc.php:437
381
+ msgid "Extract the first image from the post?"
 
 
382
  msgstr ""
383
 
384
+ #: admin.inc.php:439
385
  msgid ""
386
+ "This will only happen if there is no post thumbnail set and no image URL is "
387
+ "specified in the meta field."
388
  msgstr ""
389
 
390
+ #: admin.inc.php:442
391
+ msgid "Use default thumbnail?"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:444
395
  msgid ""
396
  "If checked, when no thumbnail is found, show a default one from the URL "
397
  "below. If not checked and no thumbnail is found, no image will be shown."
398
  msgstr ""
399
 
400
+ #: admin.inc.php:447
401
+ msgid "Default thumbnail:"
402
  msgstr ""
403
 
404
+ #: admin.inc.php:450
405
  msgid ""
406
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
407
  "then it will check the meta field. If this is not available, then it will "
408
+ "show the default image as specified above."
409
  msgstr ""
410
 
411
+ #: admin.inc.php:457
412
  msgid "Feed options"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:460
416
  msgid ""
417
  "Below options override the related posts settings for your blog feed. These "
418
  "only apply if you have selected to add related posts to Feeds in the General "
419
  "Options tab."
420
  msgstr ""
421
 
422
+ #: admin.inc.php:498
423
  msgid "Custom styles"
424
  msgstr ""
425
 
426
+ #: admin.inc.php:501
427
  msgid "Use default style included in the plugin?"
428
  msgstr ""
429
 
430
+ #: admin.inc.php:504
431
  msgid ""
432
  "Contextual Related Posts includes a default style that makes your popular "
433
  "posts list to look pretty. Check the box above if you want to use this."
434
  msgstr ""
435
 
436
+ #: admin.inc.php:505
437
  msgid ""
438
  "Enabling this option will automatically turn on the thumbnails and set their "
439
  "width and height to 150px. Disabling this will not turn off thumbnails or "
440
  "change their dimensions."
441
  msgstr ""
442
 
443
+ #: admin.inc.php:508
444
  msgid "Custom CSS to add to header:"
445
  msgstr ""
446
 
447
+ #: admin.inc.php:512
448
  msgid ""
449
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
450
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
451
  "\">FAQ</a> for available CSS classes to style."
452
  msgstr ""
453
 
454
+ #: admin.inc.php:519
455
  msgid "Save Options"
456
  msgstr ""
457
 
458
+ #: admin.inc.php:520
459
  msgid "Default Options"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:520
463
  msgid "Do you want to set options to Default?"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:521
467
  msgid "Recreate Index"
468
  msgstr ""
469
 
470
+ #: admin.inc.php:521
471
  msgid "Are you sure you want to recreate the index?"
472
  msgstr ""
473
 
474
+ #: admin.inc.php:529
475
  msgid "Support the development"
476
  msgstr ""
477
 
478
+ #: admin.inc.php:536
479
+ msgid "Donation for Contextual Related Posts"
480
  msgstr ""
481
 
482
+ #: admin.inc.php:538
483
+ msgid "Enter amount in USD:"
484
+ msgstr ""
485
+
486
+ #: admin.inc.php:542
487
  msgid "Send your donation to the author of"
488
  msgstr ""
489
 
490
+ #: admin.inc.php:549
491
  msgid "Follow me"
492
  msgstr ""
493
 
494
+ #: admin.inc.php:559
495
  msgid "Quick links"
496
  msgstr ""
497
 
498
+ #: admin.inc.php:563
499
  msgid "Contextual Related Posts plugin page"
500
  msgstr ""
501
 
502
+ #: admin.inc.php:564
503
+ msgid "FAQ"
504
  msgstr ""
505
 
506
+ #: admin.inc.php:565 contextual-related-posts.php:964
507
+ msgid "Support"
508
  msgstr ""
509
 
510
+ #: admin.inc.php:566
511
+ msgid "Reviews"
512
  msgstr ""
513
 
514
+ #: admin.inc.php:567
515
+ msgid "Github repository"
516
  msgstr ""
517
 
518
+ #: admin.inc.php:568
519
+ msgid "Other plugins"
520
+ msgstr ""
521
+
522
+ #: admin.inc.php:569
523
+ msgid "Ajay's blog"
524
  msgstr ""
525
 
526
+ #: admin.inc.php:591 admin.inc.php:752
527
  msgid "Contextual Related Posts"
528
  msgstr ""
529
 
530
+ #: admin.inc.php:591
531
  msgid "Related Posts"
532
  msgstr ""
533
 
534
+ #: admin.inc.php:694
535
  msgid "plugin settings page"
536
  msgstr ""
537
 
538
+ #: admin.inc.php:728
539
  msgid ""
540
  "An error occurred clearing the cache. Please contact your site administrator."
541
  "\\n\\nError message:\\n"
542
  msgstr ""
543
 
544
+ #: admin.inc.php:733
545
  msgid " cached row(s) cleared"
546
  msgstr ""
547
 
548
+ #: admin.inc.php:779
549
+ msgid "Location of thumbnail:"
550
+ msgstr ""
551
+
552
+ #: admin.inc.php:781
553
+ msgid ""
554
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
555
+ "image will be used for the post. It will be resized to the thumbnail size "
556
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
557
+ msgstr ""
558
+
559
+ #: admin.inc.php:782
560
+ msgid "The URL above is saved in the meta field: "
561
+ msgstr ""
562
+
563
+ #: contextual-related-posts.php:127
564
  msgid " by "
565
  msgstr ""
566
 
567
+ #: contextual-related-posts.php:142
568
  msgid "Powered by"
569
  msgstr ""
570
 
571
+ #: contextual-related-posts.php:376
572
+ msgid "Related Posts [CRP]"
573
+ msgstr ""
574
+
575
+ #: contextual-related-posts.php:377
576
  msgid "Display Related Posts"
577
  msgstr ""
578
 
579
+ #: contextual-related-posts.php:400
580
  msgid "Title"
581
  msgstr ""
582
 
583
+ #: contextual-related-posts.php:405
584
  msgid "No. of posts"
585
  msgstr ""
586
 
587
+ #: contextual-related-posts.php:410
588
  msgid " Show excerpt?"
589
  msgstr ""
590
 
591
+ #: contextual-related-posts.php:415
592
  msgid " Show author?"
593
  msgstr ""
594
 
595
+ #: contextual-related-posts.php:420
596
  msgid " Show date?"
597
  msgstr ""
598
 
599
+ #: contextual-related-posts.php:424
600
  msgid "Thumbnail options"
601
  msgstr ""
602
 
603
+ #: contextual-related-posts.php:426
604
  msgid "Thumbnails inline, before title"
605
  msgstr ""
606
 
607
+ #: contextual-related-posts.php:427
608
  msgid "Thumbnails inline, after title"
609
  msgstr ""
610
 
611
+ #: contextual-related-posts.php:428
612
  msgid "Only thumbnails, no text"
613
  msgstr ""
614
 
615
+ #: contextual-related-posts.php:429
616
  msgid "No thumbnails, only text."
617
  msgstr ""
618
 
619
+ #: contextual-related-posts.php:434
620
  msgid "Thumbnail height"
621
  msgstr ""
622
 
623
+ #: contextual-related-posts.php:439
624
  msgid "Thumbnail width"
625
  msgstr ""
626
 
627
+ #: contextual-related-posts.php:581
628
  msgid "<h3>Related Posts:</h3>"
629
  msgstr ""
630
 
631
+ #: contextual-related-posts.php:582
632
  msgid "No related posts found"
633
  msgstr ""
634
 
635
+ #: contextual-related-posts.php:944
636
  msgid "Settings"
637
  msgstr ""
638
 
639
+ #: contextual-related-posts.php:965
640
  msgid "Donate"
641
  msgstr ""
languages/crp-es_ES.mo CHANGED
Binary file
languages/crp-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:25-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -15,74 +15,74 @@ msgstr ""
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:127
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
- #: admin.inc.php:147
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
- #: admin.inc.php:163
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
- #: admin.inc.php:175
31
  msgid "General options"
32
  msgstr ""
33
 
34
- #: admin.inc.php:178
35
  msgid "Cache output?"
36
  msgstr ""
37
 
38
- #: admin.inc.php:180
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
42
  msgstr ""
43
 
44
- #: admin.inc.php:181
45
  msgid "Clear cache"
46
  msgstr ""
47
 
48
- #: admin.inc.php:184 admin.inc.php:425
49
  msgid "Number of related posts to display: "
50
  msgstr "Número de posts relacionados a mostrar:"
51
 
52
- #: admin.inc.php:187
53
  msgid ""
54
  "Maximum number of posts that will be displayed. The actual number may be "
55
  "smaller if less related posts are found."
56
  msgstr ""
57
 
58
- #: admin.inc.php:190
59
  msgid "Related posts should be newer than:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:192
63
  msgid "days"
64
  msgstr ""
65
 
66
- #: admin.inc.php:193
67
  msgid ""
68
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
69
  "it to 365 will show related posts from the last year only."
70
  msgstr ""
71
 
72
- #: admin.inc.php:196
73
- msgid "Post types to include in results."
74
  msgstr ""
75
 
76
- #: admin.inc.php:205
77
  msgid ""
78
  "These post types will be displayed in the list. Includes custom post types."
79
  msgstr ""
80
 
81
- #: admin.inc.php:208
82
- msgid "Find related posts based on content as well as title"
83
  msgstr ""
84
 
85
- #: admin.inc.php:210
86
  #, fuzzy
87
  msgid ""
88
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -92,70 +92,50 @@ msgstr ""
92
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
93
  "caché si activas esto)"
94
 
95
- #: admin.inc.php:213
96
  msgid "Limit content to be compared"
97
  msgstr ""
98
 
99
- #: admin.inc.php:215
100
  msgid ""
101
  "This sets the maximum words of the content that will be matched. 0 means no "
102
  "limit."
103
  msgstr ""
104
 
105
- #: admin.inc.php:218
106
- msgid "List of post or page IDs to exclude from the results: "
107
- msgstr ""
108
-
109
- #: admin.inc.php:220 admin.inc.php:315
110
- msgid ""
111
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
112
- msgstr ""
113
-
114
- #: admin.inc.php:223
115
- msgid "Categories to exclude from the results: "
116
- msgstr ""
117
-
118
- #: admin.inc.php:239
119
- msgid ""
120
- "Comma separated list of category slugs. The field above has an autocomplete "
121
- "so simply start typing in the starting letters and it will prompt you with "
122
- "options"
123
- msgstr ""
124
-
125
- #: admin.inc.php:242
126
  #, fuzzy
127
  msgid "Add related posts to:"
128
  msgstr "Agregar posts relacionados al feed"
129
 
130
- #: admin.inc.php:244
131
  msgid "Posts"
132
  msgstr ""
133
 
134
- #: admin.inc.php:245
135
  msgid "Pages"
136
  msgstr ""
137
 
138
- #: admin.inc.php:246
139
  msgid "Home page"
140
  msgstr ""
141
 
142
- #: admin.inc.php:247
143
  msgid "Feeds"
144
  msgstr ""
145
 
146
- #: admin.inc.php:248
147
  msgid "Category archives"
148
  msgstr ""
149
 
150
- #: admin.inc.php:249
151
  msgid "Tag archives"
152
  msgstr ""
153
 
154
- #: admin.inc.php:250
155
  msgid "Other archives"
156
  msgstr ""
157
 
158
- #: admin.inc.php:251
159
  #, fuzzy
160
  msgid ""
161
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -167,469 +147,563 @@ msgstr ""
167
  "echo_ald_crp(); ?&gt;</code> a tu archivo de template donde quieras q se "
168
  "muestre"
169
 
170
- #: admin.inc.php:254
171
  msgid "Content filter priority:"
172
  msgstr ""
173
 
174
- #: admin.inc.php:257
175
  msgid ""
176
  "A higher number will cause the content above to be processed after other "
177
- "filters. Number below 10 is not recommended"
178
  msgstr ""
179
 
180
- #: admin.inc.php:260
181
- msgid "Add a link to the plugin page as a final item in the list"
182
- msgstr ""
 
183
 
184
- #: admin.inc.php:262
185
  msgid " <em>Optional</em>"
186
  msgstr ""
187
 
188
- #: admin.inc.php:263
189
  #, fuzzy
190
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
191
  msgstr "Posts relacionados contextualmente"
192
 
193
- #: admin.inc.php:270
194
  #, fuzzy
195
  msgid "Output options"
196
  msgstr "Opciones de Salida:"
197
 
198
- #: admin.inc.php:273
199
  msgid "Title of related posts: "
200
  msgstr "Título de posts relacionados:"
201
 
202
- #: admin.inc.php:276
203
  msgid ""
204
  "This is the main heading of the related posts. You can also display the "
205
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
206
  "Posts to %postname%</code>"
207
  msgstr ""
208
 
209
- #: admin.inc.php:279
210
  msgid "When there are no posts, what should be shown?"
211
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
212
 
213
- #: admin.inc.php:283
214
  msgid "Blank Output"
215
  msgstr "Salida vacía"
216
 
217
- #: admin.inc.php:287
218
  msgid "Display:"
219
  msgstr ""
220
 
221
- #: admin.inc.php:291 admin.inc.php:428
222
  msgid "Show post excerpt in list?"
223
  msgstr "¿Mostrar extracto con los items?"
224
 
225
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
226
  msgid "Length of excerpt (in words): "
227
  msgstr "Tamaño del extracto (en palabras):"
228
 
229
- #: admin.inc.php:297
230
  #, fuzzy
231
  msgid "Show post author in list?"
232
  msgstr "¿Mostrar extracto con los items?"
233
 
 
 
 
 
234
  #: admin.inc.php:300
235
  #, fuzzy
236
  msgid "Show post date in list?"
237
  msgstr "¿Mostrar extracto con los items?"
238
 
239
  #: admin.inc.php:303
240
- msgid "Limit post title length (in characters)"
 
 
241
  msgstr ""
242
 
243
  #: admin.inc.php:306
244
- msgid "Open links in new window"
245
  msgstr ""
246
 
247
  #: admin.inc.php:309
248
- msgid "Add nofollow attribute to links in the list"
 
 
249
  msgstr ""
250
 
251
  #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  #, fuzzy
253
  msgid "Exclude display of related posts on these posts / pages"
254
  msgstr "Agregar posts relacionados al feed"
255
 
256
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
257
  #, fuzzy
258
  msgid "Exclude display of related posts on these post types."
259
  msgstr "Agregar posts relacionados al feed"
260
 
261
- #: admin.inc.php:327
262
  msgid ""
263
  "The related posts will not display on any of the above selected post types"
264
  msgstr ""
265
 
266
- #: admin.inc.php:330
267
  msgid "Customize the output:"
268
  msgstr "Personalizar la salida:"
269
 
270
- #: admin.inc.php:332
271
  msgid "HTML to display before the list of posts: "
272
  msgstr "HTML a mostrar antes de todos los items:"
273
 
274
- #: admin.inc.php:335
275
  msgid "HTML to display before each list item: "
276
  msgstr "HTML a mostrar antes de cada item:"
277
 
278
- #: admin.inc.php:338
279
  msgid "HTML to display after each list item: "
280
  msgstr "HTML a mostrar despues de cada item:"
281
 
282
- #: admin.inc.php:341
283
  msgid "HTML to display after the list of posts: "
284
  msgstr "HTML a mostrar despues de todos los items:"
285
 
286
- #: admin.inc.php:344
287
  msgid "Post thumbnail options:"
288
  msgstr "Opciones de miniaturas en el post:"
289
 
290
- #: admin.inc.php:346 admin.inc.php:431
291
  msgid "Location of post thumbnail:"
292
  msgstr ""
293
 
294
- #: admin.inc.php:350 admin.inc.php:435
295
  #, fuzzy
296
  msgid "Display thumbnails inline with posts, before title"
297
  msgstr "Miniaturas en línea con los posts"
298
 
299
- #: admin.inc.php:354 admin.inc.php:439
300
  #, fuzzy
301
  msgid "Display thumbnails inline with posts, after title"
302
  msgstr "Miniaturas en línea con los posts"
303
 
304
- #: admin.inc.php:358 admin.inc.php:443
305
  msgid "Display only thumbnails, no text"
306
  msgstr "Solo miniaturas, sin texto"
307
 
308
- #: admin.inc.php:362 admin.inc.php:447
309
  msgid "Do not display thumbnails, only text."
310
  msgstr "No mostrar miniaturas, solo texto."
311
 
312
- #: admin.inc.php:366 admin.inc.php:451
313
  msgid "Maximum width of the thumbnail: "
314
  msgstr ""
315
 
316
- #: admin.inc.php:369 admin.inc.php:454
317
  msgid "Maximum height of the thumbnail: "
318
  msgstr ""
319
 
320
- #: admin.inc.php:372
 
 
 
 
 
 
321
  msgid "Style attributes / Width and Height HTML attributes:"
322
  msgstr ""
323
 
324
- #: admin.inc.php:376
325
- msgid ""
326
- "Style attributes are used for width and height. <code>style=\"max-width:"
327
  msgstr ""
328
 
329
- #: admin.inc.php:380
330
- msgid ""
331
- "HTML width and height attributes are used for width and height. <code>width="
332
- "\""
333
  msgstr ""
334
 
335
- #: admin.inc.php:384
336
  msgid "Use timthumb to generate thumbnails? "
337
  msgstr ""
338
 
339
- #: admin.inc.php:386
340
  msgid ""
341
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
342
- "\">timthumb</a> will be used to generate thumbnails"
343
  msgstr ""
344
 
345
- #: admin.inc.php:389
346
- msgid "Quality of thumbnails generated by timthumb"
347
  msgstr ""
348
 
349
- #: admin.inc.php:392
350
  msgid ""
351
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
352
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
353
  msgstr ""
354
 
355
- #: admin.inc.php:395
356
  #, fuzzy
357
- msgid "Post thumbnail meta field name: "
358
  msgstr "Opciones de miniaturas en el post:"
359
 
360
- #: admin.inc.php:397
361
  msgid ""
362
  "The value of this field should contain the image source and is set in the "
363
  "<em>Add New Post</em> screen"
364
  msgstr ""
365
 
366
- #: admin.inc.php:400
367
- #, fuzzy
368
- msgid ""
369
- "If the postmeta is not set, then should the plugin extract the first image "
370
- "from the post?"
371
  msgstr ""
372
- "Si el postmeta no está definido, entonces el plugin extrae la primera imágen "
373
- "del post. Esto puede relentizar la carga si la primera imágen es de gran "
374
- "tamaño"
375
 
376
- #: admin.inc.php:402
377
- #, fuzzy
378
  msgid ""
379
- "This can slow down the loading of your page if the first image in the "
380
- "related posts is large in file-size"
381
  msgstr ""
382
- "Si el postmeta no está definido, entonces el plugin extrae la primera imágen "
383
- "del post. Esto puede relentizar la carga si la primera imágen es de gran "
384
- "tamaño"
385
 
386
- #: admin.inc.php:405
387
- msgid "Use default thumbnail? "
388
  msgstr ""
389
 
390
- #: admin.inc.php:407
391
  msgid ""
392
  "If checked, when no thumbnail is found, show a default one from the URL "
393
  "below. If not checked and no thumbnail is found, no image will be shown."
394
  msgstr ""
395
 
396
- #: admin.inc.php:410
397
- msgid "Default thumbnail: "
398
- msgstr ""
 
399
 
400
- #: admin.inc.php:413
401
  #, fuzzy
402
  msgid ""
403
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
404
  "then it will check the meta field. If this is not available, then it will "
405
- "show the default image as specified above"
406
  msgstr ""
407
  "El plugin primero verificará si el post contiene miniaturas. Si no tiene "
408
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
409
  "la imágen padrón especificada a continuación:"
410
 
411
- #: admin.inc.php:420
412
  #, fuzzy
413
  msgid "Feed options"
414
  msgstr "Opciones:"
415
 
416
- #: admin.inc.php:423
417
  msgid ""
418
  "Below options override the related posts settings for your blog feed. These "
419
  "only apply if you have selected to add related posts to Feeds in the General "
420
  "Options tab."
421
  msgstr ""
422
 
423
- #: admin.inc.php:461
424
  msgid "Custom styles"
425
  msgstr ""
426
 
427
- #: admin.inc.php:464
428
  msgid "Use default style included in the plugin?"
429
  msgstr ""
430
 
431
- #: admin.inc.php:467
432
  msgid ""
433
  "Contextual Related Posts includes a default style that makes your popular "
434
  "posts list to look pretty. Check the box above if you want to use this."
435
  msgstr ""
436
 
437
- #: admin.inc.php:468
438
  msgid ""
439
  "Enabling this option will automatically turn on the thumbnails and set their "
440
  "width and height to 150px. Disabling this will not turn off thumbnails or "
441
  "change their dimensions."
442
  msgstr ""
443
 
444
- #: admin.inc.php:471
445
  msgid "Custom CSS to add to header:"
446
  msgstr ""
447
 
448
- #: admin.inc.php:475
449
  msgid ""
450
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
451
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
452
  "\">FAQ</a> for available CSS classes to style."
453
  msgstr ""
454
 
455
- #: admin.inc.php:482
456
  #, fuzzy
457
  msgid "Save Options"
458
  msgstr "Opciones:"
459
 
460
- #: admin.inc.php:483
461
  #, fuzzy
462
  msgid "Default Options"
463
  msgstr "Opciones de Salida:"
464
 
465
- #: admin.inc.php:483
466
  msgid "Do you want to set options to Default?"
467
  msgstr "¿Quieres resetear las opciones?"
468
 
469
- #: admin.inc.php:484
470
  msgid "Recreate Index"
471
  msgstr ""
472
 
473
- #: admin.inc.php:484
474
  msgid "Are you sure you want to recreate the index?"
475
  msgstr "¿Está seguro que quiere recrear el index?"
476
 
477
- #: admin.inc.php:492
478
  msgid "Support the development"
479
  msgstr "Apoya el desarrollo"
480
 
481
- #: admin.inc.php:501
482
- msgid "Enter amount in USD: "
 
 
 
 
 
 
483
  msgstr "Ingresa monto en USD:"
484
 
485
- #: admin.inc.php:505
486
  msgid "Send your donation to the author of"
487
  msgstr "Enviar tu donación al autor de"
488
 
489
- #: admin.inc.php:512
490
  msgid "Follow me"
491
  msgstr ""
492
 
493
- #: admin.inc.php:522
494
  #, fuzzy
495
  msgid "Quick links"
496
  msgstr "Links rápidos"
497
 
498
- #: admin.inc.php:526
499
  #, fuzzy
500
  msgid "Contextual Related Posts plugin page"
501
  msgstr "Posts relacionados contextualmente"
502
 
503
- #: admin.inc.php:527
504
- msgid "Other plugins"
505
- msgstr "Otros plugins"
506
-
507
- #: admin.inc.php:528
508
- msgid "Ajay's blog"
509
- msgstr ""
510
-
511
- #: admin.inc.php:529
512
  msgid "FAQ"
513
  msgstr ""
514
 
515
- #: admin.inc.php:530 contextual-related-posts.php:927
516
  msgid "Support"
517
  msgstr "Soporte"
518
 
519
- #: admin.inc.php:531
520
  msgid "Reviews"
521
  msgstr ""
522
 
523
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
524
  msgid "Contextual Related Posts"
525
  msgstr "Posts Relacionados Contextualmente"
526
 
527
- #: admin.inc.php:554 contextual-related-posts.php:372
528
  msgid "Related Posts"
529
  msgstr "Post Relacionados"
530
 
531
- #: admin.inc.php:658
532
  #, fuzzy
533
  msgid "plugin settings page"
534
  msgstr "sitio del plugin"
535
 
536
- #: admin.inc.php:692
537
  msgid ""
538
  "An error occurred clearing the cache. Please contact your site administrator."
539
  "\\n\\nError message:\\n"
540
  msgstr ""
541
 
542
- #: admin.inc.php:697
543
  msgid " cached row(s) cleared"
544
  msgstr ""
545
 
546
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
547
  msgid " by "
548
  msgstr ""
549
 
550
- #: contextual-related-posts.php:143
551
  msgid "Powered by"
552
  msgstr "Creado por"
553
 
554
- #: contextual-related-posts.php:371
 
 
 
 
 
555
  #, fuzzy
556
  msgid "Display Related Posts"
557
  msgstr "Mostrar \"Posts No Relacionados\""
558
 
559
- #: contextual-related-posts.php:386
560
  msgid "Title"
561
  msgstr ""
562
 
563
- #: contextual-related-posts.php:391
564
  msgid "No. of posts"
565
  msgstr ""
566
 
567
- #: contextual-related-posts.php:396
568
  #, fuzzy
569
  msgid " Show excerpt?"
570
  msgstr "¿Mostrar extracto con los items?"
571
 
572
- #: contextual-related-posts.php:401
573
  msgid " Show author?"
574
  msgstr ""
575
 
576
- #: contextual-related-posts.php:406
577
  #, fuzzy
578
  msgid " Show date?"
579
  msgstr "¿Mostrar extracto con los items?"
580
 
581
- #: contextual-related-posts.php:410
582
  #, fuzzy
583
  msgid "Thumbnail options"
584
  msgstr "Opciones de miniaturas en el post:"
585
 
586
- #: contextual-related-posts.php:412
587
  #, fuzzy
588
  msgid "Thumbnails inline, before title"
589
  msgstr "Miniaturas en línea con los posts"
590
 
591
- #: contextual-related-posts.php:413
592
  #, fuzzy
593
  msgid "Thumbnails inline, after title"
594
  msgstr "Miniaturas en línea con los posts"
595
 
596
- #: contextual-related-posts.php:414
597
  #, fuzzy
598
  msgid "Only thumbnails, no text"
599
  msgstr "Solo miniaturas, sin texto"
600
 
601
- #: contextual-related-posts.php:415
602
  #, fuzzy
603
  msgid "No thumbnails, only text."
604
  msgstr "No mostrar miniaturas, solo texto."
605
 
606
- #: contextual-related-posts.php:420
607
  #, fuzzy
608
  msgid "Thumbnail height"
609
  msgstr "Opciones de miniaturas en el post:"
610
 
611
- #: contextual-related-posts.php:425
612
  #, fuzzy
613
  msgid "Thumbnail width"
614
  msgstr "Opciones de miniaturas en el post:"
615
 
616
- #: contextual-related-posts.php:548
617
  msgid "<h3>Related Posts:</h3>"
618
  msgstr "<h3>Post Relacionados:</h3>"
619
 
620
- #: contextual-related-posts.php:549
621
  #, fuzzy
622
  msgid "No related posts found"
623
  msgstr "No hay posts relacionados"
624
 
625
- #: contextual-related-posts.php:907
626
  msgid "Settings"
627
  msgstr "Opciones"
628
 
629
- #: contextual-related-posts.php:928
630
  msgid "Donate"
631
  msgstr "Donar"
632
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
633
  #~ msgid "Recent developments"
634
  #~ msgstr "Desarrollos recientes"
635
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:37-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:141
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
+ #: admin.inc.php:161
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
+ #: admin.inc.php:177
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
+ #: admin.inc.php:189
31
  msgid "General options"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:192
35
  msgid "Cache output?"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:194
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
42
  msgstr ""
43
 
44
+ #: admin.inc.php:195
45
  msgid "Clear cache"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:198 admin.inc.php:462
49
  msgid "Number of related posts to display: "
50
  msgstr "Número de posts relacionados a mostrar:"
51
 
52
+ #: admin.inc.php:201
53
  msgid ""
54
  "Maximum number of posts that will be displayed. The actual number may be "
55
  "smaller if less related posts are found."
56
  msgstr ""
57
 
58
+ #: admin.inc.php:204
59
  msgid "Related posts should be newer than:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:206
63
  msgid "days"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:207
67
  msgid ""
68
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
69
  "it to 365 will show related posts from the last year only."
70
  msgstr ""
71
 
72
+ #: admin.inc.php:210
73
+ msgid "Post types to include in results:"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:221
77
  msgid ""
78
  "These post types will be displayed in the list. Includes custom post types."
79
  msgstr ""
80
 
81
+ #: admin.inc.php:224
82
+ msgid "Find related posts based on content as well as title:"
83
  msgstr ""
84
 
85
+ #: admin.inc.php:226
86
  #, fuzzy
87
  msgid ""
88
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
92
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
93
  "caché si activas esto)"
94
 
95
+ #: admin.inc.php:229
96
  msgid "Limit content to be compared"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:231
100
  msgid ""
101
  "This sets the maximum words of the content that will be matched. 0 means no "
102
  "limit."
103
  msgstr ""
104
 
105
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  #, fuzzy
107
  msgid "Add related posts to:"
108
  msgstr "Agregar posts relacionados al feed"
109
 
110
+ #: admin.inc.php:236
111
  msgid "Posts"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:237
115
  msgid "Pages"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:238
119
  msgid "Home page"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:239
123
  msgid "Feeds"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:240
127
  msgid "Category archives"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:241
131
  msgid "Tag archives"
132
  msgstr ""
133
 
134
+ #: admin.inc.php:242
135
  msgid "Other archives"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:243
139
  #, fuzzy
140
  msgid ""
141
  "If you choose to disable this, please add <code>&lt;?php if "
147
  "echo_ald_crp(); ?&gt;</code> a tu archivo de template donde quieras q se "
148
  "muestre"
149
 
150
+ #: admin.inc.php:246
151
  msgid "Content filter priority:"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:249
155
  msgid ""
156
  "A higher number will cause the content above to be processed after other "
157
+ "filters. Number below 10 is not recommended."
158
  msgstr ""
159
 
160
+ #: admin.inc.php:252
161
+ #, fuzzy
162
+ msgid "Tell the world you're using Contextual Related Posts:"
163
+ msgstr "Posts Relacionados Contextualmente"
164
 
165
+ #: admin.inc.php:254
166
  msgid " <em>Optional</em>"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:255
170
  #, fuzzy
171
+ msgid ""
172
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
173
+ "in the list."
174
  msgstr "Posts relacionados contextualmente"
175
 
176
+ #: admin.inc.php:262
177
  #, fuzzy
178
  msgid "Output options"
179
  msgstr "Opciones de Salida:"
180
 
181
+ #: admin.inc.php:265
182
  msgid "Title of related posts: "
183
  msgstr "Título de posts relacionados:"
184
 
185
+ #: admin.inc.php:268
186
  msgid ""
187
  "This is the main heading of the related posts. You can also display the "
188
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
189
  "Posts to %postname%</code>"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:271
193
  msgid "When there are no posts, what should be shown?"
194
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
195
 
196
+ #: admin.inc.php:275
197
  msgid "Blank Output"
198
  msgstr "Salida vacía"
199
 
200
+ #: admin.inc.php:279
201
  msgid "Display:"
202
  msgstr ""
203
 
204
+ #: admin.inc.php:283 admin.inc.php:465
205
  msgid "Show post excerpt in list?"
206
  msgstr "¿Mostrar extracto con los items?"
207
 
208
+ #: admin.inc.php:286
209
+ #, php-format
210
+ msgid ""
211
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
212
+ "to a post (in the post editor's optional excerpt field), it will display an "
213
+ "automatic excerpt which refers to the first %d words of the post's content"
214
+ msgstr ""
215
+
216
+ #: admin.inc.php:289
217
  msgid "Length of excerpt (in words): "
218
  msgstr "Tamaño del extracto (en palabras):"
219
 
220
+ #: admin.inc.php:294
221
  #, fuzzy
222
  msgid "Show post author in list?"
223
  msgstr "¿Mostrar extracto con los items?"
224
 
225
+ #: admin.inc.php:297
226
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
227
+ msgstr ""
228
+
229
  #: admin.inc.php:300
230
  #, fuzzy
231
  msgid "Show post date in list?"
232
  msgstr "¿Mostrar extracto con los items?"
233
 
234
  #: admin.inc.php:303
235
+ msgid ""
236
+ "Displays the date of the post. Uses the same date format set in General "
237
+ "Options"
238
  msgstr ""
239
 
240
  #: admin.inc.php:306
241
+ msgid "Limit post title length (in characters)"
242
  msgstr ""
243
 
244
  #: admin.inc.php:309
245
+ msgid ""
246
+ "Any title longer than the number of characters set above will be cut and "
247
+ "appended with a &helip;"
248
  msgstr ""
249
 
250
  #: admin.inc.php:312
251
+ msgid "Open links in new window"
252
+ msgstr ""
253
+
254
+ #: admin.inc.php:315
255
+ msgid "Add nofollow attribute to links in the list"
256
+ msgstr ""
257
+
258
+ #: admin.inc.php:318
259
+ #, fuzzy
260
+ msgid "Exclusion settings:"
261
+ msgstr "sitio del plugin"
262
+
263
+ #: admin.inc.php:320
264
+ msgid "List of post or page IDs to exclude from the results:"
265
+ msgstr ""
266
+
267
+ #: admin.inc.php:322 admin.inc.php:328
268
+ msgid ""
269
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
270
+ msgstr ""
271
+
272
+ #: admin.inc.php:325
273
  #, fuzzy
274
  msgid "Exclude display of related posts on these posts / pages"
275
  msgstr "Agregar posts relacionados al feed"
276
 
277
+ #: admin.inc.php:331
278
+ msgid "Categories to exclude from the results: "
279
+ msgstr ""
280
+
281
+ #: admin.inc.php:347
282
+ msgid ""
283
+ "Comma separated list of category slugs. The field above has an autocomplete "
284
+ "so simply start typing in the beginning of your category name and it will "
285
+ "prompt you with options."
286
+ msgstr ""
287
+
288
+ #: admin.inc.php:350
289
  #, fuzzy
290
  msgid "Exclude display of related posts on these post types."
291
  msgstr "Agregar posts relacionados al feed"
292
 
293
+ #: admin.inc.php:359
294
  msgid ""
295
  "The related posts will not display on any of the above selected post types"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:362
299
  msgid "Customize the output:"
300
  msgstr "Personalizar la salida:"
301
 
302
+ #: admin.inc.php:364
303
  msgid "HTML to display before the list of posts: "
304
  msgstr "HTML a mostrar antes de todos los items:"
305
 
306
+ #: admin.inc.php:367
307
  msgid "HTML to display before each list item: "
308
  msgstr "HTML a mostrar antes de cada item:"
309
 
310
+ #: admin.inc.php:370
311
  msgid "HTML to display after each list item: "
312
  msgstr "HTML a mostrar despues de cada item:"
313
 
314
+ #: admin.inc.php:373
315
  msgid "HTML to display after the list of posts: "
316
  msgstr "HTML a mostrar despues de todos los items:"
317
 
318
+ #: admin.inc.php:376
319
  msgid "Post thumbnail options:"
320
  msgstr "Opciones de miniaturas en el post:"
321
 
322
+ #: admin.inc.php:378 admin.inc.php:468
323
  msgid "Location of post thumbnail:"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:382 admin.inc.php:472
327
  #, fuzzy
328
  msgid "Display thumbnails inline with posts, before title"
329
  msgstr "Miniaturas en línea con los posts"
330
 
331
+ #: admin.inc.php:386 admin.inc.php:476
332
  #, fuzzy
333
  msgid "Display thumbnails inline with posts, after title"
334
  msgstr "Miniaturas en línea con los posts"
335
 
336
+ #: admin.inc.php:390 admin.inc.php:480
337
  msgid "Display only thumbnails, no text"
338
  msgstr "Solo miniaturas, sin texto"
339
 
340
+ #: admin.inc.php:394 admin.inc.php:484
341
  msgid "Do not display thumbnails, only text."
342
  msgstr "No mostrar miniaturas, solo texto."
343
 
344
+ #: admin.inc.php:398 admin.inc.php:488
345
  msgid "Maximum width of the thumbnail: "
346
  msgstr ""
347
 
348
+ #: admin.inc.php:401 admin.inc.php:491
349
  msgid "Maximum height of the thumbnail: "
350
  msgstr ""
351
 
352
+ #: admin.inc.php:405
353
+ msgid ""
354
+ "Since you're using the default styles set under the Custom Styles section, "
355
+ "the width and height is fixed at 150px"
356
+ msgstr ""
357
+
358
+ #: admin.inc.php:409
359
  msgid "Style attributes / Width and Height HTML attributes:"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:413
363
+ msgid "Style attributes are used for width and height."
 
364
  msgstr ""
365
 
366
+ #: admin.inc.php:417
367
+ msgid "HTML width and height attributes are used for width and height."
 
 
368
  msgstr ""
369
 
370
+ #: admin.inc.php:421
371
  msgid "Use timthumb to generate thumbnails? "
372
  msgstr ""
373
 
374
+ #: admin.inc.php:423
375
  msgid ""
376
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
377
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
378
  msgstr ""
379
 
380
+ #: admin.inc.php:426
381
+ msgid "Quality of thumbnails generated by timthumb:"
382
  msgstr ""
383
 
384
+ #: admin.inc.php:429
385
  msgid ""
386
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
387
+ "file size. Suggested maximum value is 95. CRP default is 75."
388
  msgstr ""
389
 
390
+ #: admin.inc.php:432
391
  #, fuzzy
392
+ msgid "Post thumbnail meta field name:"
393
  msgstr "Opciones de miniaturas en el post:"
394
 
395
+ #: admin.inc.php:434
396
  msgid ""
397
  "The value of this field should contain the image source and is set in the "
398
  "<em>Add New Post</em> screen"
399
  msgstr ""
400
 
401
+ #: admin.inc.php:437
402
+ msgid "Extract the first image from the post?"
 
 
 
403
  msgstr ""
 
 
 
404
 
405
+ #: admin.inc.php:439
 
406
  msgid ""
407
+ "This will only happen if there is no post thumbnail set and no image URL is "
408
+ "specified in the meta field."
409
  msgstr ""
 
 
 
410
 
411
+ #: admin.inc.php:442
412
+ msgid "Use default thumbnail?"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:444
416
  msgid ""
417
  "If checked, when no thumbnail is found, show a default one from the URL "
418
  "below. If not checked and no thumbnail is found, no image will be shown."
419
  msgstr ""
420
 
421
+ #: admin.inc.php:447
422
+ #, fuzzy
423
+ msgid "Default thumbnail:"
424
+ msgstr "Opciones de Salida:"
425
 
426
+ #: admin.inc.php:450
427
  #, fuzzy
428
  msgid ""
429
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
430
  "then it will check the meta field. If this is not available, then it will "
431
+ "show the default image as specified above."
432
  msgstr ""
433
  "El plugin primero verificará si el post contiene miniaturas. Si no tiene "
434
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
435
  "la imágen padrón especificada a continuación:"
436
 
437
+ #: admin.inc.php:457
438
  #, fuzzy
439
  msgid "Feed options"
440
  msgstr "Opciones:"
441
 
442
+ #: admin.inc.php:460
443
  msgid ""
444
  "Below options override the related posts settings for your blog feed. These "
445
  "only apply if you have selected to add related posts to Feeds in the General "
446
  "Options tab."
447
  msgstr ""
448
 
449
+ #: admin.inc.php:498
450
  msgid "Custom styles"
451
  msgstr ""
452
 
453
+ #: admin.inc.php:501
454
  msgid "Use default style included in the plugin?"
455
  msgstr ""
456
 
457
+ #: admin.inc.php:504
458
  msgid ""
459
  "Contextual Related Posts includes a default style that makes your popular "
460
  "posts list to look pretty. Check the box above if you want to use this."
461
  msgstr ""
462
 
463
+ #: admin.inc.php:505
464
  msgid ""
465
  "Enabling this option will automatically turn on the thumbnails and set their "
466
  "width and height to 150px. Disabling this will not turn off thumbnails or "
467
  "change their dimensions."
468
  msgstr ""
469
 
470
+ #: admin.inc.php:508
471
  msgid "Custom CSS to add to header:"
472
  msgstr ""
473
 
474
+ #: admin.inc.php:512
475
  msgid ""
476
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
477
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
478
  "\">FAQ</a> for available CSS classes to style."
479
  msgstr ""
480
 
481
+ #: admin.inc.php:519
482
  #, fuzzy
483
  msgid "Save Options"
484
  msgstr "Opciones:"
485
 
486
+ #: admin.inc.php:520
487
  #, fuzzy
488
  msgid "Default Options"
489
  msgstr "Opciones de Salida:"
490
 
491
+ #: admin.inc.php:520
492
  msgid "Do you want to set options to Default?"
493
  msgstr "¿Quieres resetear las opciones?"
494
 
495
+ #: admin.inc.php:521
496
  msgid "Recreate Index"
497
  msgstr ""
498
 
499
+ #: admin.inc.php:521
500
  msgid "Are you sure you want to recreate the index?"
501
  msgstr "¿Está seguro que quiere recrear el index?"
502
 
503
+ #: admin.inc.php:529
504
  msgid "Support the development"
505
  msgstr "Apoya el desarrollo"
506
 
507
+ #: admin.inc.php:536
508
+ #, fuzzy
509
+ msgid "Donation for Contextual Related Posts"
510
+ msgstr "Posts Relacionados Contextualmente"
511
+
512
+ #: admin.inc.php:538
513
+ #, fuzzy
514
+ msgid "Enter amount in USD:"
515
  msgstr "Ingresa monto en USD:"
516
 
517
+ #: admin.inc.php:542
518
  msgid "Send your donation to the author of"
519
  msgstr "Enviar tu donación al autor de"
520
 
521
+ #: admin.inc.php:549
522
  msgid "Follow me"
523
  msgstr ""
524
 
525
+ #: admin.inc.php:559
526
  #, fuzzy
527
  msgid "Quick links"
528
  msgstr "Links rápidos"
529
 
530
+ #: admin.inc.php:563
531
  #, fuzzy
532
  msgid "Contextual Related Posts plugin page"
533
  msgstr "Posts relacionados contextualmente"
534
 
535
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
536
  msgid "FAQ"
537
  msgstr ""
538
 
539
+ #: admin.inc.php:565 contextual-related-posts.php:964
540
  msgid "Support"
541
  msgstr "Soporte"
542
 
543
+ #: admin.inc.php:566
544
  msgid "Reviews"
545
  msgstr ""
546
 
547
+ #: admin.inc.php:567
548
+ msgid "Github repository"
549
+ msgstr ""
550
+
551
+ #: admin.inc.php:568
552
+ msgid "Other plugins"
553
+ msgstr "Otros plugins"
554
+
555
+ #: admin.inc.php:569
556
+ msgid "Ajay's blog"
557
+ msgstr ""
558
+
559
+ #: admin.inc.php:591 admin.inc.php:752
560
  msgid "Contextual Related Posts"
561
  msgstr "Posts Relacionados Contextualmente"
562
 
563
+ #: admin.inc.php:591
564
  msgid "Related Posts"
565
  msgstr "Post Relacionados"
566
 
567
+ #: admin.inc.php:694
568
  #, fuzzy
569
  msgid "plugin settings page"
570
  msgstr "sitio del plugin"
571
 
572
+ #: admin.inc.php:728
573
  msgid ""
574
  "An error occurred clearing the cache. Please contact your site administrator."
575
  "\\n\\nError message:\\n"
576
  msgstr ""
577
 
578
+ #: admin.inc.php:733
579
  msgid " cached row(s) cleared"
580
  msgstr ""
581
 
582
+ #: admin.inc.php:779
583
+ msgid "Location of thumbnail:"
584
+ msgstr ""
585
+
586
+ #: admin.inc.php:781
587
+ msgid ""
588
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
589
+ "image will be used for the post. It will be resized to the thumbnail size "
590
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
591
+ msgstr ""
592
+
593
+ #: admin.inc.php:782
594
+ msgid "The URL above is saved in the meta field: "
595
+ msgstr ""
596
+
597
+ #: contextual-related-posts.php:127
598
  msgid " by "
599
  msgstr ""
600
 
601
+ #: contextual-related-posts.php:142
602
  msgid "Powered by"
603
  msgstr "Creado por"
604
 
605
+ #: contextual-related-posts.php:376
606
+ #, fuzzy
607
+ msgid "Related Posts [CRP]"
608
+ msgstr "Post Relacionados"
609
+
610
+ #: contextual-related-posts.php:377
611
  #, fuzzy
612
  msgid "Display Related Posts"
613
  msgstr "Mostrar \"Posts No Relacionados\""
614
 
615
+ #: contextual-related-posts.php:400
616
  msgid "Title"
617
  msgstr ""
618
 
619
+ #: contextual-related-posts.php:405
620
  msgid "No. of posts"
621
  msgstr ""
622
 
623
+ #: contextual-related-posts.php:410
624
  #, fuzzy
625
  msgid " Show excerpt?"
626
  msgstr "¿Mostrar extracto con los items?"
627
 
628
+ #: contextual-related-posts.php:415
629
  msgid " Show author?"
630
  msgstr ""
631
 
632
+ #: contextual-related-posts.php:420
633
  #, fuzzy
634
  msgid " Show date?"
635
  msgstr "¿Mostrar extracto con los items?"
636
 
637
+ #: contextual-related-posts.php:424
638
  #, fuzzy
639
  msgid "Thumbnail options"
640
  msgstr "Opciones de miniaturas en el post:"
641
 
642
+ #: contextual-related-posts.php:426
643
  #, fuzzy
644
  msgid "Thumbnails inline, before title"
645
  msgstr "Miniaturas en línea con los posts"
646
 
647
+ #: contextual-related-posts.php:427
648
  #, fuzzy
649
  msgid "Thumbnails inline, after title"
650
  msgstr "Miniaturas en línea con los posts"
651
 
652
+ #: contextual-related-posts.php:428
653
  #, fuzzy
654
  msgid "Only thumbnails, no text"
655
  msgstr "Solo miniaturas, sin texto"
656
 
657
+ #: contextual-related-posts.php:429
658
  #, fuzzy
659
  msgid "No thumbnails, only text."
660
  msgstr "No mostrar miniaturas, solo texto."
661
 
662
+ #: contextual-related-posts.php:434
663
  #, fuzzy
664
  msgid "Thumbnail height"
665
  msgstr "Opciones de miniaturas en el post:"
666
 
667
+ #: contextual-related-posts.php:439
668
  #, fuzzy
669
  msgid "Thumbnail width"
670
  msgstr "Opciones de miniaturas en el post:"
671
 
672
+ #: contextual-related-posts.php:581
673
  msgid "<h3>Related Posts:</h3>"
674
  msgstr "<h3>Post Relacionados:</h3>"
675
 
676
+ #: contextual-related-posts.php:582
677
  #, fuzzy
678
  msgid "No related posts found"
679
  msgstr "No hay posts relacionados"
680
 
681
+ #: contextual-related-posts.php:944
682
  msgid "Settings"
683
  msgstr "Opciones"
684
 
685
+ #: contextual-related-posts.php:965
686
  msgid "Donate"
687
  msgstr "Donar"
688
 
689
+ #, fuzzy
690
+ #~ msgid ""
691
+ #~ "If the postmeta is not set, then should the plugin extract the first "
692
+ #~ "image from the post?"
693
+ #~ msgstr ""
694
+ #~ "Si el postmeta no está definido, entonces el plugin extrae la primera "
695
+ #~ "imágen del post. Esto puede relentizar la carga si la primera imágen es "
696
+ #~ "de gran tamaño"
697
+
698
+ #, fuzzy
699
+ #~ msgid ""
700
+ #~ "This can slow down the loading of your page if the first image in the "
701
+ #~ "related posts is large in file-size"
702
+ #~ msgstr ""
703
+ #~ "Si el postmeta no está definido, entonces el plugin extrae la primera "
704
+ #~ "imágen del post. Esto puede relentizar la carga si la primera imágen es "
705
+ #~ "de gran tamaño"
706
+
707
  #~ msgid "Recent developments"
708
  #~ msgstr "Desarrollos recientes"
709
 
languages/crp-fr_FR.mo CHANGED
Binary file
languages/crp-fr_FR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:25-0000\n"
6
- "PO-Revision-Date: 2014-03-12 23:25-0000\n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Olivier Copetto <olivier@copetto.com>\n"
9
  "Language: fr\n"
@@ -15,27 +15,27 @@ msgstr ""
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:127
19
  msgid "Options saved successfully."
20
  msgstr "Options enregistrées avec succès."
21
 
22
- #: admin.inc.php:147
23
  msgid "Options set to Default."
24
  msgstr "Options définies par défaut."
25
 
26
- #: admin.inc.php:163
27
  msgid "Index recreated"
28
  msgstr "L'index a été recréé."
29
 
30
- #: admin.inc.php:175
31
  msgid "General options"
32
  msgstr "Options générales"
33
 
34
- #: admin.inc.php:178
35
  msgid "Cache output?"
36
  msgstr "Cache de l'affichage ?"
37
 
38
- #: admin.inc.php:180
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
@@ -44,42 +44,42 @@ msgstr ""
44
  "similaires lorsque l'article est visité pour la première fois. Le cache est "
45
  "nettoyé lorsque vous enregistrez cette page."
46
 
47
- #: admin.inc.php:181
48
  msgid "Clear cache"
49
  msgstr "Effacer le cache"
50
 
51
- #: admin.inc.php:184 admin.inc.php:425
52
  msgid "Number of related posts to display: "
53
  msgstr "Nombre d'articles similaires<br>à afficher :"
54
 
55
- #: admin.inc.php:187
56
  msgid ""
57
  "Maximum number of posts that will be displayed. The actual number may be "
58
  "smaller if less related posts are found."
59
  msgstr ""
60
 
61
- #: admin.inc.php:190
62
  msgid "Related posts should be newer than:"
63
  msgstr "Les articles similaires devront être plus récent de :"
64
 
65
- #: admin.inc.php:192
66
  msgid "days"
67
  msgstr "jours"
68
 
69
- #: admin.inc.php:193
70
  msgid ""
71
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
72
  "it to 365 will show related posts from the last year only."
73
  msgstr ""
74
 
75
- #: admin.inc.php:196
76
  #, fuzzy
77
- msgid "Post types to include in results."
78
  msgstr ""
79
  "Type d'article à inclure dans les résultats (y compris les types "
80
  "personnalisés)"
81
 
82
- #: admin.inc.php:205
83
  #, fuzzy
84
  msgid ""
85
  "These post types will be displayed in the list. Includes custom post types."
@@ -87,13 +87,14 @@ msgstr ""
87
  "Type d'article à inclure dans les résultats (y compris les types "
88
  "personnalisés)"
89
 
90
- #: admin.inc.php:208
91
- msgid "Find related posts based on content as well as title"
 
92
  msgstr ""
93
  "Trouver les articles similaires en se basant sur le contenu ainsi que le "
94
  "titre"
95
 
96
- #: admin.inc.php:210
97
  msgid ""
98
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
99
  "or enabling \"Cache output\" above if you enable this."
@@ -102,73 +103,49 @@ msgstr ""
102
  "l'option \"Cache de l'affichage\" ci-dessus. Si non cochée, les titres des "
103
  "articles seront uniquement utilisés."
104
 
105
- #: admin.inc.php:213
106
  msgid "Limit content to be compared"
107
  msgstr ""
108
 
109
- #: admin.inc.php:215
110
  msgid ""
111
  "This sets the maximum words of the content that will be matched. 0 means no "
112
  "limit."
113
  msgstr ""
114
 
115
- #: admin.inc.php:218
116
- msgid "List of post or page IDs to exclude from the results: "
117
- msgstr "Liste des ID d'article ou de page à exclure des résultats :"
118
-
119
- #: admin.inc.php:220 admin.inc.php:315
120
- #, fuzzy
121
- msgid ""
122
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
123
- msgstr "Entrer une liste d'ID (ex : 188, 320, 500) séparé par une virgule."
124
-
125
- #: admin.inc.php:223
126
- msgid "Categories to exclude from the results: "
127
- msgstr "Catégories à exclure des résultats :"
128
-
129
- #: admin.inc.php:239
130
- msgid ""
131
- "Comma separated list of category slugs. The field above has an autocomplete "
132
- "so simply start typing in the starting letters and it will prompt you with "
133
- "options"
134
- msgstr ""
135
- "Liste de catégorie séparée par une virgule. Le champ ci-dessus a un "
136
- "remplissage automatique, tapez simplement les premières lettres et il vous "
137
- "proposera des options."
138
-
139
- #: admin.inc.php:242
140
  msgid "Add related posts to:"
141
  msgstr "Ajouter des articles similaires à :"
142
 
143
- #: admin.inc.php:244
144
  msgid "Posts"
145
  msgstr "Articles"
146
 
147
- #: admin.inc.php:245
148
  msgid "Pages"
149
  msgstr "Pages"
150
 
151
- #: admin.inc.php:246
152
  msgid "Home page"
153
  msgstr "Page d'accueil"
154
 
155
- #: admin.inc.php:247
156
  msgid "Feeds"
157
  msgstr "RSS"
158
 
159
- #: admin.inc.php:248
160
  msgid "Category archives"
161
  msgstr "Archives Catégorie"
162
 
163
- #: admin.inc.php:249
164
  msgid "Tag archives"
165
  msgstr "Archives Etiquette"
166
 
167
- #: admin.inc.php:250
168
  msgid "Other archives"
169
  msgstr "Autres archives"
170
 
171
- #: admin.inc.php:251
172
  #, fuzzy
173
  msgid ""
174
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -179,96 +156,154 @@ msgstr ""
179
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> à votre "
180
  "fichier de modèle où vous souhaitez qu'il s'affiche."
181
 
182
- #: admin.inc.php:254
183
  msgid "Content filter priority:"
184
  msgstr ""
185
 
186
- #: admin.inc.php:257
187
  msgid ""
188
  "A higher number will cause the content above to be processed after other "
189
- "filters. Number below 10 is not recommended"
190
  msgstr ""
191
 
192
- #: admin.inc.php:260
193
- msgid "Add a link to the plugin page as a final item in the list"
194
- msgstr "Ajouter un lien vers la page du plugin comme dernier élément de liste"
 
195
 
196
- #: admin.inc.php:262
197
  msgid " <em>Optional</em>"
198
  msgstr " <em>Optionnel</em>"
199
 
200
- #: admin.inc.php:263
201
  #, fuzzy
202
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
203
  msgstr "Page du plugin Contextual Related Posts"
204
 
205
- #: admin.inc.php:270
206
  msgid "Output options"
207
  msgstr "Options d'affichage"
208
 
209
- #: admin.inc.php:273
210
  msgid "Title of related posts: "
211
  msgstr "Titre des articles similaires :"
212
 
213
- #: admin.inc.php:276
214
  msgid ""
215
  "This is the main heading of the related posts. You can also display the "
216
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
217
  "Posts to %postname%</code>"
218
  msgstr ""
219
 
220
- #: admin.inc.php:279
221
  msgid "When there are no posts, what should be shown?"
222
  msgstr "Lorsqu'il n'y a pas d'articles, que doit-on afficher ?"
223
 
224
- #: admin.inc.php:283
225
  msgid "Blank Output"
226
  msgstr "Aucun affichage"
227
 
228
- #: admin.inc.php:287
229
  msgid "Display:"
230
  msgstr "Affichage :"
231
 
232
- #: admin.inc.php:291 admin.inc.php:428
233
  msgid "Show post excerpt in list?"
234
  msgstr "Afficher l'extrait de l'article dans la liste ?"
235
 
236
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
237
  msgid "Length of excerpt (in words): "
238
  msgstr "Longueur de l'extrait (en mots) :"
239
 
240
- #: admin.inc.php:297
241
  msgid "Show post author in list?"
242
  msgstr "Afficher les articles auteur dans la liste ?"
243
 
 
 
 
 
244
  #: admin.inc.php:300
245
  msgid "Show post date in list?"
246
  msgstr "Afficher la date de l'article dans la liste ?"
247
 
248
  #: admin.inc.php:303
 
 
 
 
 
 
249
  msgid "Limit post title length (in characters)"
250
  msgstr "Taille limite du titre (en caractères)"
251
 
252
- #: admin.inc.php:306
 
 
 
 
 
 
253
  msgid "Open links in new window"
254
  msgstr "Ouvrir les liens dans une nouvelle fenêtre"
255
 
256
- #: admin.inc.php:309
257
  msgid "Add nofollow attribute to links in the list"
258
  msgstr "Ajouter l'attribut nofollow aux liens de la liste"
259
 
260
- #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  msgid "Exclude display of related posts on these posts / pages"
262
  msgstr ""
263
  "Exclure l'affichage des articles similaires liés à ces articles / pages"
264
 
265
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  #, fuzzy
267
  msgid "Exclude display of related posts on these post types."
268
  msgstr ""
269
  "Exclure l'affichage des articles similaires liés à ces articles / pages"
270
 
271
- #: admin.inc.php:327
272
  #, fuzzy
273
  msgid ""
274
  "The related posts will not display on any of the above selected post types"
@@ -276,107 +311,116 @@ msgstr ""
276
  "Type d'article à inclure dans les résultats (y compris les types "
277
  "personnalisés)"
278
 
279
- #: admin.inc.php:330
280
  msgid "Customize the output:"
281
  msgstr "Configurer l'affichage :"
282
 
283
- #: admin.inc.php:332
284
  msgid "HTML to display before the list of posts: "
285
  msgstr "HTML à afficher avant la liste des articles :"
286
 
287
- #: admin.inc.php:335
288
  msgid "HTML to display before each list item: "
289
  msgstr "HTML à afficher avant chaque élément de la liste :"
290
 
291
- #: admin.inc.php:338
292
  msgid "HTML to display after each list item: "
293
  msgstr "HTML à afficher après chaque élément de la liste :"
294
 
295
- #: admin.inc.php:341
296
  msgid "HTML to display after the list of posts: "
297
  msgstr "HTML à afficher après la liste des articles :"
298
 
299
- #: admin.inc.php:344
300
  msgid "Post thumbnail options:"
301
  msgstr "Options de la vignette :"
302
 
303
- #: admin.inc.php:346 admin.inc.php:431
304
  msgid "Location of post thumbnail:"
305
  msgstr "Lieu de la vignette :"
306
 
307
- #: admin.inc.php:350 admin.inc.php:435
308
  msgid "Display thumbnails inline with posts, before title"
309
  msgstr "Afficher les vignettes en ligne avec les articles, avant le titre"
310
 
311
- #: admin.inc.php:354 admin.inc.php:439
312
  msgid "Display thumbnails inline with posts, after title"
313
  msgstr "Afficher les vignettes en ligne avec les articles, après le titre"
314
 
315
- #: admin.inc.php:358 admin.inc.php:443
316
  msgid "Display only thumbnails, no text"
317
  msgstr "Afficher seulement les vignettes, aucun texte"
318
 
319
- #: admin.inc.php:362 admin.inc.php:447
320
  msgid "Do not display thumbnails, only text."
321
  msgstr "Ne pas afficher les vignettes, seulement le texte."
322
 
323
- #: admin.inc.php:366 admin.inc.php:451
324
  msgid "Maximum width of the thumbnail: "
325
  msgstr "Largeur maximale de la vignette :"
326
 
327
- #: admin.inc.php:369 admin.inc.php:454
328
  msgid "Maximum height of the thumbnail: "
329
  msgstr "Hauteur maximale de la vignette :"
330
 
331
- #: admin.inc.php:372
 
 
 
 
 
 
332
  msgid "Style attributes / Width and Height HTML attributes:"
333
  msgstr "Attributs de style / attributs HTML width et height :"
334
 
335
- #: admin.inc.php:376
336
- msgid ""
337
- "Style attributes are used for width and height. <code>style=\"max-width:"
338
  msgstr ""
339
  "Les attributs de style sont utilisés pour la largeur et la hauteur. "
340
  "<code>style=\"max-width:"
341
 
342
- #: admin.inc.php:380
343
- msgid ""
344
- "HTML width and height attributes are used for width and height. <code>width="
345
- "\""
346
  msgstr ""
347
  "Les attributs HTML width et height sont utilisés pour la largeur et la "
348
  "hauteur. <code>width=\""
349
 
350
- #: admin.inc.php:384
351
  msgid "Use timthumb to generate thumbnails? "
352
  msgstr "Utiliser TimThumb pour générer les vignettes ?"
353
 
354
- #: admin.inc.php:386
 
355
  msgid ""
356
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
357
- "\">timthumb</a> will be used to generate thumbnails"
358
  msgstr ""
359
  "Si cochée, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
360
  "\">TimThumb</a> sera utilisé pour générer les vignettes."
361
 
362
- #: admin.inc.php:389
363
- msgid "Quality of thumbnails generated by timthumb"
 
364
  msgstr "Qualité des vignettes généré par TimThumb"
365
 
366
- #: admin.inc.php:392
 
367
  msgid ""
368
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
369
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
370
  msgstr ""
371
  "Entrer une valeur entre 0 et 100. 100 étant la qualité la plus haute, c'est "
372
  "également la taille du fichier la plus élevé. La valeur maximale suggérée "
373
  "est 95. La valeur par défaut est 75."
374
 
375
- #: admin.inc.php:395
376
- msgid "Post thumbnail meta field name: "
 
377
  msgstr "Nom du champ meta de la vignette :"
378
 
379
- #: admin.inc.php:397
380
  msgid ""
381
  "The value of this field should contain the image source and is set in the "
382
  "<em>Add New Post</em> screen"
@@ -384,27 +428,22 @@ msgstr ""
384
  "La valeur de ce champ doit contenir la source de l'image et est situé dans "
385
  "l'écran <em>Ajouter un nouvel article</em>"
386
 
387
- #: admin.inc.php:400
388
- msgid ""
389
- "If the postmeta is not set, then should the plugin extract the first image "
390
- "from the post?"
391
  msgstr ""
392
- "Si le meta n'est pas défini, alors le plugin doit-il extraire la première "
393
- "image de l'article ?"
394
 
395
- #: admin.inc.php:402
396
  msgid ""
397
- "This can slow down the loading of your page if the first image in the "
398
- "related posts is large in file-size"
399
  msgstr ""
400
- "Cela peut ralentir le chargement de votre page, si la première image dans "
401
- "les articles similaires est un fichier de grande taille."
402
 
403
- #: admin.inc.php:405
404
- msgid "Use default thumbnail? "
 
405
  msgstr "Utiliser la vignette par défaut ?"
406
 
407
- #: admin.inc.php:407
408
  msgid ""
409
  "If checked, when no thumbnail is found, show a default one from the URL "
410
  "below. If not checked and no thumbnail is found, no image will be shown."
@@ -413,25 +452,27 @@ msgstr ""
413
  "l'adresse URL ci-dessous. Si elle n'est pas cochée et aucune vignette n'est "
414
  "trouvée, aucune image ne sera affichée."
415
 
416
- #: admin.inc.php:410
417
- msgid "Default thumbnail: "
 
418
  msgstr "Vignette par défaut :"
419
 
420
- #: admin.inc.php:413
 
421
  msgid ""
422
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
423
  "then it will check the meta field. If this is not available, then it will "
424
- "show the default image as specified above"
425
  msgstr ""
426
  "Le plugin va d'abord vérifier si l'article contient une vignette. Si ce "
427
  "n'est pas le cas, il vérifiera le champ meta. S'il n'est pas disponible, "
428
  "alors il affichera l'image par défaut comme indiqué ci-dessus."
429
 
430
- #: admin.inc.php:420
431
  msgid "Feed options"
432
  msgstr "Options Flux RSS"
433
 
434
- #: admin.inc.php:423
435
  msgid ""
436
  "Below options override the related posts settings for your blog feed. These "
437
  "only apply if you have selected to add related posts to Feeds in the General "
@@ -441,33 +482,33 @@ msgstr ""
441
  "les RSS. Ceux-ci s'appliquent uniquement si vous avez choisi d'ajouter les "
442
  "articles similaires aux RSS dans l'onglet Options générales."
443
 
444
- #: admin.inc.php:461
445
  #, fuzzy
446
  msgid "Custom styles"
447
  msgstr "Styles personnalisés"
448
 
449
- #: admin.inc.php:464
450
  msgid "Use default style included in the plugin?"
451
  msgstr ""
452
 
453
- #: admin.inc.php:467
454
  msgid ""
455
  "Contextual Related Posts includes a default style that makes your popular "
456
  "posts list to look pretty. Check the box above if you want to use this."
457
  msgstr ""
458
 
459
- #: admin.inc.php:468
460
  msgid ""
461
  "Enabling this option will automatically turn on the thumbnails and set their "
462
  "width and height to 150px. Disabling this will not turn off thumbnails or "
463
  "change their dimensions."
464
  msgstr ""
465
 
466
- #: admin.inc.php:471
467
  msgid "Custom CSS to add to header:"
468
  msgstr "CSS personnalisé à ajouter à l'entête :"
469
 
470
- #: admin.inc.php:475
471
  msgid ""
472
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
473
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
@@ -477,84 +518,94 @@ msgstr ""
477
  "\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
478
  "\"_blank\">FAQ</a> pour les classes CSS de style disponible."
479
 
480
- #: admin.inc.php:482
481
  msgid "Save Options"
482
  msgstr "Enregistrer les options"
483
 
484
- #: admin.inc.php:483
485
  msgid "Default Options"
486
  msgstr "Options par défaut"
487
 
488
- #: admin.inc.php:483
489
  msgid "Do you want to set options to Default?"
490
  msgstr "Voulez-vous définir les options par défaut ?"
491
 
492
- #: admin.inc.php:484
493
  msgid "Recreate Index"
494
  msgstr "Recréer l'index"
495
 
496
- #: admin.inc.php:484
497
  msgid "Are you sure you want to recreate the index?"
498
  msgstr "Etes vous certain de vouloir recréer l'index ?"
499
 
500
- #: admin.inc.php:492
501
  msgid "Support the development"
502
  msgstr "Soutenir le développement"
503
 
504
- #: admin.inc.php:501
505
- msgid "Enter amount in USD: "
 
 
 
 
 
 
506
  msgstr "Entrer le montant en USD :"
507
 
508
- #: admin.inc.php:505
509
  msgid "Send your donation to the author of"
510
  msgstr "Envoyer votre don à l'auteur de"
511
 
512
- #: admin.inc.php:512
513
  msgid "Follow me"
514
  msgstr ""
515
 
516
- #: admin.inc.php:522
517
  #, fuzzy
518
  msgid "Quick links"
519
  msgstr "Liens rapides"
520
 
521
- #: admin.inc.php:526
522
  msgid "Contextual Related Posts plugin page"
523
  msgstr "Page du plugin Contextual Related Posts"
524
 
525
- #: admin.inc.php:527
526
- msgid "Other plugins"
527
- msgstr "Autres plugins"
528
-
529
- #: admin.inc.php:528
530
- msgid "Ajay's blog"
531
- msgstr "Blog d'Ajay"
532
-
533
- #: admin.inc.php:529
534
  msgid "FAQ"
535
  msgstr ""
536
 
537
- #: admin.inc.php:530 contextual-related-posts.php:927
538
  msgid "Support"
539
  msgstr "Support"
540
 
541
- #: admin.inc.php:531
542
  msgid "Reviews"
543
  msgstr "Commentaires"
544
 
545
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
546
  msgid "Contextual Related Posts"
547
  msgstr "Contextual Related Posts"
548
 
549
- #: admin.inc.php:554 contextual-related-posts.php:372
550
  msgid "Related Posts"
551
  msgstr "Related Posts"
552
 
553
- #: admin.inc.php:658
554
  msgid "plugin settings page"
555
  msgstr "page des paramètres du plugin"
556
 
557
- #: admin.inc.php:692
558
  msgid ""
559
  "An error occurred clearing the cache. Please contact your site administrator."
560
  "\\n\\nError message:\\n"
@@ -562,86 +613,125 @@ msgstr ""
562
  "Une erreur s'est produite en vidant le cache. Contacter l'administrateur du "
563
  "site.\\n\\nMessage d'erreur :\\n"
564
 
565
- #: admin.inc.php:697
566
  msgid " cached row(s) cleared"
567
  msgstr "Ligne(s) en cache nettoyée(s)."
568
 
569
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
570
  msgid " by "
571
  msgstr ""
572
 
573
- #: contextual-related-posts.php:143
574
  msgid "Powered by"
575
  msgstr "Propulsé par"
576
 
577
- #: contextual-related-posts.php:371
 
 
 
 
 
578
  msgid "Display Related Posts"
579
  msgstr "Afficher les articles similaires"
580
 
581
- #: contextual-related-posts.php:386
582
  msgid "Title"
583
  msgstr "Titre"
584
 
585
- #: contextual-related-posts.php:391
586
  msgid "No. of posts"
587
  msgstr "Nombre d'articles"
588
 
589
- #: contextual-related-posts.php:396
590
  msgid " Show excerpt?"
591
  msgstr " Voir l'extrait ?"
592
 
593
- #: contextual-related-posts.php:401
594
  msgid " Show author?"
595
  msgstr " Afficher l'auteur ?"
596
 
597
- #: contextual-related-posts.php:406
598
  msgid " Show date?"
599
  msgstr " Afficher la date ?"
600
 
601
- #: contextual-related-posts.php:410
602
  msgid "Thumbnail options"
603
  msgstr "Options des vignettes"
604
 
605
- #: contextual-related-posts.php:412
606
  msgid "Thumbnails inline, before title"
607
  msgstr "Vignettes en ligne, avant le titre"
608
 
609
- #: contextual-related-posts.php:413
610
  msgid "Thumbnails inline, after title"
611
  msgstr "Vignettes en ligne, après le titre"
612
 
613
- #: contextual-related-posts.php:414
614
  msgid "Only thumbnails, no text"
615
  msgstr "Seulement les vignettes, aucun texte."
616
 
617
- #: contextual-related-posts.php:415
618
  msgid "No thumbnails, only text."
619
  msgstr "Aucunes vignettes, texte seulement."
620
 
621
- #: contextual-related-posts.php:420
622
  msgid "Thumbnail height"
623
  msgstr "Hauteur de la vignette"
624
 
625
- #: contextual-related-posts.php:425
626
  msgid "Thumbnail width"
627
  msgstr "Largeur de la vignette"
628
 
629
- #: contextual-related-posts.php:548
630
  msgid "<h3>Related Posts:</h3>"
631
  msgstr "<h3>Articles similaires :</h3>"
632
 
633
- #: contextual-related-posts.php:549
634
  msgid "No related posts found"
635
  msgstr "Aucun article similaire trouvé."
636
 
637
- #: contextual-related-posts.php:907
638
  msgid "Settings"
639
  msgstr "Réglages"
640
 
641
- #: contextual-related-posts.php:928
642
  msgid "Donate"
643
  msgstr "Faire un don"
644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645
  #~ msgid "Recent developments"
646
  #~ msgstr "Développements récents"
647
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:37-0000\n"
6
+ "PO-Revision-Date: 2014-05-10 21:37-0000\n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Olivier Copetto <olivier@copetto.com>\n"
9
  "Language: fr\n"
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:141
19
  msgid "Options saved successfully."
20
  msgstr "Options enregistrées avec succès."
21
 
22
+ #: admin.inc.php:161
23
  msgid "Options set to Default."
24
  msgstr "Options définies par défaut."
25
 
26
+ #: admin.inc.php:177
27
  msgid "Index recreated"
28
  msgstr "L'index a été recréé."
29
 
30
+ #: admin.inc.php:189
31
  msgid "General options"
32
  msgstr "Options générales"
33
 
34
+ #: admin.inc.php:192
35
  msgid "Cache output?"
36
  msgstr "Cache de l'affichage ?"
37
 
38
+ #: admin.inc.php:194
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
44
  "similaires lorsque l'article est visité pour la première fois. Le cache est "
45
  "nettoyé lorsque vous enregistrez cette page."
46
 
47
+ #: admin.inc.php:195
48
  msgid "Clear cache"
49
  msgstr "Effacer le cache"
50
 
51
+ #: admin.inc.php:198 admin.inc.php:462
52
  msgid "Number of related posts to display: "
53
  msgstr "Nombre d'articles similaires<br>à afficher :"
54
 
55
+ #: admin.inc.php:201
56
  msgid ""
57
  "Maximum number of posts that will be displayed. The actual number may be "
58
  "smaller if less related posts are found."
59
  msgstr ""
60
 
61
+ #: admin.inc.php:204
62
  msgid "Related posts should be newer than:"
63
  msgstr "Les articles similaires devront être plus récent de :"
64
 
65
+ #: admin.inc.php:206
66
  msgid "days"
67
  msgstr "jours"
68
 
69
+ #: admin.inc.php:207
70
  msgid ""
71
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
72
  "it to 365 will show related posts from the last year only."
73
  msgstr ""
74
 
75
+ #: admin.inc.php:210
76
  #, fuzzy
77
+ msgid "Post types to include in results:"
78
  msgstr ""
79
  "Type d'article à inclure dans les résultats (y compris les types "
80
  "personnalisés)"
81
 
82
+ #: admin.inc.php:221
83
  #, fuzzy
84
  msgid ""
85
  "These post types will be displayed in the list. Includes custom post types."
87
  "Type d'article à inclure dans les résultats (y compris les types "
88
  "personnalisés)"
89
 
90
+ #: admin.inc.php:224
91
+ #, fuzzy
92
+ msgid "Find related posts based on content as well as title:"
93
  msgstr ""
94
  "Trouver les articles similaires en se basant sur le contenu ainsi que le "
95
  "titre"
96
 
97
+ #: admin.inc.php:226
98
  msgid ""
99
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
100
  "or enabling \"Cache output\" above if you enable this."
103
  "l'option \"Cache de l'affichage\" ci-dessus. Si non cochée, les titres des "
104
  "articles seront uniquement utilisés."
105
 
106
+ #: admin.inc.php:229
107
  msgid "Limit content to be compared"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:231
111
  msgid ""
112
  "This sets the maximum words of the content that will be matched. 0 means no "
113
  "limit."
114
  msgstr ""
115
 
116
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  msgid "Add related posts to:"
118
  msgstr "Ajouter des articles similaires à :"
119
 
120
+ #: admin.inc.php:236
121
  msgid "Posts"
122
  msgstr "Articles"
123
 
124
+ #: admin.inc.php:237
125
  msgid "Pages"
126
  msgstr "Pages"
127
 
128
+ #: admin.inc.php:238
129
  msgid "Home page"
130
  msgstr "Page d'accueil"
131
 
132
+ #: admin.inc.php:239
133
  msgid "Feeds"
134
  msgstr "RSS"
135
 
136
+ #: admin.inc.php:240
137
  msgid "Category archives"
138
  msgstr "Archives Catégorie"
139
 
140
+ #: admin.inc.php:241
141
  msgid "Tag archives"
142
  msgstr "Archives Etiquette"
143
 
144
+ #: admin.inc.php:242
145
  msgid "Other archives"
146
  msgstr "Autres archives"
147
 
148
+ #: admin.inc.php:243
149
  #, fuzzy
150
  msgid ""
151
  "If you choose to disable this, please add <code>&lt;?php if "
156
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> à votre "
157
  "fichier de modèle où vous souhaitez qu'il s'affiche."
158
 
159
+ #: admin.inc.php:246
160
  msgid "Content filter priority:"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:249
164
  msgid ""
165
  "A higher number will cause the content above to be processed after other "
166
+ "filters. Number below 10 is not recommended."
167
  msgstr ""
168
 
169
+ #: admin.inc.php:252
170
+ #, fuzzy
171
+ msgid "Tell the world you're using Contextual Related Posts:"
172
+ msgstr "Contextual Related Posts"
173
 
174
+ #: admin.inc.php:254
175
  msgid " <em>Optional</em>"
176
  msgstr " <em>Optionnel</em>"
177
 
178
+ #: admin.inc.php:255
179
  #, fuzzy
180
+ msgid ""
181
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
182
+ "in the list."
183
  msgstr "Page du plugin Contextual Related Posts"
184
 
185
+ #: admin.inc.php:262
186
  msgid "Output options"
187
  msgstr "Options d'affichage"
188
 
189
+ #: admin.inc.php:265
190
  msgid "Title of related posts: "
191
  msgstr "Titre des articles similaires :"
192
 
193
+ #: admin.inc.php:268
194
  msgid ""
195
  "This is the main heading of the related posts. You can also display the "
196
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
197
  "Posts to %postname%</code>"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:271
201
  msgid "When there are no posts, what should be shown?"
202
  msgstr "Lorsqu'il n'y a pas d'articles, que doit-on afficher ?"
203
 
204
+ #: admin.inc.php:275
205
  msgid "Blank Output"
206
  msgstr "Aucun affichage"
207
 
208
+ #: admin.inc.php:279
209
  msgid "Display:"
210
  msgstr "Affichage :"
211
 
212
+ #: admin.inc.php:283 admin.inc.php:465
213
  msgid "Show post excerpt in list?"
214
  msgstr "Afficher l'extrait de l'article dans la liste ?"
215
 
216
+ #: admin.inc.php:286
217
+ #, php-format
218
+ msgid ""
219
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
220
+ "to a post (in the post editor's optional excerpt field), it will display an "
221
+ "automatic excerpt which refers to the first %d words of the post's content"
222
+ msgstr ""
223
+
224
+ #: admin.inc.php:289
225
  msgid "Length of excerpt (in words): "
226
  msgstr "Longueur de l'extrait (en mots) :"
227
 
228
+ #: admin.inc.php:294
229
  msgid "Show post author in list?"
230
  msgstr "Afficher les articles auteur dans la liste ?"
231
 
232
+ #: admin.inc.php:297
233
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
234
+ msgstr ""
235
+
236
  #: admin.inc.php:300
237
  msgid "Show post date in list?"
238
  msgstr "Afficher la date de l'article dans la liste ?"
239
 
240
  #: admin.inc.php:303
241
+ msgid ""
242
+ "Displays the date of the post. Uses the same date format set in General "
243
+ "Options"
244
+ msgstr ""
245
+
246
+ #: admin.inc.php:306
247
  msgid "Limit post title length (in characters)"
248
  msgstr "Taille limite du titre (en caractères)"
249
 
250
+ #: admin.inc.php:309
251
+ msgid ""
252
+ "Any title longer than the number of characters set above will be cut and "
253
+ "appended with a &helip;"
254
+ msgstr ""
255
+
256
+ #: admin.inc.php:312
257
  msgid "Open links in new window"
258
  msgstr "Ouvrir les liens dans une nouvelle fenêtre"
259
 
260
+ #: admin.inc.php:315
261
  msgid "Add nofollow attribute to links in the list"
262
  msgstr "Ajouter l'attribut nofollow aux liens de la liste"
263
 
264
+ #: admin.inc.php:318
265
+ #, fuzzy
266
+ msgid "Exclusion settings:"
267
+ msgstr "page des paramètres du plugin"
268
+
269
+ #: admin.inc.php:320
270
+ #, fuzzy
271
+ msgid "List of post or page IDs to exclude from the results:"
272
+ msgstr "Liste des ID d'article ou de page à exclure des résultats :"
273
+
274
+ #: admin.inc.php:322 admin.inc.php:328
275
+ #, fuzzy
276
+ msgid ""
277
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
278
+ msgstr "Entrer une liste d'ID (ex : 188, 320, 500) séparé par une virgule."
279
+
280
+ #: admin.inc.php:325
281
  msgid "Exclude display of related posts on these posts / pages"
282
  msgstr ""
283
  "Exclure l'affichage des articles similaires liés à ces articles / pages"
284
 
285
+ #: admin.inc.php:331
286
+ msgid "Categories to exclude from the results: "
287
+ msgstr "Catégories à exclure des résultats :"
288
+
289
+ #: admin.inc.php:347
290
+ #, fuzzy
291
+ msgid ""
292
+ "Comma separated list of category slugs. The field above has an autocomplete "
293
+ "so simply start typing in the beginning of your category name and it will "
294
+ "prompt you with options."
295
+ msgstr ""
296
+ "Liste de catégorie séparée par une virgule. Le champ ci-dessus a un "
297
+ "remplissage automatique, tapez simplement les premières lettres et il vous "
298
+ "proposera des options."
299
+
300
+ #: admin.inc.php:350
301
  #, fuzzy
302
  msgid "Exclude display of related posts on these post types."
303
  msgstr ""
304
  "Exclure l'affichage des articles similaires liés à ces articles / pages"
305
 
306
+ #: admin.inc.php:359
307
  #, fuzzy
308
  msgid ""
309
  "The related posts will not display on any of the above selected post types"
311
  "Type d'article à inclure dans les résultats (y compris les types "
312
  "personnalisés)"
313
 
314
+ #: admin.inc.php:362
315
  msgid "Customize the output:"
316
  msgstr "Configurer l'affichage :"
317
 
318
+ #: admin.inc.php:364
319
  msgid "HTML to display before the list of posts: "
320
  msgstr "HTML à afficher avant la liste des articles :"
321
 
322
+ #: admin.inc.php:367
323
  msgid "HTML to display before each list item: "
324
  msgstr "HTML à afficher avant chaque élément de la liste :"
325
 
326
+ #: admin.inc.php:370
327
  msgid "HTML to display after each list item: "
328
  msgstr "HTML à afficher après chaque élément de la liste :"
329
 
330
+ #: admin.inc.php:373
331
  msgid "HTML to display after the list of posts: "
332
  msgstr "HTML à afficher après la liste des articles :"
333
 
334
+ #: admin.inc.php:376
335
  msgid "Post thumbnail options:"
336
  msgstr "Options de la vignette :"
337
 
338
+ #: admin.inc.php:378 admin.inc.php:468
339
  msgid "Location of post thumbnail:"
340
  msgstr "Lieu de la vignette :"
341
 
342
+ #: admin.inc.php:382 admin.inc.php:472
343
  msgid "Display thumbnails inline with posts, before title"
344
  msgstr "Afficher les vignettes en ligne avec les articles, avant le titre"
345
 
346
+ #: admin.inc.php:386 admin.inc.php:476
347
  msgid "Display thumbnails inline with posts, after title"
348
  msgstr "Afficher les vignettes en ligne avec les articles, après le titre"
349
 
350
+ #: admin.inc.php:390 admin.inc.php:480
351
  msgid "Display only thumbnails, no text"
352
  msgstr "Afficher seulement les vignettes, aucun texte"
353
 
354
+ #: admin.inc.php:394 admin.inc.php:484
355
  msgid "Do not display thumbnails, only text."
356
  msgstr "Ne pas afficher les vignettes, seulement le texte."
357
 
358
+ #: admin.inc.php:398 admin.inc.php:488
359
  msgid "Maximum width of the thumbnail: "
360
  msgstr "Largeur maximale de la vignette :"
361
 
362
+ #: admin.inc.php:401 admin.inc.php:491
363
  msgid "Maximum height of the thumbnail: "
364
  msgstr "Hauteur maximale de la vignette :"
365
 
366
+ #: admin.inc.php:405
367
+ msgid ""
368
+ "Since you're using the default styles set under the Custom Styles section, "
369
+ "the width and height is fixed at 150px"
370
+ msgstr ""
371
+
372
+ #: admin.inc.php:409
373
  msgid "Style attributes / Width and Height HTML attributes:"
374
  msgstr "Attributs de style / attributs HTML width et height :"
375
 
376
+ #: admin.inc.php:413
377
+ #, fuzzy
378
+ msgid "Style attributes are used for width and height."
379
  msgstr ""
380
  "Les attributs de style sont utilisés pour la largeur et la hauteur. "
381
  "<code>style=\"max-width:"
382
 
383
+ #: admin.inc.php:417
384
+ #, fuzzy
385
+ msgid "HTML width and height attributes are used for width and height."
 
386
  msgstr ""
387
  "Les attributs HTML width et height sont utilisés pour la largeur et la "
388
  "hauteur. <code>width=\""
389
 
390
+ #: admin.inc.php:421
391
  msgid "Use timthumb to generate thumbnails? "
392
  msgstr "Utiliser TimThumb pour générer les vignettes ?"
393
 
394
+ #: admin.inc.php:423
395
+ #, fuzzy
396
  msgid ""
397
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
398
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
399
  msgstr ""
400
  "Si cochée, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
401
  "\">TimThumb</a> sera utilisé pour générer les vignettes."
402
 
403
+ #: admin.inc.php:426
404
+ #, fuzzy
405
+ msgid "Quality of thumbnails generated by timthumb:"
406
  msgstr "Qualité des vignettes généré par TimThumb"
407
 
408
+ #: admin.inc.php:429
409
+ #, fuzzy
410
  msgid ""
411
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
412
+ "file size. Suggested maximum value is 95. CRP default is 75."
413
  msgstr ""
414
  "Entrer une valeur entre 0 et 100. 100 étant la qualité la plus haute, c'est "
415
  "également la taille du fichier la plus élevé. La valeur maximale suggérée "
416
  "est 95. La valeur par défaut est 75."
417
 
418
+ #: admin.inc.php:432
419
+ #, fuzzy
420
+ msgid "Post thumbnail meta field name:"
421
  msgstr "Nom du champ meta de la vignette :"
422
 
423
+ #: admin.inc.php:434
424
  msgid ""
425
  "The value of this field should contain the image source and is set in the "
426
  "<em>Add New Post</em> screen"
428
  "La valeur de ce champ doit contenir la source de l'image et est situé dans "
429
  "l'écran <em>Ajouter un nouvel article</em>"
430
 
431
+ #: admin.inc.php:437
432
+ msgid "Extract the first image from the post?"
 
 
433
  msgstr ""
 
 
434
 
435
+ #: admin.inc.php:439
436
  msgid ""
437
+ "This will only happen if there is no post thumbnail set and no image URL is "
438
+ "specified in the meta field."
439
  msgstr ""
 
 
440
 
441
+ #: admin.inc.php:442
442
+ #, fuzzy
443
+ msgid "Use default thumbnail?"
444
  msgstr "Utiliser la vignette par défaut ?"
445
 
446
+ #: admin.inc.php:444
447
  msgid ""
448
  "If checked, when no thumbnail is found, show a default one from the URL "
449
  "below. If not checked and no thumbnail is found, no image will be shown."
452
  "l'adresse URL ci-dessous. Si elle n'est pas cochée et aucune vignette n'est "
453
  "trouvée, aucune image ne sera affichée."
454
 
455
+ #: admin.inc.php:447
456
+ #, fuzzy
457
+ msgid "Default thumbnail:"
458
  msgstr "Vignette par défaut :"
459
 
460
+ #: admin.inc.php:450
461
+ #, fuzzy
462
  msgid ""
463
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
464
  "then it will check the meta field. If this is not available, then it will "
465
+ "show the default image as specified above."
466
  msgstr ""
467
  "Le plugin va d'abord vérifier si l'article contient une vignette. Si ce "
468
  "n'est pas le cas, il vérifiera le champ meta. S'il n'est pas disponible, "
469
  "alors il affichera l'image par défaut comme indiqué ci-dessus."
470
 
471
+ #: admin.inc.php:457
472
  msgid "Feed options"
473
  msgstr "Options Flux RSS"
474
 
475
+ #: admin.inc.php:460
476
  msgid ""
477
  "Below options override the related posts settings for your blog feed. These "
478
  "only apply if you have selected to add related posts to Feeds in the General "
482
  "les RSS. Ceux-ci s'appliquent uniquement si vous avez choisi d'ajouter les "
483
  "articles similaires aux RSS dans l'onglet Options générales."
484
 
485
+ #: admin.inc.php:498
486
  #, fuzzy
487
  msgid "Custom styles"
488
  msgstr "Styles personnalisés"
489
 
490
+ #: admin.inc.php:501
491
  msgid "Use default style included in the plugin?"
492
  msgstr ""
493
 
494
+ #: admin.inc.php:504
495
  msgid ""
496
  "Contextual Related Posts includes a default style that makes your popular "
497
  "posts list to look pretty. Check the box above if you want to use this."
498
  msgstr ""
499
 
500
+ #: admin.inc.php:505
501
  msgid ""
502
  "Enabling this option will automatically turn on the thumbnails and set their "
503
  "width and height to 150px. Disabling this will not turn off thumbnails or "
504
  "change their dimensions."
505
  msgstr ""
506
 
507
+ #: admin.inc.php:508
508
  msgid "Custom CSS to add to header:"
509
  msgstr "CSS personnalisé à ajouter à l'entête :"
510
 
511
+ #: admin.inc.php:512
512
  msgid ""
513
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
514
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
518
  "\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
519
  "\"_blank\">FAQ</a> pour les classes CSS de style disponible."
520
 
521
+ #: admin.inc.php:519
522
  msgid "Save Options"
523
  msgstr "Enregistrer les options"
524
 
525
+ #: admin.inc.php:520
526
  msgid "Default Options"
527
  msgstr "Options par défaut"
528
 
529
+ #: admin.inc.php:520
530
  msgid "Do you want to set options to Default?"
531
  msgstr "Voulez-vous définir les options par défaut ?"
532
 
533
+ #: admin.inc.php:521
534
  msgid "Recreate Index"
535
  msgstr "Recréer l'index"
536
 
537
+ #: admin.inc.php:521
538
  msgid "Are you sure you want to recreate the index?"
539
  msgstr "Etes vous certain de vouloir recréer l'index ?"
540
 
541
+ #: admin.inc.php:529
542
  msgid "Support the development"
543
  msgstr "Soutenir le développement"
544
 
545
+ #: admin.inc.php:536
546
+ #, fuzzy
547
+ msgid "Donation for Contextual Related Posts"
548
+ msgstr "Contextual Related Posts"
549
+
550
+ #: admin.inc.php:538
551
+ #, fuzzy
552
+ msgid "Enter amount in USD:"
553
  msgstr "Entrer le montant en USD :"
554
 
555
+ #: admin.inc.php:542
556
  msgid "Send your donation to the author of"
557
  msgstr "Envoyer votre don à l'auteur de"
558
 
559
+ #: admin.inc.php:549
560
  msgid "Follow me"
561
  msgstr ""
562
 
563
+ #: admin.inc.php:559
564
  #, fuzzy
565
  msgid "Quick links"
566
  msgstr "Liens rapides"
567
 
568
+ #: admin.inc.php:563
569
  msgid "Contextual Related Posts plugin page"
570
  msgstr "Page du plugin Contextual Related Posts"
571
 
572
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
573
  msgid "FAQ"
574
  msgstr ""
575
 
576
+ #: admin.inc.php:565 contextual-related-posts.php:964
577
  msgid "Support"
578
  msgstr "Support"
579
 
580
+ #: admin.inc.php:566
581
  msgid "Reviews"
582
  msgstr "Commentaires"
583
 
584
+ #: admin.inc.php:567
585
+ msgid "Github repository"
586
+ msgstr ""
587
+
588
+ #: admin.inc.php:568
589
+ msgid "Other plugins"
590
+ msgstr "Autres plugins"
591
+
592
+ #: admin.inc.php:569
593
+ msgid "Ajay's blog"
594
+ msgstr "Blog d'Ajay"
595
+
596
+ #: admin.inc.php:591 admin.inc.php:752
597
  msgid "Contextual Related Posts"
598
  msgstr "Contextual Related Posts"
599
 
600
+ #: admin.inc.php:591
601
  msgid "Related Posts"
602
  msgstr "Related Posts"
603
 
604
+ #: admin.inc.php:694
605
  msgid "plugin settings page"
606
  msgstr "page des paramètres du plugin"
607
 
608
+ #: admin.inc.php:728
609
  msgid ""
610
  "An error occurred clearing the cache. Please contact your site administrator."
611
  "\\n\\nError message:\\n"
613
  "Une erreur s'est produite en vidant le cache. Contacter l'administrateur du "
614
  "site.\\n\\nMessage d'erreur :\\n"
615
 
616
+ #: admin.inc.php:733
617
  msgid " cached row(s) cleared"
618
  msgstr "Ligne(s) en cache nettoyée(s)."
619
 
620
+ #: admin.inc.php:779
621
+ #, fuzzy
622
+ msgid "Location of thumbnail:"
623
+ msgstr "Lieu de la vignette :"
624
+
625
+ #: admin.inc.php:781
626
+ msgid ""
627
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
628
+ "image will be used for the post. It will be resized to the thumbnail size "
629
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
630
+ msgstr ""
631
+
632
+ #: admin.inc.php:782
633
+ msgid "The URL above is saved in the meta field: "
634
+ msgstr ""
635
+
636
+ #: contextual-related-posts.php:127
637
  msgid " by "
638
  msgstr ""
639
 
640
+ #: contextual-related-posts.php:142
641
  msgid "Powered by"
642
  msgstr "Propulsé par"
643
 
644
+ #: contextual-related-posts.php:376
645
+ #, fuzzy
646
+ msgid "Related Posts [CRP]"
647
+ msgstr "Related Posts"
648
+
649
+ #: contextual-related-posts.php:377
650
  msgid "Display Related Posts"
651
  msgstr "Afficher les articles similaires"
652
 
653
+ #: contextual-related-posts.php:400
654
  msgid "Title"
655
  msgstr "Titre"
656
 
657
+ #: contextual-related-posts.php:405
658
  msgid "No. of posts"
659
  msgstr "Nombre d'articles"
660
 
661
+ #: contextual-related-posts.php:410
662
  msgid " Show excerpt?"
663
  msgstr " Voir l'extrait ?"
664
 
665
+ #: contextual-related-posts.php:415
666
  msgid " Show author?"
667
  msgstr " Afficher l'auteur ?"
668
 
669
+ #: contextual-related-posts.php:420
670
  msgid " Show date?"
671
  msgstr " Afficher la date ?"
672
 
673
+ #: contextual-related-posts.php:424
674
  msgid "Thumbnail options"
675
  msgstr "Options des vignettes"
676
 
677
+ #: contextual-related-posts.php:426
678
  msgid "Thumbnails inline, before title"
679
  msgstr "Vignettes en ligne, avant le titre"
680
 
681
+ #: contextual-related-posts.php:427
682
  msgid "Thumbnails inline, after title"
683
  msgstr "Vignettes en ligne, après le titre"
684
 
685
+ #: contextual-related-posts.php:428
686
  msgid "Only thumbnails, no text"
687
  msgstr "Seulement les vignettes, aucun texte."
688
 
689
+ #: contextual-related-posts.php:429
690
  msgid "No thumbnails, only text."
691
  msgstr "Aucunes vignettes, texte seulement."
692
 
693
+ #: contextual-related-posts.php:434
694
  msgid "Thumbnail height"
695
  msgstr "Hauteur de la vignette"
696
 
697
+ #: contextual-related-posts.php:439
698
  msgid "Thumbnail width"
699
  msgstr "Largeur de la vignette"
700
 
701
+ #: contextual-related-posts.php:581
702
  msgid "<h3>Related Posts:</h3>"
703
  msgstr "<h3>Articles similaires :</h3>"
704
 
705
+ #: contextual-related-posts.php:582
706
  msgid "No related posts found"
707
  msgstr "Aucun article similaire trouvé."
708
 
709
+ #: contextual-related-posts.php:944
710
  msgid "Settings"
711
  msgstr "Réglages"
712
 
713
+ #: contextual-related-posts.php:965
714
  msgid "Donate"
715
  msgstr "Faire un don"
716
 
717
+ #~ msgid "Add a link to the plugin page as a final item in the list"
718
+ #~ msgstr ""
719
+ #~ "Ajouter un lien vers la page du plugin comme dernier élément de liste"
720
+
721
+ #~ msgid ""
722
+ #~ "If the postmeta is not set, then should the plugin extract the first "
723
+ #~ "image from the post?"
724
+ #~ msgstr ""
725
+ #~ "Si le meta n'est pas défini, alors le plugin doit-il extraire la première "
726
+ #~ "image de l'article ?"
727
+
728
+ #~ msgid ""
729
+ #~ "This can slow down the loading of your page if the first image in the "
730
+ #~ "related posts is large in file-size"
731
+ #~ msgstr ""
732
+ #~ "Cela peut ralentir le chargement de votre page, si la première image dans "
733
+ #~ "les articles similaires est un fichier de grande taille."
734
+
735
  #~ msgid "Recent developments"
736
  #~ msgstr "Développements récents"
737
 
languages/crp-it_IT.mo CHANGED
Binary file
languages/crp-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:24-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
@@ -15,78 +15,79 @@ msgstr ""
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:127
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
- #: admin.inc.php:147
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:163
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
- #: admin.inc.php:175
31
  #, fuzzy
32
  msgid "General options"
33
  msgstr "Le opzioni sono state salvate con successo."
34
 
35
- #: admin.inc.php:178
36
  msgid "Cache output?"
37
  msgstr ""
38
 
39
- #: admin.inc.php:180
40
  msgid ""
41
  "Enabling this option will cache the related posts output when the post is "
42
  "visited the first time. The cache is cleaned when you save this page."
43
  msgstr ""
44
 
45
- #: admin.inc.php:181
46
  msgid "Clear cache"
47
  msgstr ""
48
 
49
- #: admin.inc.php:184 admin.inc.php:425
50
  msgid "Number of related posts to display: "
51
  msgstr "numero di articoli correlati da mostrare:"
52
 
53
- #: admin.inc.php:187
54
  msgid ""
55
  "Maximum number of posts that will be displayed. The actual number may be "
56
  "smaller if less related posts are found."
57
  msgstr ""
58
 
59
- #: admin.inc.php:190
60
  msgid "Related posts should be newer than:"
61
  msgstr ""
62
 
63
- #: admin.inc.php:192
64
  #, fuzzy
65
  msgid "days"
66
  msgstr ""
67
  "Quanti giorni desideri siano considerati per il computo delle "
68
  "visualizzazioni per articoli più popolari del giorno?"
69
 
70
- #: admin.inc.php:193
71
  msgid ""
72
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
73
  "it to 365 will show related posts from the last year only."
74
  msgstr ""
75
 
76
- #: admin.inc.php:196
77
- msgid "Post types to include in results."
78
- msgstr ""
 
79
 
80
- #: admin.inc.php:205
81
  msgid ""
82
  "These post types will be displayed in the list. Includes custom post types."
83
  msgstr ""
84
 
85
- #: admin.inc.php:208
86
- msgid "Find related posts based on content as well as title"
87
  msgstr ""
88
 
89
- #: admin.inc.php:210
90
  #, fuzzy
91
  msgid ""
92
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -96,74 +97,53 @@ msgstr ""
96
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
97
  "preferibile attivare un plugin per la cache)"
98
 
99
- #: admin.inc.php:213
100
  msgid "Limit content to be compared"
101
  msgstr ""
102
 
103
- #: admin.inc.php:215
104
  msgid ""
105
  "This sets the maximum words of the content that will be matched. 0 means no "
106
  "limit."
107
  msgstr ""
108
 
109
- #: admin.inc.php:218
110
- msgid "List of post or page IDs to exclude from the results: "
111
- msgstr ""
112
-
113
- #: admin.inc.php:220 admin.inc.php:315
114
- msgid ""
115
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
116
- msgstr ""
117
-
118
- #: admin.inc.php:223
119
- #, fuzzy
120
- msgid "Categories to exclude from the results: "
121
- msgstr "Escludi categorie:"
122
-
123
- #: admin.inc.php:239
124
- msgid ""
125
- "Comma separated list of category slugs. The field above has an autocomplete "
126
- "so simply start typing in the starting letters and it will prompt you with "
127
- "options"
128
- msgstr ""
129
-
130
- #: admin.inc.php:242
131
  #, fuzzy
132
  msgid "Add related posts to:"
133
  msgstr "Gli articoli più popolari"
134
 
135
- #: admin.inc.php:244
136
  #, fuzzy
137
  msgid "Posts"
138
  msgstr "Gli articoli più popolari"
139
 
140
- #: admin.inc.php:245
141
  msgid "Pages"
142
  msgstr ""
143
 
144
- #: admin.inc.php:246
145
  #, fuzzy
146
  msgid "Home page"
147
  msgstr "Risultati per pagina:"
148
 
149
- #: admin.inc.php:247
150
  msgid "Feeds"
151
  msgstr ""
152
 
153
- #: admin.inc.php:248
154
  msgid "Category archives"
155
  msgstr ""
156
 
157
- #: admin.inc.php:249
158
  msgid "Tag archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:250
162
  #, fuzzy
163
  msgid "Other archives"
164
  msgstr "Altri plugin"
165
 
166
- #: admin.inc.php:251
167
  #, fuzzy
168
  msgid ""
169
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -175,233 +155,278 @@ msgstr ""
175
  "echo_ald_crp(); ?&gt;</code> nel tuo template laddove desideri che siano "
176
  "visualizzati"
177
 
178
- #: admin.inc.php:254
179
  msgid "Content filter priority:"
180
  msgstr ""
181
 
182
- #: admin.inc.php:257
183
  msgid ""
184
  "A higher number will cause the content above to be processed after other "
185
- "filters. Number below 10 is not recommended"
186
  msgstr ""
187
 
188
- #: admin.inc.php:260
189
- msgid "Add a link to the plugin page as a final item in the list"
190
- msgstr ""
 
191
 
192
- #: admin.inc.php:262
193
  msgid " <em>Optional</em>"
194
  msgstr ""
195
 
196
- #: admin.inc.php:263
197
  #, fuzzy
198
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
199
  msgstr "Contextual Related Posts "
200
 
201
- #: admin.inc.php:270
202
  #, fuzzy
203
  msgid "Output options"
204
  msgstr "Le opzioni sono state salvate con successo."
205
 
206
- #: admin.inc.php:273
207
  msgid "Title of related posts: "
208
  msgstr "titolo per gli articoli correlati:"
209
 
210
- #: admin.inc.php:276
211
  msgid ""
212
  "This is the main heading of the related posts. You can also display the "
213
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
214
  "Posts to %postname%</code>"
215
  msgstr ""
216
 
217
- #: admin.inc.php:279
218
  msgid "When there are no posts, what should be shown?"
219
  msgstr "Cosa desideri mostrare in assenza di articoli?"
220
 
221
- #: admin.inc.php:283
222
  msgid "Blank Output"
223
  msgstr "nulla"
224
 
225
- #: admin.inc.php:287
226
  #, fuzzy
227
  msgid "Display:"
228
  msgstr "Numero degli articoli più popolari da mostrare:"
229
 
230
- #: admin.inc.php:291 admin.inc.php:428
231
  msgid "Show post excerpt in list?"
232
  msgstr "Desideri mostrare gli estratti?"
233
 
234
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
235
  msgid "Length of excerpt (in words): "
236
  msgstr "Lunghezza estratto (in parole): "
237
 
238
- #: admin.inc.php:297
239
  #, fuzzy
240
  msgid "Show post author in list?"
241
  msgstr "Desideri mostrare gli estratti?"
242
 
 
 
 
 
243
  #: admin.inc.php:300
244
  #, fuzzy
245
  msgid "Show post date in list?"
246
  msgstr "Desideri mostrare gli estratti?"
247
 
248
  #: admin.inc.php:303
249
- msgid "Limit post title length (in characters)"
 
 
250
  msgstr ""
251
 
252
  #: admin.inc.php:306
253
- msgid "Open links in new window"
254
  msgstr ""
255
 
256
  #: admin.inc.php:309
257
- msgid "Add nofollow attribute to links in the list"
 
 
258
  msgstr ""
259
 
260
  #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  #, fuzzy
262
  msgid "Exclude display of related posts on these posts / pages"
263
  msgstr "aggiungi gli articoli correlati al feed"
264
 
265
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
 
266
  #, fuzzy
267
  msgid "Exclude display of related posts on these post types."
268
  msgstr "aggiungi gli articoli correlati al feed"
269
 
270
- #: admin.inc.php:327
271
  msgid ""
272
  "The related posts will not display on any of the above selected post types"
273
  msgstr ""
274
 
275
- #: admin.inc.php:330
276
  msgid "Customize the output:"
277
  msgstr "Personalizzazione output:"
278
 
279
- #: admin.inc.php:332
280
  msgid "HTML to display before the list of posts: "
281
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
282
 
283
- #: admin.inc.php:335
284
  msgid "HTML to display before each list item: "
285
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
286
 
287
- #: admin.inc.php:338
288
  msgid "HTML to display after each list item: "
289
  msgstr "HTML da mostrare dopo ogni lista:"
290
 
291
- #: admin.inc.php:341
292
  msgid "HTML to display after the list of posts: "
293
  msgstr "HTML da mostrare dopo la lista degli articoli:"
294
 
295
- #: admin.inc.php:344
296
  msgid "Post thumbnail options:"
297
  msgstr "Opzioni miniature articolo:"
298
 
299
- #: admin.inc.php:346 admin.inc.php:431
300
  #, fuzzy
301
  msgid "Location of post thumbnail:"
302
  msgstr "Opzioni miniature articolo:"
303
 
304
- #: admin.inc.php:350 admin.inc.php:435
305
  #, fuzzy
306
  msgid "Display thumbnails inline with posts, before title"
307
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
308
 
309
- #: admin.inc.php:354 admin.inc.php:439
310
  #, fuzzy
311
  msgid "Display thumbnails inline with posts, after title"
312
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
313
 
314
- #: admin.inc.php:358 admin.inc.php:443
315
  msgid "Display only thumbnails, no text"
316
  msgstr "Mostra le sole miniature, nessun testo"
317
 
318
- #: admin.inc.php:362 admin.inc.php:447
319
  msgid "Do not display thumbnails, only text."
320
  msgstr "Non mostrare le miniature, solo testo."
321
 
322
- #: admin.inc.php:366 admin.inc.php:451
323
  #, fuzzy
324
  msgid "Maximum width of the thumbnail: "
325
  msgstr "Opzioni miniature articolo:"
326
 
327
- #: admin.inc.php:369 admin.inc.php:454
328
  #, fuzzy
329
  msgid "Maximum height of the thumbnail: "
330
  msgstr "Opzioni miniature articolo:"
331
 
332
- #: admin.inc.php:372
 
 
 
 
 
 
333
  msgid "Style attributes / Width and Height HTML attributes:"
334
  msgstr ""
335
 
336
- #: admin.inc.php:376
337
- msgid ""
338
- "Style attributes are used for width and height. <code>style=\"max-width:"
339
  msgstr ""
340
 
341
- #: admin.inc.php:380
342
- msgid ""
343
- "HTML width and height attributes are used for width and height. <code>width="
344
- "\""
345
  msgstr ""
346
 
347
- #: admin.inc.php:384
348
  msgid "Use timthumb to generate thumbnails? "
349
  msgstr ""
350
 
351
- #: admin.inc.php:386
352
  msgid ""
353
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
354
- "\">timthumb</a> will be used to generate thumbnails"
355
  msgstr ""
356
 
357
- #: admin.inc.php:389
358
- msgid "Quality of thumbnails generated by timthumb"
359
  msgstr ""
360
 
361
- #: admin.inc.php:392
362
  msgid ""
363
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
364
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
365
  msgstr ""
366
 
367
- #: admin.inc.php:395
368
  #, fuzzy
369
- msgid "Post thumbnail meta field name: "
370
  msgstr "Opzioni miniature articolo:"
371
 
372
- #: admin.inc.php:397
373
  msgid ""
374
  "The value of this field should contain the image source and is set in the "
375
  "<em>Add New Post</em> screen"
376
  msgstr ""
377
 
378
- #: admin.inc.php:400
379
- #, fuzzy
380
- msgid ""
381
- "If the postmeta is not set, then should the plugin extract the first image "
382
- "from the post?"
383
  msgstr ""
384
- "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo "
385
- "la prima immagine. Questa operazione potrebbe rallentare il caricamento del "
386
- "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
387
- "dimensioni"
388
 
389
- #: admin.inc.php:402
390
- #, fuzzy
391
  msgid ""
392
- "This can slow down the loading of your page if the first image in the "
393
- "related posts is large in file-size"
394
  msgstr ""
395
- "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo "
396
- "la prima immagine. Questa operazione potrebbe rallentare il caricamento del "
397
- "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
398
- "dimensioni"
399
 
400
- #: admin.inc.php:405
401
- msgid "Use default thumbnail? "
402
  msgstr ""
403
 
404
- #: admin.inc.php:407
405
  #, fuzzy
406
  msgid ""
407
  "If checked, when no thumbnail is found, show a default one from the URL "
@@ -410,247 +435,299 @@ msgstr ""
410
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
411
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
412
 
413
- #: admin.inc.php:410
414
- msgid "Default thumbnail: "
415
- msgstr ""
 
416
 
417
- #: admin.inc.php:413
418
  #, fuzzy
419
  msgid ""
420
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
421
  "then it will check the meta field. If this is not available, then it will "
422
- "show the default image as specified above"
423
  msgstr ""
424
  "Come prima operazione, il plugin controllerà la presenza di una miniatura "
425
  "nell'articolo. Nel caso in cui non fosse presente, verificherà il campo "
426
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
427
  "specificato qui sotto:"
428
 
429
- #: admin.inc.php:420
430
  #, fuzzy
431
  msgid "Feed options"
432
  msgstr "Le opzioni sono state salvate con successo."
433
 
434
- #: admin.inc.php:423
435
  msgid ""
436
  "Below options override the related posts settings for your blog feed. These "
437
  "only apply if you have selected to add related posts to Feeds in the General "
438
  "Options tab."
439
  msgstr ""
440
 
441
- #: admin.inc.php:461
442
  msgid "Custom styles"
443
  msgstr ""
444
 
445
- #: admin.inc.php:464
446
  msgid "Use default style included in the plugin?"
447
  msgstr ""
448
 
449
- #: admin.inc.php:467
450
  msgid ""
451
  "Contextual Related Posts includes a default style that makes your popular "
452
  "posts list to look pretty. Check the box above if you want to use this."
453
  msgstr ""
454
 
455
- #: admin.inc.php:468
456
  msgid ""
457
  "Enabling this option will automatically turn on the thumbnails and set their "
458
  "width and height to 150px. Disabling this will not turn off thumbnails or "
459
  "change their dimensions."
460
  msgstr ""
461
 
462
- #: admin.inc.php:471
463
  msgid "Custom CSS to add to header:"
464
  msgstr ""
465
 
466
- #: admin.inc.php:475
467
  msgid ""
468
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
469
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
470
  "\">FAQ</a> for available CSS classes to style."
471
  msgstr ""
472
 
473
- #: admin.inc.php:482
474
  #, fuzzy
475
  msgid "Save Options"
476
  msgstr "Le opzioni sono state salvate con successo."
477
 
478
- #: admin.inc.php:483
479
  #, fuzzy
480
  msgid "Default Options"
481
  msgstr "Opzioni impostate alle predefinite."
482
 
483
- #: admin.inc.php:483
484
  msgid "Do you want to set options to Default?"
485
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
486
 
487
- #: admin.inc.php:484
488
  msgid "Recreate Index"
489
  msgstr ""
490
 
491
- #: admin.inc.php:484
492
  msgid "Are you sure you want to recreate the index?"
493
  msgstr "Sei certo di volere ricreare l'indice?"
494
 
495
- #: admin.inc.php:492
496
  msgid "Support the development"
497
  msgstr "Sostieni lo sviluppo"
498
 
499
- #: admin.inc.php:501
500
- msgid "Enter amount in USD: "
 
 
 
 
 
 
501
  msgstr "Inserisci la cifra in USD: "
502
 
503
- #: admin.inc.php:505
504
  msgid "Send your donation to the author of"
505
  msgstr "Invia la tua donazione all'autore di"
506
 
507
- #: admin.inc.php:512
508
  msgid "Follow me"
509
  msgstr ""
510
 
511
- #: admin.inc.php:522
512
  #, fuzzy
513
  msgid "Quick links"
514
  msgstr "Collegamenti veloci"
515
 
516
- #: admin.inc.php:526
517
  #, fuzzy
518
  msgid "Contextual Related Posts plugin page"
519
  msgstr "Contextual Related Posts "
520
 
521
- #: admin.inc.php:527
522
- msgid "Other plugins"
523
- msgstr "Altri plugin"
524
-
525
- #: admin.inc.php:528
526
- msgid "Ajay's blog"
527
- msgstr "Il blog di Ajay"
528
-
529
- #: admin.inc.php:529
530
  msgid "FAQ"
531
  msgstr ""
532
 
533
- #: admin.inc.php:530 contextual-related-posts.php:927
534
  msgid "Support"
535
  msgstr "Supporto"
536
 
537
- #: admin.inc.php:531
538
  msgid "Reviews"
539
  msgstr ""
540
 
541
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
542
  msgid "Contextual Related Posts"
543
  msgstr "Contextual Related Posts"
544
 
545
- #: admin.inc.php:554 contextual-related-posts.php:372
546
  msgid "Related Posts"
547
  msgstr "Related Posts"
548
 
549
- #: admin.inc.php:658
550
  #, fuzzy
551
  msgid "plugin settings page"
552
  msgstr "Impostazioni"
553
 
554
- #: admin.inc.php:692
555
  msgid ""
556
  "An error occurred clearing the cache. Please contact your site administrator."
557
  "\\n\\nError message:\\n"
558
  msgstr ""
559
 
560
- #: admin.inc.php:697
561
  msgid " cached row(s) cleared"
562
  msgstr ""
563
 
564
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  msgid " by "
566
  msgstr ""
567
 
568
- #: contextual-related-posts.php:143
569
  msgid "Powered by"
570
  msgstr "Powered by"
571
 
572
- #: contextual-related-posts.php:371
 
 
 
 
 
573
  #, fuzzy
574
  msgid "Display Related Posts"
575
  msgstr "Numero degli articoli più popolari da mostrare:"
576
 
577
- #: contextual-related-posts.php:386
578
  #, fuzzy
579
  msgid "Title"
580
  msgstr "Titolo per gli articoli più popolari:"
581
 
582
- #: contextual-related-posts.php:391
583
  #, fuzzy
584
  msgid "No. of posts"
585
  msgstr "Gli articoli più popolari"
586
 
587
- #: contextual-related-posts.php:396
588
  #, fuzzy
589
  msgid " Show excerpt?"
590
  msgstr "Desideri mostrare gli estratti?"
591
 
592
- #: contextual-related-posts.php:401
593
  #, fuzzy
594
  msgid " Show author?"
595
  msgstr "Invia la tua donazione all'autore di"
596
 
597
- #: contextual-related-posts.php:406
598
  #, fuzzy
599
  msgid " Show date?"
600
  msgstr "Desideri mostrare gli estratti?"
601
 
602
- #: contextual-related-posts.php:410
603
  #, fuzzy
604
  msgid "Thumbnail options"
605
  msgstr "Opzioni miniature articolo:"
606
 
607
- #: contextual-related-posts.php:412
608
  #, fuzzy
609
  msgid "Thumbnails inline, before title"
610
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
611
 
612
- #: contextual-related-posts.php:413
613
  #, fuzzy
614
  msgid "Thumbnails inline, after title"
615
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
616
 
617
- #: contextual-related-posts.php:414
618
  #, fuzzy
619
  msgid "Only thumbnails, no text"
620
  msgstr "Mostra le sole miniature, nessun testo"
621
 
622
- #: contextual-related-posts.php:415
623
  #, fuzzy
624
  msgid "No thumbnails, only text."
625
  msgstr "Non mostrare le miniature, solo testo."
626
 
627
- #: contextual-related-posts.php:420
628
  #, fuzzy
629
  msgid "Thumbnail height"
630
  msgstr "Opzioni miniature articolo:"
631
 
632
- #: contextual-related-posts.php:425
633
  #, fuzzy
634
  msgid "Thumbnail width"
635
  msgstr "Opzioni miniature articolo:"
636
 
637
- #: contextual-related-posts.php:548
638
  msgid "<h3>Related Posts:</h3>"
639
  msgstr "<h3>Related Posts:</h3>"
640
 
641
- #: contextual-related-posts.php:549
642
  #, fuzzy
643
  msgid "No related posts found"
644
  msgstr "Non é stato trovato alcun articolo correlato"
645
 
646
- #: contextual-related-posts.php:907
647
  msgid "Settings"
648
  msgstr "Impostazioni"
649
 
650
- #: contextual-related-posts.php:928
651
  msgid "Donate"
652
  msgstr "Donazioni"
653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  #~ msgid "Recent developments"
655
  #~ msgstr "Sviluppi recenti"
656
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:37-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:141
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
+ #: admin.inc.php:161
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
+ #: admin.inc.php:177
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
+ #: admin.inc.php:189
31
  #, fuzzy
32
  msgid "General options"
33
  msgstr "Le opzioni sono state salvate con successo."
34
 
35
+ #: admin.inc.php:192
36
  msgid "Cache output?"
37
  msgstr ""
38
 
39
+ #: admin.inc.php:194
40
  msgid ""
41
  "Enabling this option will cache the related posts output when the post is "
42
  "visited the first time. The cache is cleaned when you save this page."
43
  msgstr ""
44
 
45
+ #: admin.inc.php:195
46
  msgid "Clear cache"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:198 admin.inc.php:462
50
  msgid "Number of related posts to display: "
51
  msgstr "numero di articoli correlati da mostrare:"
52
 
53
+ #: admin.inc.php:201
54
  msgid ""
55
  "Maximum number of posts that will be displayed. The actual number may be "
56
  "smaller if less related posts are found."
57
  msgstr ""
58
 
59
+ #: admin.inc.php:204
60
  msgid "Related posts should be newer than:"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:206
64
  #, fuzzy
65
  msgid "days"
66
  msgstr ""
67
  "Quanti giorni desideri siano considerati per il computo delle "
68
  "visualizzazioni per articoli più popolari del giorno?"
69
 
70
+ #: admin.inc.php:207
71
  msgid ""
72
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
73
  "it to 365 will show related posts from the last year only."
74
  msgstr ""
75
 
76
+ #: admin.inc.php:210
77
+ #, fuzzy
78
+ msgid "Post types to include in results:"
79
+ msgstr "Escludi categorie:"
80
 
81
+ #: admin.inc.php:221
82
  msgid ""
83
  "These post types will be displayed in the list. Includes custom post types."
84
  msgstr ""
85
 
86
+ #: admin.inc.php:224
87
+ msgid "Find related posts based on content as well as title:"
88
  msgstr ""
89
 
90
+ #: admin.inc.php:226
91
  #, fuzzy
92
  msgid ""
93
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
97
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
98
  "preferibile attivare un plugin per la cache)"
99
 
100
+ #: admin.inc.php:229
101
  msgid "Limit content to be compared"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:231
105
  msgid ""
106
  "This sets the maximum words of the content that will be matched. 0 means no "
107
  "limit."
108
  msgstr ""
109
 
110
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111
  #, fuzzy
112
  msgid "Add related posts to:"
113
  msgstr "Gli articoli più popolari"
114
 
115
+ #: admin.inc.php:236
116
  #, fuzzy
117
  msgid "Posts"
118
  msgstr "Gli articoli più popolari"
119
 
120
+ #: admin.inc.php:237
121
  msgid "Pages"
122
  msgstr ""
123
 
124
+ #: admin.inc.php:238
125
  #, fuzzy
126
  msgid "Home page"
127
  msgstr "Risultati per pagina:"
128
 
129
+ #: admin.inc.php:239
130
  msgid "Feeds"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:240
134
  msgid "Category archives"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:241
138
  msgid "Tag archives"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:242
142
  #, fuzzy
143
  msgid "Other archives"
144
  msgstr "Altri plugin"
145
 
146
+ #: admin.inc.php:243
147
  #, fuzzy
148
  msgid ""
149
  "If you choose to disable this, please add <code>&lt;?php if "
155
  "echo_ald_crp(); ?&gt;</code> nel tuo template laddove desideri che siano "
156
  "visualizzati"
157
 
158
+ #: admin.inc.php:246
159
  msgid "Content filter priority:"
160
  msgstr ""
161
 
162
+ #: admin.inc.php:249
163
  msgid ""
164
  "A higher number will cause the content above to be processed after other "
165
+ "filters. Number below 10 is not recommended."
166
  msgstr ""
167
 
168
+ #: admin.inc.php:252
169
+ #, fuzzy
170
+ msgid "Tell the world you're using Contextual Related Posts:"
171
+ msgstr "Contextual Related Posts"
172
 
173
+ #: admin.inc.php:254
174
  msgid " <em>Optional</em>"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:255
178
  #, fuzzy
179
+ msgid ""
180
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
181
+ "in the list."
182
  msgstr "Contextual Related Posts "
183
 
184
+ #: admin.inc.php:262
185
  #, fuzzy
186
  msgid "Output options"
187
  msgstr "Le opzioni sono state salvate con successo."
188
 
189
+ #: admin.inc.php:265
190
  msgid "Title of related posts: "
191
  msgstr "titolo per gli articoli correlati:"
192
 
193
+ #: admin.inc.php:268
194
  msgid ""
195
  "This is the main heading of the related posts. You can also display the "
196
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
197
  "Posts to %postname%</code>"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:271
201
  msgid "When there are no posts, what should be shown?"
202
  msgstr "Cosa desideri mostrare in assenza di articoli?"
203
 
204
+ #: admin.inc.php:275
205
  msgid "Blank Output"
206
  msgstr "nulla"
207
 
208
+ #: admin.inc.php:279
209
  #, fuzzy
210
  msgid "Display:"
211
  msgstr "Numero degli articoli più popolari da mostrare:"
212
 
213
+ #: admin.inc.php:283 admin.inc.php:465
214
  msgid "Show post excerpt in list?"
215
  msgstr "Desideri mostrare gli estratti?"
216
 
217
+ #: admin.inc.php:286
218
+ #, php-format
219
+ msgid ""
220
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
221
+ "to a post (in the post editor's optional excerpt field), it will display an "
222
+ "automatic excerpt which refers to the first %d words of the post's content"
223
+ msgstr ""
224
+
225
+ #: admin.inc.php:289
226
  msgid "Length of excerpt (in words): "
227
  msgstr "Lunghezza estratto (in parole): "
228
 
229
+ #: admin.inc.php:294
230
  #, fuzzy
231
  msgid "Show post author in list?"
232
  msgstr "Desideri mostrare gli estratti?"
233
 
234
+ #: admin.inc.php:297
235
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
236
+ msgstr ""
237
+
238
  #: admin.inc.php:300
239
  #, fuzzy
240
  msgid "Show post date in list?"
241
  msgstr "Desideri mostrare gli estratti?"
242
 
243
  #: admin.inc.php:303
244
+ msgid ""
245
+ "Displays the date of the post. Uses the same date format set in General "
246
+ "Options"
247
  msgstr ""
248
 
249
  #: admin.inc.php:306
250
+ msgid "Limit post title length (in characters)"
251
  msgstr ""
252
 
253
  #: admin.inc.php:309
254
+ msgid ""
255
+ "Any title longer than the number of characters set above will be cut and "
256
+ "appended with a &helip;"
257
  msgstr ""
258
 
259
  #: admin.inc.php:312
260
+ msgid "Open links in new window"
261
+ msgstr ""
262
+
263
+ #: admin.inc.php:315
264
+ msgid "Add nofollow attribute to links in the list"
265
+ msgstr ""
266
+
267
+ #: admin.inc.php:318
268
+ #, fuzzy
269
+ msgid "Exclusion settings:"
270
+ msgstr "Impostazioni"
271
+
272
+ #: admin.inc.php:320
273
+ #, fuzzy
274
+ msgid "List of post or page IDs to exclude from the results:"
275
+ msgstr "Escludi categorie:"
276
+
277
+ #: admin.inc.php:322 admin.inc.php:328
278
+ msgid ""
279
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
280
+ msgstr ""
281
+
282
+ #: admin.inc.php:325
283
  #, fuzzy
284
  msgid "Exclude display of related posts on these posts / pages"
285
  msgstr "aggiungi gli articoli correlati al feed"
286
 
287
+ #: admin.inc.php:331
288
+ #, fuzzy
289
+ msgid "Categories to exclude from the results: "
290
+ msgstr "Escludi categorie:"
291
+
292
+ #: admin.inc.php:347
293
+ msgid ""
294
+ "Comma separated list of category slugs. The field above has an autocomplete "
295
+ "so simply start typing in the beginning of your category name and it will "
296
+ "prompt you with options."
297
+ msgstr ""
298
+
299
+ #: admin.inc.php:350
300
  #, fuzzy
301
  msgid "Exclude display of related posts on these post types."
302
  msgstr "aggiungi gli articoli correlati al feed"
303
 
304
+ #: admin.inc.php:359
305
  msgid ""
306
  "The related posts will not display on any of the above selected post types"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:362
310
  msgid "Customize the output:"
311
  msgstr "Personalizzazione output:"
312
 
313
+ #: admin.inc.php:364
314
  msgid "HTML to display before the list of posts: "
315
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
316
 
317
+ #: admin.inc.php:367
318
  msgid "HTML to display before each list item: "
319
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
320
 
321
+ #: admin.inc.php:370
322
  msgid "HTML to display after each list item: "
323
  msgstr "HTML da mostrare dopo ogni lista:"
324
 
325
+ #: admin.inc.php:373
326
  msgid "HTML to display after the list of posts: "
327
  msgstr "HTML da mostrare dopo la lista degli articoli:"
328
 
329
+ #: admin.inc.php:376
330
  msgid "Post thumbnail options:"
331
  msgstr "Opzioni miniature articolo:"
332
 
333
+ #: admin.inc.php:378 admin.inc.php:468
334
  #, fuzzy
335
  msgid "Location of post thumbnail:"
336
  msgstr "Opzioni miniature articolo:"
337
 
338
+ #: admin.inc.php:382 admin.inc.php:472
339
  #, fuzzy
340
  msgid "Display thumbnails inline with posts, before title"
341
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
342
 
343
+ #: admin.inc.php:386 admin.inc.php:476
344
  #, fuzzy
345
  msgid "Display thumbnails inline with posts, after title"
346
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
347
 
348
+ #: admin.inc.php:390 admin.inc.php:480
349
  msgid "Display only thumbnails, no text"
350
  msgstr "Mostra le sole miniature, nessun testo"
351
 
352
+ #: admin.inc.php:394 admin.inc.php:484
353
  msgid "Do not display thumbnails, only text."
354
  msgstr "Non mostrare le miniature, solo testo."
355
 
356
+ #: admin.inc.php:398 admin.inc.php:488
357
  #, fuzzy
358
  msgid "Maximum width of the thumbnail: "
359
  msgstr "Opzioni miniature articolo:"
360
 
361
+ #: admin.inc.php:401 admin.inc.php:491
362
  #, fuzzy
363
  msgid "Maximum height of the thumbnail: "
364
  msgstr "Opzioni miniature articolo:"
365
 
366
+ #: admin.inc.php:405
367
+ msgid ""
368
+ "Since you're using the default styles set under the Custom Styles section, "
369
+ "the width and height is fixed at 150px"
370
+ msgstr ""
371
+
372
+ #: admin.inc.php:409
373
  msgid "Style attributes / Width and Height HTML attributes:"
374
  msgstr ""
375
 
376
+ #: admin.inc.php:413
377
+ msgid "Style attributes are used for width and height."
 
378
  msgstr ""
379
 
380
+ #: admin.inc.php:417
381
+ msgid "HTML width and height attributes are used for width and height."
 
 
382
  msgstr ""
383
 
384
+ #: admin.inc.php:421
385
  msgid "Use timthumb to generate thumbnails? "
386
  msgstr ""
387
 
388
+ #: admin.inc.php:423
389
  msgid ""
390
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
391
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
392
  msgstr ""
393
 
394
+ #: admin.inc.php:426
395
+ msgid "Quality of thumbnails generated by timthumb:"
396
  msgstr ""
397
 
398
+ #: admin.inc.php:429
399
  msgid ""
400
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
401
+ "file size. Suggested maximum value is 95. CRP default is 75."
402
  msgstr ""
403
 
404
+ #: admin.inc.php:432
405
  #, fuzzy
406
+ msgid "Post thumbnail meta field name:"
407
  msgstr "Opzioni miniature articolo:"
408
 
409
+ #: admin.inc.php:434
410
  msgid ""
411
  "The value of this field should contain the image source and is set in the "
412
  "<em>Add New Post</em> screen"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:437
416
+ msgid "Extract the first image from the post?"
 
 
 
417
  msgstr ""
 
 
 
 
418
 
419
+ #: admin.inc.php:439
 
420
  msgid ""
421
+ "This will only happen if there is no post thumbnail set and no image URL is "
422
+ "specified in the meta field."
423
  msgstr ""
 
 
 
 
424
 
425
+ #: admin.inc.php:442
426
+ msgid "Use default thumbnail?"
427
  msgstr ""
428
 
429
+ #: admin.inc.php:444
430
  #, fuzzy
431
  msgid ""
432
  "If checked, when no thumbnail is found, show a default one from the URL "
435
  "Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
436
  "sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
437
 
438
+ #: admin.inc.php:447
439
+ #, fuzzy
440
+ msgid "Default thumbnail:"
441
+ msgstr "Opzioni impostate alle predefinite."
442
 
443
+ #: admin.inc.php:450
444
  #, fuzzy
445
  msgid ""
446
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
447
  "then it will check the meta field. If this is not available, then it will "
448
+ "show the default image as specified above."
449
  msgstr ""
450
  "Come prima operazione, il plugin controllerà la presenza di una miniatura "
451
  "nell'articolo. Nel caso in cui non fosse presente, verificherà il campo "
452
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
453
  "specificato qui sotto:"
454
 
455
+ #: admin.inc.php:457
456
  #, fuzzy
457
  msgid "Feed options"
458
  msgstr "Le opzioni sono state salvate con successo."
459
 
460
+ #: admin.inc.php:460
461
  msgid ""
462
  "Below options override the related posts settings for your blog feed. These "
463
  "only apply if you have selected to add related posts to Feeds in the General "
464
  "Options tab."
465
  msgstr ""
466
 
467
+ #: admin.inc.php:498
468
  msgid "Custom styles"
469
  msgstr ""
470
 
471
+ #: admin.inc.php:501
472
  msgid "Use default style included in the plugin?"
473
  msgstr ""
474
 
475
+ #: admin.inc.php:504
476
  msgid ""
477
  "Contextual Related Posts includes a default style that makes your popular "
478
  "posts list to look pretty. Check the box above if you want to use this."
479
  msgstr ""
480
 
481
+ #: admin.inc.php:505
482
  msgid ""
483
  "Enabling this option will automatically turn on the thumbnails and set their "
484
  "width and height to 150px. Disabling this will not turn off thumbnails or "
485
  "change their dimensions."
486
  msgstr ""
487
 
488
+ #: admin.inc.php:508
489
  msgid "Custom CSS to add to header:"
490
  msgstr ""
491
 
492
+ #: admin.inc.php:512
493
  msgid ""
494
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
495
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
496
  "\">FAQ</a> for available CSS classes to style."
497
  msgstr ""
498
 
499
+ #: admin.inc.php:519
500
  #, fuzzy
501
  msgid "Save Options"
502
  msgstr "Le opzioni sono state salvate con successo."
503
 
504
+ #: admin.inc.php:520
505
  #, fuzzy
506
  msgid "Default Options"
507
  msgstr "Opzioni impostate alle predefinite."
508
 
509
+ #: admin.inc.php:520
510
  msgid "Do you want to set options to Default?"
511
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
512
 
513
+ #: admin.inc.php:521
514
  msgid "Recreate Index"
515
  msgstr ""
516
 
517
+ #: admin.inc.php:521
518
  msgid "Are you sure you want to recreate the index?"
519
  msgstr "Sei certo di volere ricreare l'indice?"
520
 
521
+ #: admin.inc.php:529
522
  msgid "Support the development"
523
  msgstr "Sostieni lo sviluppo"
524
 
525
+ #: admin.inc.php:536
526
+ #, fuzzy
527
+ msgid "Donation for Contextual Related Posts"
528
+ msgstr "Contextual Related Posts"
529
+
530
+ #: admin.inc.php:538
531
+ #, fuzzy
532
+ msgid "Enter amount in USD:"
533
  msgstr "Inserisci la cifra in USD: "
534
 
535
+ #: admin.inc.php:542
536
  msgid "Send your donation to the author of"
537
  msgstr "Invia la tua donazione all'autore di"
538
 
539
+ #: admin.inc.php:549
540
  msgid "Follow me"
541
  msgstr ""
542
 
543
+ #: admin.inc.php:559
544
  #, fuzzy
545
  msgid "Quick links"
546
  msgstr "Collegamenti veloci"
547
 
548
+ #: admin.inc.php:563
549
  #, fuzzy
550
  msgid "Contextual Related Posts plugin page"
551
  msgstr "Contextual Related Posts "
552
 
553
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
554
  msgid "FAQ"
555
  msgstr ""
556
 
557
+ #: admin.inc.php:565 contextual-related-posts.php:964
558
  msgid "Support"
559
  msgstr "Supporto"
560
 
561
+ #: admin.inc.php:566
562
  msgid "Reviews"
563
  msgstr ""
564
 
565
+ #: admin.inc.php:567
566
+ msgid "Github repository"
567
+ msgstr ""
568
+
569
+ #: admin.inc.php:568
570
+ msgid "Other plugins"
571
+ msgstr "Altri plugin"
572
+
573
+ #: admin.inc.php:569
574
+ msgid "Ajay's blog"
575
+ msgstr "Il blog di Ajay"
576
+
577
+ #: admin.inc.php:591 admin.inc.php:752
578
  msgid "Contextual Related Posts"
579
  msgstr "Contextual Related Posts"
580
 
581
+ #: admin.inc.php:591
582
  msgid "Related Posts"
583
  msgstr "Related Posts"
584
 
585
+ #: admin.inc.php:694
586
  #, fuzzy
587
  msgid "plugin settings page"
588
  msgstr "Impostazioni"
589
 
590
+ #: admin.inc.php:728
591
  msgid ""
592
  "An error occurred clearing the cache. Please contact your site administrator."
593
  "\\n\\nError message:\\n"
594
  msgstr ""
595
 
596
+ #: admin.inc.php:733
597
  msgid " cached row(s) cleared"
598
  msgstr ""
599
 
600
+ #: admin.inc.php:779
601
+ #, fuzzy
602
+ msgid "Location of thumbnail:"
603
+ msgstr "Opzioni miniature articolo:"
604
+
605
+ #: admin.inc.php:781
606
+ msgid ""
607
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
608
+ "image will be used for the post. It will be resized to the thumbnail size "
609
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
610
+ msgstr ""
611
+
612
+ #: admin.inc.php:782
613
+ msgid "The URL above is saved in the meta field: "
614
+ msgstr ""
615
+
616
+ #: contextual-related-posts.php:127
617
  msgid " by "
618
  msgstr ""
619
 
620
+ #: contextual-related-posts.php:142
621
  msgid "Powered by"
622
  msgstr "Powered by"
623
 
624
+ #: contextual-related-posts.php:376
625
+ #, fuzzy
626
+ msgid "Related Posts [CRP]"
627
+ msgstr "Related Posts"
628
+
629
+ #: contextual-related-posts.php:377
630
  #, fuzzy
631
  msgid "Display Related Posts"
632
  msgstr "Numero degli articoli più popolari da mostrare:"
633
 
634
+ #: contextual-related-posts.php:400
635
  #, fuzzy
636
  msgid "Title"
637
  msgstr "Titolo per gli articoli più popolari:"
638
 
639
+ #: contextual-related-posts.php:405
640
  #, fuzzy
641
  msgid "No. of posts"
642
  msgstr "Gli articoli più popolari"
643
 
644
+ #: contextual-related-posts.php:410
645
  #, fuzzy
646
  msgid " Show excerpt?"
647
  msgstr "Desideri mostrare gli estratti?"
648
 
649
+ #: contextual-related-posts.php:415
650
  #, fuzzy
651
  msgid " Show author?"
652
  msgstr "Invia la tua donazione all'autore di"
653
 
654
+ #: contextual-related-posts.php:420
655
  #, fuzzy
656
  msgid " Show date?"
657
  msgstr "Desideri mostrare gli estratti?"
658
 
659
+ #: contextual-related-posts.php:424
660
  #, fuzzy
661
  msgid "Thumbnail options"
662
  msgstr "Opzioni miniature articolo:"
663
 
664
+ #: contextual-related-posts.php:426
665
  #, fuzzy
666
  msgid "Thumbnails inline, before title"
667
  msgstr "Mostra gli articoli con le miniature inline prima del titolo"
668
 
669
+ #: contextual-related-posts.php:427
670
  #, fuzzy
671
  msgid "Thumbnails inline, after title"
672
  msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
673
 
674
+ #: contextual-related-posts.php:428
675
  #, fuzzy
676
  msgid "Only thumbnails, no text"
677
  msgstr "Mostra le sole miniature, nessun testo"
678
 
679
+ #: contextual-related-posts.php:429
680
  #, fuzzy
681
  msgid "No thumbnails, only text."
682
  msgstr "Non mostrare le miniature, solo testo."
683
 
684
+ #: contextual-related-posts.php:434
685
  #, fuzzy
686
  msgid "Thumbnail height"
687
  msgstr "Opzioni miniature articolo:"
688
 
689
+ #: contextual-related-posts.php:439
690
  #, fuzzy
691
  msgid "Thumbnail width"
692
  msgstr "Opzioni miniature articolo:"
693
 
694
+ #: contextual-related-posts.php:581
695
  msgid "<h3>Related Posts:</h3>"
696
  msgstr "<h3>Related Posts:</h3>"
697
 
698
+ #: contextual-related-posts.php:582
699
  #, fuzzy
700
  msgid "No related posts found"
701
  msgstr "Non é stato trovato alcun articolo correlato"
702
 
703
+ #: contextual-related-posts.php:944
704
  msgid "Settings"
705
  msgstr "Impostazioni"
706
 
707
+ #: contextual-related-posts.php:965
708
  msgid "Donate"
709
  msgstr "Donazioni"
710
 
711
+ #, fuzzy
712
+ #~ msgid ""
713
+ #~ "If the postmeta is not set, then should the plugin extract the first "
714
+ #~ "image from the post?"
715
+ #~ msgstr ""
716
+ #~ "Se il postmeta non fosse stato impostato, il plugin estrarrà "
717
+ #~ "dall'articolo la prima immagine. Questa operazione potrebbe rallentare il "
718
+ #~ "caricamento del tuo articolo nel caso in cui la prima immagine corelata "
719
+ #~ "fosse di grandi dimensioni"
720
+
721
+ #, fuzzy
722
+ #~ msgid ""
723
+ #~ "This can slow down the loading of your page if the first image in the "
724
+ #~ "related posts is large in file-size"
725
+ #~ msgstr ""
726
+ #~ "Se il postmeta non fosse stato impostato, il plugin estrarrà "
727
+ #~ "dall'articolo la prima immagine. Questa operazione potrebbe rallentare il "
728
+ #~ "caricamento del tuo articolo nel caso in cui la prima immagine corelata "
729
+ #~ "fosse di grandi dimensioni"
730
+
731
  #~ msgid "Recent developments"
732
  #~ msgstr "Sviluppi recenti"
733
 
languages/crp-lt_LT.mo CHANGED
Binary file
languages/crp-lt_LT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:24-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -15,77 +15,78 @@ msgstr ""
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:127
19
  msgid "Options saved successfully."
20
  msgstr "Opcijas veiksmīgi saglabāts."
21
 
22
- #: admin.inc.php:147
23
  msgid "Options set to Default."
24
  msgstr "Opcijas iestatīts uz Default."
25
 
26
- #: admin.inc.php:163
27
  msgid "Index recreated"
28
  msgstr "indekss pārbūvēts"
29
 
30
- #: admin.inc.php:175
31
  #, fuzzy
32
  msgid "General options"
33
  msgstr "Настройки сохранены."
34
 
35
- #: admin.inc.php:178
36
  msgid "Cache output?"
37
  msgstr ""
38
 
39
- #: admin.inc.php:180
40
  msgid ""
41
  "Enabling this option will cache the related posts output when the post is "
42
  "visited the first time. The cache is cleaned when you save this page."
43
  msgstr ""
44
 
45
- #: admin.inc.php:181
46
  msgid "Clear cache"
47
  msgstr ""
48
 
49
- #: admin.inc.php:184 admin.inc.php:425
50
  msgid "Number of related posts to display: "
51
  msgstr "Skaits saistītus amatus, lai parādītu:"
52
 
53
- #: admin.inc.php:187
54
  msgid ""
55
  "Maximum number of posts that will be displayed. The actual number may be "
56
  "smaller if less related posts are found."
57
  msgstr ""
58
 
59
- #: admin.inc.php:190
60
  msgid "Related posts should be newer than:"
61
  msgstr ""
62
 
63
- #: admin.inc.php:192
64
  #, fuzzy
65
  msgid "days"
66
  msgstr ""
67
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
68
 
69
- #: admin.inc.php:193
70
  msgid ""
71
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
72
  "it to 365 will show related posts from the last year only."
73
  msgstr ""
74
 
75
- #: admin.inc.php:196
76
- msgid "Post types to include in results."
77
- msgstr ""
 
78
 
79
- #: admin.inc.php:205
80
  msgid ""
81
  "These post types will be displayed in the list. Includes custom post types."
82
  msgstr ""
83
 
84
- #: admin.inc.php:208
85
- msgid "Find related posts based on content as well as title"
86
  msgstr ""
87
 
88
- #: admin.inc.php:210
89
  #, fuzzy
90
  msgid ""
91
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -94,73 +95,52 @@ msgstr ""
94
  "Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
95
  "caching spraudnis, ja aktivizēsiet šo)"
96
 
97
- #: admin.inc.php:213
98
  msgid "Limit content to be compared"
99
  msgstr ""
100
 
101
- #: admin.inc.php:215
102
  msgid ""
103
  "This sets the maximum words of the content that will be matched. 0 means no "
104
  "limit."
105
  msgstr ""
106
 
107
- #: admin.inc.php:218
108
- msgid "List of post or page IDs to exclude from the results: "
109
- msgstr ""
110
-
111
- #: admin.inc.php:220 admin.inc.php:315
112
- msgid ""
113
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
114
- msgstr ""
115
-
116
- #: admin.inc.php:223
117
- #, fuzzy
118
- msgid "Categories to exclude from the results: "
119
- msgstr "Исключить рубрики:"
120
-
121
- #: admin.inc.php:239
122
- msgid ""
123
- "Comma separated list of category slugs. The field above has an autocomplete "
124
- "so simply start typing in the starting letters and it will prompt you with "
125
- "options"
126
- msgstr ""
127
-
128
- #: admin.inc.php:242
129
  msgid "Add related posts to:"
130
  msgstr "Pievienot saistītus amatus barībā"
131
 
132
- #: admin.inc.php:244
133
  #, fuzzy
134
  msgid "Posts"
135
  msgstr "Популярные записи"
136
 
137
- #: admin.inc.php:245
138
  msgid "Pages"
139
  msgstr ""
140
 
141
- #: admin.inc.php:246
142
  #, fuzzy
143
  msgid "Home page"
144
  msgstr "Результатов на страницу:"
145
 
146
- #: admin.inc.php:247
147
  msgid "Feeds"
148
  msgstr ""
149
 
150
- #: admin.inc.php:248
151
  msgid "Category archives"
152
  msgstr ""
153
 
154
- #: admin.inc.php:249
155
  msgid "Tag archives"
156
  msgstr ""
157
 
158
- #: admin.inc.php:250
159
  #, fuzzy
160
  msgid "Other archives"
161
  msgstr "Другие плагины автора"
162
 
163
- #: admin.inc.php:251
164
  #, fuzzy
165
  msgid ""
166
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -171,221 +151,274 @@ msgstr ""
171
  "(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
172
  "vēlaties to parādīt"
173
 
174
- #: admin.inc.php:254
175
  msgid "Content filter priority:"
176
  msgstr ""
177
 
178
- #: admin.inc.php:257
179
  msgid ""
180
  "A higher number will cause the content above to be processed after other "
181
- "filters. Number below 10 is not recommended"
182
  msgstr ""
183
 
184
- #: admin.inc.php:260
185
- msgid "Add a link to the plugin page as a final item in the list"
186
- msgstr ""
 
187
 
188
- #: admin.inc.php:262
189
  msgid " <em>Optional</em>"
190
  msgstr ""
191
 
192
- #: admin.inc.php:263
193
  #, fuzzy
194
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
195
  msgstr "Konteksta saistītus amatus"
196
 
197
- #: admin.inc.php:270
198
  msgid "Output options"
199
  msgstr "Izejas opcijas:"
200
 
201
- #: admin.inc.php:273
202
  msgid "Title of related posts: "
203
  msgstr "Nosaukums saistītus amatus:"
204
 
205
- #: admin.inc.php:276
206
  msgid ""
207
  "This is the main heading of the related posts. You can also display the "
208
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
209
  "Posts to %postname%</code>"
210
  msgstr ""
211
 
212
- #: admin.inc.php:279
213
  msgid "When there are no posts, what should be shown?"
214
  msgstr "Ja nav amati, kas būtu redzams?"
215
 
216
- #: admin.inc.php:283
217
  msgid "Blank Output"
218
  msgstr "tukša izeja"
219
 
220
- #: admin.inc.php:287
221
  #, fuzzy
222
  msgid "Display:"
223
  msgstr "Количество Популярных записей в списке:"
224
 
225
- #: admin.inc.php:291 admin.inc.php:428
226
  msgid "Show post excerpt in list?"
227
  msgstr "Rādīt post izvilkumu sarakstā?"
228
 
229
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
230
  msgid "Length of excerpt (in words): "
231
  msgstr "Garums izrakstā (vārdiem)"
232
 
233
- #: admin.inc.php:297
234
  #, fuzzy
235
  msgid "Show post author in list?"
236
  msgstr "Показывать текст записи в списке?"
237
 
 
 
 
 
238
  #: admin.inc.php:300
239
  #, fuzzy
240
  msgid "Show post date in list?"
241
  msgstr "Показывать текст записи в списке?"
242
 
243
  #: admin.inc.php:303
244
- msgid "Limit post title length (in characters)"
 
 
245
  msgstr ""
246
 
247
  #: admin.inc.php:306
248
- msgid "Open links in new window"
249
  msgstr ""
250
 
251
  #: admin.inc.php:309
252
- msgid "Add nofollow attribute to links in the list"
 
 
253
  msgstr ""
254
 
255
  #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  msgid "Exclude display of related posts on these posts / pages"
257
  msgstr "Pievienot saistītus amatus barībā"
258
 
259
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
 
260
  #, fuzzy
261
  msgid "Exclude display of related posts on these post types."
262
  msgstr "Pievienot saistītus amatus barībā"
263
 
264
- #: admin.inc.php:327
265
  msgid ""
266
  "The related posts will not display on any of the above selected post types"
267
  msgstr ""
268
 
269
- #: admin.inc.php:330
270
  msgid "Customize the output:"
271
  msgstr "Pielāgot izejas:"
272
 
273
- #: admin.inc.php:332
274
  msgid "HTML to display before the list of posts: "
275
  msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
276
 
277
- #: admin.inc.php:335
278
  msgid "HTML to display before each list item: "
279
  msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
280
 
281
- #: admin.inc.php:338
282
  msgid "HTML to display after each list item: "
283
  msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
284
 
285
- #: admin.inc.php:341
286
  msgid "HTML to display after the list of posts: "
287
  msgstr "HTML, lai parādītu pēc amatu sarakstā:"
288
 
289
- #: admin.inc.php:344
290
  msgid "Post thumbnail options:"
291
  msgstr "Post sīktēlu iespējas:"
292
 
293
- #: admin.inc.php:346 admin.inc.php:431
294
  #, fuzzy
295
  msgid "Location of post thumbnail:"
296
  msgstr "Настройки превью к записям:"
297
 
298
- #: admin.inc.php:350 admin.inc.php:435
299
  msgid "Display thumbnails inline with posts, before title"
300
  msgstr "Rādīt skices ar ziņojumiem"
301
 
302
- #: admin.inc.php:354 admin.inc.php:439
303
  msgid "Display thumbnails inline with posts, after title"
304
  msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
305
 
306
- #: admin.inc.php:358 admin.inc.php:443
307
  msgid "Display only thumbnails, no text"
308
  msgstr "Attēlotu tikai sīktēlus, teksts"
309
 
310
- #: admin.inc.php:362 admin.inc.php:447
311
  msgid "Do not display thumbnails, only text."
312
  msgstr "Nerādīt sīktēlus, tikai tekstu."
313
 
314
- #: admin.inc.php:366 admin.inc.php:451
315
  #, fuzzy
316
  msgid "Maximum width of the thumbnail: "
317
  msgstr "Настройки превью к записям:"
318
 
319
- #: admin.inc.php:369 admin.inc.php:454
320
  #, fuzzy
321
  msgid "Maximum height of the thumbnail: "
322
  msgstr "Настройки превью к записям:"
323
 
324
- #: admin.inc.php:372
 
 
 
 
 
 
325
  msgid "Style attributes / Width and Height HTML attributes:"
326
  msgstr ""
327
 
328
- #: admin.inc.php:376
329
- msgid ""
330
- "Style attributes are used for width and height. <code>style=\"max-width:"
331
  msgstr ""
332
 
333
- #: admin.inc.php:380
334
- msgid ""
335
- "HTML width and height attributes are used for width and height. <code>width="
336
- "\""
337
  msgstr ""
338
 
339
- #: admin.inc.php:384
340
  msgid "Use timthumb to generate thumbnails? "
341
  msgstr ""
342
 
343
- #: admin.inc.php:386
344
  msgid ""
345
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
346
- "\">timthumb</a> will be used to generate thumbnails"
347
  msgstr ""
348
 
349
- #: admin.inc.php:389
350
- msgid "Quality of thumbnails generated by timthumb"
351
  msgstr ""
352
 
353
- #: admin.inc.php:392
354
  msgid ""
355
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
356
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
357
  msgstr ""
358
 
359
- #: admin.inc.php:395
360
- msgid "Post thumbnail meta field name: "
 
361
  msgstr "Attēlu rīki post:"
362
 
363
- #: admin.inc.php:397
364
  msgid ""
365
  "The value of this field should contain the image source and is set in the "
366
  "<em>Add New Post</em> screen"
367
  msgstr ""
368
 
369
- #: admin.inc.php:400
370
- msgid ""
371
- "If the postmeta is not set, then should the plugin extract the first image "
372
- "from the post?"
373
  msgstr ""
374
- "Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
375
 
376
- #: admin.inc.php:402
377
  msgid ""
378
- "This can slow down the loading of your page if the first image in the "
379
- "related posts is large in file-size"
380
  msgstr ""
381
- "Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
382
- "liela faila izmēra"
383
 
384
- #: admin.inc.php:405
385
- msgid "Use default thumbnail? "
386
  msgstr ""
387
 
388
- #: admin.inc.php:407
389
  #, fuzzy
390
  msgid ""
391
  "If checked, when no thumbnail is found, show a default one from the URL "
@@ -395,230 +428,276 @@ msgstr ""
395
  "добавлено стандартное изображение. Если превью задано к записи - будет "
396
  "отображаться только оно."
397
 
398
- #: admin.inc.php:410
399
- msgid "Default thumbnail: "
400
- msgstr ""
 
401
 
402
- #: admin.inc.php:413
 
403
  msgid ""
404
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
405
  "then it will check the meta field. If this is not available, then it will "
406
- "show the default image as specified above"
407
  msgstr ""
408
  "Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad tas "
409
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
410
  "noklusējuma attēlu, kā minēts iepriekš"
411
 
412
- #: admin.inc.php:420
413
  msgid "Feed options"
414
  msgstr "Iespējas:"
415
 
416
- #: admin.inc.php:423
417
  msgid ""
418
  "Below options override the related posts settings for your blog feed. These "
419
  "only apply if you have selected to add related posts to Feeds in the General "
420
  "Options tab."
421
  msgstr ""
422
 
423
- #: admin.inc.php:461
424
  msgid "Custom styles"
425
  msgstr ""
426
 
427
- #: admin.inc.php:464
428
  msgid "Use default style included in the plugin?"
429
  msgstr ""
430
 
431
- #: admin.inc.php:467
432
  msgid ""
433
  "Contextual Related Posts includes a default style that makes your popular "
434
  "posts list to look pretty. Check the box above if you want to use this."
435
  msgstr ""
436
 
437
- #: admin.inc.php:468
438
  msgid ""
439
  "Enabling this option will automatically turn on the thumbnails and set their "
440
  "width and height to 150px. Disabling this will not turn off thumbnails or "
441
  "change their dimensions."
442
  msgstr ""
443
 
444
- #: admin.inc.php:471
445
  msgid "Custom CSS to add to header:"
446
  msgstr ""
447
 
448
- #: admin.inc.php:475
449
  msgid ""
450
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
451
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
452
  "\">FAQ</a> for available CSS classes to style."
453
  msgstr ""
454
 
455
- #: admin.inc.php:482
456
  msgid "Save Options"
457
  msgstr "Saglabāt opcijas"
458
 
459
- #: admin.inc.php:483
460
  msgid "Default Options"
461
  msgstr "noklusējuma opcijas"
462
 
463
- #: admin.inc.php:483
464
  msgid "Do you want to set options to Default?"
465
  msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
466
 
467
- #: admin.inc.php:484
468
  msgid "Recreate Index"
469
  msgstr ""
470
 
471
- #: admin.inc.php:484
472
  msgid "Are you sure you want to recreate the index?"
473
  msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
474
 
475
- #: admin.inc.php:492
476
  msgid "Support the development"
477
  msgstr "Atbalstīt"
478
 
479
- #: admin.inc.php:501
480
- msgid "Enter amount in USD: "
 
 
 
 
 
 
481
  msgstr "Ievadiet summu USD:"
482
 
483
- #: admin.inc.php:505
484
  msgid "Send your donation to the author of"
485
  msgstr "Sūtiet savu ziedojumu autoram"
486
 
487
- #: admin.inc.php:512
488
  msgid "Follow me"
489
  msgstr ""
490
 
491
- #: admin.inc.php:522
492
  #, fuzzy
493
  msgid "Quick links"
494
  msgstr "Ātrās saites"
495
 
496
- #: admin.inc.php:526
497
  msgid "Contextual Related Posts plugin page"
498
  msgstr "Konteksta saistītus amatus"
499
 
500
- #: admin.inc.php:527
501
- msgid "Other plugins"
502
- msgstr "citas plugins"
503
-
504
- #: admin.inc.php:528
505
- msgid "Ajay's blog"
506
- msgstr "Ajay blogs"
507
-
508
- #: admin.inc.php:529
509
  msgid "FAQ"
510
  msgstr ""
511
 
512
- #: admin.inc.php:530 contextual-related-posts.php:927
513
  msgid "Support"
514
  msgstr "atbalstīt"
515
 
516
- #: admin.inc.php:531
517
  msgid "Reviews"
518
  msgstr ""
519
 
520
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
521
  msgid "Contextual Related Posts"
522
  msgstr "Konteksta Related Posts"
523
 
524
- #: admin.inc.php:554 contextual-related-posts.php:372
525
  msgid "Related Posts"
526
  msgstr "Related Posts"
527
 
528
- #: admin.inc.php:658
529
  msgid "plugin settings page"
530
  msgstr "spraudnis iestatījumu lapa"
531
 
532
- #: admin.inc.php:692
533
  msgid ""
534
  "An error occurred clearing the cache. Please contact your site administrator."
535
  "\\n\\nError message:\\n"
536
  msgstr ""
537
 
538
- #: admin.inc.php:697
539
  msgid " cached row(s) cleared"
540
  msgstr ""
541
 
542
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
543
  msgid " by "
544
  msgstr ""
545
 
546
- #: contextual-related-posts.php:143
547
  msgid "Powered by"
548
  msgstr "Powered by"
549
 
550
- #: contextual-related-posts.php:371
 
 
 
 
 
551
  msgid "Display Related Posts"
552
  msgstr "Displeja Related Posts"
553
 
554
- #: contextual-related-posts.php:386
555
  #, fuzzy
556
  msgid "Title"
557
  msgstr "Заголовок списка Популярных записей:"
558
 
559
- #: contextual-related-posts.php:391
560
  #, fuzzy
561
  msgid "No. of posts"
562
  msgstr "Популярные записи"
563
 
564
- #: contextual-related-posts.php:396
565
  msgid " Show excerpt?"
566
  msgstr "Rādīt izvilkumu?"
567
 
568
- #: contextual-related-posts.php:401
569
  #, fuzzy
570
  msgid " Show author?"
571
  msgstr "Отправьте пожертвование автору"
572
 
573
- #: contextual-related-posts.php:406
574
  #, fuzzy
575
  msgid " Show date?"
576
  msgstr "Показывать текст записи в списке?"
577
 
578
- #: contextual-related-posts.php:410
579
  msgid "Thumbnail options"
580
  msgstr "sīktēlu iespējas"
581
 
582
- #: contextual-related-posts.php:412
583
  msgid "Thumbnails inline, before title"
584
  msgstr "Sīktēli inline, pirms virsraksta"
585
 
586
- #: contextual-related-posts.php:413
587
  msgid "Thumbnails inline, after title"
588
  msgstr "Sīktēli inline, pēc nosaukuma"
589
 
590
- #: contextual-related-posts.php:414
591
  msgid "Only thumbnails, no text"
592
  msgstr "Tikai sīktēlus, bez teksta"
593
 
594
- #: contextual-related-posts.php:415
595
  msgid "No thumbnails, only text."
596
  msgstr "Nav sīktēlus, tikai tekstu."
597
 
598
- #: contextual-related-posts.php:420
599
  msgid "Thumbnail height"
600
  msgstr "sīktēls augstums"
601
 
602
- #: contextual-related-posts.php:425
603
  msgid "Thumbnail width"
604
  msgstr "Thumbnail platums"
605
 
606
- #: contextual-related-posts.php:548
607
  msgid "<h3>Related Posts:</h3>"
608
  msgstr "<h3>saistīta posts:</h3>"
609
 
610
- #: contextual-related-posts.php:549
611
  msgid "No related posts found"
612
  msgstr "Nr saistītus amatus atrasts"
613
 
614
- #: contextual-related-posts.php:907
615
  msgid "Settings"
616
  msgstr "iestatījumi"
617
 
618
- #: contextual-related-posts.php:928
619
  msgid "Donate"
620
  msgstr "ziedot"
621
 
 
 
 
 
 
 
 
 
 
 
 
 
 
622
  #~ msgid "Recent developments"
623
  #~ msgstr "Nesenie notikumi"
624
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:141
19
  msgid "Options saved successfully."
20
  msgstr "Opcijas veiksmīgi saglabāts."
21
 
22
+ #: admin.inc.php:161
23
  msgid "Options set to Default."
24
  msgstr "Opcijas iestatīts uz Default."
25
 
26
+ #: admin.inc.php:177
27
  msgid "Index recreated"
28
  msgstr "indekss pārbūvēts"
29
 
30
+ #: admin.inc.php:189
31
  #, fuzzy
32
  msgid "General options"
33
  msgstr "Настройки сохранены."
34
 
35
+ #: admin.inc.php:192
36
  msgid "Cache output?"
37
  msgstr ""
38
 
39
+ #: admin.inc.php:194
40
  msgid ""
41
  "Enabling this option will cache the related posts output when the post is "
42
  "visited the first time. The cache is cleaned when you save this page."
43
  msgstr ""
44
 
45
+ #: admin.inc.php:195
46
  msgid "Clear cache"
47
  msgstr ""
48
 
49
+ #: admin.inc.php:198 admin.inc.php:462
50
  msgid "Number of related posts to display: "
51
  msgstr "Skaits saistītus amatus, lai parādītu:"
52
 
53
+ #: admin.inc.php:201
54
  msgid ""
55
  "Maximum number of posts that will be displayed. The actual number may be "
56
  "smaller if less related posts are found."
57
  msgstr ""
58
 
59
+ #: admin.inc.php:204
60
  msgid "Related posts should be newer than:"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:206
64
  #, fuzzy
65
  msgid "days"
66
  msgstr ""
67
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
68
 
69
+ #: admin.inc.php:207
70
  msgid ""
71
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
72
  "it to 365 will show related posts from the last year only."
73
  msgstr ""
74
 
75
+ #: admin.inc.php:210
76
+ #, fuzzy
77
+ msgid "Post types to include in results:"
78
+ msgstr "Исключить рубрики:"
79
 
80
+ #: admin.inc.php:221
81
  msgid ""
82
  "These post types will be displayed in the list. Includes custom post types."
83
  msgstr ""
84
 
85
+ #: admin.inc.php:224
86
+ msgid "Find related posts based on content as well as title:"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:226
90
  #, fuzzy
91
  msgid ""
92
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
95
  "Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
96
  "caching spraudnis, ja aktivizēsiet šo)"
97
 
98
+ #: admin.inc.php:229
99
  msgid "Limit content to be compared"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:231
103
  msgid ""
104
  "This sets the maximum words of the content that will be matched. 0 means no "
105
  "limit."
106
  msgstr ""
107
 
108
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
109
  msgid "Add related posts to:"
110
  msgstr "Pievienot saistītus amatus barībā"
111
 
112
+ #: admin.inc.php:236
113
  #, fuzzy
114
  msgid "Posts"
115
  msgstr "Популярные записи"
116
 
117
+ #: admin.inc.php:237
118
  msgid "Pages"
119
  msgstr ""
120
 
121
+ #: admin.inc.php:238
122
  #, fuzzy
123
  msgid "Home page"
124
  msgstr "Результатов на страницу:"
125
 
126
+ #: admin.inc.php:239
127
  msgid "Feeds"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:240
131
  msgid "Category archives"
132
  msgstr ""
133
 
134
+ #: admin.inc.php:241
135
  msgid "Tag archives"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:242
139
  #, fuzzy
140
  msgid "Other archives"
141
  msgstr "Другие плагины автора"
142
 
143
+ #: admin.inc.php:243
144
  #, fuzzy
145
  msgid ""
146
  "If you choose to disable this, please add <code>&lt;?php if "
151
  "(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
152
  "vēlaties to parādīt"
153
 
154
+ #: admin.inc.php:246
155
  msgid "Content filter priority:"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:249
159
  msgid ""
160
  "A higher number will cause the content above to be processed after other "
161
+ "filters. Number below 10 is not recommended."
162
  msgstr ""
163
 
164
+ #: admin.inc.php:252
165
+ #, fuzzy
166
+ msgid "Tell the world you're using Contextual Related Posts:"
167
+ msgstr "Konteksta Related Posts"
168
 
169
+ #: admin.inc.php:254
170
  msgid " <em>Optional</em>"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:255
174
  #, fuzzy
175
+ msgid ""
176
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
177
+ "in the list."
178
  msgstr "Konteksta saistītus amatus"
179
 
180
+ #: admin.inc.php:262
181
  msgid "Output options"
182
  msgstr "Izejas opcijas:"
183
 
184
+ #: admin.inc.php:265
185
  msgid "Title of related posts: "
186
  msgstr "Nosaukums saistītus amatus:"
187
 
188
+ #: admin.inc.php:268
189
  msgid ""
190
  "This is the main heading of the related posts. You can also display the "
191
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
192
  "Posts to %postname%</code>"
193
  msgstr ""
194
 
195
+ #: admin.inc.php:271
196
  msgid "When there are no posts, what should be shown?"
197
  msgstr "Ja nav amati, kas būtu redzams?"
198
 
199
+ #: admin.inc.php:275
200
  msgid "Blank Output"
201
  msgstr "tukša izeja"
202
 
203
+ #: admin.inc.php:279
204
  #, fuzzy
205
  msgid "Display:"
206
  msgstr "Количество Популярных записей в списке:"
207
 
208
+ #: admin.inc.php:283 admin.inc.php:465
209
  msgid "Show post excerpt in list?"
210
  msgstr "Rādīt post izvilkumu sarakstā?"
211
 
212
+ #: admin.inc.php:286
213
+ #, php-format
214
+ msgid ""
215
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
216
+ "to a post (in the post editor's optional excerpt field), it will display an "
217
+ "automatic excerpt which refers to the first %d words of the post's content"
218
+ msgstr ""
219
+
220
+ #: admin.inc.php:289
221
  msgid "Length of excerpt (in words): "
222
  msgstr "Garums izrakstā (vārdiem)"
223
 
224
+ #: admin.inc.php:294
225
  #, fuzzy
226
  msgid "Show post author in list?"
227
  msgstr "Показывать текст записи в списке?"
228
 
229
+ #: admin.inc.php:297
230
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
231
+ msgstr ""
232
+
233
  #: admin.inc.php:300
234
  #, fuzzy
235
  msgid "Show post date in list?"
236
  msgstr "Показывать текст записи в списке?"
237
 
238
  #: admin.inc.php:303
239
+ msgid ""
240
+ "Displays the date of the post. Uses the same date format set in General "
241
+ "Options"
242
  msgstr ""
243
 
244
  #: admin.inc.php:306
245
+ msgid "Limit post title length (in characters)"
246
  msgstr ""
247
 
248
  #: admin.inc.php:309
249
+ msgid ""
250
+ "Any title longer than the number of characters set above will be cut and "
251
+ "appended with a &helip;"
252
  msgstr ""
253
 
254
  #: admin.inc.php:312
255
+ msgid "Open links in new window"
256
+ msgstr ""
257
+
258
+ #: admin.inc.php:315
259
+ msgid "Add nofollow attribute to links in the list"
260
+ msgstr ""
261
+
262
+ #: admin.inc.php:318
263
+ #, fuzzy
264
+ msgid "Exclusion settings:"
265
+ msgstr "spraudnis iestatījumu lapa"
266
+
267
+ #: admin.inc.php:320
268
+ #, fuzzy
269
+ msgid "List of post or page IDs to exclude from the results:"
270
+ msgstr "Исключить рубрики:"
271
+
272
+ #: admin.inc.php:322 admin.inc.php:328
273
+ msgid ""
274
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
275
+ msgstr ""
276
+
277
+ #: admin.inc.php:325
278
  msgid "Exclude display of related posts on these posts / pages"
279
  msgstr "Pievienot saistītus amatus barībā"
280
 
281
+ #: admin.inc.php:331
282
+ #, fuzzy
283
+ msgid "Categories to exclude from the results: "
284
+ msgstr "Исключить рубрики:"
285
+
286
+ #: admin.inc.php:347
287
+ msgid ""
288
+ "Comma separated list of category slugs. The field above has an autocomplete "
289
+ "so simply start typing in the beginning of your category name and it will "
290
+ "prompt you with options."
291
+ msgstr ""
292
+
293
+ #: admin.inc.php:350
294
  #, fuzzy
295
  msgid "Exclude display of related posts on these post types."
296
  msgstr "Pievienot saistītus amatus barībā"
297
 
298
+ #: admin.inc.php:359
299
  msgid ""
300
  "The related posts will not display on any of the above selected post types"
301
  msgstr ""
302
 
303
+ #: admin.inc.php:362
304
  msgid "Customize the output:"
305
  msgstr "Pielāgot izejas:"
306
 
307
+ #: admin.inc.php:364
308
  msgid "HTML to display before the list of posts: "
309
  msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
310
 
311
+ #: admin.inc.php:367
312
  msgid "HTML to display before each list item: "
313
  msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
314
 
315
+ #: admin.inc.php:370
316
  msgid "HTML to display after each list item: "
317
  msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
318
 
319
+ #: admin.inc.php:373
320
  msgid "HTML to display after the list of posts: "
321
  msgstr "HTML, lai parādītu pēc amatu sarakstā:"
322
 
323
+ #: admin.inc.php:376
324
  msgid "Post thumbnail options:"
325
  msgstr "Post sīktēlu iespējas:"
326
 
327
+ #: admin.inc.php:378 admin.inc.php:468
328
  #, fuzzy
329
  msgid "Location of post thumbnail:"
330
  msgstr "Настройки превью к записям:"
331
 
332
+ #: admin.inc.php:382 admin.inc.php:472
333
  msgid "Display thumbnails inline with posts, before title"
334
  msgstr "Rādīt skices ar ziņojumiem"
335
 
336
+ #: admin.inc.php:386 admin.inc.php:476
337
  msgid "Display thumbnails inline with posts, after title"
338
  msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
339
 
340
+ #: admin.inc.php:390 admin.inc.php:480
341
  msgid "Display only thumbnails, no text"
342
  msgstr "Attēlotu tikai sīktēlus, teksts"
343
 
344
+ #: admin.inc.php:394 admin.inc.php:484
345
  msgid "Do not display thumbnails, only text."
346
  msgstr "Nerādīt sīktēlus, tikai tekstu."
347
 
348
+ #: admin.inc.php:398 admin.inc.php:488
349
  #, fuzzy
350
  msgid "Maximum width of the thumbnail: "
351
  msgstr "Настройки превью к записям:"
352
 
353
+ #: admin.inc.php:401 admin.inc.php:491
354
  #, fuzzy
355
  msgid "Maximum height of the thumbnail: "
356
  msgstr "Настройки превью к записям:"
357
 
358
+ #: admin.inc.php:405
359
+ msgid ""
360
+ "Since you're using the default styles set under the Custom Styles section, "
361
+ "the width and height is fixed at 150px"
362
+ msgstr ""
363
+
364
+ #: admin.inc.php:409
365
  msgid "Style attributes / Width and Height HTML attributes:"
366
  msgstr ""
367
 
368
+ #: admin.inc.php:413
369
+ msgid "Style attributes are used for width and height."
 
370
  msgstr ""
371
 
372
+ #: admin.inc.php:417
373
+ msgid "HTML width and height attributes are used for width and height."
 
 
374
  msgstr ""
375
 
376
+ #: admin.inc.php:421
377
  msgid "Use timthumb to generate thumbnails? "
378
  msgstr ""
379
 
380
+ #: admin.inc.php:423
381
  msgid ""
382
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
383
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:426
387
+ msgid "Quality of thumbnails generated by timthumb:"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:429
391
  msgid ""
392
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
393
+ "file size. Suggested maximum value is 95. CRP default is 75."
394
  msgstr ""
395
 
396
+ #: admin.inc.php:432
397
+ #, fuzzy
398
+ msgid "Post thumbnail meta field name:"
399
  msgstr "Attēlu rīki post:"
400
 
401
+ #: admin.inc.php:434
402
  msgid ""
403
  "The value of this field should contain the image source and is set in the "
404
  "<em>Add New Post</em> screen"
405
  msgstr ""
406
 
407
+ #: admin.inc.php:437
408
+ msgid "Extract the first image from the post?"
 
 
409
  msgstr ""
 
410
 
411
+ #: admin.inc.php:439
412
  msgid ""
413
+ "This will only happen if there is no post thumbnail set and no image URL is "
414
+ "specified in the meta field."
415
  msgstr ""
 
 
416
 
417
+ #: admin.inc.php:442
418
+ msgid "Use default thumbnail?"
419
  msgstr ""
420
 
421
+ #: admin.inc.php:444
422
  #, fuzzy
423
  msgid ""
424
  "If checked, when no thumbnail is found, show a default one from the URL "
428
  "добавлено стандартное изображение. Если превью задано к записи - будет "
429
  "отображаться только оно."
430
 
431
+ #: admin.inc.php:447
432
+ #, fuzzy
433
+ msgid "Default thumbnail:"
434
+ msgstr "noklusējuma opcijas"
435
 
436
+ #: admin.inc.php:450
437
+ #, fuzzy
438
  msgid ""
439
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
440
  "then it will check the meta field. If this is not available, then it will "
441
+ "show the default image as specified above."
442
  msgstr ""
443
  "Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad tas "
444
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
445
  "noklusējuma attēlu, kā minēts iepriekš"
446
 
447
+ #: admin.inc.php:457
448
  msgid "Feed options"
449
  msgstr "Iespējas:"
450
 
451
+ #: admin.inc.php:460
452
  msgid ""
453
  "Below options override the related posts settings for your blog feed. These "
454
  "only apply if you have selected to add related posts to Feeds in the General "
455
  "Options tab."
456
  msgstr ""
457
 
458
+ #: admin.inc.php:498
459
  msgid "Custom styles"
460
  msgstr ""
461
 
462
+ #: admin.inc.php:501
463
  msgid "Use default style included in the plugin?"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:504
467
  msgid ""
468
  "Contextual Related Posts includes a default style that makes your popular "
469
  "posts list to look pretty. Check the box above if you want to use this."
470
  msgstr ""
471
 
472
+ #: admin.inc.php:505
473
  msgid ""
474
  "Enabling this option will automatically turn on the thumbnails and set their "
475
  "width and height to 150px. Disabling this will not turn off thumbnails or "
476
  "change their dimensions."
477
  msgstr ""
478
 
479
+ #: admin.inc.php:508
480
  msgid "Custom CSS to add to header:"
481
  msgstr ""
482
 
483
+ #: admin.inc.php:512
484
  msgid ""
485
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
486
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
487
  "\">FAQ</a> for available CSS classes to style."
488
  msgstr ""
489
 
490
+ #: admin.inc.php:519
491
  msgid "Save Options"
492
  msgstr "Saglabāt opcijas"
493
 
494
+ #: admin.inc.php:520
495
  msgid "Default Options"
496
  msgstr "noklusējuma opcijas"
497
 
498
+ #: admin.inc.php:520
499
  msgid "Do you want to set options to Default?"
500
  msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
501
 
502
+ #: admin.inc.php:521
503
  msgid "Recreate Index"
504
  msgstr ""
505
 
506
+ #: admin.inc.php:521
507
  msgid "Are you sure you want to recreate the index?"
508
  msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
509
 
510
+ #: admin.inc.php:529
511
  msgid "Support the development"
512
  msgstr "Atbalstīt"
513
 
514
+ #: admin.inc.php:536
515
+ #, fuzzy
516
+ msgid "Donation for Contextual Related Posts"
517
+ msgstr "Konteksta Related Posts"
518
+
519
+ #: admin.inc.php:538
520
+ #, fuzzy
521
+ msgid "Enter amount in USD:"
522
  msgstr "Ievadiet summu USD:"
523
 
524
+ #: admin.inc.php:542
525
  msgid "Send your donation to the author of"
526
  msgstr "Sūtiet savu ziedojumu autoram"
527
 
528
+ #: admin.inc.php:549
529
  msgid "Follow me"
530
  msgstr ""
531
 
532
+ #: admin.inc.php:559
533
  #, fuzzy
534
  msgid "Quick links"
535
  msgstr "Ātrās saites"
536
 
537
+ #: admin.inc.php:563
538
  msgid "Contextual Related Posts plugin page"
539
  msgstr "Konteksta saistītus amatus"
540
 
541
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
542
  msgid "FAQ"
543
  msgstr ""
544
 
545
+ #: admin.inc.php:565 contextual-related-posts.php:964
546
  msgid "Support"
547
  msgstr "atbalstīt"
548
 
549
+ #: admin.inc.php:566
550
  msgid "Reviews"
551
  msgstr ""
552
 
553
+ #: admin.inc.php:567
554
+ msgid "Github repository"
555
+ msgstr ""
556
+
557
+ #: admin.inc.php:568
558
+ msgid "Other plugins"
559
+ msgstr "citas plugins"
560
+
561
+ #: admin.inc.php:569
562
+ msgid "Ajay's blog"
563
+ msgstr "Ajay blogs"
564
+
565
+ #: admin.inc.php:591 admin.inc.php:752
566
  msgid "Contextual Related Posts"
567
  msgstr "Konteksta Related Posts"
568
 
569
+ #: admin.inc.php:591
570
  msgid "Related Posts"
571
  msgstr "Related Posts"
572
 
573
+ #: admin.inc.php:694
574
  msgid "plugin settings page"
575
  msgstr "spraudnis iestatījumu lapa"
576
 
577
+ #: admin.inc.php:728
578
  msgid ""
579
  "An error occurred clearing the cache. Please contact your site administrator."
580
  "\\n\\nError message:\\n"
581
  msgstr ""
582
 
583
+ #: admin.inc.php:733
584
  msgid " cached row(s) cleared"
585
  msgstr ""
586
 
587
+ #: admin.inc.php:779
588
+ #, fuzzy
589
+ msgid "Location of thumbnail:"
590
+ msgstr "Настройки превью к записям:"
591
+
592
+ #: admin.inc.php:781
593
+ msgid ""
594
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
595
+ "image will be used for the post. It will be resized to the thumbnail size "
596
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
597
+ msgstr ""
598
+
599
+ #: admin.inc.php:782
600
+ msgid "The URL above is saved in the meta field: "
601
+ msgstr ""
602
+
603
+ #: contextual-related-posts.php:127
604
  msgid " by "
605
  msgstr ""
606
 
607
+ #: contextual-related-posts.php:142
608
  msgid "Powered by"
609
  msgstr "Powered by"
610
 
611
+ #: contextual-related-posts.php:376
612
+ #, fuzzy
613
+ msgid "Related Posts [CRP]"
614
+ msgstr "Related Posts"
615
+
616
+ #: contextual-related-posts.php:377
617
  msgid "Display Related Posts"
618
  msgstr "Displeja Related Posts"
619
 
620
+ #: contextual-related-posts.php:400
621
  #, fuzzy
622
  msgid "Title"
623
  msgstr "Заголовок списка Популярных записей:"
624
 
625
+ #: contextual-related-posts.php:405
626
  #, fuzzy
627
  msgid "No. of posts"
628
  msgstr "Популярные записи"
629
 
630
+ #: contextual-related-posts.php:410
631
  msgid " Show excerpt?"
632
  msgstr "Rādīt izvilkumu?"
633
 
634
+ #: contextual-related-posts.php:415
635
  #, fuzzy
636
  msgid " Show author?"
637
  msgstr "Отправьте пожертвование автору"
638
 
639
+ #: contextual-related-posts.php:420
640
  #, fuzzy
641
  msgid " Show date?"
642
  msgstr "Показывать текст записи в списке?"
643
 
644
+ #: contextual-related-posts.php:424
645
  msgid "Thumbnail options"
646
  msgstr "sīktēlu iespējas"
647
 
648
+ #: contextual-related-posts.php:426
649
  msgid "Thumbnails inline, before title"
650
  msgstr "Sīktēli inline, pirms virsraksta"
651
 
652
+ #: contextual-related-posts.php:427
653
  msgid "Thumbnails inline, after title"
654
  msgstr "Sīktēli inline, pēc nosaukuma"
655
 
656
+ #: contextual-related-posts.php:428
657
  msgid "Only thumbnails, no text"
658
  msgstr "Tikai sīktēlus, bez teksta"
659
 
660
+ #: contextual-related-posts.php:429
661
  msgid "No thumbnails, only text."
662
  msgstr "Nav sīktēlus, tikai tekstu."
663
 
664
+ #: contextual-related-posts.php:434
665
  msgid "Thumbnail height"
666
  msgstr "sīktēls augstums"
667
 
668
+ #: contextual-related-posts.php:439
669
  msgid "Thumbnail width"
670
  msgstr "Thumbnail platums"
671
 
672
+ #: contextual-related-posts.php:581
673
  msgid "<h3>Related Posts:</h3>"
674
  msgstr "<h3>saistīta posts:</h3>"
675
 
676
+ #: contextual-related-posts.php:582
677
  msgid "No related posts found"
678
  msgstr "Nr saistītus amatus atrasts"
679
 
680
+ #: contextual-related-posts.php:944
681
  msgid "Settings"
682
  msgstr "iestatījumi"
683
 
684
+ #: contextual-related-posts.php:965
685
  msgid "Donate"
686
  msgstr "ziedot"
687
 
688
+ #~ msgid ""
689
+ #~ "If the postmeta is not set, then should the plugin extract the first "
690
+ #~ "image from the post?"
691
+ #~ msgstr ""
692
+ #~ "Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
693
+
694
+ #~ msgid ""
695
+ #~ "This can slow down the loading of your page if the first image in the "
696
+ #~ "related posts is large in file-size"
697
+ #~ msgstr ""
698
+ #~ "Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
699
+ #~ "liela faila izmēra"
700
+
701
  #~ msgid "Recent developments"
702
  #~ msgstr "Nesenie notikumi"
703
 
languages/crp-nl_NL.mo CHANGED
Binary file
languages/crp-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:24-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: http://WPwebshop.com <info@wppg.me>\n"
@@ -17,76 +17,76 @@ msgstr ""
17
  "X-Generator: Poedit 1.6.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:127
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
- #: admin.inc.php:147
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
- #: admin.inc.php:163
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
- #: admin.inc.php:175
33
  #, fuzzy
34
  msgid "General options"
35
  msgstr "Opties succesvol opgeslagen."
36
 
37
- #: admin.inc.php:178
38
  msgid "Cache output?"
39
  msgstr ""
40
 
41
- #: admin.inc.php:180
42
  msgid ""
43
  "Enabling this option will cache the related posts output when the post is "
44
  "visited the first time. The cache is cleaned when you save this page."
45
  msgstr ""
46
 
47
- #: admin.inc.php:181
48
  msgid "Clear cache"
49
  msgstr ""
50
 
51
- #: admin.inc.php:184 admin.inc.php:425
52
  msgid "Number of related posts to display: "
53
  msgstr "Aantal weer te geven gerelateerde berichten:"
54
 
55
- #: admin.inc.php:187
56
  msgid ""
57
  "Maximum number of posts that will be displayed. The actual number may be "
58
  "smaller if less related posts are found."
59
  msgstr ""
60
 
61
- #: admin.inc.php:190
62
  msgid "Related posts should be newer than:"
63
  msgstr ""
64
 
65
- #: admin.inc.php:192
66
  #, fuzzy
67
  msgid "days"
68
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
69
 
70
- #: admin.inc.php:193
71
  msgid ""
72
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
73
  "it to 365 will show related posts from the last year only."
74
  msgstr ""
75
 
76
- #: admin.inc.php:196
77
- msgid "Post types to include in results."
78
  msgstr ""
79
 
80
- #: admin.inc.php:205
81
  msgid ""
82
  "These post types will be displayed in the list. Includes custom post types."
83
  msgstr ""
84
 
85
- #: admin.inc.php:208
86
- msgid "Find related posts based on content as well as title"
87
  msgstr ""
88
 
89
- #: admin.inc.php:210
90
  #, fuzzy
91
  msgid ""
92
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -96,73 +96,53 @@ msgstr ""
96
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
97
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
98
 
99
- #: admin.inc.php:213
100
  msgid "Limit content to be compared"
101
  msgstr ""
102
 
103
- #: admin.inc.php:215
104
  msgid ""
105
  "This sets the maximum words of the content that will be matched. 0 means no "
106
  "limit."
107
  msgstr ""
108
 
109
- #: admin.inc.php:218
110
- msgid "List of post or page IDs to exclude from the results: "
111
- msgstr ""
112
-
113
- #: admin.inc.php:220 admin.inc.php:315
114
- msgid ""
115
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
116
- msgstr ""
117
-
118
- #: admin.inc.php:223
119
- msgid "Categories to exclude from the results: "
120
- msgstr ""
121
-
122
- #: admin.inc.php:239
123
- msgid ""
124
- "Comma separated list of category slugs. The field above has an autocomplete "
125
- "so simply start typing in the starting letters and it will prompt you with "
126
- "options"
127
- msgstr ""
128
-
129
- #: admin.inc.php:242
130
  #, fuzzy
131
  msgid "Add related posts to:"
132
  msgstr "Populaire Berichten"
133
 
134
- #: admin.inc.php:244
135
  #, fuzzy
136
  msgid "Posts"
137
  msgstr "Populaire Berichten"
138
 
139
- #: admin.inc.php:245
140
  msgid "Pages"
141
  msgstr ""
142
 
143
- #: admin.inc.php:246
144
  #, fuzzy
145
  msgid "Home page"
146
  msgstr "Resultaten per pagina:"
147
 
148
- #: admin.inc.php:247
149
  msgid "Feeds"
150
  msgstr ""
151
 
152
- #: admin.inc.php:248
153
  msgid "Category archives"
154
  msgstr ""
155
 
156
- #: admin.inc.php:249
157
  msgid "Tag archives"
158
  msgstr ""
159
 
160
- #: admin.inc.php:250
161
  #, fuzzy
162
  msgid "Other archives"
163
  msgstr "Andere plugins"
164
 
165
- #: admin.inc.php:251
166
  #, fuzzy
167
  msgid ""
168
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -174,479 +154,573 @@ msgstr ""
174
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen "
175
  "aan je sjabloon bestand waar je het wilt laten weergeven"
176
 
177
- #: admin.inc.php:254
178
  msgid "Content filter priority:"
179
  msgstr ""
180
 
181
- #: admin.inc.php:257
182
  msgid ""
183
  "A higher number will cause the content above to be processed after other "
184
- "filters. Number below 10 is not recommended"
185
  msgstr ""
186
 
187
- #: admin.inc.php:260
188
- msgid "Add a link to the plugin page as a final item in the list"
189
- msgstr ""
 
190
 
191
- #: admin.inc.php:262
192
  msgid " <em>Optional</em>"
193
  msgstr ""
194
 
195
- #: admin.inc.php:263
196
  #, fuzzy
197
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
198
  msgstr "Contextual Related Posts "
199
 
200
- #: admin.inc.php:270
201
  #, fuzzy
202
  msgid "Output options"
203
  msgstr "Opties succesvol opgeslagen."
204
 
205
- #: admin.inc.php:273
206
  msgid "Title of related posts: "
207
  msgstr "Titel van gerelateerde berichten:"
208
 
209
- #: admin.inc.php:276
210
  msgid ""
211
  "This is the main heading of the related posts. You can also display the "
212
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
213
  "Posts to %postname%</code>"
214
  msgstr ""
215
 
216
- #: admin.inc.php:279
217
  msgid "When there are no posts, what should be shown?"
218
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
219
 
220
- #: admin.inc.php:283
221
  msgid "Blank Output"
222
  msgstr "Lege Output"
223
 
224
- #: admin.inc.php:287
225
  #, fuzzy
226
  msgid "Display:"
227
  msgstr "Aantal populaire berichten om weer te geven:"
228
 
229
- #: admin.inc.php:291 admin.inc.php:428
230
  msgid "Show post excerpt in list?"
231
  msgstr "Laat bericht uittreksel zien in lijst?"
232
 
233
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
234
  msgid "Length of excerpt (in words): "
235
  msgstr "Lengte van uittreksel (in woorden):"
236
 
237
- #: admin.inc.php:297
238
  #, fuzzy
239
  msgid "Show post author in list?"
240
  msgstr "Laat bericht samenvatting zien in lijst?"
241
 
 
 
 
 
242
  #: admin.inc.php:300
243
  #, fuzzy
244
  msgid "Show post date in list?"
245
  msgstr "Laat bericht samenvatting zien in lijst?"
246
 
247
  #: admin.inc.php:303
248
- msgid "Limit post title length (in characters)"
 
 
249
  msgstr ""
250
 
251
  #: admin.inc.php:306
252
- msgid "Open links in new window"
253
  msgstr ""
254
 
255
  #: admin.inc.php:309
256
- msgid "Add nofollow attribute to links in the list"
 
 
257
  msgstr ""
258
 
259
  #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
260
  #, fuzzy
261
  msgid "Exclude display of related posts on these posts / pages"
262
  msgstr "Voeg gerelateerde berichten toe aan feed"
263
 
264
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
265
  #, fuzzy
266
  msgid "Exclude display of related posts on these post types."
267
  msgstr "Voeg gerelateerde berichten toe aan feed"
268
 
269
- #: admin.inc.php:327
270
  msgid ""
271
  "The related posts will not display on any of the above selected post types"
272
  msgstr ""
273
 
274
- #: admin.inc.php:330
275
  msgid "Customize the output:"
276
  msgstr "Aanpassen van de output:"
277
 
278
- #: admin.inc.php:332
279
  msgid "HTML to display before the list of posts: "
280
  msgstr "Weer te geven HTML voor de berichtenlijst:"
281
 
282
- #: admin.inc.php:335
283
  msgid "HTML to display before each list item: "
284
  msgstr "Weer te geven HTML voor elk item in de lijst:"
285
 
286
- #: admin.inc.php:338
287
  msgid "HTML to display after each list item: "
288
  msgstr "Weer te geven HTML na elk item in de lijst:"
289
 
290
- #: admin.inc.php:341
291
  msgid "HTML to display after the list of posts: "
292
  msgstr "Weer te geven HTML na de berichtenlijst:"
293
 
294
- #: admin.inc.php:344
295
  msgid "Post thumbnail options:"
296
  msgstr "Berichtopties miniatuurafbeelding:"
297
 
298
- #: admin.inc.php:346 admin.inc.php:431
299
  #, fuzzy
300
  msgid "Location of post thumbnail:"
301
  msgstr "Bericht miniatuurafbeelding opties:"
302
 
303
- #: admin.inc.php:350 admin.inc.php:435
304
  #, fuzzy
305
  msgid "Display thumbnails inline with posts, before title"
306
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
307
 
308
- #: admin.inc.php:354 admin.inc.php:439
309
  #, fuzzy
310
  msgid "Display thumbnails inline with posts, after title"
311
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
312
 
313
- #: admin.inc.php:358 admin.inc.php:443
314
  msgid "Display only thumbnails, no text"
315
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
316
 
317
- #: admin.inc.php:362 admin.inc.php:447
318
  msgid "Do not display thumbnails, only text."
319
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
320
 
321
- #: admin.inc.php:366 admin.inc.php:451
322
  #, fuzzy
323
  msgid "Maximum width of the thumbnail: "
324
  msgstr "Bericht miniatuurafbeelding opties:"
325
 
326
- #: admin.inc.php:369 admin.inc.php:454
327
  #, fuzzy
328
  msgid "Maximum height of the thumbnail: "
329
  msgstr "Bericht miniatuurafbeelding opties:"
330
 
331
- #: admin.inc.php:372
 
 
 
 
 
 
332
  msgid "Style attributes / Width and Height HTML attributes:"
333
  msgstr ""
334
 
335
- #: admin.inc.php:376
336
- msgid ""
337
- "Style attributes are used for width and height. <code>style=\"max-width:"
338
  msgstr ""
339
 
340
- #: admin.inc.php:380
341
- msgid ""
342
- "HTML width and height attributes are used for width and height. <code>width="
343
- "\""
344
  msgstr ""
345
 
346
- #: admin.inc.php:384
347
  msgid "Use timthumb to generate thumbnails? "
348
  msgstr ""
349
 
350
- #: admin.inc.php:386
351
  msgid ""
352
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
353
- "\">timthumb</a> will be used to generate thumbnails"
354
  msgstr ""
355
 
356
- #: admin.inc.php:389
357
- msgid "Quality of thumbnails generated by timthumb"
358
  msgstr ""
359
 
360
- #: admin.inc.php:392
361
  msgid ""
362
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
363
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
364
  msgstr ""
365
 
366
- #: admin.inc.php:395
367
  #, fuzzy
368
- msgid "Post thumbnail meta field name: "
369
  msgstr "Berichtopties miniatuurafbeelding:"
370
 
371
- #: admin.inc.php:397
372
  msgid ""
373
  "The value of this field should contain the image source and is set in the "
374
  "<em>Add New Post</em> screen"
375
  msgstr ""
376
 
377
- #: admin.inc.php:400
378
- #, fuzzy
379
- msgid ""
380
- "If the postmeta is not set, then should the plugin extract the first image "
381
- "from the post?"
382
  msgstr ""
383
- "Als de postmeta niet is ingesteld moet de plugin de eerste afbeelding van "
384
- "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
385
- "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
386
 
387
- #: admin.inc.php:402
388
- #, fuzzy
389
  msgid ""
390
- "This can slow down the loading of your page if the first image in the "
391
- "related posts is large in file-size"
392
  msgstr ""
393
- "Als de postmeta niet is ingesteld moet de plugin de eerste afbeelding van "
394
- "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
395
- "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
396
 
397
- #: admin.inc.php:405
398
  #, fuzzy
399
- msgid "Use default thumbnail? "
400
  msgstr "Bericht miniatuurafbeelding opties:"
401
 
402
- #: admin.inc.php:407
403
  msgid ""
404
  "If checked, when no thumbnail is found, show a default one from the URL "
405
  "below. If not checked and no thumbnail is found, no image will be shown."
406
  msgstr ""
407
 
408
- #: admin.inc.php:410
409
  #, fuzzy
410
- msgid "Default thumbnail: "
411
  msgstr "Bericht miniatuurafbeelding opties:"
412
 
413
- #: admin.inc.php:413
414
  #, fuzzy
415
  msgid ""
416
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
417
  "then it will check the meta field. If this is not available, then it will "
418
- "show the default image as specified above"
419
  msgstr ""
420
  "De plugin zal eerst controleren of het bericht een miniatuurafbeelding "
421
  "bevat, zoniet dan zal de plugin het metaveld controleren. Wanneer het geen "
422
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
423
  "hieronder aangegeven:"
424
 
425
- #: admin.inc.php:420
426
  #, fuzzy
427
  msgid "Feed options"
428
  msgstr "Opties succesvol opgeslagen."
429
 
430
- #: admin.inc.php:423
431
  msgid ""
432
  "Below options override the related posts settings for your blog feed. These "
433
  "only apply if you have selected to add related posts to Feeds in the General "
434
  "Options tab."
435
  msgstr ""
436
 
437
- #: admin.inc.php:461
438
  msgid "Custom styles"
439
  msgstr ""
440
 
441
- #: admin.inc.php:464
442
  msgid "Use default style included in the plugin?"
443
  msgstr ""
444
 
445
- #: admin.inc.php:467
446
  msgid ""
447
  "Contextual Related Posts includes a default style that makes your popular "
448
  "posts list to look pretty. Check the box above if you want to use this."
449
  msgstr ""
450
 
451
- #: admin.inc.php:468
452
  msgid ""
453
  "Enabling this option will automatically turn on the thumbnails and set their "
454
  "width and height to 150px. Disabling this will not turn off thumbnails or "
455
  "change their dimensions."
456
  msgstr ""
457
 
458
- #: admin.inc.php:471
459
  msgid "Custom CSS to add to header:"
460
  msgstr ""
461
 
462
- #: admin.inc.php:475
463
  msgid ""
464
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
465
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
466
  "\">FAQ</a> for available CSS classes to style."
467
  msgstr ""
468
 
469
- #: admin.inc.php:482
470
  #, fuzzy
471
  msgid "Save Options"
472
  msgstr "Opties succesvol opgeslagen."
473
 
474
- #: admin.inc.php:483
475
  #, fuzzy
476
  msgid "Default Options"
477
  msgstr "Opties ingesteld op Standaard."
478
 
479
- #: admin.inc.php:483
480
  msgid "Do you want to set options to Default?"
481
  msgstr "Wil je opties terug naar standaard instellen?"
482
 
483
- #: admin.inc.php:484
484
  msgid "Recreate Index"
485
  msgstr ""
486
 
487
- #: admin.inc.php:484
488
  msgid "Are you sure you want to recreate the index?"
489
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
490
 
491
- #: admin.inc.php:492
492
  msgid "Support the development"
493
  msgstr "Ondersteun de ontwikkeling"
494
 
495
- #: admin.inc.php:501
496
- msgid "Enter amount in USD: "
 
 
 
 
 
 
497
  msgstr "Voer het bedrag in USD in:"
498
 
499
- #: admin.inc.php:505
500
  msgid "Send your donation to the author of"
501
  msgstr "Stuur je donatie aan de auteur van"
502
 
503
- #: admin.inc.php:512
504
  msgid "Follow me"
505
  msgstr ""
506
 
507
- #: admin.inc.php:522
508
  #, fuzzy
509
  msgid "Quick links"
510
  msgstr "Quick links"
511
 
512
- #: admin.inc.php:526
513
  #, fuzzy
514
  msgid "Contextual Related Posts plugin page"
515
  msgstr "Contextual Related Posts "
516
 
517
- #: admin.inc.php:527
518
- msgid "Other plugins"
519
- msgstr "Andere plugins"
520
-
521
- #: admin.inc.php:528
522
- msgid "Ajay's blog"
523
- msgstr "Ajay's blog"
524
-
525
- #: admin.inc.php:529
526
  msgid "FAQ"
527
  msgstr ""
528
 
529
- #: admin.inc.php:530 contextual-related-posts.php:927
530
  msgid "Support"
531
  msgstr "Ondersteuning"
532
 
533
- #: admin.inc.php:531
534
  msgid "Reviews"
535
  msgstr ""
536
 
537
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
538
  msgid "Contextual Related Posts"
539
  msgstr "Contextual Related Posts"
540
 
541
- #: admin.inc.php:554 contextual-related-posts.php:372
542
  msgid "Related Posts"
543
  msgstr "Gerelateerde Berichten"
544
 
545
- #: admin.inc.php:658
546
  #, fuzzy
547
  msgid "plugin settings page"
548
  msgstr "Instellingen"
549
 
550
- #: admin.inc.php:692
551
  msgid ""
552
  "An error occurred clearing the cache. Please contact your site administrator."
553
  "\\n\\nError message:\\n"
554
  msgstr ""
555
 
556
- #: admin.inc.php:697
557
  msgid " cached row(s) cleared"
558
  msgstr ""
559
 
560
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
561
  msgid " by "
562
  msgstr ""
563
 
564
- #: contextual-related-posts.php:143
565
  msgid "Powered by"
566
  msgstr "Powered by"
567
 
568
- #: contextual-related-posts.php:371
 
 
 
 
 
569
  #, fuzzy
570
  msgid "Display Related Posts"
571
  msgstr "Aantal populaire berichten om weer te geven:"
572
 
573
- #: contextual-related-posts.php:386
574
  #, fuzzy
575
  msgid "Title"
576
  msgstr "Titel van populaire berichten:"
577
 
578
- #: contextual-related-posts.php:391
579
  #, fuzzy
580
  msgid "No. of posts"
581
  msgstr "Populaire Berichten"
582
 
583
- #: contextual-related-posts.php:396
584
  #, fuzzy
585
  msgid " Show excerpt?"
586
  msgstr "Laat bericht samenvatting zien in lijst?"
587
 
588
- #: contextual-related-posts.php:401
589
  #, fuzzy
590
  msgid " Show author?"
591
  msgstr "Zend je donatie naar de auteur van "
592
 
593
- #: contextual-related-posts.php:406
594
  #, fuzzy
595
  msgid " Show date?"
596
  msgstr "Laat bericht samenvatting zien in lijst?"
597
 
598
- #: contextual-related-posts.php:410
599
  #, fuzzy
600
  msgid "Thumbnail options"
601
  msgstr "Bericht miniatuurafbeelding opties:"
602
 
603
- #: contextual-related-posts.php:412
604
  #, fuzzy
605
  msgid "Thumbnails inline, before title"
606
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
607
 
608
- #: contextual-related-posts.php:413
609
  #, fuzzy
610
  msgid "Thumbnails inline, after title"
611
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
612
 
613
- #: contextual-related-posts.php:414
614
  #, fuzzy
615
  msgid "Only thumbnails, no text"
616
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
617
 
618
- #: contextual-related-posts.php:415
619
  #, fuzzy
620
  msgid "No thumbnails, only text."
621
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
622
 
623
- #: contextual-related-posts.php:420
624
  #, fuzzy
625
  msgid "Thumbnail height"
626
  msgstr "Bericht miniatuurafbeelding opties:"
627
 
628
- #: contextual-related-posts.php:425
629
  #, fuzzy
630
  msgid "Thumbnail width"
631
  msgstr "Bericht miniatuurafbeelding opties:"
632
 
633
- #: contextual-related-posts.php:548
634
  msgid "<h3>Related Posts:</h3>"
635
  msgstr "<h3>Gerelateerde Berichten:</h3>"
636
 
637
- #: contextual-related-posts.php:549
638
  #, fuzzy
639
  msgid "No related posts found"
640
  msgstr "Populaire Berichten"
641
 
642
- #: contextual-related-posts.php:907
643
  msgid "Settings"
644
  msgstr "Instellingen"
645
 
646
- #: contextual-related-posts.php:928
647
  msgid "Donate"
648
  msgstr "Doneren"
649
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
650
  #~ msgid "Recent developments"
651
  #~ msgstr "Recente ontwikkelingen"
652
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: http://WPwebshop.com <info@wppg.me>\n"
17
  "X-Generator: Poedit 1.6.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:141
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
+ #: admin.inc.php:161
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
+ #: admin.inc.php:177
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
+ #: admin.inc.php:189
33
  #, fuzzy
34
  msgid "General options"
35
  msgstr "Opties succesvol opgeslagen."
36
 
37
+ #: admin.inc.php:192
38
  msgid "Cache output?"
39
  msgstr ""
40
 
41
+ #: admin.inc.php:194
42
  msgid ""
43
  "Enabling this option will cache the related posts output when the post is "
44
  "visited the first time. The cache is cleaned when you save this page."
45
  msgstr ""
46
 
47
+ #: admin.inc.php:195
48
  msgid "Clear cache"
49
  msgstr ""
50
 
51
+ #: admin.inc.php:198 admin.inc.php:462
52
  msgid "Number of related posts to display: "
53
  msgstr "Aantal weer te geven gerelateerde berichten:"
54
 
55
+ #: admin.inc.php:201
56
  msgid ""
57
  "Maximum number of posts that will be displayed. The actual number may be "
58
  "smaller if less related posts are found."
59
  msgstr ""
60
 
61
+ #: admin.inc.php:204
62
  msgid "Related posts should be newer than:"
63
  msgstr ""
64
 
65
+ #: admin.inc.php:206
66
  #, fuzzy
67
  msgid "days"
68
  msgstr "Van hoeveel dagen moet Dagelijks Populair weergaves bevatten ?"
69
 
70
+ #: admin.inc.php:207
71
  msgid ""
72
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
73
  "it to 365 will show related posts from the last year only."
74
  msgstr ""
75
 
76
+ #: admin.inc.php:210
77
+ msgid "Post types to include in results:"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:221
81
  msgid ""
82
  "These post types will be displayed in the list. Includes custom post types."
83
  msgstr ""
84
 
85
+ #: admin.inc.php:224
86
+ msgid "Find related posts based on content as well as title:"
87
  msgstr ""
88
 
89
+ #: admin.inc.php:226
90
  #, fuzzy
91
  msgid ""
92
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
96
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
97
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
98
 
99
+ #: admin.inc.php:229
100
  msgid "Limit content to be compared"
101
  msgstr ""
102
 
103
+ #: admin.inc.php:231
104
  msgid ""
105
  "This sets the maximum words of the content that will be matched. 0 means no "
106
  "limit."
107
  msgstr ""
108
 
109
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
110
  #, fuzzy
111
  msgid "Add related posts to:"
112
  msgstr "Populaire Berichten"
113
 
114
+ #: admin.inc.php:236
115
  #, fuzzy
116
  msgid "Posts"
117
  msgstr "Populaire Berichten"
118
 
119
+ #: admin.inc.php:237
120
  msgid "Pages"
121
  msgstr ""
122
 
123
+ #: admin.inc.php:238
124
  #, fuzzy
125
  msgid "Home page"
126
  msgstr "Resultaten per pagina:"
127
 
128
+ #: admin.inc.php:239
129
  msgid "Feeds"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:240
133
  msgid "Category archives"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:241
137
  msgid "Tag archives"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:242
141
  #, fuzzy
142
  msgid "Other archives"
143
  msgstr "Andere plugins"
144
 
145
+ #: admin.inc.php:243
146
  #, fuzzy
147
  msgid ""
148
  "If you choose to disable this, please add <code>&lt;?php if "
154
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen "
155
  "aan je sjabloon bestand waar je het wilt laten weergeven"
156
 
157
+ #: admin.inc.php:246
158
  msgid "Content filter priority:"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:249
162
  msgid ""
163
  "A higher number will cause the content above to be processed after other "
164
+ "filters. Number below 10 is not recommended."
165
  msgstr ""
166
 
167
+ #: admin.inc.php:252
168
+ #, fuzzy
169
+ msgid "Tell the world you're using Contextual Related Posts:"
170
+ msgstr "Contextual Related Posts"
171
 
172
+ #: admin.inc.php:254
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:255
177
  #, fuzzy
178
+ msgid ""
179
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
180
+ "in the list."
181
  msgstr "Contextual Related Posts "
182
 
183
+ #: admin.inc.php:262
184
  #, fuzzy
185
  msgid "Output options"
186
  msgstr "Opties succesvol opgeslagen."
187
 
188
+ #: admin.inc.php:265
189
  msgid "Title of related posts: "
190
  msgstr "Titel van gerelateerde berichten:"
191
 
192
+ #: admin.inc.php:268
193
  msgid ""
194
  "This is the main heading of the related posts. You can also display the "
195
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
196
  "Posts to %postname%</code>"
197
  msgstr ""
198
 
199
+ #: admin.inc.php:271
200
  msgid "When there are no posts, what should be shown?"
201
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
202
 
203
+ #: admin.inc.php:275
204
  msgid "Blank Output"
205
  msgstr "Lege Output"
206
 
207
+ #: admin.inc.php:279
208
  #, fuzzy
209
  msgid "Display:"
210
  msgstr "Aantal populaire berichten om weer te geven:"
211
 
212
+ #: admin.inc.php:283 admin.inc.php:465
213
  msgid "Show post excerpt in list?"
214
  msgstr "Laat bericht uittreksel zien in lijst?"
215
 
216
+ #: admin.inc.php:286
217
+ #, php-format
218
+ msgid ""
219
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
220
+ "to a post (in the post editor's optional excerpt field), it will display an "
221
+ "automatic excerpt which refers to the first %d words of the post's content"
222
+ msgstr ""
223
+
224
+ #: admin.inc.php:289
225
  msgid "Length of excerpt (in words): "
226
  msgstr "Lengte van uittreksel (in woorden):"
227
 
228
+ #: admin.inc.php:294
229
  #, fuzzy
230
  msgid "Show post author in list?"
231
  msgstr "Laat bericht samenvatting zien in lijst?"
232
 
233
+ #: admin.inc.php:297
234
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
235
+ msgstr ""
236
+
237
  #: admin.inc.php:300
238
  #, fuzzy
239
  msgid "Show post date in list?"
240
  msgstr "Laat bericht samenvatting zien in lijst?"
241
 
242
  #: admin.inc.php:303
243
+ msgid ""
244
+ "Displays the date of the post. Uses the same date format set in General "
245
+ "Options"
246
  msgstr ""
247
 
248
  #: admin.inc.php:306
249
+ msgid "Limit post title length (in characters)"
250
  msgstr ""
251
 
252
  #: admin.inc.php:309
253
+ msgid ""
254
+ "Any title longer than the number of characters set above will be cut and "
255
+ "appended with a &helip;"
256
  msgstr ""
257
 
258
  #: admin.inc.php:312
259
+ msgid "Open links in new window"
260
+ msgstr ""
261
+
262
+ #: admin.inc.php:315
263
+ msgid "Add nofollow attribute to links in the list"
264
+ msgstr ""
265
+
266
+ #: admin.inc.php:318
267
+ #, fuzzy
268
+ msgid "Exclusion settings:"
269
+ msgstr "Instellingen"
270
+
271
+ #: admin.inc.php:320
272
+ msgid "List of post or page IDs to exclude from the results:"
273
+ msgstr ""
274
+
275
+ #: admin.inc.php:322 admin.inc.php:328
276
+ msgid ""
277
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
278
+ msgstr ""
279
+
280
+ #: admin.inc.php:325
281
  #, fuzzy
282
  msgid "Exclude display of related posts on these posts / pages"
283
  msgstr "Voeg gerelateerde berichten toe aan feed"
284
 
285
+ #: admin.inc.php:331
286
+ msgid "Categories to exclude from the results: "
287
+ msgstr ""
288
+
289
+ #: admin.inc.php:347
290
+ msgid ""
291
+ "Comma separated list of category slugs. The field above has an autocomplete "
292
+ "so simply start typing in the beginning of your category name and it will "
293
+ "prompt you with options."
294
+ msgstr ""
295
+
296
+ #: admin.inc.php:350
297
  #, fuzzy
298
  msgid "Exclude display of related posts on these post types."
299
  msgstr "Voeg gerelateerde berichten toe aan feed"
300
 
301
+ #: admin.inc.php:359
302
  msgid ""
303
  "The related posts will not display on any of the above selected post types"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:362
307
  msgid "Customize the output:"
308
  msgstr "Aanpassen van de output:"
309
 
310
+ #: admin.inc.php:364
311
  msgid "HTML to display before the list of posts: "
312
  msgstr "Weer te geven HTML voor de berichtenlijst:"
313
 
314
+ #: admin.inc.php:367
315
  msgid "HTML to display before each list item: "
316
  msgstr "Weer te geven HTML voor elk item in de lijst:"
317
 
318
+ #: admin.inc.php:370
319
  msgid "HTML to display after each list item: "
320
  msgstr "Weer te geven HTML na elk item in de lijst:"
321
 
322
+ #: admin.inc.php:373
323
  msgid "HTML to display after the list of posts: "
324
  msgstr "Weer te geven HTML na de berichtenlijst:"
325
 
326
+ #: admin.inc.php:376
327
  msgid "Post thumbnail options:"
328
  msgstr "Berichtopties miniatuurafbeelding:"
329
 
330
+ #: admin.inc.php:378 admin.inc.php:468
331
  #, fuzzy
332
  msgid "Location of post thumbnail:"
333
  msgstr "Bericht miniatuurafbeelding opties:"
334
 
335
+ #: admin.inc.php:382 admin.inc.php:472
336
  #, fuzzy
337
  msgid "Display thumbnails inline with posts, before title"
338
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
339
 
340
+ #: admin.inc.php:386 admin.inc.php:476
341
  #, fuzzy
342
  msgid "Display thumbnails inline with posts, after title"
343
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
344
 
345
+ #: admin.inc.php:390 admin.inc.php:480
346
  msgid "Display only thumbnails, no text"
347
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
348
 
349
+ #: admin.inc.php:394 admin.inc.php:484
350
  msgid "Do not display thumbnails, only text."
351
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
352
 
353
+ #: admin.inc.php:398 admin.inc.php:488
354
  #, fuzzy
355
  msgid "Maximum width of the thumbnail: "
356
  msgstr "Bericht miniatuurafbeelding opties:"
357
 
358
+ #: admin.inc.php:401 admin.inc.php:491
359
  #, fuzzy
360
  msgid "Maximum height of the thumbnail: "
361
  msgstr "Bericht miniatuurafbeelding opties:"
362
 
363
+ #: admin.inc.php:405
364
+ msgid ""
365
+ "Since you're using the default styles set under the Custom Styles section, "
366
+ "the width and height is fixed at 150px"
367
+ msgstr ""
368
+
369
+ #: admin.inc.php:409
370
  msgid "Style attributes / Width and Height HTML attributes:"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:413
374
+ msgid "Style attributes are used for width and height."
 
375
  msgstr ""
376
 
377
+ #: admin.inc.php:417
378
+ msgid "HTML width and height attributes are used for width and height."
 
 
379
  msgstr ""
380
 
381
+ #: admin.inc.php:421
382
  msgid "Use timthumb to generate thumbnails? "
383
  msgstr ""
384
 
385
+ #: admin.inc.php:423
386
  msgid ""
387
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
388
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:426
392
+ msgid "Quality of thumbnails generated by timthumb:"
393
  msgstr ""
394
 
395
+ #: admin.inc.php:429
396
  msgid ""
397
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
398
+ "file size. Suggested maximum value is 95. CRP default is 75."
399
  msgstr ""
400
 
401
+ #: admin.inc.php:432
402
  #, fuzzy
403
+ msgid "Post thumbnail meta field name:"
404
  msgstr "Berichtopties miniatuurafbeelding:"
405
 
406
+ #: admin.inc.php:434
407
  msgid ""
408
  "The value of this field should contain the image source and is set in the "
409
  "<em>Add New Post</em> screen"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:437
413
+ msgid "Extract the first image from the post?"
 
 
 
414
  msgstr ""
 
 
 
415
 
416
+ #: admin.inc.php:439
 
417
  msgid ""
418
+ "This will only happen if there is no post thumbnail set and no image URL is "
419
+ "specified in the meta field."
420
  msgstr ""
 
 
 
421
 
422
+ #: admin.inc.php:442
423
  #, fuzzy
424
+ msgid "Use default thumbnail?"
425
  msgstr "Bericht miniatuurafbeelding opties:"
426
 
427
+ #: admin.inc.php:444
428
  msgid ""
429
  "If checked, when no thumbnail is found, show a default one from the URL "
430
  "below. If not checked and no thumbnail is found, no image will be shown."
431
  msgstr ""
432
 
433
+ #: admin.inc.php:447
434
  #, fuzzy
435
+ msgid "Default thumbnail:"
436
  msgstr "Bericht miniatuurafbeelding opties:"
437
 
438
+ #: admin.inc.php:450
439
  #, fuzzy
440
  msgid ""
441
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
442
  "then it will check the meta field. If this is not available, then it will "
443
+ "show the default image as specified above."
444
  msgstr ""
445
  "De plugin zal eerst controleren of het bericht een miniatuurafbeelding "
446
  "bevat, zoniet dan zal de plugin het metaveld controleren. Wanneer het geen "
447
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
448
  "hieronder aangegeven:"
449
 
450
+ #: admin.inc.php:457
451
  #, fuzzy
452
  msgid "Feed options"
453
  msgstr "Opties succesvol opgeslagen."
454
 
455
+ #: admin.inc.php:460
456
  msgid ""
457
  "Below options override the related posts settings for your blog feed. These "
458
  "only apply if you have selected to add related posts to Feeds in the General "
459
  "Options tab."
460
  msgstr ""
461
 
462
+ #: admin.inc.php:498
463
  msgid "Custom styles"
464
  msgstr ""
465
 
466
+ #: admin.inc.php:501
467
  msgid "Use default style included in the plugin?"
468
  msgstr ""
469
 
470
+ #: admin.inc.php:504
471
  msgid ""
472
  "Contextual Related Posts includes a default style that makes your popular "
473
  "posts list to look pretty. Check the box above if you want to use this."
474
  msgstr ""
475
 
476
+ #: admin.inc.php:505
477
  msgid ""
478
  "Enabling this option will automatically turn on the thumbnails and set their "
479
  "width and height to 150px. Disabling this will not turn off thumbnails or "
480
  "change their dimensions."
481
  msgstr ""
482
 
483
+ #: admin.inc.php:508
484
  msgid "Custom CSS to add to header:"
485
  msgstr ""
486
 
487
+ #: admin.inc.php:512
488
  msgid ""
489
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
490
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
491
  "\">FAQ</a> for available CSS classes to style."
492
  msgstr ""
493
 
494
+ #: admin.inc.php:519
495
  #, fuzzy
496
  msgid "Save Options"
497
  msgstr "Opties succesvol opgeslagen."
498
 
499
+ #: admin.inc.php:520
500
  #, fuzzy
501
  msgid "Default Options"
502
  msgstr "Opties ingesteld op Standaard."
503
 
504
+ #: admin.inc.php:520
505
  msgid "Do you want to set options to Default?"
506
  msgstr "Wil je opties terug naar standaard instellen?"
507
 
508
+ #: admin.inc.php:521
509
  msgid "Recreate Index"
510
  msgstr ""
511
 
512
+ #: admin.inc.php:521
513
  msgid "Are you sure you want to recreate the index?"
514
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
515
 
516
+ #: admin.inc.php:529
517
  msgid "Support the development"
518
  msgstr "Ondersteun de ontwikkeling"
519
 
520
+ #: admin.inc.php:536
521
+ #, fuzzy
522
+ msgid "Donation for Contextual Related Posts"
523
+ msgstr "Contextual Related Posts"
524
+
525
+ #: admin.inc.php:538
526
+ #, fuzzy
527
+ msgid "Enter amount in USD:"
528
  msgstr "Voer het bedrag in USD in:"
529
 
530
+ #: admin.inc.php:542
531
  msgid "Send your donation to the author of"
532
  msgstr "Stuur je donatie aan de auteur van"
533
 
534
+ #: admin.inc.php:549
535
  msgid "Follow me"
536
  msgstr ""
537
 
538
+ #: admin.inc.php:559
539
  #, fuzzy
540
  msgid "Quick links"
541
  msgstr "Quick links"
542
 
543
+ #: admin.inc.php:563
544
  #, fuzzy
545
  msgid "Contextual Related Posts plugin page"
546
  msgstr "Contextual Related Posts "
547
 
548
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
549
  msgid "FAQ"
550
  msgstr ""
551
 
552
+ #: admin.inc.php:565 contextual-related-posts.php:964
553
  msgid "Support"
554
  msgstr "Ondersteuning"
555
 
556
+ #: admin.inc.php:566
557
  msgid "Reviews"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:567
561
+ msgid "Github repository"
562
+ msgstr ""
563
+
564
+ #: admin.inc.php:568
565
+ msgid "Other plugins"
566
+ msgstr "Andere plugins"
567
+
568
+ #: admin.inc.php:569
569
+ msgid "Ajay's blog"
570
+ msgstr "Ajay's blog"
571
+
572
+ #: admin.inc.php:591 admin.inc.php:752
573
  msgid "Contextual Related Posts"
574
  msgstr "Contextual Related Posts"
575
 
576
+ #: admin.inc.php:591
577
  msgid "Related Posts"
578
  msgstr "Gerelateerde Berichten"
579
 
580
+ #: admin.inc.php:694
581
  #, fuzzy
582
  msgid "plugin settings page"
583
  msgstr "Instellingen"
584
 
585
+ #: admin.inc.php:728
586
  msgid ""
587
  "An error occurred clearing the cache. Please contact your site administrator."
588
  "\\n\\nError message:\\n"
589
  msgstr ""
590
 
591
+ #: admin.inc.php:733
592
  msgid " cached row(s) cleared"
593
  msgstr ""
594
 
595
+ #: admin.inc.php:779
596
+ #, fuzzy
597
+ msgid "Location of thumbnail:"
598
+ msgstr "Bericht miniatuurafbeelding opties:"
599
+
600
+ #: admin.inc.php:781
601
+ msgid ""
602
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
603
+ "image will be used for the post. It will be resized to the thumbnail size "
604
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
605
+ msgstr ""
606
+
607
+ #: admin.inc.php:782
608
+ msgid "The URL above is saved in the meta field: "
609
+ msgstr ""
610
+
611
+ #: contextual-related-posts.php:127
612
  msgid " by "
613
  msgstr ""
614
 
615
+ #: contextual-related-posts.php:142
616
  msgid "Powered by"
617
  msgstr "Powered by"
618
 
619
+ #: contextual-related-posts.php:376
620
+ #, fuzzy
621
+ msgid "Related Posts [CRP]"
622
+ msgstr "Gerelateerde Berichten"
623
+
624
+ #: contextual-related-posts.php:377
625
  #, fuzzy
626
  msgid "Display Related Posts"
627
  msgstr "Aantal populaire berichten om weer te geven:"
628
 
629
+ #: contextual-related-posts.php:400
630
  #, fuzzy
631
  msgid "Title"
632
  msgstr "Titel van populaire berichten:"
633
 
634
+ #: contextual-related-posts.php:405
635
  #, fuzzy
636
  msgid "No. of posts"
637
  msgstr "Populaire Berichten"
638
 
639
+ #: contextual-related-posts.php:410
640
  #, fuzzy
641
  msgid " Show excerpt?"
642
  msgstr "Laat bericht samenvatting zien in lijst?"
643
 
644
+ #: contextual-related-posts.php:415
645
  #, fuzzy
646
  msgid " Show author?"
647
  msgstr "Zend je donatie naar de auteur van "
648
 
649
+ #: contextual-related-posts.php:420
650
  #, fuzzy
651
  msgid " Show date?"
652
  msgstr "Laat bericht samenvatting zien in lijst?"
653
 
654
+ #: contextual-related-posts.php:424
655
  #, fuzzy
656
  msgid "Thumbnail options"
657
  msgstr "Bericht miniatuurafbeelding opties:"
658
 
659
+ #: contextual-related-posts.php:426
660
  #, fuzzy
661
  msgid "Thumbnails inline, before title"
662
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
663
 
664
+ #: contextual-related-posts.php:427
665
  #, fuzzy
666
  msgid "Thumbnails inline, after title"
667
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
668
 
669
+ #: contextual-related-posts.php:428
670
  #, fuzzy
671
  msgid "Only thumbnails, no text"
672
  msgstr "Geef alleen miniatuurafbeeldingen weer, geen text"
673
 
674
+ #: contextual-related-posts.php:429
675
  #, fuzzy
676
  msgid "No thumbnails, only text."
677
  msgstr "Geef geen miniatuurafbeeldingen weer, alleen text"
678
 
679
+ #: contextual-related-posts.php:434
680
  #, fuzzy
681
  msgid "Thumbnail height"
682
  msgstr "Bericht miniatuurafbeelding opties:"
683
 
684
+ #: contextual-related-posts.php:439
685
  #, fuzzy
686
  msgid "Thumbnail width"
687
  msgstr "Bericht miniatuurafbeelding opties:"
688
 
689
+ #: contextual-related-posts.php:581
690
  msgid "<h3>Related Posts:</h3>"
691
  msgstr "<h3>Gerelateerde Berichten:</h3>"
692
 
693
+ #: contextual-related-posts.php:582
694
  #, fuzzy
695
  msgid "No related posts found"
696
  msgstr "Populaire Berichten"
697
 
698
+ #: contextual-related-posts.php:944
699
  msgid "Settings"
700
  msgstr "Instellingen"
701
 
702
+ #: contextual-related-posts.php:965
703
  msgid "Donate"
704
  msgstr "Doneren"
705
 
706
+ #, fuzzy
707
+ #~ msgid ""
708
+ #~ "If the postmeta is not set, then should the plugin extract the first "
709
+ #~ "image from the post?"
710
+ #~ msgstr ""
711
+ #~ "Als de postmeta niet is ingesteld moet de plugin de eerste afbeelding van "
712
+ #~ "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
713
+ #~ "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
714
+
715
+ #, fuzzy
716
+ #~ msgid ""
717
+ #~ "This can slow down the loading of your page if the first image in the "
718
+ #~ "related posts is large in file-size"
719
+ #~ msgstr ""
720
+ #~ "Als de postmeta niet is ingesteld moet de plugin de eerste afbeelding van "
721
+ #~ "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
722
+ #~ "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
723
+
724
  #~ msgid "Recent developments"
725
  #~ msgstr "Recente ontwikkelingen"
726
 
languages/crp-ru_RU.mo CHANGED
Binary file
languages/crp-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:24-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -15,78 +15,79 @@ msgstr ""
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:127
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
- #: admin.inc.php:147
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
- #: admin.inc.php:163
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
- #: admin.inc.php:175
31
  #, fuzzy
32
  msgid "General options"
33
  msgstr "Izejas opcijas:"
34
 
35
- #: admin.inc.php:178
36
  #, fuzzy
37
  msgid "Cache output?"
38
  msgstr "Izejas opcijas:"
39
 
40
- #: admin.inc.php:180
41
  msgid ""
42
  "Enabling this option will cache the related posts output when the post is "
43
  "visited the first time. The cache is cleaned when you save this page."
44
  msgstr ""
45
 
46
- #: admin.inc.php:181
47
  msgid "Clear cache"
48
  msgstr ""
49
 
50
- #: admin.inc.php:184 admin.inc.php:425
51
  msgid "Number of related posts to display: "
52
  msgstr "Количество отображаемых похожих постов:"
53
 
54
- #: admin.inc.php:187
55
  msgid ""
56
  "Maximum number of posts that will be displayed. The actual number may be "
57
  "smaller if less related posts are found."
58
  msgstr ""
59
 
60
- #: admin.inc.php:190
61
  msgid "Related posts should be newer than:"
62
  msgstr ""
63
 
64
- #: admin.inc.php:192
65
  #, fuzzy
66
  msgid "days"
67
  msgstr ""
68
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
69
 
70
- #: admin.inc.php:193
71
  msgid ""
72
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
73
  "it to 365 will show related posts from the last year only."
74
  msgstr ""
75
 
76
- #: admin.inc.php:196
77
- msgid "Post types to include in results."
78
- msgstr ""
 
79
 
80
- #: admin.inc.php:205
81
  msgid ""
82
  "These post types will be displayed in the list. Includes custom post types."
83
  msgstr ""
84
 
85
- #: admin.inc.php:208
86
- msgid "Find related posts based on content as well as title"
87
  msgstr ""
88
 
89
- #: admin.inc.php:210
90
  #, fuzzy
91
  msgid ""
92
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
@@ -97,75 +98,54 @@ msgstr ""
97
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
98
  "опцию)"
99
 
100
- #: admin.inc.php:213
101
  msgid "Limit content to be compared"
102
  msgstr ""
103
 
104
- #: admin.inc.php:215
105
  msgid ""
106
  "This sets the maximum words of the content that will be matched. 0 means no "
107
  "limit."
108
  msgstr ""
109
 
110
- #: admin.inc.php:218
111
- msgid "List of post or page IDs to exclude from the results: "
112
- msgstr ""
113
-
114
- #: admin.inc.php:220 admin.inc.php:315
115
- msgid ""
116
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
117
- msgstr ""
118
-
119
- #: admin.inc.php:223
120
- #, fuzzy
121
- msgid "Categories to exclude from the results: "
122
- msgstr "Исключить рубрики:"
123
-
124
- #: admin.inc.php:239
125
- msgid ""
126
- "Comma separated list of category slugs. The field above has an autocomplete "
127
- "so simply start typing in the starting letters and it will prompt you with "
128
- "options"
129
- msgstr ""
130
-
131
- #: admin.inc.php:242
132
  #, fuzzy
133
  msgid "Add related posts to:"
134
  msgstr "Pievienot saistītus amatus barībā"
135
 
136
- #: admin.inc.php:244
137
  #, fuzzy
138
  msgid "Posts"
139
  msgstr "Популярные записи"
140
 
141
- #: admin.inc.php:245
142
  #, fuzzy
143
  msgid "Pages"
144
  msgstr "Pievienot saistītus amatus barībā"
145
 
146
- #: admin.inc.php:246
147
  #, fuzzy
148
  msgid "Home page"
149
  msgstr "Результатов на страницу:"
150
 
151
- #: admin.inc.php:247
152
  msgid "Feeds"
153
  msgstr ""
154
 
155
- #: admin.inc.php:248
156
  msgid "Category archives"
157
  msgstr ""
158
 
159
- #: admin.inc.php:249
160
  msgid "Tag archives"
161
  msgstr ""
162
 
163
- #: admin.inc.php:250
164
  #, fuzzy
165
  msgid "Other archives"
166
  msgstr "Другие плагины автора"
167
 
168
- #: admin.inc.php:251
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -177,228 +157,278 @@ msgstr ""
177
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в "
178
  "отображаемый шаблон на вашем сайте"
179
 
180
- #: admin.inc.php:254
181
  msgid "Content filter priority:"
182
  msgstr ""
183
 
184
- #: admin.inc.php:257
185
  msgid ""
186
  "A higher number will cause the content above to be processed after other "
187
- "filters. Number below 10 is not recommended"
188
  msgstr ""
189
 
190
- #: admin.inc.php:260
191
- msgid "Add a link to the plugin page as a final item in the list"
192
- msgstr ""
 
193
 
194
- #: admin.inc.php:262
195
  msgid " <em>Optional</em>"
196
  msgstr ""
197
 
198
- #: admin.inc.php:263
199
  #, fuzzy
200
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
201
  msgstr "Контекстные похожие посты"
202
 
203
- #: admin.inc.php:270
204
  #, fuzzy
205
  msgid "Output options"
206
  msgstr "Izejas opcijas:"
207
 
208
- #: admin.inc.php:273
209
  msgid "Title of related posts: "
210
  msgstr "Названия связанных постов:"
211
 
212
- #: admin.inc.php:276
213
  msgid ""
214
  "This is the main heading of the related posts. You can also display the "
215
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
216
  "Posts to %postname%</code>"
217
  msgstr ""
218
 
219
- #: admin.inc.php:279
220
  msgid "When there are no posts, what should be shown?"
221
  msgstr "Когда нет сообщений, что должно быть показано?"
222
 
223
- #: admin.inc.php:283
224
  msgid "Blank Output"
225
  msgstr "Пустой выход"
226
 
227
- #: admin.inc.php:287
228
  #, fuzzy
229
  msgid "Display:"
230
  msgstr "Количество Популярных записей в списке:"
231
 
232
- #: admin.inc.php:291 admin.inc.php:428
233
  msgid "Show post excerpt in list?"
234
  msgstr "Показать выдержки из поста в списке?"
235
 
236
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
237
  msgid "Length of excerpt (in words): "
238
  msgstr "Длина выдержки (в словах):"
239
 
240
- #: admin.inc.php:297
241
  #, fuzzy
242
  msgid "Show post author in list?"
243
  msgstr "Показывать текст записи в списке?"
244
 
 
 
 
 
245
  #: admin.inc.php:300
246
  #, fuzzy
247
  msgid "Show post date in list?"
248
  msgstr "Показывать текст записи в списке?"
249
 
250
  #: admin.inc.php:303
251
- msgid "Limit post title length (in characters)"
 
 
252
  msgstr ""
253
 
254
  #: admin.inc.php:306
255
- msgid "Open links in new window"
256
  msgstr ""
257
 
258
  #: admin.inc.php:309
259
- msgid "Add nofollow attribute to links in the list"
 
 
260
  msgstr ""
261
 
262
  #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  #, fuzzy
264
  msgid "Exclude display of related posts on these posts / pages"
265
  msgstr "Pievienot saistītus amatus barībā"
266
 
267
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
 
268
  #, fuzzy
269
  msgid "Exclude display of related posts on these post types."
270
  msgstr "Pievienot saistītus amatus barībā"
271
 
272
- #: admin.inc.php:327
273
  msgid ""
274
  "The related posts will not display on any of the above selected post types"
275
  msgstr ""
276
 
277
- #: admin.inc.php:330
278
  msgid "Customize the output:"
279
  msgstr "Настройки выхода:"
280
 
281
- #: admin.inc.php:332
282
  msgid "HTML to display before the list of posts: "
283
  msgstr "HTML для показа перед списком сообщений: "
284
 
285
- #: admin.inc.php:335
286
  msgid "HTML to display before each list item: "
287
  msgstr "HTML для показа перед каждым элементом списка: "
288
 
289
- #: admin.inc.php:338
290
  msgid "HTML to display after each list item: "
291
  msgstr "HTML для отображения после каждого элемента списка: "
292
 
293
- #: admin.inc.php:341
294
  msgid "HTML to display after the list of posts: "
295
  msgstr "HTML для отображения после списка сообщений: "
296
 
297
- #: admin.inc.php:344
298
  msgid "Post thumbnail options:"
299
  msgstr "Опции изображения поста:"
300
 
301
- #: admin.inc.php:346 admin.inc.php:431
302
  #, fuzzy
303
  msgid "Location of post thumbnail:"
304
  msgstr "Настройки превью к записям:"
305
 
306
- #: admin.inc.php:350 admin.inc.php:435
307
  #, fuzzy
308
  msgid "Display thumbnails inline with posts, before title"
309
  msgstr "Отображать превью к записи сразу перед заголовком"
310
 
311
- #: admin.inc.php:354 admin.inc.php:439
312
  #, fuzzy
313
  msgid "Display thumbnails inline with posts, after title"
314
  msgstr "Отображать превью к записи сразу после заголовка"
315
 
316
- #: admin.inc.php:358 admin.inc.php:443
317
  msgid "Display only thumbnails, no text"
318
  msgstr "Показывать только изображения, без текста"
319
 
320
- #: admin.inc.php:362 admin.inc.php:447
321
  msgid "Do not display thumbnails, only text."
322
  msgstr "Не показывать изображения, только текст"
323
 
324
- #: admin.inc.php:366 admin.inc.php:451
325
  #, fuzzy
326
  msgid "Maximum width of the thumbnail: "
327
  msgstr "Thumbnail platums"
328
 
329
- #: admin.inc.php:369 admin.inc.php:454
330
  #, fuzzy
331
  msgid "Maximum height of the thumbnail: "
332
  msgstr "sīktēls augstums"
333
 
334
- #: admin.inc.php:372
 
 
 
 
 
 
335
  msgid "Style attributes / Width and Height HTML attributes:"
336
  msgstr ""
337
 
338
- #: admin.inc.php:376
339
- msgid ""
340
- "Style attributes are used for width and height. <code>style=\"max-width:"
341
  msgstr ""
342
 
343
- #: admin.inc.php:380
344
- msgid ""
345
- "HTML width and height attributes are used for width and height. <code>width="
346
- "\""
347
  msgstr ""
348
 
349
- #: admin.inc.php:384
350
  msgid "Use timthumb to generate thumbnails? "
351
  msgstr ""
352
 
353
- #: admin.inc.php:386
354
  msgid ""
355
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
356
- "\">timthumb</a> will be used to generate thumbnails"
357
  msgstr ""
358
 
359
- #: admin.inc.php:389
360
- msgid "Quality of thumbnails generated by timthumb"
361
  msgstr ""
362
 
363
- #: admin.inc.php:392
364
  msgid ""
365
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
366
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
367
  msgstr ""
368
 
369
- #: admin.inc.php:395
370
  #, fuzzy
371
- msgid "Post thumbnail meta field name: "
372
  msgstr "Attēlu rīki post:"
373
 
374
- #: admin.inc.php:397
375
  msgid ""
376
  "The value of this field should contain the image source and is set in the "
377
  "<em>Add New Post</em> screen"
378
  msgstr ""
379
 
380
- #: admin.inc.php:400
381
- #, fuzzy
382
- msgid ""
383
- "If the postmeta is not set, then should the plugin extract the first image "
384
- "from the post?"
385
  msgstr ""
386
- "Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
387
 
388
- #: admin.inc.php:402
389
- #, fuzzy
390
  msgid ""
391
- "This can slow down the loading of your page if the first image in the "
392
- "related posts is large in file-size"
393
  msgstr ""
394
- "Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
395
- "liela faila izmēra"
396
 
397
- #: admin.inc.php:405
398
- msgid "Use default thumbnail? "
399
  msgstr ""
400
 
401
- #: admin.inc.php:407
402
  #, fuzzy
403
  msgid ""
404
  "If checked, when no thumbnail is found, show a default one from the URL "
@@ -408,247 +438,294 @@ msgstr ""
408
  "добавлено стандартное изображение. Если превью задано к записи - будет "
409
  "отображаться только оно."
410
 
411
- #: admin.inc.php:410
412
- msgid "Default thumbnail: "
413
- msgstr ""
 
414
 
415
- #: admin.inc.php:413
416
  #, fuzzy
417
  msgid ""
418
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
419
  "then it will check the meta field. If this is not available, then it will "
420
- "show the default image as specified above"
421
  msgstr ""
422
  "Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad tas "
423
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
424
  "noklusējuma attēlu, kā minēts iepriekš"
425
 
426
- #: admin.inc.php:420
427
  #, fuzzy
428
  msgid "Feed options"
429
  msgstr "Iespējas:"
430
 
431
- #: admin.inc.php:423
432
  msgid ""
433
  "Below options override the related posts settings for your blog feed. These "
434
  "only apply if you have selected to add related posts to Feeds in the General "
435
  "Options tab."
436
  msgstr ""
437
 
438
- #: admin.inc.php:461
439
  msgid "Custom styles"
440
  msgstr ""
441
 
442
- #: admin.inc.php:464
443
  msgid "Use default style included in the plugin?"
444
  msgstr ""
445
 
446
- #: admin.inc.php:467
447
  msgid ""
448
  "Contextual Related Posts includes a default style that makes your popular "
449
  "posts list to look pretty. Check the box above if you want to use this."
450
  msgstr ""
451
 
452
- #: admin.inc.php:468
453
  msgid ""
454
  "Enabling this option will automatically turn on the thumbnails and set their "
455
  "width and height to 150px. Disabling this will not turn off thumbnails or "
456
  "change their dimensions."
457
  msgstr ""
458
 
459
- #: admin.inc.php:471
460
  msgid "Custom CSS to add to header:"
461
  msgstr ""
462
 
463
- #: admin.inc.php:475
464
  msgid ""
465
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
466
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
467
  "\">FAQ</a> for available CSS classes to style."
468
  msgstr ""
469
 
470
- #: admin.inc.php:482
471
  #, fuzzy
472
  msgid "Save Options"
473
  msgstr "Saglabāt opcijas"
474
 
475
- #: admin.inc.php:483
476
  #, fuzzy
477
  msgid "Default Options"
478
  msgstr "noklusējuma opcijas"
479
 
480
- #: admin.inc.php:483
481
  msgid "Do you want to set options to Default?"
482
  msgstr "Вы хотите задать параметры по умолчанию?"
483
 
484
- #: admin.inc.php:484
485
  #, fuzzy
486
  msgid "Recreate Index"
487
  msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
488
 
489
- #: admin.inc.php:484
490
  msgid "Are you sure you want to recreate the index?"
491
  msgstr "Вы уверены, что хотите воссоздать индекс?"
492
 
493
- #: admin.inc.php:492
494
  msgid "Support the development"
495
  msgstr "Поддержка развития проекта"
496
 
497
- #: admin.inc.php:501
498
- msgid "Enter amount in USD: "
 
 
 
 
 
 
499
  msgstr "Введите сумму в долларах США:"
500
 
501
- #: admin.inc.php:505
502
  msgid "Send your donation to the author of"
503
  msgstr "Отправить пожертвование автору"
504
 
505
- #: admin.inc.php:512
506
  msgid "Follow me"
507
  msgstr ""
508
 
509
- #: admin.inc.php:522
510
  #, fuzzy
511
  msgid "Quick links"
512
  msgstr "Быстрые ссылки"
513
 
514
- #: admin.inc.php:526
515
  #, fuzzy
516
  msgid "Contextual Related Posts plugin page"
517
  msgstr "Konteksta saistītus amatus"
518
 
519
- #: admin.inc.php:527
520
- msgid "Other plugins"
521
- msgstr "Другие плагины"
522
-
523
- #: admin.inc.php:528
524
- msgid "Ajay's blog"
525
- msgstr "Блог автора (Ajay, английский язык)"
526
-
527
- #: admin.inc.php:529
528
  msgid "FAQ"
529
  msgstr ""
530
 
531
- #: admin.inc.php:530 contextual-related-posts.php:927
532
  msgid "Support"
533
  msgstr "Поддержка"
534
 
535
- #: admin.inc.php:531
536
  msgid "Reviews"
537
  msgstr ""
538
 
539
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
540
  msgid "Contextual Related Posts"
541
  msgstr "Контекстные похожие посты"
542
 
543
- #: admin.inc.php:554 contextual-related-posts.php:372
544
  msgid "Related Posts"
545
  msgstr "Похожие посты"
546
 
547
- #: admin.inc.php:658
548
  #, fuzzy
549
  msgid "plugin settings page"
550
  msgstr "spraudnis iestatījumu lapa"
551
 
552
- #: admin.inc.php:692
553
  msgid ""
554
  "An error occurred clearing the cache. Please contact your site administrator."
555
  "\\n\\nError message:\\n"
556
  msgstr ""
557
 
558
- #: admin.inc.php:697
559
  msgid " cached row(s) cleared"
560
  msgstr ""
561
 
562
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
563
  msgid " by "
564
  msgstr ""
565
 
566
- #: contextual-related-posts.php:143
567
  msgid "Powered by"
568
  msgstr "Автор:"
569
 
570
- #: contextual-related-posts.php:371
 
 
 
 
 
571
  #, fuzzy
572
  msgid "Display Related Posts"
573
  msgstr "Displeja Related Posts"
574
 
575
- #: contextual-related-posts.php:386
576
  #, fuzzy
577
  msgid "Title"
578
  msgstr "Заголовок списка Популярных записей:"
579
 
580
- #: contextual-related-posts.php:391
581
  #, fuzzy
582
  msgid "No. of posts"
583
  msgstr "Популярные записи"
584
 
585
- #: contextual-related-posts.php:396
586
  #, fuzzy
587
  msgid " Show excerpt?"
588
  msgstr "Rādīt izvilkumu?"
589
 
590
- #: contextual-related-posts.php:401
591
  #, fuzzy
592
  msgid " Show author?"
593
  msgstr "Отправьте пожертвование автору"
594
 
595
- #: contextual-related-posts.php:406
596
  #, fuzzy
597
  msgid " Show date?"
598
  msgstr "Rādīt izvilkumu?"
599
 
600
- #: contextual-related-posts.php:410
601
  #, fuzzy
602
  msgid "Thumbnail options"
603
  msgstr "sīktēlu iespējas"
604
 
605
- #: contextual-related-posts.php:412
606
  #, fuzzy
607
  msgid "Thumbnails inline, before title"
608
  msgstr "Sīktēli inline, pirms virsraksta"
609
 
610
- #: contextual-related-posts.php:413
611
  #, fuzzy
612
  msgid "Thumbnails inline, after title"
613
  msgstr "Sīktēli inline, pēc nosaukuma"
614
 
615
- #: contextual-related-posts.php:414
616
  #, fuzzy
617
  msgid "Only thumbnails, no text"
618
  msgstr "Отображать только превью, без текста"
619
 
620
- #: contextual-related-posts.php:415
621
  #, fuzzy
622
  msgid "No thumbnails, only text."
623
  msgstr "Nav sīktēlus, tikai tekstu."
624
 
625
- #: contextual-related-posts.php:420
626
  #, fuzzy
627
  msgid "Thumbnail height"
628
  msgstr "sīktēls augstums"
629
 
630
- #: contextual-related-posts.php:425
631
  #, fuzzy
632
  msgid "Thumbnail width"
633
  msgstr "Thumbnail platums"
634
 
635
- #: contextual-related-posts.php:548
636
  msgid "<h3>Related Posts:</h3>"
637
  msgstr "<h3>Похожие посты:</h3>"
638
 
639
- #: contextual-related-posts.php:549
640
  #, fuzzy
641
  msgid "No related posts found"
642
  msgstr "Nr saistītus amatus atrasts"
643
 
644
- #: contextual-related-posts.php:907
645
  msgid "Settings"
646
  msgstr "Настройки"
647
 
648
- #: contextual-related-posts.php:928
649
  msgid "Donate"
650
  msgstr "Пожертвование"
651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
  #~ msgid "Recent developments"
653
  #~ msgstr "Последние разработки"
654
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:141
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
+ #: admin.inc.php:161
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
+ #: admin.inc.php:177
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
+ #: admin.inc.php:189
31
  #, fuzzy
32
  msgid "General options"
33
  msgstr "Izejas opcijas:"
34
 
35
+ #: admin.inc.php:192
36
  #, fuzzy
37
  msgid "Cache output?"
38
  msgstr "Izejas opcijas:"
39
 
40
+ #: admin.inc.php:194
41
  msgid ""
42
  "Enabling this option will cache the related posts output when the post is "
43
  "visited the first time. The cache is cleaned when you save this page."
44
  msgstr ""
45
 
46
+ #: admin.inc.php:195
47
  msgid "Clear cache"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:198 admin.inc.php:462
51
  msgid "Number of related posts to display: "
52
  msgstr "Количество отображаемых похожих постов:"
53
 
54
+ #: admin.inc.php:201
55
  msgid ""
56
  "Maximum number of posts that will be displayed. The actual number may be "
57
  "smaller if less related posts are found."
58
  msgstr ""
59
 
60
+ #: admin.inc.php:204
61
  msgid "Related posts should be newer than:"
62
  msgstr ""
63
 
64
+ #: admin.inc.php:206
65
  #, fuzzy
66
  msgid "days"
67
  msgstr ""
68
  "За сколько дней считать просмотры для списка Популярных сегодня записей?"
69
 
70
+ #: admin.inc.php:207
71
  msgid ""
72
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
73
  "it to 365 will show related posts from the last year only."
74
  msgstr ""
75
 
76
+ #: admin.inc.php:210
77
+ #, fuzzy
78
+ msgid "Post types to include in results:"
79
+ msgstr "Исключить рубрики:"
80
 
81
+ #: admin.inc.php:221
82
  msgid ""
83
  "These post types will be displayed in the list. Includes custom post types."
84
  msgstr ""
85
 
86
+ #: admin.inc.php:224
87
+ msgid "Find related posts based on content as well as title:"
88
  msgstr ""
89
 
90
+ #: admin.inc.php:226
91
  #, fuzzy
92
  msgid ""
93
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
98
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
99
  "опцию)"
100
 
101
+ #: admin.inc.php:229
102
  msgid "Limit content to be compared"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:231
106
  msgid ""
107
  "This sets the maximum words of the content that will be matched. 0 means no "
108
  "limit."
109
  msgstr ""
110
 
111
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  #, fuzzy
113
  msgid "Add related posts to:"
114
  msgstr "Pievienot saistītus amatus barībā"
115
 
116
+ #: admin.inc.php:236
117
  #, fuzzy
118
  msgid "Posts"
119
  msgstr "Популярные записи"
120
 
121
+ #: admin.inc.php:237
122
  #, fuzzy
123
  msgid "Pages"
124
  msgstr "Pievienot saistītus amatus barībā"
125
 
126
+ #: admin.inc.php:238
127
  #, fuzzy
128
  msgid "Home page"
129
  msgstr "Результатов на страницу:"
130
 
131
+ #: admin.inc.php:239
132
  msgid "Feeds"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:240
136
  msgid "Category archives"
137
  msgstr ""
138
 
139
+ #: admin.inc.php:241
140
  msgid "Tag archives"
141
  msgstr ""
142
 
143
+ #: admin.inc.php:242
144
  #, fuzzy
145
  msgid "Other archives"
146
  msgstr "Другие плагины автора"
147
 
148
+ #: admin.inc.php:243
149
  #, fuzzy
150
  msgid ""
151
  "If you choose to disable this, please add <code>&lt;?php if "
157
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в "
158
  "отображаемый шаблон на вашем сайте"
159
 
160
+ #: admin.inc.php:246
161
  msgid "Content filter priority:"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:249
165
  msgid ""
166
  "A higher number will cause the content above to be processed after other "
167
+ "filters. Number below 10 is not recommended."
168
  msgstr ""
169
 
170
+ #: admin.inc.php:252
171
+ #, fuzzy
172
+ msgid "Tell the world you're using Contextual Related Posts:"
173
+ msgstr "Контекстные похожие посты"
174
 
175
+ #: admin.inc.php:254
176
  msgid " <em>Optional</em>"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:255
180
  #, fuzzy
181
+ msgid ""
182
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
183
+ "in the list."
184
  msgstr "Контекстные похожие посты"
185
 
186
+ #: admin.inc.php:262
187
  #, fuzzy
188
  msgid "Output options"
189
  msgstr "Izejas opcijas:"
190
 
191
+ #: admin.inc.php:265
192
  msgid "Title of related posts: "
193
  msgstr "Названия связанных постов:"
194
 
195
+ #: admin.inc.php:268
196
  msgid ""
197
  "This is the main heading of the related posts. You can also display the "
198
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
199
  "Posts to %postname%</code>"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:271
203
  msgid "When there are no posts, what should be shown?"
204
  msgstr "Когда нет сообщений, что должно быть показано?"
205
 
206
+ #: admin.inc.php:275
207
  msgid "Blank Output"
208
  msgstr "Пустой выход"
209
 
210
+ #: admin.inc.php:279
211
  #, fuzzy
212
  msgid "Display:"
213
  msgstr "Количество Популярных записей в списке:"
214
 
215
+ #: admin.inc.php:283 admin.inc.php:465
216
  msgid "Show post excerpt in list?"
217
  msgstr "Показать выдержки из поста в списке?"
218
 
219
+ #: admin.inc.php:286
220
+ #, php-format
221
+ msgid ""
222
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
223
+ "to a post (in the post editor's optional excerpt field), it will display an "
224
+ "automatic excerpt which refers to the first %d words of the post's content"
225
+ msgstr ""
226
+
227
+ #: admin.inc.php:289
228
  msgid "Length of excerpt (in words): "
229
  msgstr "Длина выдержки (в словах):"
230
 
231
+ #: admin.inc.php:294
232
  #, fuzzy
233
  msgid "Show post author in list?"
234
  msgstr "Показывать текст записи в списке?"
235
 
236
+ #: admin.inc.php:297
237
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
238
+ msgstr ""
239
+
240
  #: admin.inc.php:300
241
  #, fuzzy
242
  msgid "Show post date in list?"
243
  msgstr "Показывать текст записи в списке?"
244
 
245
  #: admin.inc.php:303
246
+ msgid ""
247
+ "Displays the date of the post. Uses the same date format set in General "
248
+ "Options"
249
  msgstr ""
250
 
251
  #: admin.inc.php:306
252
+ msgid "Limit post title length (in characters)"
253
  msgstr ""
254
 
255
  #: admin.inc.php:309
256
+ msgid ""
257
+ "Any title longer than the number of characters set above will be cut and "
258
+ "appended with a &helip;"
259
  msgstr ""
260
 
261
  #: admin.inc.php:312
262
+ msgid "Open links in new window"
263
+ msgstr ""
264
+
265
+ #: admin.inc.php:315
266
+ msgid "Add nofollow attribute to links in the list"
267
+ msgstr ""
268
+
269
+ #: admin.inc.php:318
270
+ #, fuzzy
271
+ msgid "Exclusion settings:"
272
+ msgstr "spraudnis iestatījumu lapa"
273
+
274
+ #: admin.inc.php:320
275
+ #, fuzzy
276
+ msgid "List of post or page IDs to exclude from the results:"
277
+ msgstr "Исключить рубрики:"
278
+
279
+ #: admin.inc.php:322 admin.inc.php:328
280
+ msgid ""
281
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
282
+ msgstr ""
283
+
284
+ #: admin.inc.php:325
285
  #, fuzzy
286
  msgid "Exclude display of related posts on these posts / pages"
287
  msgstr "Pievienot saistītus amatus barībā"
288
 
289
+ #: admin.inc.php:331
290
+ #, fuzzy
291
+ msgid "Categories to exclude from the results: "
292
+ msgstr "Исключить рубрики:"
293
+
294
+ #: admin.inc.php:347
295
+ msgid ""
296
+ "Comma separated list of category slugs. The field above has an autocomplete "
297
+ "so simply start typing in the beginning of your category name and it will "
298
+ "prompt you with options."
299
+ msgstr ""
300
+
301
+ #: admin.inc.php:350
302
  #, fuzzy
303
  msgid "Exclude display of related posts on these post types."
304
  msgstr "Pievienot saistītus amatus barībā"
305
 
306
+ #: admin.inc.php:359
307
  msgid ""
308
  "The related posts will not display on any of the above selected post types"
309
  msgstr ""
310
 
311
+ #: admin.inc.php:362
312
  msgid "Customize the output:"
313
  msgstr "Настройки выхода:"
314
 
315
+ #: admin.inc.php:364
316
  msgid "HTML to display before the list of posts: "
317
  msgstr "HTML для показа перед списком сообщений: "
318
 
319
+ #: admin.inc.php:367
320
  msgid "HTML to display before each list item: "
321
  msgstr "HTML для показа перед каждым элементом списка: "
322
 
323
+ #: admin.inc.php:370
324
  msgid "HTML to display after each list item: "
325
  msgstr "HTML для отображения после каждого элемента списка: "
326
 
327
+ #: admin.inc.php:373
328
  msgid "HTML to display after the list of posts: "
329
  msgstr "HTML для отображения после списка сообщений: "
330
 
331
+ #: admin.inc.php:376
332
  msgid "Post thumbnail options:"
333
  msgstr "Опции изображения поста:"
334
 
335
+ #: admin.inc.php:378 admin.inc.php:468
336
  #, fuzzy
337
  msgid "Location of post thumbnail:"
338
  msgstr "Настройки превью к записям:"
339
 
340
+ #: admin.inc.php:382 admin.inc.php:472
341
  #, fuzzy
342
  msgid "Display thumbnails inline with posts, before title"
343
  msgstr "Отображать превью к записи сразу перед заголовком"
344
 
345
+ #: admin.inc.php:386 admin.inc.php:476
346
  #, fuzzy
347
  msgid "Display thumbnails inline with posts, after title"
348
  msgstr "Отображать превью к записи сразу после заголовка"
349
 
350
+ #: admin.inc.php:390 admin.inc.php:480
351
  msgid "Display only thumbnails, no text"
352
  msgstr "Показывать только изображения, без текста"
353
 
354
+ #: admin.inc.php:394 admin.inc.php:484
355
  msgid "Do not display thumbnails, only text."
356
  msgstr "Не показывать изображения, только текст"
357
 
358
+ #: admin.inc.php:398 admin.inc.php:488
359
  #, fuzzy
360
  msgid "Maximum width of the thumbnail: "
361
  msgstr "Thumbnail platums"
362
 
363
+ #: admin.inc.php:401 admin.inc.php:491
364
  #, fuzzy
365
  msgid "Maximum height of the thumbnail: "
366
  msgstr "sīktēls augstums"
367
 
368
+ #: admin.inc.php:405
369
+ msgid ""
370
+ "Since you're using the default styles set under the Custom Styles section, "
371
+ "the width and height is fixed at 150px"
372
+ msgstr ""
373
+
374
+ #: admin.inc.php:409
375
  msgid "Style attributes / Width and Height HTML attributes:"
376
  msgstr ""
377
 
378
+ #: admin.inc.php:413
379
+ msgid "Style attributes are used for width and height."
 
380
  msgstr ""
381
 
382
+ #: admin.inc.php:417
383
+ msgid "HTML width and height attributes are used for width and height."
 
 
384
  msgstr ""
385
 
386
+ #: admin.inc.php:421
387
  msgid "Use timthumb to generate thumbnails? "
388
  msgstr ""
389
 
390
+ #: admin.inc.php:423
391
  msgid ""
392
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
393
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
394
  msgstr ""
395
 
396
+ #: admin.inc.php:426
397
+ msgid "Quality of thumbnails generated by timthumb:"
398
  msgstr ""
399
 
400
+ #: admin.inc.php:429
401
  msgid ""
402
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
403
+ "file size. Suggested maximum value is 95. CRP default is 75."
404
  msgstr ""
405
 
406
+ #: admin.inc.php:432
407
  #, fuzzy
408
+ msgid "Post thumbnail meta field name:"
409
  msgstr "Attēlu rīki post:"
410
 
411
+ #: admin.inc.php:434
412
  msgid ""
413
  "The value of this field should contain the image source and is set in the "
414
  "<em>Add New Post</em> screen"
415
  msgstr ""
416
 
417
+ #: admin.inc.php:437
418
+ msgid "Extract the first image from the post?"
 
 
 
419
  msgstr ""
 
420
 
421
+ #: admin.inc.php:439
 
422
  msgid ""
423
+ "This will only happen if there is no post thumbnail set and no image URL is "
424
+ "specified in the meta field."
425
  msgstr ""
 
 
426
 
427
+ #: admin.inc.php:442
428
+ msgid "Use default thumbnail?"
429
  msgstr ""
430
 
431
+ #: admin.inc.php:444
432
  #, fuzzy
433
  msgid ""
434
  "If checked, when no thumbnail is found, show a default one from the URL "
438
  "добавлено стандартное изображение. Если превью задано к записи - будет "
439
  "отображаться только оно."
440
 
441
+ #: admin.inc.php:447
442
+ #, fuzzy
443
+ msgid "Default thumbnail:"
444
+ msgstr "noklusējuma opcijas"
445
 
446
+ #: admin.inc.php:450
447
  #, fuzzy
448
  msgid ""
449
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
450
  "then it will check the meta field. If this is not available, then it will "
451
+ "show the default image as specified above."
452
  msgstr ""
453
  "Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad tas "
454
  "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
455
  "noklusējuma attēlu, kā minēts iepriekš"
456
 
457
+ #: admin.inc.php:457
458
  #, fuzzy
459
  msgid "Feed options"
460
  msgstr "Iespējas:"
461
 
462
+ #: admin.inc.php:460
463
  msgid ""
464
  "Below options override the related posts settings for your blog feed. These "
465
  "only apply if you have selected to add related posts to Feeds in the General "
466
  "Options tab."
467
  msgstr ""
468
 
469
+ #: admin.inc.php:498
470
  msgid "Custom styles"
471
  msgstr ""
472
 
473
+ #: admin.inc.php:501
474
  msgid "Use default style included in the plugin?"
475
  msgstr ""
476
 
477
+ #: admin.inc.php:504
478
  msgid ""
479
  "Contextual Related Posts includes a default style that makes your popular "
480
  "posts list to look pretty. Check the box above if you want to use this."
481
  msgstr ""
482
 
483
+ #: admin.inc.php:505
484
  msgid ""
485
  "Enabling this option will automatically turn on the thumbnails and set their "
486
  "width and height to 150px. Disabling this will not turn off thumbnails or "
487
  "change their dimensions."
488
  msgstr ""
489
 
490
+ #: admin.inc.php:508
491
  msgid "Custom CSS to add to header:"
492
  msgstr ""
493
 
494
+ #: admin.inc.php:512
495
  msgid ""
496
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
497
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
498
  "\">FAQ</a> for available CSS classes to style."
499
  msgstr ""
500
 
501
+ #: admin.inc.php:519
502
  #, fuzzy
503
  msgid "Save Options"
504
  msgstr "Saglabāt opcijas"
505
 
506
+ #: admin.inc.php:520
507
  #, fuzzy
508
  msgid "Default Options"
509
  msgstr "noklusējuma opcijas"
510
 
511
+ #: admin.inc.php:520
512
  msgid "Do you want to set options to Default?"
513
  msgstr "Вы хотите задать параметры по умолчанию?"
514
 
515
+ #: admin.inc.php:521
516
  #, fuzzy
517
  msgid "Recreate Index"
518
  msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
519
 
520
+ #: admin.inc.php:521
521
  msgid "Are you sure you want to recreate the index?"
522
  msgstr "Вы уверены, что хотите воссоздать индекс?"
523
 
524
+ #: admin.inc.php:529
525
  msgid "Support the development"
526
  msgstr "Поддержка развития проекта"
527
 
528
+ #: admin.inc.php:536
529
+ #, fuzzy
530
+ msgid "Donation for Contextual Related Posts"
531
+ msgstr "Контекстные похожие посты"
532
+
533
+ #: admin.inc.php:538
534
+ #, fuzzy
535
+ msgid "Enter amount in USD:"
536
  msgstr "Введите сумму в долларах США:"
537
 
538
+ #: admin.inc.php:542
539
  msgid "Send your donation to the author of"
540
  msgstr "Отправить пожертвование автору"
541
 
542
+ #: admin.inc.php:549
543
  msgid "Follow me"
544
  msgstr ""
545
 
546
+ #: admin.inc.php:559
547
  #, fuzzy
548
  msgid "Quick links"
549
  msgstr "Быстрые ссылки"
550
 
551
+ #: admin.inc.php:563
552
  #, fuzzy
553
  msgid "Contextual Related Posts plugin page"
554
  msgstr "Konteksta saistītus amatus"
555
 
556
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
557
  msgid "FAQ"
558
  msgstr ""
559
 
560
+ #: admin.inc.php:565 contextual-related-posts.php:964
561
  msgid "Support"
562
  msgstr "Поддержка"
563
 
564
+ #: admin.inc.php:566
565
  msgid "Reviews"
566
  msgstr ""
567
 
568
+ #: admin.inc.php:567
569
+ msgid "Github repository"
570
+ msgstr ""
571
+
572
+ #: admin.inc.php:568
573
+ msgid "Other plugins"
574
+ msgstr "Другие плагины"
575
+
576
+ #: admin.inc.php:569
577
+ msgid "Ajay's blog"
578
+ msgstr "Блог автора (Ajay, английский язык)"
579
+
580
+ #: admin.inc.php:591 admin.inc.php:752
581
  msgid "Contextual Related Posts"
582
  msgstr "Контекстные похожие посты"
583
 
584
+ #: admin.inc.php:591
585
  msgid "Related Posts"
586
  msgstr "Похожие посты"
587
 
588
+ #: admin.inc.php:694
589
  #, fuzzy
590
  msgid "plugin settings page"
591
  msgstr "spraudnis iestatījumu lapa"
592
 
593
+ #: admin.inc.php:728
594
  msgid ""
595
  "An error occurred clearing the cache. Please contact your site administrator."
596
  "\\n\\nError message:\\n"
597
  msgstr ""
598
 
599
+ #: admin.inc.php:733
600
  msgid " cached row(s) cleared"
601
  msgstr ""
602
 
603
+ #: admin.inc.php:779
604
+ #, fuzzy
605
+ msgid "Location of thumbnail:"
606
+ msgstr "Настройки превью к записям:"
607
+
608
+ #: admin.inc.php:781
609
+ msgid ""
610
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
611
+ "image will be used for the post. It will be resized to the thumbnail size "
612
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
613
+ msgstr ""
614
+
615
+ #: admin.inc.php:782
616
+ msgid "The URL above is saved in the meta field: "
617
+ msgstr ""
618
+
619
+ #: contextual-related-posts.php:127
620
  msgid " by "
621
  msgstr ""
622
 
623
+ #: contextual-related-posts.php:142
624
  msgid "Powered by"
625
  msgstr "Автор:"
626
 
627
+ #: contextual-related-posts.php:376
628
+ #, fuzzy
629
+ msgid "Related Posts [CRP]"
630
+ msgstr "Похожие посты"
631
+
632
+ #: contextual-related-posts.php:377
633
  #, fuzzy
634
  msgid "Display Related Posts"
635
  msgstr "Displeja Related Posts"
636
 
637
+ #: contextual-related-posts.php:400
638
  #, fuzzy
639
  msgid "Title"
640
  msgstr "Заголовок списка Популярных записей:"
641
 
642
+ #: contextual-related-posts.php:405
643
  #, fuzzy
644
  msgid "No. of posts"
645
  msgstr "Популярные записи"
646
 
647
+ #: contextual-related-posts.php:410
648
  #, fuzzy
649
  msgid " Show excerpt?"
650
  msgstr "Rādīt izvilkumu?"
651
 
652
+ #: contextual-related-posts.php:415
653
  #, fuzzy
654
  msgid " Show author?"
655
  msgstr "Отправьте пожертвование автору"
656
 
657
+ #: contextual-related-posts.php:420
658
  #, fuzzy
659
  msgid " Show date?"
660
  msgstr "Rādīt izvilkumu?"
661
 
662
+ #: contextual-related-posts.php:424
663
  #, fuzzy
664
  msgid "Thumbnail options"
665
  msgstr "sīktēlu iespējas"
666
 
667
+ #: contextual-related-posts.php:426
668
  #, fuzzy
669
  msgid "Thumbnails inline, before title"
670
  msgstr "Sīktēli inline, pirms virsraksta"
671
 
672
+ #: contextual-related-posts.php:427
673
  #, fuzzy
674
  msgid "Thumbnails inline, after title"
675
  msgstr "Sīktēli inline, pēc nosaukuma"
676
 
677
+ #: contextual-related-posts.php:428
678
  #, fuzzy
679
  msgid "Only thumbnails, no text"
680
  msgstr "Отображать только превью, без текста"
681
 
682
+ #: contextual-related-posts.php:429
683
  #, fuzzy
684
  msgid "No thumbnails, only text."
685
  msgstr "Nav sīktēlus, tikai tekstu."
686
 
687
+ #: contextual-related-posts.php:434
688
  #, fuzzy
689
  msgid "Thumbnail height"
690
  msgstr "sīktēls augstums"
691
 
692
+ #: contextual-related-posts.php:439
693
  #, fuzzy
694
  msgid "Thumbnail width"
695
  msgstr "Thumbnail platums"
696
 
697
+ #: contextual-related-posts.php:581
698
  msgid "<h3>Related Posts:</h3>"
699
  msgstr "<h3>Похожие посты:</h3>"
700
 
701
+ #: contextual-related-posts.php:582
702
  #, fuzzy
703
  msgid "No related posts found"
704
  msgstr "Nr saistītus amatus atrasts"
705
 
706
+ #: contextual-related-posts.php:944
707
  msgid "Settings"
708
  msgstr "Настройки"
709
 
710
+ #: contextual-related-posts.php:965
711
  msgid "Donate"
712
  msgstr "Пожертвование"
713
 
714
+ #, fuzzy
715
+ #~ msgid ""
716
+ #~ "If the postmeta is not set, then should the plugin extract the first "
717
+ #~ "image from the post?"
718
+ #~ msgstr ""
719
+ #~ "Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
720
+
721
+ #, fuzzy
722
+ #~ msgid ""
723
+ #~ "This can slow down the loading of your page if the first image in the "
724
+ #~ "related posts is large in file-size"
725
+ #~ msgstr ""
726
+ #~ "Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
727
+ #~ "liela faila izmēra"
728
+
729
  #~ msgid "Recent developments"
730
  #~ msgstr "Последние разработки"
731
 
languages/crp-zh_CN.mo CHANGED
Binary file
languages/crp-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-03-12 23:24-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -15,147 +15,127 @@ msgstr ""
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:127
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
- #: admin.inc.php:147
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
- #: admin.inc.php:163
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
- #: admin.inc.php:175
31
  msgid "General options"
32
  msgstr "一般设置"
33
 
34
- #: admin.inc.php:178
35
  msgid "Cache output?"
36
  msgstr ""
37
 
38
- #: admin.inc.php:180
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
42
  msgstr ""
43
 
44
- #: admin.inc.php:181
45
  msgid "Clear cache"
46
  msgstr ""
47
 
48
- #: admin.inc.php:184 admin.inc.php:425
49
  msgid "Number of related posts to display: "
50
  msgstr "相关日志数量:"
51
 
52
- #: admin.inc.php:187
53
  msgid ""
54
  "Maximum number of posts that will be displayed. The actual number may be "
55
  "smaller if less related posts are found."
56
  msgstr ""
57
 
58
- #: admin.inc.php:190
59
  msgid "Related posts should be newer than:"
60
  msgstr ""
61
 
62
- #: admin.inc.php:192
63
  msgid "days"
64
  msgstr ""
65
 
66
- #: admin.inc.php:193
67
  msgid ""
68
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
69
  "it to 365 will show related posts from the last year only."
70
  msgstr ""
71
 
72
- #: admin.inc.php:196
73
  #, fuzzy
74
- msgid "Post types to include in results."
75
  msgstr "被索引的日志类型(包含自定义日志类型)"
76
 
77
- #: admin.inc.php:205
78
  #, fuzzy
79
  msgid ""
80
  "These post types will be displayed in the list. Includes custom post types."
81
  msgstr "被索引的日志类型(包含自定义日志类型)"
82
 
83
- #: admin.inc.php:208
84
- msgid "Find related posts based on content as well as title"
 
85
  msgstr "根据标题和正文内容索引"
86
 
87
- #: admin.inc.php:210
88
  #, fuzzy
89
  msgid ""
90
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
91
  "or enabling \"Cache output\" above if you enable this."
92
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
93
 
94
- #: admin.inc.php:213
95
  msgid "Limit content to be compared"
96
  msgstr ""
97
 
98
- #: admin.inc.php:215
99
  msgid ""
100
  "This sets the maximum words of the content that will be matched. 0 means no "
101
  "limit."
102
  msgstr ""
103
 
104
- #: admin.inc.php:218
105
- msgid "List of post or page IDs to exclude from the results: "
106
- msgstr "排除的文章或页面 ID:"
107
-
108
- #: admin.inc.php:220 admin.inc.php:315
109
- msgid ""
110
- "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
111
- msgstr ""
112
-
113
- #: admin.inc.php:223
114
- #, fuzzy
115
- msgid "Categories to exclude from the results: "
116
- msgstr "排除的文章或页面 ID:"
117
-
118
- #: admin.inc.php:239
119
- msgid ""
120
- "Comma separated list of category slugs. The field above has an autocomplete "
121
- "so simply start typing in the starting letters and it will prompt you with "
122
- "options"
123
- msgstr ""
124
-
125
- #: admin.inc.php:242
126
  #, fuzzy
127
  msgid "Add related posts to:"
128
  msgstr "添加相关日志到 feed 里"
129
 
130
- #: admin.inc.php:244
131
  msgid "Posts"
132
  msgstr ""
133
 
134
- #: admin.inc.php:245
135
  msgid "Pages"
136
  msgstr ""
137
 
138
- #: admin.inc.php:246
139
  msgid "Home page"
140
  msgstr ""
141
 
142
- #: admin.inc.php:247
143
  msgid "Feeds"
144
  msgstr ""
145
 
146
- #: admin.inc.php:248
147
  msgid "Category archives"
148
  msgstr ""
149
 
150
- #: admin.inc.php:249
151
  msgid "Tag archives"
152
  msgstr ""
153
 
154
- #: admin.inc.php:250
155
  msgid "Other archives"
156
  msgstr ""
157
 
158
- #: admin.inc.php:251
159
  #, fuzzy
160
  msgid ""
161
  "If you choose to disable this, please add <code>&lt;?php if "
@@ -165,277 +145,337 @@ msgstr ""
165
  "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
166
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
167
 
168
- #: admin.inc.php:254
169
  msgid "Content filter priority:"
170
  msgstr ""
171
 
172
- #: admin.inc.php:257
173
  msgid ""
174
  "A higher number will cause the content above to be processed after other "
175
- "filters. Number below 10 is not recommended"
176
  msgstr ""
177
 
178
- #: admin.inc.php:260
179
- msgid "Add a link to the plugin page as a final item in the list"
180
- msgstr "在相关日志后添加插件页面的链接"
 
181
 
182
- #: admin.inc.php:262
183
  msgid " <em>Optional</em>"
184
  msgstr " <em>可选</em>"
185
 
186
- #: admin.inc.php:263
187
  #, fuzzy
188
- msgid "Adds a nofollow link to Contextual Related Posts homepage."
 
 
189
  msgstr "相关日志"
190
 
191
- #: admin.inc.php:270
192
  #, fuzzy
193
  msgid "Output options"
194
  msgstr "显示设置"
195
 
196
- #: admin.inc.php:273
197
  msgid "Title of related posts: "
198
  msgstr "相关日志的标题:"
199
 
200
- #: admin.inc.php:276
201
  msgid ""
202
  "This is the main heading of the related posts. You can also display the "
203
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
204
  "Posts to %postname%</code>"
205
  msgstr ""
206
 
207
- #: admin.inc.php:279
208
  msgid "When there are no posts, what should be shown?"
209
  msgstr "当不存在相关日志时,显示什么?"
210
 
211
- #: admin.inc.php:283
212
  msgid "Blank Output"
213
  msgstr "不显示"
214
 
215
- #: admin.inc.php:287
216
  msgid "Display:"
217
  msgstr ""
218
 
219
- #: admin.inc.php:291 admin.inc.php:428
220
  msgid "Show post excerpt in list?"
221
  msgstr "是否显示日志摘要?"
222
 
223
- #: admin.inc.php:294
 
 
 
 
 
 
 
 
224
  msgid "Length of excerpt (in words): "
225
  msgstr "摘要长度(词数):"
226
 
227
- #: admin.inc.php:297
228
  #, fuzzy
229
  msgid "Show post author in list?"
230
  msgstr "是否显示日志摘要?"
231
 
 
 
 
 
232
  #: admin.inc.php:300
233
  #, fuzzy
234
  msgid "Show post date in list?"
235
  msgstr "是否显示日志摘要?"
236
 
237
  #: admin.inc.php:303
238
- msgid "Limit post title length (in characters)"
 
 
239
  msgstr ""
240
 
241
  #: admin.inc.php:306
242
- msgid "Open links in new window"
243
  msgstr ""
244
 
245
  #: admin.inc.php:309
246
- msgid "Add nofollow attribute to links in the list"
 
 
247
  msgstr ""
248
 
249
  #: admin.inc.php:312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  #, fuzzy
251
  msgid "Exclude display of related posts on these posts / pages"
252
  msgstr "添加相关日志到页面里"
253
 
254
- #: admin.inc.php:318
 
 
 
 
 
 
 
 
 
 
 
 
255
  #, fuzzy
256
  msgid "Exclude display of related posts on these post types."
257
  msgstr "添加相关日志到页面里"
258
 
259
- #: admin.inc.php:327
260
  #, fuzzy
261
  msgid ""
262
  "The related posts will not display on any of the above selected post types"
263
  msgstr "被索引的日志类型(包含自定义日志类型)"
264
 
265
- #: admin.inc.php:330
266
  msgid "Customize the output:"
267
  msgstr "自定义显示:"
268
 
269
- #: admin.inc.php:332
270
  msgid "HTML to display before the list of posts: "
271
  msgstr "显示在每篇日志后面的 HTML 标签:"
272
 
273
- #: admin.inc.php:335
274
  msgid "HTML to display before each list item: "
275
  msgstr "显示在每篇日志后面的 HTML 标签:"
276
 
277
- #: admin.inc.php:338
278
  msgid "HTML to display after each list item: "
279
  msgstr "显示在日志列表前面的 HTML 标签:"
280
 
281
- #: admin.inc.php:341
282
  msgid "HTML to display after the list of posts: "
283
  msgstr "显示在日志列表后面的 HTML 标签:"
284
 
285
- #: admin.inc.php:344
286
  msgid "Post thumbnail options:"
287
  msgstr "日志缩略图设置:"
288
 
289
- #: admin.inc.php:346 admin.inc.php:431
290
  msgid "Location of post thumbnail:"
291
  msgstr "日志缩略图位置:"
292
 
293
- #: admin.inc.php:350 admin.inc.php:435
294
  msgid "Display thumbnails inline with posts, before title"
295
  msgstr "在标题前显示缩略图"
296
 
297
- #: admin.inc.php:354 admin.inc.php:439
298
  msgid "Display thumbnails inline with posts, after title"
299
  msgstr "在标题后显示缩略图"
300
 
301
- #: admin.inc.php:358 admin.inc.php:443
302
  msgid "Display only thumbnails, no text"
303
  msgstr "不显示文本,只显示缩略图"
304
 
305
- #: admin.inc.php:362 admin.inc.php:447
306
  msgid "Do not display thumbnails, only text."
307
  msgstr "不显示缩略图,只显示文本"
308
 
309
- #: admin.inc.php:366 admin.inc.php:451
310
  msgid "Maximum width of the thumbnail: "
311
  msgstr "缩略图最大宽度"
312
 
313
- #: admin.inc.php:369 admin.inc.php:454
314
  msgid "Maximum height of the thumbnail: "
315
  msgstr "缩略图最大高度"
316
 
317
- #: admin.inc.php:372
 
 
 
 
 
 
318
  msgid "Style attributes / Width and Height HTML attributes:"
319
  msgstr ""
320
 
321
- #: admin.inc.php:376
322
- msgid ""
323
- "Style attributes are used for width and height. <code>style=\"max-width:"
324
  msgstr ""
325
 
326
- #: admin.inc.php:380
327
- msgid ""
328
- "HTML width and height attributes are used for width and height. <code>width="
329
- "\""
330
  msgstr ""
331
 
332
- #: admin.inc.php:384
333
  msgid "Use timthumb to generate thumbnails? "
334
  msgstr "是否使用 timthumb 生成缩略图?"
335
 
336
- #: admin.inc.php:386
 
337
  msgid ""
338
- "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
339
- "\">timthumb</a> will be used to generate thumbnails"
340
  msgstr ""
341
  "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
342
  "\">timthumb</a> 生成缩略图"
343
 
344
- #: admin.inc.php:389
345
- msgid "Quality of thumbnails generated by timthumb"
346
  msgstr ""
347
 
348
- #: admin.inc.php:392
349
  msgid ""
350
- "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
351
- "also the highest file size. Suggested maximum value is 95. CRP default is 75."
352
  msgstr ""
353
 
354
- #: admin.inc.php:395
355
- msgid "Post thumbnail meta field name: "
 
356
  msgstr "日志缩略图自定义栏目的名称:"
357
 
358
- #: admin.inc.php:397
359
  msgid ""
360
  "The value of this field should contain the image source and is set in the "
361
  "<em>Add New Post</em> screen"
362
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
363
 
364
- #: admin.inc.php:400
365
- msgid ""
366
- "If the postmeta is not set, then should the plugin extract the first image "
367
- "from the post?"
368
- msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
369
 
370
- #: admin.inc.php:402
371
  msgid ""
372
- "This can slow down the loading of your page if the first image in the "
373
- "related posts is large in file-size"
374
- msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
375
 
376
- #: admin.inc.php:405
377
- msgid "Use default thumbnail? "
 
378
  msgstr "是否使用默认缩略图?"
379
 
380
- #: admin.inc.php:407
381
  msgid ""
382
  "If checked, when no thumbnail is found, show a default one from the URL "
383
  "below. If not checked and no thumbnail is found, no image will be shown."
384
  msgstr ""
385
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
386
 
387
- #: admin.inc.php:410
388
- msgid "Default thumbnail: "
 
389
  msgstr "默认缩略图:"
390
 
391
- #: admin.inc.php:413
 
392
  msgid ""
393
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
394
  "then it will check the meta field. If this is not available, then it will "
395
- "show the default image as specified above"
396
  msgstr ""
397
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
398
  "示上面默认图像"
399
 
400
- #: admin.inc.php:420
401
  #, fuzzy
402
  msgid "Feed options"
403
  msgstr "一般设置"
404
 
405
- #: admin.inc.php:423
406
  msgid ""
407
  "Below options override the related posts settings for your blog feed. These "
408
  "only apply if you have selected to add related posts to Feeds in the General "
409
  "Options tab."
410
  msgstr ""
411
 
412
- #: admin.inc.php:461
413
  #, fuzzy
414
  msgid "Custom styles"
415
  msgstr "自定义样式"
416
 
417
- #: admin.inc.php:464
418
  msgid "Use default style included in the plugin?"
419
  msgstr ""
420
 
421
- #: admin.inc.php:467
422
  msgid ""
423
  "Contextual Related Posts includes a default style that makes your popular "
424
  "posts list to look pretty. Check the box above if you want to use this."
425
  msgstr ""
426
 
427
- #: admin.inc.php:468
428
  msgid ""
429
  "Enabling this option will automatically turn on the thumbnails and set their "
430
  "width and height to 150px. Disabling this will not turn off thumbnails or "
431
  "change their dimensions."
432
  msgstr ""
433
 
434
- #: admin.inc.php:471
435
  msgid "Custom CSS to add to header:"
436
  msgstr "添加自定义 CSS 到 header:"
437
 
438
- #: admin.inc.php:475
439
  #, fuzzy
440
  msgid ""
441
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
@@ -445,174 +485,218 @@ msgstr ""
445
  "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
446
  "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
447
 
448
- #: admin.inc.php:482
449
  msgid "Save Options"
450
  msgstr "保存设置"
451
 
452
- #: admin.inc.php:483
453
  msgid "Default Options"
454
  msgstr "默认设置"
455
 
456
- #: admin.inc.php:483
457
  msgid "Do you want to set options to Default?"
458
  msgstr "是否要重置设置?"
459
 
460
- #: admin.inc.php:484
461
  msgid "Recreate Index"
462
  msgstr "重建索引"
463
 
464
- #: admin.inc.php:484
465
  msgid "Are you sure you want to recreate the index?"
466
  msgstr "是否要重建索引?"
467
 
468
- #: admin.inc.php:492
469
  msgid "Support the development"
470
  msgstr "支持开发"
471
 
472
- #: admin.inc.php:501
473
- msgid "Enter amount in USD: "
 
 
 
 
 
 
474
  msgstr "输入美元金额:"
475
 
476
- #: admin.inc.php:505
477
  msgid "Send your donation to the author of"
478
  msgstr "捐赠给作者"
479
 
480
- #: admin.inc.php:512
481
  msgid "Follow me"
482
  msgstr ""
483
 
484
- #: admin.inc.php:522
485
  #, fuzzy
486
  msgid "Quick links"
487
  msgstr "快捷链接"
488
 
489
- #: admin.inc.php:526
490
  #, fuzzy
491
  msgid "Contextual Related Posts plugin page"
492
  msgstr "相关日志"
493
 
494
- #: admin.inc.php:527
495
- msgid "Other plugins"
496
- msgstr "其他插件"
497
-
498
- #: admin.inc.php:528
499
- msgid "Ajay's blog"
500
- msgstr "Ajay 的博客"
501
-
502
- #: admin.inc.php:529
503
  msgid "FAQ"
504
  msgstr ""
505
 
506
- #: admin.inc.php:530 contextual-related-posts.php:927
507
  msgid "Support"
508
  msgstr "技术支持"
509
 
510
- #: admin.inc.php:531
511
  msgid "Reviews"
512
  msgstr ""
513
 
514
- #: admin.inc.php:554
 
 
 
 
 
 
 
 
 
 
 
 
515
  msgid "Contextual Related Posts"
516
  msgstr "Contextual Related Posts"
517
 
518
- #: admin.inc.php:554 contextual-related-posts.php:372
519
  msgid "Related Posts"
520
  msgstr "相关日志"
521
 
522
- #: admin.inc.php:658
523
  msgid "plugin settings page"
524
  msgstr "插件设置页面"
525
 
526
- #: admin.inc.php:692
527
  msgid ""
528
  "An error occurred clearing the cache. Please contact your site administrator."
529
  "\\n\\nError message:\\n"
530
  msgstr ""
531
 
532
- #: admin.inc.php:697
533
  msgid " cached row(s) cleared"
534
  msgstr ""
535
 
536
- #: contextual-related-posts.php:128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
537
  msgid " by "
538
  msgstr ""
539
 
540
- #: contextual-related-posts.php:143
541
  msgid "Powered by"
542
  msgstr "插件作者:"
543
 
544
- #: contextual-related-posts.php:371
 
 
 
 
 
545
  msgid "Display Related Posts"
546
  msgstr "显示相关日志"
547
 
548
- #: contextual-related-posts.php:386
549
  msgid "Title"
550
  msgstr "标题"
551
 
552
- #: contextual-related-posts.php:391
553
  msgid "No. of posts"
554
  msgstr "日志数量"
555
 
556
- #: contextual-related-posts.php:396
557
  msgid " Show excerpt?"
558
  msgstr "是否显示日志摘要?"
559
 
560
- #: contextual-related-posts.php:401
561
  msgid " Show author?"
562
  msgstr ""
563
 
564
- #: contextual-related-posts.php:406
565
  #, fuzzy
566
  msgid " Show date?"
567
  msgstr "是否显示日志摘要?"
568
 
569
- #: contextual-related-posts.php:410
570
  msgid "Thumbnail options"
571
  msgstr "缩略图设置:"
572
 
573
- #: contextual-related-posts.php:412
574
  msgid "Thumbnails inline, before title"
575
  msgstr "在标题前显示缩略图"
576
 
577
- #: contextual-related-posts.php:413
578
  msgid "Thumbnails inline, after title"
579
  msgstr "在标题后显示缩略图"
580
 
581
- #: contextual-related-posts.php:414
582
  msgid "Only thumbnails, no text"
583
  msgstr "不显示文本,只显示缩略图"
584
 
585
- #: contextual-related-posts.php:415
586
  msgid "No thumbnails, only text."
587
  msgstr "不显示缩略图,只显示文本"
588
 
589
- #: contextual-related-posts.php:420
590
  #, fuzzy
591
  msgid "Thumbnail height"
592
  msgstr "缩略图设置:"
593
 
594
- #: contextual-related-posts.php:425
595
  #, fuzzy
596
  msgid "Thumbnail width"
597
  msgstr "缩略图设置:"
598
 
599
- #: contextual-related-posts.php:548
600
  msgid "<h3>Related Posts:</h3>"
601
  msgstr "<h3>相关日志:</h3>"
602
 
603
- #: contextual-related-posts.php:549
604
  #, fuzzy
605
  msgid "No related posts found"
606
  msgstr "没有发现相关日志"
607
 
608
- #: contextual-related-posts.php:907
609
  msgid "Settings"
610
  msgstr "设置"
611
 
612
- #: contextual-related-posts.php:928
613
  msgid "Donate"
614
  msgstr "捐赠"
615
 
 
 
 
 
 
 
 
 
 
 
 
 
 
616
  #~ msgid "Recent developments"
617
  #~ msgstr "最新开发"
618
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2014-05-10 21:36-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
15
  "X-Generator: Poedit 1.6.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:141
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
+ #: admin.inc.php:161
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
+ #: admin.inc.php:177
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
+ #: admin.inc.php:189
31
  msgid "General options"
32
  msgstr "一般设置"
33
 
34
+ #: admin.inc.php:192
35
  msgid "Cache output?"
36
  msgstr ""
37
 
38
+ #: admin.inc.php:194
39
  msgid ""
40
  "Enabling this option will cache the related posts output when the post is "
41
  "visited the first time. The cache is cleaned when you save this page."
42
  msgstr ""
43
 
44
+ #: admin.inc.php:195
45
  msgid "Clear cache"
46
  msgstr ""
47
 
48
+ #: admin.inc.php:198 admin.inc.php:462
49
  msgid "Number of related posts to display: "
50
  msgstr "相关日志数量:"
51
 
52
+ #: admin.inc.php:201
53
  msgid ""
54
  "Maximum number of posts that will be displayed. The actual number may be "
55
  "smaller if less related posts are found."
56
  msgstr ""
57
 
58
+ #: admin.inc.php:204
59
  msgid "Related posts should be newer than:"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:206
63
  msgid "days"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:207
67
  msgid ""
68
  "This sets the cutoff period for which posts will be displayed. e.g. setting "
69
  "it to 365 will show related posts from the last year only."
70
  msgstr ""
71
 
72
+ #: admin.inc.php:210
73
  #, fuzzy
74
+ msgid "Post types to include in results:"
75
  msgstr "被索引的日志类型(包含自定义日志类型)"
76
 
77
+ #: admin.inc.php:221
78
  #, fuzzy
79
  msgid ""
80
  "These post types will be displayed in the list. Includes custom post types."
81
  msgstr "被索引的日志类型(包含自定义日志类型)"
82
 
83
+ #: admin.inc.php:224
84
+ #, fuzzy
85
+ msgid "Find related posts based on content as well as title:"
86
  msgstr "根据标题和正文内容索引"
87
 
88
+ #: admin.inc.php:226
89
  #, fuzzy
90
  msgid ""
91
  "If unchecked, only posts titles are used. I recommend using a caching plugin "
92
  "or enabling \"Cache output\" above if you enable this."
93
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
94
 
95
+ #: admin.inc.php:229
96
  msgid "Limit content to be compared"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:231
100
  msgid ""
101
  "This sets the maximum words of the content that will be matched. 0 means no "
102
  "limit."
103
  msgstr ""
104
 
105
+ #: admin.inc.php:234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  #, fuzzy
107
  msgid "Add related posts to:"
108
  msgstr "添加相关日志到 feed 里"
109
 
110
+ #: admin.inc.php:236
111
  msgid "Posts"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:237
115
  msgid "Pages"
116
  msgstr ""
117
 
118
+ #: admin.inc.php:238
119
  msgid "Home page"
120
  msgstr ""
121
 
122
+ #: admin.inc.php:239
123
  msgid "Feeds"
124
  msgstr ""
125
 
126
+ #: admin.inc.php:240
127
  msgid "Category archives"
128
  msgstr ""
129
 
130
+ #: admin.inc.php:241
131
  msgid "Tag archives"
132
  msgstr ""
133
 
134
+ #: admin.inc.php:242
135
  msgid "Other archives"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:243
139
  #, fuzzy
140
  msgid ""
141
  "If you choose to disable this, please add <code>&lt;?php if "
145
  "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
146
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
147
 
148
+ #: admin.inc.php:246
149
  msgid "Content filter priority:"
150
  msgstr ""
151
 
152
+ #: admin.inc.php:249
153
  msgid ""
154
  "A higher number will cause the content above to be processed after other "
155
+ "filters. Number below 10 is not recommended."
156
  msgstr ""
157
 
158
+ #: admin.inc.php:252
159
+ #, fuzzy
160
+ msgid "Tell the world you're using Contextual Related Posts:"
161
+ msgstr "Contextual Related Posts"
162
 
163
+ #: admin.inc.php:254
164
  msgid " <em>Optional</em>"
165
  msgstr " <em>可选</em>"
166
 
167
+ #: admin.inc.php:255
168
  #, fuzzy
169
+ msgid ""
170
+ "Adds a nofollow link to Contextual Related Posts homepage as the last time "
171
+ "in the list."
172
  msgstr "相关日志"
173
 
174
+ #: admin.inc.php:262
175
  #, fuzzy
176
  msgid "Output options"
177
  msgstr "显示设置"
178
 
179
+ #: admin.inc.php:265
180
  msgid "Title of related posts: "
181
  msgstr "相关日志的标题:"
182
 
183
+ #: admin.inc.php:268
184
  msgid ""
185
  "This is the main heading of the related posts. You can also display the "
186
  "current post title by using <code>%postname%</code>. e.g. <code>Related "
187
  "Posts to %postname%</code>"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:271
191
  msgid "When there are no posts, what should be shown?"
192
  msgstr "当不存在相关日志时,显示什么?"
193
 
194
+ #: admin.inc.php:275
195
  msgid "Blank Output"
196
  msgstr "不显示"
197
 
198
+ #: admin.inc.php:279
199
  msgid "Display:"
200
  msgstr ""
201
 
202
+ #: admin.inc.php:283 admin.inc.php:465
203
  msgid "Show post excerpt in list?"
204
  msgstr "是否显示日志摘要?"
205
 
206
+ #: admin.inc.php:286
207
+ #, php-format
208
+ msgid ""
209
+ "Displays the excerpt of the post. If you do not provide an explicit excerpt "
210
+ "to a post (in the post editor's optional excerpt field), it will display an "
211
+ "automatic excerpt which refers to the first %d words of the post's content"
212
+ msgstr ""
213
+
214
+ #: admin.inc.php:289
215
  msgid "Length of excerpt (in words): "
216
  msgstr "摘要长度(词数):"
217
 
218
+ #: admin.inc.php:294
219
  #, fuzzy
220
  msgid "Show post author in list?"
221
  msgstr "是否显示日志摘要?"
222
 
223
+ #: admin.inc.php:297
224
+ msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
225
+ msgstr ""
226
+
227
  #: admin.inc.php:300
228
  #, fuzzy
229
  msgid "Show post date in list?"
230
  msgstr "是否显示日志摘要?"
231
 
232
  #: admin.inc.php:303
233
+ msgid ""
234
+ "Displays the date of the post. Uses the same date format set in General "
235
+ "Options"
236
  msgstr ""
237
 
238
  #: admin.inc.php:306
239
+ msgid "Limit post title length (in characters)"
240
  msgstr ""
241
 
242
  #: admin.inc.php:309
243
+ msgid ""
244
+ "Any title longer than the number of characters set above will be cut and "
245
+ "appended with a &helip;"
246
  msgstr ""
247
 
248
  #: admin.inc.php:312
249
+ msgid "Open links in new window"
250
+ msgstr ""
251
+
252
+ #: admin.inc.php:315
253
+ msgid "Add nofollow attribute to links in the list"
254
+ msgstr ""
255
+
256
+ #: admin.inc.php:318
257
+ #, fuzzy
258
+ msgid "Exclusion settings:"
259
+ msgstr "插件设置页面"
260
+
261
+ #: admin.inc.php:320
262
+ #, fuzzy
263
+ msgid "List of post or page IDs to exclude from the results:"
264
+ msgstr "排除的文章或页面 ID:"
265
+
266
+ #: admin.inc.php:322 admin.inc.php:328
267
+ msgid ""
268
+ "Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
269
+ msgstr ""
270
+
271
+ #: admin.inc.php:325
272
  #, fuzzy
273
  msgid "Exclude display of related posts on these posts / pages"
274
  msgstr "添加相关日志到页面里"
275
 
276
+ #: admin.inc.php:331
277
+ #, fuzzy
278
+ msgid "Categories to exclude from the results: "
279
+ msgstr "排除的文章或页面 ID:"
280
+
281
+ #: admin.inc.php:347
282
+ msgid ""
283
+ "Comma separated list of category slugs. The field above has an autocomplete "
284
+ "so simply start typing in the beginning of your category name and it will "
285
+ "prompt you with options."
286
+ msgstr ""
287
+
288
+ #: admin.inc.php:350
289
  #, fuzzy
290
  msgid "Exclude display of related posts on these post types."
291
  msgstr "添加相关日志到页面里"
292
 
293
+ #: admin.inc.php:359
294
  #, fuzzy
295
  msgid ""
296
  "The related posts will not display on any of the above selected post types"
297
  msgstr "被索引的日志类型(包含自定义日志类型)"
298
 
299
+ #: admin.inc.php:362
300
  msgid "Customize the output:"
301
  msgstr "自定义显示:"
302
 
303
+ #: admin.inc.php:364
304
  msgid "HTML to display before the list of posts: "
305
  msgstr "显示在每篇日志后面的 HTML 标签:"
306
 
307
+ #: admin.inc.php:367
308
  msgid "HTML to display before each list item: "
309
  msgstr "显示在每篇日志后面的 HTML 标签:"
310
 
311
+ #: admin.inc.php:370
312
  msgid "HTML to display after each list item: "
313
  msgstr "显示在日志列表前面的 HTML 标签:"
314
 
315
+ #: admin.inc.php:373
316
  msgid "HTML to display after the list of posts: "
317
  msgstr "显示在日志列表后面的 HTML 标签:"
318
 
319
+ #: admin.inc.php:376
320
  msgid "Post thumbnail options:"
321
  msgstr "日志缩略图设置:"
322
 
323
+ #: admin.inc.php:378 admin.inc.php:468
324
  msgid "Location of post thumbnail:"
325
  msgstr "日志缩略图位置:"
326
 
327
+ #: admin.inc.php:382 admin.inc.php:472
328
  msgid "Display thumbnails inline with posts, before title"
329
  msgstr "在标题前显示缩略图"
330
 
331
+ #: admin.inc.php:386 admin.inc.php:476
332
  msgid "Display thumbnails inline with posts, after title"
333
  msgstr "在标题后显示缩略图"
334
 
335
+ #: admin.inc.php:390 admin.inc.php:480
336
  msgid "Display only thumbnails, no text"
337
  msgstr "不显示文本,只显示缩略图"
338
 
339
+ #: admin.inc.php:394 admin.inc.php:484
340
  msgid "Do not display thumbnails, only text."
341
  msgstr "不显示缩略图,只显示文本"
342
 
343
+ #: admin.inc.php:398 admin.inc.php:488
344
  msgid "Maximum width of the thumbnail: "
345
  msgstr "缩略图最大宽度"
346
 
347
+ #: admin.inc.php:401 admin.inc.php:491
348
  msgid "Maximum height of the thumbnail: "
349
  msgstr "缩略图最大高度"
350
 
351
+ #: admin.inc.php:405
352
+ msgid ""
353
+ "Since you're using the default styles set under the Custom Styles section, "
354
+ "the width and height is fixed at 150px"
355
+ msgstr ""
356
+
357
+ #: admin.inc.php:409
358
  msgid "Style attributes / Width and Height HTML attributes:"
359
  msgstr ""
360
 
361
+ #: admin.inc.php:413
362
+ msgid "Style attributes are used for width and height."
 
363
  msgstr ""
364
 
365
+ #: admin.inc.php:417
366
+ msgid "HTML width and height attributes are used for width and height."
 
 
367
  msgstr ""
368
 
369
+ #: admin.inc.php:421
370
  msgid "Use timthumb to generate thumbnails? "
371
  msgstr "是否使用 timthumb 生成缩略图?"
372
 
373
+ #: admin.inc.php:423
374
+ #, fuzzy
375
  msgid ""
376
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\" "
377
+ "target=\"_blank\">timthumb</a> will be used to generate thumbnails"
378
  msgstr ""
379
  "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
380
  "\">timthumb</a> 生成缩略图"
381
 
382
+ #: admin.inc.php:426
383
+ msgid "Quality of thumbnails generated by timthumb:"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:429
387
  msgid ""
388
+ "Enter values between 0 and 100 only. 100 is highest quality and the highest "
389
+ "file size. Suggested maximum value is 95. CRP default is 75."
390
  msgstr ""
391
 
392
+ #: admin.inc.php:432
393
+ #, fuzzy
394
+ msgid "Post thumbnail meta field name:"
395
  msgstr "日志缩略图自定义栏目的名称:"
396
 
397
+ #: admin.inc.php:434
398
  msgid ""
399
  "The value of this field should contain the image source and is set in the "
400
  "<em>Add New Post</em> screen"
401
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
402
 
403
+ #: admin.inc.php:437
404
+ msgid "Extract the first image from the post?"
405
+ msgstr ""
 
 
406
 
407
+ #: admin.inc.php:439
408
  msgid ""
409
+ "This will only happen if there is no post thumbnail set and no image URL is "
410
+ "specified in the meta field."
411
+ msgstr ""
412
 
413
+ #: admin.inc.php:442
414
+ #, fuzzy
415
+ msgid "Use default thumbnail?"
416
  msgstr "是否使用默认缩略图?"
417
 
418
+ #: admin.inc.php:444
419
  msgid ""
420
  "If checked, when no thumbnail is found, show a default one from the URL "
421
  "below. If not checked and no thumbnail is found, no image will be shown."
422
  msgstr ""
423
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
424
 
425
+ #: admin.inc.php:447
426
+ #, fuzzy
427
+ msgid "Default thumbnail:"
428
  msgstr "默认缩略图:"
429
 
430
+ #: admin.inc.php:450
431
+ #, fuzzy
432
  msgid ""
433
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
434
  "then it will check the meta field. If this is not available, then it will "
435
+ "show the default image as specified above."
436
  msgstr ""
437
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
438
  "示上面默认图像"
439
 
440
+ #: admin.inc.php:457
441
  #, fuzzy
442
  msgid "Feed options"
443
  msgstr "一般设置"
444
 
445
+ #: admin.inc.php:460
446
  msgid ""
447
  "Below options override the related posts settings for your blog feed. These "
448
  "only apply if you have selected to add related posts to Feeds in the General "
449
  "Options tab."
450
  msgstr ""
451
 
452
+ #: admin.inc.php:498
453
  #, fuzzy
454
  msgid "Custom styles"
455
  msgstr "自定义样式"
456
 
457
+ #: admin.inc.php:501
458
  msgid "Use default style included in the plugin?"
459
  msgstr ""
460
 
461
+ #: admin.inc.php:504
462
  msgid ""
463
  "Contextual Related Posts includes a default style that makes your popular "
464
  "posts list to look pretty. Check the box above if you want to use this."
465
  msgstr ""
466
 
467
+ #: admin.inc.php:505
468
  msgid ""
469
  "Enabling this option will automatically turn on the thumbnails and set their "
470
  "width and height to 150px. Disabling this will not turn off thumbnails or "
471
  "change their dimensions."
472
  msgstr ""
473
 
474
+ #: admin.inc.php:508
475
  msgid "Custom CSS to add to header:"
476
  msgstr "添加自定义 CSS 到 header:"
477
 
478
+ #: admin.inc.php:512
479
  #, fuzzy
480
  msgid ""
481
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
485
  "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
486
  "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
487
 
488
+ #: admin.inc.php:519
489
  msgid "Save Options"
490
  msgstr "保存设置"
491
 
492
+ #: admin.inc.php:520
493
  msgid "Default Options"
494
  msgstr "默认设置"
495
 
496
+ #: admin.inc.php:520
497
  msgid "Do you want to set options to Default?"
498
  msgstr "是否要重置设置?"
499
 
500
+ #: admin.inc.php:521
501
  msgid "Recreate Index"
502
  msgstr "重建索引"
503
 
504
+ #: admin.inc.php:521
505
  msgid "Are you sure you want to recreate the index?"
506
  msgstr "是否要重建索引?"
507
 
508
+ #: admin.inc.php:529
509
  msgid "Support the development"
510
  msgstr "支持开发"
511
 
512
+ #: admin.inc.php:536
513
+ #, fuzzy
514
+ msgid "Donation for Contextual Related Posts"
515
+ msgstr "Contextual Related Posts"
516
+
517
+ #: admin.inc.php:538
518
+ #, fuzzy
519
+ msgid "Enter amount in USD:"
520
  msgstr "输入美元金额:"
521
 
522
+ #: admin.inc.php:542
523
  msgid "Send your donation to the author of"
524
  msgstr "捐赠给作者"
525
 
526
+ #: admin.inc.php:549
527
  msgid "Follow me"
528
  msgstr ""
529
 
530
+ #: admin.inc.php:559
531
  #, fuzzy
532
  msgid "Quick links"
533
  msgstr "快捷链接"
534
 
535
+ #: admin.inc.php:563
536
  #, fuzzy
537
  msgid "Contextual Related Posts plugin page"
538
  msgstr "相关日志"
539
 
540
+ #: admin.inc.php:564
 
 
 
 
 
 
 
 
541
  msgid "FAQ"
542
  msgstr ""
543
 
544
+ #: admin.inc.php:565 contextual-related-posts.php:964
545
  msgid "Support"
546
  msgstr "技术支持"
547
 
548
+ #: admin.inc.php:566
549
  msgid "Reviews"
550
  msgstr ""
551
 
552
+ #: admin.inc.php:567
553
+ msgid "Github repository"
554
+ msgstr ""
555
+
556
+ #: admin.inc.php:568
557
+ msgid "Other plugins"
558
+ msgstr "其他插件"
559
+
560
+ #: admin.inc.php:569
561
+ msgid "Ajay's blog"
562
+ msgstr "Ajay 的博客"
563
+
564
+ #: admin.inc.php:591 admin.inc.php:752
565
  msgid "Contextual Related Posts"
566
  msgstr "Contextual Related Posts"
567
 
568
+ #: admin.inc.php:591
569
  msgid "Related Posts"
570
  msgstr "相关日志"
571
 
572
+ #: admin.inc.php:694
573
  msgid "plugin settings page"
574
  msgstr "插件设置页面"
575
 
576
+ #: admin.inc.php:728
577
  msgid ""
578
  "An error occurred clearing the cache. Please contact your site administrator."
579
  "\\n\\nError message:\\n"
580
  msgstr ""
581
 
582
+ #: admin.inc.php:733
583
  msgid " cached row(s) cleared"
584
  msgstr ""
585
 
586
+ #: admin.inc.php:779
587
+ #, fuzzy
588
+ msgid "Location of thumbnail:"
589
+ msgstr "日志缩略图位置:"
590
+
591
+ #: admin.inc.php:781
592
+ msgid ""
593
+ "Enter the full URL to the image (JPG, PNG or GIF) you'd like to use. This "
594
+ "image will be used for the post. It will be resized to the thumbnail size "
595
+ "set under Settings &raquo; Related Posts &raquo; Output Options"
596
+ msgstr ""
597
+
598
+ #: admin.inc.php:782
599
+ msgid "The URL above is saved in the meta field: "
600
+ msgstr ""
601
+
602
+ #: contextual-related-posts.php:127
603
  msgid " by "
604
  msgstr ""
605
 
606
+ #: contextual-related-posts.php:142
607
  msgid "Powered by"
608
  msgstr "插件作者:"
609
 
610
+ #: contextual-related-posts.php:376
611
+ #, fuzzy
612
+ msgid "Related Posts [CRP]"
613
+ msgstr "相关日志"
614
+
615
+ #: contextual-related-posts.php:377
616
  msgid "Display Related Posts"
617
  msgstr "显示相关日志"
618
 
619
+ #: contextual-related-posts.php:400
620
  msgid "Title"
621
  msgstr "标题"
622
 
623
+ #: contextual-related-posts.php:405
624
  msgid "No. of posts"
625
  msgstr "日志数量"
626
 
627
+ #: contextual-related-posts.php:410
628
  msgid " Show excerpt?"
629
  msgstr "是否显示日志摘要?"
630
 
631
+ #: contextual-related-posts.php:415
632
  msgid " Show author?"
633
  msgstr ""
634
 
635
+ #: contextual-related-posts.php:420
636
  #, fuzzy
637
  msgid " Show date?"
638
  msgstr "是否显示日志摘要?"
639
 
640
+ #: contextual-related-posts.php:424
641
  msgid "Thumbnail options"
642
  msgstr "缩略图设置:"
643
 
644
+ #: contextual-related-posts.php:426
645
  msgid "Thumbnails inline, before title"
646
  msgstr "在标题前显示缩略图"
647
 
648
+ #: contextual-related-posts.php:427
649
  msgid "Thumbnails inline, after title"
650
  msgstr "在标题后显示缩略图"
651
 
652
+ #: contextual-related-posts.php:428
653
  msgid "Only thumbnails, no text"
654
  msgstr "不显示文本,只显示缩略图"
655
 
656
+ #: contextual-related-posts.php:429
657
  msgid "No thumbnails, only text."
658
  msgstr "不显示缩略图,只显示文本"
659
 
660
+ #: contextual-related-posts.php:434
661
  #, fuzzy
662
  msgid "Thumbnail height"
663
  msgstr "缩略图设置:"
664
 
665
+ #: contextual-related-posts.php:439
666
  #, fuzzy
667
  msgid "Thumbnail width"
668
  msgstr "缩略图设置:"
669
 
670
+ #: contextual-related-posts.php:581
671
  msgid "<h3>Related Posts:</h3>"
672
  msgstr "<h3>相关日志:</h3>"
673
 
674
+ #: contextual-related-posts.php:582
675
  #, fuzzy
676
  msgid "No related posts found"
677
  msgstr "没有发现相关日志"
678
 
679
+ #: contextual-related-posts.php:944
680
  msgid "Settings"
681
  msgstr "设置"
682
 
683
+ #: contextual-related-posts.php:965
684
  msgid "Donate"
685
  msgstr "捐赠"
686
 
687
+ #~ msgid "Add a link to the plugin page as a final item in the list"
688
+ #~ msgstr "在相关日志后添加插件页面的链接"
689
+
690
+ #~ msgid ""
691
+ #~ "If the postmeta is not set, then should the plugin extract the first "
692
+ #~ "image from the post?"
693
+ #~ msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
694
+
695
+ #~ msgid ""
696
+ #~ "This can slow down the loading of your page if the first image in the "
697
+ #~ "related posts is large in file-size"
698
+ #~ msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
699
+
700
  #~ msgid "Recent developments"
701
  #~ msgstr "最新开发"
702
 
languages/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // Silence is golden
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.9
8
  License: GPLv2 or later
9
 
10
  Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
@@ -32,7 +32,7 @@ The plugin also comes with it's very own inbuilt stylesheet that let's your rela
32
  * **Thumbnail support**:
33
  * Support for WordPress post thumbnails
34
  * Auto-extract the first image in your post to be displayed as a thumbnail
35
- * Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>
36
  * Use timthumb to resize images or use your own filter function to resize post images
37
  * **Styles**: The output is wrapped in CSS classes which allows you to easily style the list. You can enter your custom CSS styles from within WordPress Admin area or use the style included.
38
  * **Customisable output**:
@@ -52,12 +52,20 @@ So, if you've got some cool feature that you'd like to implement into the plugin
52
 
53
  == Upgrade Notice ==
54
 
55
- = 1.9.0.1 =
56
- * Fixed: Add to feeds was broken in v1.9
 
57
 
58
 
59
  == Changelog ==
60
 
 
 
 
 
 
 
 
61
  = 1.9.0.1 =
62
  * Fixed: Add to feeds was broken in v1.9
63
 
@@ -286,7 +294,7 @@ So, if you've got some cool feature that you'd like to implement into the plugin
286
  3. CRP options in WP-Admin - Feed options
287
  4. CRP options in WP-Admin - Custom styles
288
  5. CRP Widget
289
-
290
 
291
  == Frequently Asked Questions ==
292
 
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.0
7
+ Tested up to: 4.0
8
  License: GPLv2 or later
9
 
10
  Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
32
  * **Thumbnail support**:
33
  * Support for WordPress post thumbnails
34
  * Auto-extract the first image in your post to be displayed as a thumbnail
35
+ * Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>. Specify this using the meta box in your Edit screens.
36
  * Use timthumb to resize images or use your own filter function to resize post images
37
  * **Styles**: The output is wrapped in CSS classes which allows you to easily style the list. You can enter your custom CSS styles from within WordPress Admin area or use the style included.
38
  * **Customisable output**:
52
 
53
  == Upgrade Notice ==
54
 
55
+ = 1.9.1 =
56
+ * New Meta box on the Edit screens; Modifed match title algorithm; code cleanup and bug fixes;
57
+ Check the Changelog for a full list of changes.
58
 
59
 
60
  == Changelog ==
61
 
62
+ = 1.9.1 =
63
+ * New: Meta box on the Edit Posts, Pages and custom post type pages to easily add the location of the URL of the thumbnail image
64
+ * Modified: Refined match title algorithm. Previously this would match the post title with both the title and content
65
+ * Modified: Widget initialisation
66
+ * Modified: Massive code cleanup and more documentation in the WordPress settings page
67
+ * New: Added w.org and github.com to list of allowed sites for timthumb
68
+
69
  = 1.9.0.1 =
70
  * Fixed: Add to feeds was broken in v1.9
71
 
294
  3. CRP options in WP-Admin - Feed options
295
  4. CRP options in WP-Admin - Custom styles
296
  5. CRP Widget
297
+ 6. Contextual Related Post metabox in the Edit Posts screen
298
 
299
  == Frequently Asked Questions ==
300
 
timthumb/cache/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // Silence is golden
timthumb/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // Silence is golden
timthumb/timthumb.php CHANGED
@@ -143,6 +143,8 @@ if(! isset($ALLOWED_SITES)){
143
  'wordpress.org',
144
  'wp.com',
145
  's3.amazonaws.com',
 
 
146
  );
147
  }
148
  // -------------------------------------------------------------
143
  'wordpress.org',
144
  'wp.com',
145
  's3.amazonaws.com',
146
+ 'w.org',
147
+ 'github.com',
148
  );
149
  }
150
  // -------------------------------------------------------------
wick/index.php ADDED
@@ -0,0 +1 @@
 
1
+ <?php // Silence is golden
wick/sample_data.js.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- //"sample_data.js.php" List of categories
3
- Header("content-type: application/x-javascript");
4
-
5
- if (!function_exists('add_action')) {
6
- $wp_root = '../../../..';
7
- if (file_exists($wp_root.'/wp-load.php')) {
8
- require_once($wp_root.'/wp-load.php');
9
- } else {
10
- require_once($wp_root.'/wp-config.php');
11
- }
12
- }
13
-
14
- // Ajax Increment Counter
15
- wick_data();
16
- function wick_data() {
17
- global $wpdb;
18
-
19
- $categories = get_categories('hide_empty=0');
20
- $str = 'collection = [';
21
- foreach ($categories as $cat) {
22
- $str .= "'".$cat->slug."',";
23
- }
24
- $str = substr($str, 0, -1); // Remove trailing comma
25
- $str .= '];';
26
-
27
- echo $str;
28
- }
29
-
30
-
31
- ?>