Contextual Related Posts - Version 1.8.7

Version Description

  • IMPORTANT security update: Potential XSS vulnerability fixed. Thanks to Charlie Eriksen via Secunia SVCRP for reporting this

=

Download this release

Release Info

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

Code changes from version 1.8.6 to 1.8.7

admin.inc.php CHANGED
@@ -17,12 +17,12 @@ function crp_options() {
17
  $posts_types_inc = array_intersect($wp_post_types, $post_types);
18
 
19
 
20
- if (isset($_POST['crp_save'])) {
21
- $crp_settings['title'] = ($_POST['title']);
22
  $crp_settings['limit'] = intval($_POST['limit']);
23
  $crp_settings['daily_range'] = intval($_POST['daily_range']);
24
- $crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'];
25
- $crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'];
26
  $crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
27
  $crp_settings['cache'] = (isset($_POST['cache']) ? true : false);
28
 
@@ -36,15 +36,15 @@ function crp_options() {
36
 
37
  $crp_settings['title_length'] = intval($_POST['title_length']);
38
  $crp_settings['blank_output'] = (($_POST['blank_output'] == 'blank' ) ? true : false);
39
- $crp_settings['blank_output_text'] = $_POST['blank_output_text'];
40
- $crp_settings['post_thumb_op'] = $_POST['post_thumb_op'];
41
- $crp_settings['before_list'] = $_POST['before_list'];
42
- $crp_settings['after_list'] = $_POST['after_list'];
43
- $crp_settings['before_list_item'] = $_POST['before_list_item'];
44
- $crp_settings['after_list_item'] = $_POST['after_list_item'];
45
 
46
- $crp_settings['thumb_meta'] = $_POST['thumb_meta'];
47
- $crp_settings['thumb_default'] = $_POST['thumb_default'];
48
  $crp_settings['thumb_height'] = intval($_POST['thumb_height']);
49
  $crp_settings['thumb_width'] = intval($_POST['thumb_width']);
50
  $crp_settings['thumb_default_show'] = (isset($_POST['thumb_default_show']) ? true : false);
@@ -56,19 +56,19 @@ function crp_options() {
56
  $crp_settings['show_excerpt'] = (isset($_POST['show_excerpt']) ? true : false);
57
  $crp_settings['excerpt_length'] = intval($_POST['excerpt_length']);
58
  $crp_settings['show_credit'] = (isset($_POST['show_credit']) ? true : false);
59
- $crp_settings['custom_CSS'] = $_POST['custom_CSS'];
60
 
61
  $crp_settings['link_new_window'] = (isset($_POST['link_new_window']) ? true : false);
62
  $crp_settings['link_nofollow'] = (isset($_POST['link_nofollow']) ? true : false);
63
 
64
  $crp_settings['limit_feed'] = intval($_POST['limit_feed']);
65
- $crp_settings['post_thumb_op_feed'] = $_POST['post_thumb_op_feed'];
66
  $crp_settings['thumb_height_feed'] = intval($_POST['thumb_height_feed']);
67
  $crp_settings['thumb_width_feed'] = intval($_POST['thumb_width_feed']);
68
  $crp_settings['show_excerpt_feed'] = (isset($_POST['show_excerpt_feed']) ? true : false);
69
 
70
 
71
- $crp_settings['exclude_cat_slugs'] = ($_POST['exclude_cat_slugs']);
72
  $exclude_categories_slugs = explode(", ",$crp_settings['exclude_cat_slugs']);
73
 
74
  //$exclude_categories = array();
@@ -97,7 +97,7 @@ function crp_options() {
97
  echo $str;
98
  }
99
 
100
- if (isset($_POST['crp_default'])) {
101
  delete_option('ald_crp_settings');
102
  $crp_settings = crp_default_options();
103
  update_option('ald_crp_settings', $crp_settings);
@@ -112,7 +112,8 @@ function crp_options() {
112
  $str = '<div id="message" class="updated fade"><p>'. __('Options set to Default.',CRP_LOCAL_NAME) .'</p></div>';
113
  echo $str;
114
  }
115
- if (isset($_POST['crp_recreate'])) {
 
116
  $sql = "ALTER TABLE $poststable DROP INDEX crp_related";
117
  $wpdb->query($sql);
118
 
@@ -182,18 +183,18 @@ function crp_options() {
182
  <div class="tabbertab" id="crp_genoptions">
183
  <h3><?php _e('General options',CRP_LOCAL_NAME); ?></h3>
184
  <table class="form-table">
185
- <tr style="vertical-align: top;"><th scope="row"><label for="cache"><?php _e('Cache output?',CRP_LOCAL_NAME); ?></label></th>
186
  <td><input type="checkbox" name="cache" id="cache" <?php if ($crp_settings['cache']) echo 'checked="checked"' ?> />
187
- <br /><?php _e('Enabling this option will cache the related posts output when the post is visited the first time. The cache is cleaned when you save this page.',CRP_LOCAL_NAME); ?>
188
  </td>
189
  </tr>
190
- <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
191
  <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>"></td>
192
  </tr>
193
- <tr style="vertical-align: top;"><th scope="row"><label for="daily_range"><?php _e('Related posts should be newer than:',CRP_LOCAL_NAME); ?></label></th>
194
  <td><input type="textbox" name="daily_range" id="daily_range" value="<?php echo esc_attr(stripslashes($crp_settings['daily_range'])); ?>"><?php _e('days',CRP_LOCAL_NAME); ?></td>
195
  </tr>
196
- <tr style="vertical-align: top;"><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
197
  <td>
198
  <select name="post_types[]" multiple="multiple" size="<?php echo min(20,count($wp_post_types)); ?>">
199
  <?php foreach ($wp_post_types as $wp_post_type) {
@@ -204,16 +205,18 @@ function crp_options() {
204
  }
205
  ?>
206
  </select>
207
- <br /><?php _e('Use CTRL on Windows and COMMAND on Mac to select multiple items',CRP_LOCAL_NAME); ?>
208
  </td>
209
  </tr>
210
- <tr style="vertical-align: top;"><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
211
- <td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings['match_content']) echo 'checked="checked"' ?> /> <br /><?php _e('If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)',CRP_LOCAL_NAME); ?></td>
 
 
212
  </tr>
213
- <tr style="vertical-align: top;"><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
214
  <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_post_ids'])); ?>" style="width:250px"></td>
215
  </tr>
216
- <tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Categories to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
217
  <td>
218
  <div style="position:relative;text-align:left">
219
  <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
@@ -229,10 +232,10 @@ function crp_options() {
229
  </table>
230
  <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($crp_settings['exclude_cat_slugs'])); ?></textarea>
231
  </div>
232
- <?php _e('Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the starting letters and it will prompt you with options',CRP_LOCAL_NAME); ?>
233
  </td>
234
  </tr>
235
- <tr style="vertical-align: top;"><th scope="row"><?php _e('Add related posts to:',CRP_LOCAL_NAME); ?></th>
236
  <td>
237
  <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 />
238
  <label><input type="checkbox" name="add_to_page" id="add_to_page" <?php if ($crp_settings['add_to_page']) echo 'checked="checked"' ?> /> <?php _e('Pages',CRP_LOCAL_NAME); ?></label><br />
@@ -240,11 +243,11 @@ function crp_options() {
240
  <label><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ($crp_settings['add_to_feed']) echo 'checked="checked"' ?> /> <?php _e('Feeds',CRP_LOCAL_NAME); ?></label></label><br />
241
  <label><input type="checkbox" name="add_to_category_archives" id="add_to_category_archives" <?php if ($crp_settings['add_to_category_archives']) echo 'checked="checked"' ?> /> <?php _e('Category archives',CRP_LOCAL_NAME); ?></label><br />
242
  <label><input type="checkbox" name="add_to_tag_archives" id="add_to_tag_archives" <?php if ($crp_settings['add_to_tag_archives']) echo 'checked="checked"' ?> /> <?php _e('Tag archives',CRP_LOCAL_NAME); ?></label></label><br />
243
- <label><input type="checkbox" name="add_to_archives" id="add_to_archives" <?php if ($crp_settings['add_to_archives']) echo 'checked="checked"' ?> /> <?php _e('Other archives',CRP_LOCAL_NAME); ?></label></label><br />
244
- <?php _e('If you choose to disable this, please add <code>&lt;?php if(function_exists(\'echo_ald_crp\')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed',CRP_LOCAL_NAME); ?>
245
  </td>
246
  </tr>
247
- <tr style="vertical-align: top;"><th scope="row"><label for="show_credit"><?php _e('Add a link to the plugin page as a final item in the list',CRP_LOCAL_NAME); ?></label></th>
248
  <td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($crp_settings['show_credit']) echo 'checked="checked"' ?> /> <?php _e(' <em>Optional</em>',CRP_LOCAL_NAME); ?></td>
249
  </tr>
250
 
@@ -254,10 +257,10 @@ function crp_options() {
254
  <div class="tabbertab" id="crp_outputoptions">
255
  <h3><?php _e('Output options',CRP_LOCAL_NAME); ?></h3>
256
  <table class="form-table">
257
- <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
258
  <td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($crp_settings['title'])); ?>" style="width:250px" /></td>
259
  </tr>
260
- <tr style="vertical-align: top;"><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?></label></th>
261
  <td>
262
  <label>
263
  <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($crp_settings['blank_output']) echo 'checked="checked"' ?> />
@@ -269,44 +272,44 @@ function crp_options() {
269
  <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr(stripslashes($crp_settings['blank_output_text'])); ?>" style="width:250px" />
270
  </td>
271
  </tr>
272
- <tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
273
  <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($crp_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
274
  </tr>
275
- <tr style="vertical-align: top;"><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',CRP_LOCAL_NAME); ?></label></th>
276
  <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($crp_settings['excerpt_length']); ?>" /></td>
277
  </tr>
278
- <tr style="vertical-align: top;"><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',CRP_LOCAL_NAME); ?></label></th>
279
  <td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($crp_settings['title_length']); ?>" /></td>
280
  </tr>
281
- <tr style="vertical-align: top;"><th scope="row"><label for="link_new_window"><?php _e('Open links in new window',CRP_LOCAL_NAME); ?></label></th>
282
  <td><input type="checkbox" name="link_new_window" id="link_new_window" <?php if ($crp_settings['link_new_window']) echo 'checked="checked"' ?> /></td>
283
  </tr>
284
- <tr style="vertical-align: top;"><th scope="row"><label for="link_nofollow"><?php _e('Add nofollow attribute to links in the list',CRP_LOCAL_NAME); ?></label></th>
285
  <td><input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ($crp_settings['link_nofollow']) echo 'checked="checked"' ?> /></td>
286
  </tr>
287
- <tr style="vertical-align: top;"><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>
288
  <td>
289
  <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">
290
- <br /><?php _e('Enter comma separated list of IDs. e.g. 188,320,500',CRP_LOCAL_NAME); ?>
291
  </td>
292
  </tr>
293
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
294
  </tr>
295
- <tr style="vertical-align: top;"><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
296
  <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($crp_settings['before_list'])); ?>" style="width:250px" /></td>
297
  </tr>
298
- <tr style="vertical-align: top;"><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',CRP_LOCAL_NAME); ?></label></th>
299
  <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr(stripslashes($crp_settings['before_list_item'])); ?>" style="width:250px" /></td>
300
  </tr>
301
- <tr style="vertical-align: top;"><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',CRP_LOCAL_NAME); ?></label></th>
302
  <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr(stripslashes($crp_settings['after_list_item'])); ?>" style="width:250px" /></td>
303
  </tr>
304
- <tr style="vertical-align: top;"><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
305
  <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($crp_settings['after_list'])); ?>" style="width:250px" /></td>
306
  </tr>
307
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',CRP_LOCAL_NAME); ?></th>
308
  </tr>
309
- <tr style="vertical-align: top;"><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
310
  <td>
311
  <label>
312
  <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($crp_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
@@ -326,32 +329,42 @@ function crp_options() {
326
  <br />
327
  </td>
328
  </tr>
329
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
330
  <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_width'])); ?>" style="width:30px" />px</td>
331
  </tr>
332
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
333
  <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_height'])); ?>" style="width:30px" />px</td>
334
  </tr>
335
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',CRP_LOCAL_NAME); ?></label></th>
336
- <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($crp_settings['thumb_timthumb']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',CRP_LOCAL_NAME); ?></td>
 
 
337
  </tr>
338
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb_q"><?php _e('Quality of thumbnails generated by timthumb',CRP_LOCAL_NAME); ?></label></th>
339
  <td>
340
- <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" /><br />
341
- <?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); ?>
342
  </td>
343
  </tr>
344
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',CRP_LOCAL_NAME); ?></label></th>
345
- <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_meta'])); ?>"> <br /><?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); ?></td>
 
 
346
  </tr>
347
- <tr style="vertical-align: top;"><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>
348
- <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($crp_settings['scan_images']) echo 'checked="checked"' ?> /> <br /><?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); ?></td>
 
 
349
  </tr>
350
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',CRP_LOCAL_NAME); ?></label></th>
351
- <td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($crp_settings['thumb_default_show']) echo 'checked="checked"' ?> /> <br /><?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); ?></td>
 
 
352
  </tr>
353
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
354
- <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_default'])); ?>" style="width:500px"> <br /><?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); ?></td>
 
 
355
  </tr>
356
  </table>
357
  </div>
@@ -360,13 +373,13 @@ function crp_options() {
360
  <table class="form-table">
361
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Below options override the related posts settings for your blog feed. These only apply if you have selected to add related posts to Feeds in the General Options tab.',CRP_LOCAL_NAME); ?></th>
362
  </tr>
363
- <tr style="vertical-align: top;"><th scope="row"><label for="limit_feed"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
364
  <td><input type="textbox" name="limit_feed" id="limit_feed" value="<?php echo esc_attr(stripslashes($crp_settings['limit_feed'])); ?>"></td>
365
  </tr>
366
- <tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt_feed"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
367
  <td><input type="checkbox" name="show_excerpt_feed" id="show_excerpt_feed" <?php if ($crp_settings['show_excerpt_feed']) echo 'checked="checked"' ?> /></td>
368
  </tr>
369
- <tr style="vertical-align: top;"><th scope="row"><label for="post_thumb_op_feed"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
370
  <td>
371
  <label>
372
  <input type="radio" name="post_thumb_op_feed" value="inline" id="post_thumb_op_feed_0" <?php if ($crp_settings['post_thumb_op_feed']=='inline') echo 'checked="checked"' ?> />
@@ -386,10 +399,10 @@ function crp_options() {
386
  <br />
387
  </td>
388
  </tr>
389
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_width_feed"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
390
  <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>
391
  </tr>
392
- <tr style="vertical-align: top;"><th scope="row"><label for="thumb_height_feed"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
393
  <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>
394
  </tr>
395
  </table>
@@ -400,15 +413,17 @@ function crp_options() {
400
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
401
  </tr>
402
  <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($crp_settings['custom_CSS']); ?></textarea>
403
- <br /><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/" target="_blank">FAQ</a> for available CSS classes to style.',CRP_LOCAL_NAME); ?></em></td></tr>
 
404
  </table>
405
  </div>
406
  <p>
407
- <input type="submit" name="crp_save" id="crp_save" value="<?php _e('Save Options',CRP_LOCAL_NAME); ?>" style="border:#0C0 1px solid" />
408
- <input name="crp_default" type="submit" id="crp_default" value="<?php _e('Default Options',CRP_LOCAL_NAME); ?>" style="border:#F00 1px solid" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',CRP_LOCAL_NAME); ?>')) return false;" />
409
- <input name="crp_recreate" type="submit" id="crp_recreate" value="<?php _e('Recreate Index',CRP_LOCAL_NAME); ?>" style="border:#00c 1px solid" onclick="if (!confirm('<?php _e('Are you sure you want to recreate the index?',CRP_LOCAL_NAME); ?>')) return false;" />
410
  </p>
411
  </fieldset>
 
412
  </form>
413
  </div>
414
 
17
  $posts_types_inc = array_intersect($wp_post_types, $post_types);
18
 
19
 
20
+ if ( (isset($_POST['crp_save']) ) && (check_admin_referer('crp-plugin') ) ) {
21
+ $crp_settings['title'] = wp_kses_post($_POST['title']);
22
  $crp_settings['limit'] = intval($_POST['limit']);
23
  $crp_settings['daily_range'] = intval($_POST['daily_range']);
24
+ $crp_settings['exclude_on_post_ids'] = wp_kses_post($_POST['exclude_on_post_ids']);
25
+ $crp_settings['exclude_post_ids'] = wp_kses_post($_POST['exclude_post_ids']);
26
  $crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
27
  $crp_settings['cache'] = (isset($_POST['cache']) ? true : false);
28
 
36
 
37
  $crp_settings['title_length'] = intval($_POST['title_length']);
38
  $crp_settings['blank_output'] = (($_POST['blank_output'] == 'blank' ) ? true : false);
39
+ $crp_settings['blank_output_text'] = wp_kses_post($_POST['blank_output_text']);
40
+ $crp_settings['post_thumb_op'] = wp_kses_post($_POST['post_thumb_op']);
41
+ $crp_settings['before_list'] = wp_kses_post($_POST['before_list']);
42
+ $crp_settings['after_list'] = wp_kses_post($_POST['after_list']);
43
+ $crp_settings['before_list_item'] = wp_kses_post($_POST['before_list_item']);
44
+ $crp_settings['after_list_item'] = wp_kses_post($_POST['after_list_item']);
45
 
46
+ $crp_settings['thumb_meta'] = wp_kses_post($_POST['thumb_meta']);
47
+ $crp_settings['thumb_default'] = wp_kses_post($_POST['thumb_default']);
48
  $crp_settings['thumb_height'] = intval($_POST['thumb_height']);
49
  $crp_settings['thumb_width'] = intval($_POST['thumb_width']);
50
  $crp_settings['thumb_default_show'] = (isset($_POST['thumb_default_show']) ? true : false);
56
  $crp_settings['show_excerpt'] = (isset($_POST['show_excerpt']) ? true : false);
57
  $crp_settings['excerpt_length'] = intval($_POST['excerpt_length']);
58
  $crp_settings['show_credit'] = (isset($_POST['show_credit']) ? true : false);
59
+ $crp_settings['custom_CSS'] = wp_kses_post($_POST['custom_CSS']);
60
 
61
  $crp_settings['link_new_window'] = (isset($_POST['link_new_window']) ? true : false);
62
  $crp_settings['link_nofollow'] = (isset($_POST['link_nofollow']) ? true : false);
63
 
64
  $crp_settings['limit_feed'] = intval($_POST['limit_feed']);
65
+ $crp_settings['post_thumb_op_feed'] = wp_kses_post($_POST['post_thumb_op_feed']);
66
  $crp_settings['thumb_height_feed'] = intval($_POST['thumb_height_feed']);
67
  $crp_settings['thumb_width_feed'] = intval($_POST['thumb_width_feed']);
68
  $crp_settings['show_excerpt_feed'] = (isset($_POST['show_excerpt_feed']) ? true : false);
69
 
70
 
71
+ $crp_settings['exclude_cat_slugs'] = wp_kses_post($_POST['exclude_cat_slugs']);
72
  $exclude_categories_slugs = explode(", ",$crp_settings['exclude_cat_slugs']);
73
 
74
  //$exclude_categories = array();
97
  echo $str;
98
  }
99
 
100
+ if ( (isset($_POST['crp_default']) ) && (check_admin_referer('crp-plugin') ) ) {
101
  delete_option('ald_crp_settings');
102
  $crp_settings = crp_default_options();
103
  update_option('ald_crp_settings', $crp_settings);
112
  $str = '<div id="message" class="updated fade"><p>'. __('Options set to Default.',CRP_LOCAL_NAME) .'</p></div>';
113
  echo $str;
114
  }
115
+
116
+ if ( (isset($_POST['crp_recreate']) ) && (check_admin_referer('crp-plugin') ) ) {
117
  $sql = "ALTER TABLE $poststable DROP INDEX crp_related";
118
  $wpdb->query($sql);
119
 
183
  <div class="tabbertab" id="crp_genoptions">
184
  <h3><?php _e('General options',CRP_LOCAL_NAME); ?></h3>
185
  <table class="form-table">
186
+ <tr><th scope="row"><label for="cache"><?php _e('Cache output?',CRP_LOCAL_NAME); ?></label></th>
187
  <td><input type="checkbox" name="cache" id="cache" <?php if ($crp_settings['cache']) echo 'checked="checked"' ?> />
188
+ <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>
189
  </td>
190
  </tr>
191
+ <tr><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
192
  <td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>"></td>
193
  </tr>
194
+ <tr><th scope="row"><label for="daily_range"><?php _e('Related posts should be newer than:',CRP_LOCAL_NAME); ?></label></th>
195
  <td><input type="textbox" name="daily_range" id="daily_range" value="<?php echo esc_attr(stripslashes($crp_settings['daily_range'])); ?>"><?php _e('days',CRP_LOCAL_NAME); ?></td>
196
  </tr>
197
+ <tr><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
198
  <td>
199
  <select name="post_types[]" multiple="multiple" size="<?php echo min(20,count($wp_post_types)); ?>">
200
  <?php foreach ($wp_post_types as $wp_post_type) {
205
  }
206
  ?>
207
  </select>
208
+ <p class="description"><?php _e('Use CTRL on Windows and COMMAND on Mac to select multiple items',CRP_LOCAL_NAME); ?></p>
209
  </td>
210
  </tr>
211
+ <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>
212
+ <td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings['match_content']) echo 'checked="checked"' ?> />
213
+ <p class="description"><?php _e('If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)',CRP_LOCAL_NAME); ?></p>
214
+ </td>
215
  </tr>
216
+ <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>
217
  <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_post_ids'])); ?>" style="width:250px"></td>
218
  </tr>
219
+ <tr><th scope="row"><label for="exclude_cat_slugs"><?php _e('Categories to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
220
  <td>
221
  <div style="position:relative;text-align:left">
222
  <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
232
  </table>
233
  <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($crp_settings['exclude_cat_slugs'])); ?></textarea>
234
  </div>
235
+ <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>
236
  </td>
237
  </tr>
238
+ <tr><th scope="row"><?php _e('Add related posts to:',CRP_LOCAL_NAME); ?></th>
239
  <td>
240
  <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 />
241
  <label><input type="checkbox" name="add_to_page" id="add_to_page" <?php if ($crp_settings['add_to_page']) echo 'checked="checked"' ?> /> <?php _e('Pages',CRP_LOCAL_NAME); ?></label><br />
243
  <label><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ($crp_settings['add_to_feed']) echo 'checked="checked"' ?> /> <?php _e('Feeds',CRP_LOCAL_NAME); ?></label></label><br />
244
  <label><input type="checkbox" name="add_to_category_archives" id="add_to_category_archives" <?php if ($crp_settings['add_to_category_archives']) echo 'checked="checked"' ?> /> <?php _e('Category archives',CRP_LOCAL_NAME); ?></label><br />
245
  <label><input type="checkbox" name="add_to_tag_archives" id="add_to_tag_archives" <?php if ($crp_settings['add_to_tag_archives']) echo 'checked="checked"' ?> /> <?php _e('Tag archives',CRP_LOCAL_NAME); ?></label></label><br />
246
+ <label><input type="checkbox" name="add_to_archives" id="add_to_archives" <?php if ($crp_settings['add_to_archives']) echo 'checked="checked"' ?> /> <?php _e('Other archives',CRP_LOCAL_NAME); ?></label></label>
247
+ <p class="description"><?php _e('If you choose to disable this, please add <code>&lt;?php if(function_exists(\'echo_ald_crp\')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed',CRP_LOCAL_NAME); ?></p>
248
  </td>
249
  </tr>
250
+ <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>
251
  <td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($crp_settings['show_credit']) echo 'checked="checked"' ?> /> <?php _e(' <em>Optional</em>',CRP_LOCAL_NAME); ?></td>
252
  </tr>
253
 
257
  <div class="tabbertab" id="crp_outputoptions">
258
  <h3><?php _e('Output options',CRP_LOCAL_NAME); ?></h3>
259
  <table class="form-table">
260
+ <tr><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
261
  <td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($crp_settings['title'])); ?>" style="width:250px" /></td>
262
  </tr>
263
+ <tr><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?></label></th>
264
  <td>
265
  <label>
266
  <input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($crp_settings['blank_output']) echo 'checked="checked"' ?> />
272
  <input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr(stripslashes($crp_settings['blank_output_text'])); ?>" style="width:250px" />
273
  </td>
274
  </tr>
275
+ <tr><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
276
  <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($crp_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
277
  </tr>
278
+ <tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',CRP_LOCAL_NAME); ?></label></th>
279
  <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($crp_settings['excerpt_length']); ?>" /></td>
280
  </tr>
281
+ <tr><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',CRP_LOCAL_NAME); ?></label></th>
282
  <td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($crp_settings['title_length']); ?>" /></td>
283
  </tr>
284
+ <tr><th scope="row"><label for="link_new_window"><?php _e('Open links in new window',CRP_LOCAL_NAME); ?></label></th>
285
  <td><input type="checkbox" name="link_new_window" id="link_new_window" <?php if ($crp_settings['link_new_window']) echo 'checked="checked"' ?> /></td>
286
  </tr>
287
+ <tr><th scope="row"><label for="link_nofollow"><?php _e('Add nofollow attribute to links in the list',CRP_LOCAL_NAME); ?></label></th>
288
  <td><input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ($crp_settings['link_nofollow']) echo 'checked="checked"' ?> /></td>
289
  </tr>
290
+ <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>
291
  <td>
292
  <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">
293
+ <p class="description"><?php _e('Enter comma separated list of IDs. e.g. 188,320,500',CRP_LOCAL_NAME); ?></p>
294
  </td>
295
  </tr>
296
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
297
  </tr>
298
+ <tr><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
299
  <td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($crp_settings['before_list'])); ?>" style="width:250px" /></td>
300
  </tr>
301
+ <tr><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',CRP_LOCAL_NAME); ?></label></th>
302
  <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr(stripslashes($crp_settings['before_list_item'])); ?>" style="width:250px" /></td>
303
  </tr>
304
+ <tr><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',CRP_LOCAL_NAME); ?></label></th>
305
  <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr(stripslashes($crp_settings['after_list_item'])); ?>" style="width:250px" /></td>
306
  </tr>
307
+ <tr><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
308
  <td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($crp_settings['after_list'])); ?>" style="width:250px" /></td>
309
  </tr>
310
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',CRP_LOCAL_NAME); ?></th>
311
  </tr>
312
+ <tr><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
313
  <td>
314
  <label>
315
  <input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($crp_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
329
  <br />
330
  </td>
331
  </tr>
332
+ <tr><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
333
  <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_width'])); ?>" style="width:30px" />px</td>
334
  </tr>
335
+ <tr><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
336
  <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_height'])); ?>" style="width:30px" />px</td>
337
  </tr>
338
+ <tr><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',CRP_LOCAL_NAME); ?></label></th>
339
+ <td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($crp_settings['thumb_timthumb']) echo 'checked="checked"' ?> />
340
+ <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>
341
+ </td>
342
  </tr>
343
+ <tr><th scope="row"><label for="thumb_timthumb_q"><?php _e('Quality of thumbnails generated by timthumb',CRP_LOCAL_NAME); ?></label></th>
344
  <td>
345
+ <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" />
346
+ <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>
347
  </td>
348
  </tr>
349
+ <tr><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',CRP_LOCAL_NAME); ?></label></th>
350
+ <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_meta'])); ?>">
351
+ <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>
352
+ </td>
353
  </tr>
354
+ <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>
355
+ <td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($crp_settings['scan_images']) echo 'checked="checked"' ?> />
356
+ <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>
357
+ </td>
358
  </tr>
359
+ <tr><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',CRP_LOCAL_NAME); ?></label></th>
360
+ <td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($crp_settings['thumb_default_show']) echo 'checked="checked"' ?> />
361
+ <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>
362
+ </td>
363
  </tr>
364
+ <tr><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
365
+ <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_default'])); ?>" style="width:500px">
366
+ <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>
367
+ </td>
368
  </tr>
369
  </table>
370
  </div>
373
  <table class="form-table">
374
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Below options override the related posts settings for your blog feed. These only apply if you have selected to add related posts to Feeds in the General Options tab.',CRP_LOCAL_NAME); ?></th>
375
  </tr>
376
+ <tr><th scope="row"><label for="limit_feed"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
377
  <td><input type="textbox" name="limit_feed" id="limit_feed" value="<?php echo esc_attr(stripslashes($crp_settings['limit_feed'])); ?>"></td>
378
  </tr>
379
+ <tr><th scope="row"><label for="show_excerpt_feed"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
380
  <td><input type="checkbox" name="show_excerpt_feed" id="show_excerpt_feed" <?php if ($crp_settings['show_excerpt_feed']) echo 'checked="checked"' ?> /></td>
381
  </tr>
382
+ <tr><th scope="row"><label for="post_thumb_op_feed"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
383
  <td>
384
  <label>
385
  <input type="radio" name="post_thumb_op_feed" value="inline" id="post_thumb_op_feed_0" <?php if ($crp_settings['post_thumb_op_feed']=='inline') echo 'checked="checked"' ?> />
399
  <br />
400
  </td>
401
  </tr>
402
+ <tr><th scope="row"><label for="thumb_width_feed"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
403
  <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>
404
  </tr>
405
+ <tr><th scope="row"><label for="thumb_height_feed"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
406
  <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>
407
  </tr>
408
  </table>
413
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
414
  </tr>
415
  <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($crp_settings['custom_CSS']); ?></textarea>
416
+ <p class="description"><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/" target="_blank">FAQ</a> for available CSS classes to style.',CRP_LOCAL_NAME); ?></p>
417
+ </td></tr>
418
  </table>
419
  </div>
420
  <p>
421
+ <input type="submit" name="crp_save" id="crp_save" value="<?php _e('Save Options',CRP_LOCAL_NAME); ?>" class="button button-primary" />
422
+ <input name="crp_default" type="submit" id="crp_default" value="<?php _e('Default Options',CRP_LOCAL_NAME); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e('Do you want to set options to Default?',CRP_LOCAL_NAME); ?>')) return false;" />
423
+ <input name="crp_recreate" type="submit" id="crp_recreate" value="<?php _e('Recreate Index',CRP_LOCAL_NAME); ?>" class="button button-secondary" onclick="if (!confirm('<?php _e('Are you sure you want to recreate the index?',CRP_LOCAL_NAME); ?>')) return false;" />
424
  </p>
425
  </fieldset>
426
+ <?php wp_nonce_field('crp-plugin'); ?>
427
  </form>
428
  </div>
429
 
contextual-related-posts.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
- Version: 1.8.6
5
  Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
6
  Description: Displaying a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
7
  Author: Ajay D'Souza
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
+ Version: 1.8.7
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
languages/crp-da_DK.mo CHANGED
Binary file
languages/crp-da_DK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:41-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -26,91 +26,91 @@ msgstr "Indstillingerne blev gemt."
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
- #: admin.inc.php:127
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
- #: admin.inc.php:140
34
  #, fuzzy
35
  msgid "Support the development"
36
  msgstr "Støt udviklingen"
37
 
38
- #: admin.inc.php:148
39
  msgid "Enter amount in USD: "
40
  msgstr ""
41
 
42
- #: admin.inc.php:152
43
  msgid "Send your donation to the author of"
44
  msgstr ""
45
 
46
- #: admin.inc.php:163
47
  msgid "Quick Links"
48
  msgstr ""
49
 
50
- #: admin.inc.php:165
51
  #, fuzzy
52
  msgid "Contextual Related Posts plugin page"
53
  msgstr "Related Posts (Lignende indlæg)"
54
 
55
- #: admin.inc.php:166
56
  msgid "Other plugins"
57
  msgstr ""
58
 
59
- #: admin.inc.php:167
60
  msgid "Ajay's blog"
61
  msgstr ""
62
 
63
- #: admin.inc.php:168 contextual-related-posts.php:662
64
  msgid "Support"
65
  msgstr "Support"
66
 
67
- #: admin.inc.php:169
68
  msgid "Reviews"
69
  msgstr ""
70
 
71
- #: admin.inc.php:173
72
  msgid "Recent developments"
73
  msgstr ""
74
 
75
- #: admin.inc.php:183
76
  msgid "General options"
77
  msgstr ""
78
 
79
- #: admin.inc.php:185
80
  msgid "Cache output?"
81
  msgstr ""
82
 
83
- #: admin.inc.php:187
84
  msgid ""
85
  "Enabling this option will cache the related posts output when the post is "
86
  "visited the first time. The cache is cleaned when you save this page."
87
  msgstr ""
88
 
89
- #: admin.inc.php:190 admin.inc.php:363
90
  msgid "Number of related posts to display: "
91
  msgstr "Antal Lignende indlæg, der skal vises: "
92
 
93
- #: admin.inc.php:193
94
  msgid "Related posts should be newer than:"
95
  msgstr ""
96
 
97
- #: admin.inc.php:194
98
  msgid "days"
99
  msgstr ""
100
 
101
- #: admin.inc.php:196
102
  msgid "Post types to include in results (including custom post types)"
103
  msgstr ""
104
 
105
- #: admin.inc.php:207
106
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
107
  msgstr ""
108
 
109
- #: admin.inc.php:210
110
  msgid "Find related posts based on content as well as title"
111
  msgstr ""
112
 
113
- #: admin.inc.php:211
114
  #, fuzzy
115
  msgid ""
116
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -120,55 +120,55 @@ msgstr ""
120
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
121
  "dette)"
122
 
123
- #: admin.inc.php:213
124
  msgid "List of post or page IDs to exclude from the results: "
125
  msgstr ""
126
 
127
- #: admin.inc.php:216
128
  msgid "Categories to exclude from the results: "
129
  msgstr ""
130
 
131
- #: admin.inc.php:232
132
  msgid ""
133
  "Comma separated list of category slugs. The field above has an autocomplete "
134
  "so simply start typing in the starting letters and it will prompt you with "
135
  "options"
136
  msgstr ""
137
 
138
- #: admin.inc.php:235
139
  #, fuzzy
140
  msgid "Add related posts to:"
141
  msgstr "Tilføj Lignende indlæg til feeds"
142
 
143
- #: admin.inc.php:237
144
  msgid "Posts"
145
  msgstr ""
146
 
147
- #: admin.inc.php:238
148
  msgid "Pages"
149
  msgstr ""
150
 
151
- #: admin.inc.php:239
152
  msgid "Home page"
153
  msgstr ""
154
 
155
- #: admin.inc.php:240
156
  msgid "Feeds"
157
  msgstr ""
158
 
159
- #: admin.inc.php:241
160
  msgid "Category archives"
161
  msgstr ""
162
 
163
- #: admin.inc.php:242
164
  msgid "Tag archives"
165
  msgstr ""
166
 
167
- #: admin.inc.php:243
168
  msgid "Other archives"
169
  msgstr ""
170
 
171
- #: admin.inc.php:244
172
  #, fuzzy
173
  msgid ""
174
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -180,176 +180,176 @@ msgstr ""
180
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du "
181
  "ønsker de lignende indlæg vist"
182
 
183
- #: admin.inc.php:247
184
  msgid "Add a link to the plugin page as a final item in the list"
185
  msgstr ""
186
 
187
- #: admin.inc.php:248
188
  msgid " <em>Optional</em>"
189
  msgstr ""
190
 
191
- #: admin.inc.php:255
192
  #, fuzzy
193
  msgid "Output options"
194
  msgstr "Indstillinger for output:"
195
 
196
- #: admin.inc.php:257
197
  msgid "Title of related posts: "
198
  msgstr "Titel på Lignende indlæg: "
199
 
200
- #: admin.inc.php:260
201
  msgid "When there are no posts, what should be shown?"
202
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
203
 
204
- #: admin.inc.php:264
205
  msgid "Blank Output"
206
  msgstr "Intet"
207
 
208
- #: admin.inc.php:268
209
  msgid "Display:"
210
  msgstr ""
211
 
212
- #: admin.inc.php:272 admin.inc.php:366
213
  msgid "Show post excerpt in list?"
214
  msgstr ""
215
 
216
- #: admin.inc.php:275
217
  msgid "Length of excerpt (in words): "
218
  msgstr ""
219
 
220
- #: admin.inc.php:278
221
  msgid "Limit post title length (in characters)"
222
  msgstr ""
223
 
224
- #: admin.inc.php:281
225
  msgid "Open links in new window"
226
  msgstr ""
227
 
228
- #: admin.inc.php:284
229
  msgid "Add nofollow attribute to links in the list"
230
  msgstr ""
231
 
232
- #: admin.inc.php:287
233
  #, fuzzy
234
  msgid "Exclude display of related posts on these posts / pages"
235
  msgstr "Tilføj Lignende indlæg til feeds"
236
 
237
- #: admin.inc.php:290
238
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
239
  msgstr ""
240
 
241
- #: admin.inc.php:293
242
  msgid "Customize the output:"
243
  msgstr "Tilpas outputtet:"
244
 
245
- #: admin.inc.php:295
246
  msgid "HTML to display before the list of posts: "
247
  msgstr "HTML, der skal vises før listen med indlæg: "
248
 
249
- #: admin.inc.php:298
250
  msgid "HTML to display before each list item: "
251
  msgstr "HTML, der skal vises før hvert punkt på listen: "
252
 
253
- #: admin.inc.php:301
254
  msgid "HTML to display after each list item: "
255
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
256
 
257
- #: admin.inc.php:304
258
  msgid "HTML to display after the list of posts: "
259
  msgstr "HTML, der skal vises efter listen med indlæg: "
260
 
261
- #: admin.inc.php:307
262
  msgid "Post thumbnail options:"
263
  msgstr "Indstillinger for indlægsminiaturer:"
264
 
265
- #: admin.inc.php:309 admin.inc.php:369
266
  msgid "Location of post thumbnail:"
267
  msgstr ""
268
 
269
- #: admin.inc.php:313 admin.inc.php:373
270
  #, fuzzy
271
  msgid "Display thumbnails inline with posts, before title"
272
  msgstr "Vis miniaturer inline med indlæg"
273
 
274
- #: admin.inc.php:317 admin.inc.php:377
275
  #, fuzzy
276
  msgid "Display thumbnails inline with posts, after title"
277
  msgstr "Vis miniaturer inline med indlæg"
278
 
279
- #: admin.inc.php:321 admin.inc.php:381
280
  msgid "Display only thumbnails, no text"
281
  msgstr "Vis kun miniaturer, ingen tekst"
282
 
283
- #: admin.inc.php:325 admin.inc.php:385
284
  msgid "Do not display thumbnails, only text."
285
  msgstr "Vis ikke miniaturer, kun tekst."
286
 
287
- #: admin.inc.php:329 admin.inc.php:389
288
  msgid "Maximum width of the thumbnail: "
289
  msgstr ""
290
 
291
- #: admin.inc.php:332 admin.inc.php:392
292
  msgid "Maximum height of the thumbnail: "
293
  msgstr ""
294
 
295
- #: admin.inc.php:335
296
  msgid "Use timthumb to generate thumbnails? "
297
  msgstr ""
298
 
299
- #: admin.inc.php:336
300
  msgid ""
301
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
302
  "\">timthumb</a> will be used to generate thumbnails"
303
  msgstr ""
304
 
305
- #: admin.inc.php:338
306
  msgid "Quality of thumbnails generated by timthumb"
307
  msgstr ""
308
 
309
- #: admin.inc.php:341
310
  msgid ""
311
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
312
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
313
  msgstr ""
314
 
315
- #: admin.inc.php:344
316
  #, fuzzy
317
  msgid "Post thumbnail meta field name: "
318
  msgstr "Indstillinger for indlægsminiaturer:"
319
 
320
- #: admin.inc.php:345
321
  msgid ""
322
  "The value of this field should contain the image source and is set in the "
323
  "<em>Add New Post</em> screen"
324
  msgstr ""
325
 
326
- #: admin.inc.php:347
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
329
  "from the post?"
330
  msgstr ""
331
 
332
- #: admin.inc.php:348
333
  msgid ""
334
  "This can slow down the loading of your page if the first image in the "
335
  "related posts is large in file-size"
336
  msgstr ""
337
 
338
- #: admin.inc.php:350
339
  msgid "Use default thumbnail? "
340
  msgstr ""
341
 
342
- #: admin.inc.php:351
343
  msgid ""
344
  "If checked, when no thumbnail is found, show a default one from the URL "
345
  "below. If not checked and no thumbnail is found, no image will be shown."
346
  msgstr ""
347
 
348
- #: admin.inc.php:353
349
  msgid "Default thumbnail: "
350
  msgstr ""
351
 
352
- #: admin.inc.php:354
353
  #, fuzzy
354
  msgid ""
355
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -360,75 +360,75 @@ msgstr ""
360
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
361
  "findes, vil det vise standardbilledet specificeret nedenfor:"
362
 
363
- #: admin.inc.php:359
364
  #, fuzzy
365
  msgid "Feed options"
366
  msgstr "Indstillinger:"
367
 
368
- #: admin.inc.php:361
369
  msgid ""
370
  "Below options override the related posts settings for your blog feed. These "
371
  "only apply if you have selected to add related posts to Feeds in the General "
372
  "Options tab."
373
  msgstr ""
374
 
375
- #: admin.inc.php:398
376
  msgid "Custom Styles"
377
  msgstr ""
378
 
379
- #: admin.inc.php:400
380
  msgid "Custom CSS to add to header:"
381
  msgstr ""
382
 
383
- #: admin.inc.php:403
384
  msgid ""
385
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
386
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
387
  "\">FAQ</a> for available CSS classes to style."
388
  msgstr ""
389
 
390
- #: admin.inc.php:407
391
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "Indstillinger:"
394
 
395
- #: admin.inc.php:408
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "Indstillinger for output:"
399
 
400
- #: admin.inc.php:408
401
  msgid "Do you want to set options to Default?"
402
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
403
 
404
- #: admin.inc.php:409
405
  msgid "Recreate Index"
406
  msgstr ""
407
 
408
- #: admin.inc.php:409
409
  msgid "Are you sure you want to recreate the index?"
410
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
411
 
412
- #: admin.inc.php:426
413
  #, fuzzy
414
  msgid "Contextual Related Posts"
415
  msgstr "Related Posts (Lignende indlæg)"
416
 
417
- #: admin.inc.php:426 contextual-related-posts.php:277
418
  msgid "Related Posts"
419
  msgstr "Related Posts (Lignende indlæg)"
420
 
421
- #: admin.inc.php:434
422
  msgid "plugin settings page"
423
  msgstr ""
424
 
425
- #: admin.inc.php:439
426
  msgid ""
427
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
428
  "visit the "
429
  msgstr ""
430
 
431
- #: admin.inc.php:439
432
  msgid " to configure."
433
  msgstr ""
434
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:01-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"
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
+ #: admin.inc.php:128
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
+ #: admin.inc.php:141
34
  #, fuzzy
35
  msgid "Support the development"
36
  msgstr "Støt udviklingen"
37
 
38
+ #: admin.inc.php:149
39
  msgid "Enter amount in USD: "
40
  msgstr ""
41
 
42
+ #: admin.inc.php:153
43
  msgid "Send your donation to the author of"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:164
47
  msgid "Quick Links"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:166
51
  #, fuzzy
52
  msgid "Contextual Related Posts plugin page"
53
  msgstr "Related Posts (Lignende indlæg)"
54
 
55
+ #: admin.inc.php:167
56
  msgid "Other plugins"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:168
60
  msgid "Ajay's blog"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:169 contextual-related-posts.php:662
64
  msgid "Support"
65
  msgstr "Support"
66
 
67
+ #: admin.inc.php:170
68
  msgid "Reviews"
69
  msgstr ""
70
 
71
+ #: admin.inc.php:174
72
  msgid "Recent developments"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:184
76
  msgid "General options"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:186
80
  msgid "Cache output?"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:188
84
  msgid ""
85
  "Enabling this option will cache the related posts output when the post is "
86
  "visited the first time. The cache is cleaned when you save this page."
87
  msgstr ""
88
 
89
+ #: admin.inc.php:191 admin.inc.php:376
90
  msgid "Number of related posts to display: "
91
  msgstr "Antal Lignende indlæg, der skal vises: "
92
 
93
+ #: admin.inc.php:194
94
  msgid "Related posts should be newer than:"
95
  msgstr ""
96
 
97
+ #: admin.inc.php:195
98
  msgid "days"
99
  msgstr ""
100
 
101
+ #: admin.inc.php:197
102
  msgid "Post types to include in results (including custom post types)"
103
  msgstr ""
104
 
105
+ #: admin.inc.php:208
106
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
107
  msgstr ""
108
 
109
+ #: admin.inc.php:211
110
  msgid "Find related posts based on content as well as title"
111
  msgstr ""
112
 
113
+ #: admin.inc.php:213
114
  #, fuzzy
115
  msgid ""
116
  "If unchecked, only posts titles are used. (I recommend using a caching "
120
  "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
121
  "dette)"
122
 
123
+ #: admin.inc.php:216
124
  msgid "List of post or page IDs to exclude from the results: "
125
  msgstr ""
126
 
127
+ #: admin.inc.php:219
128
  msgid "Categories to exclude from the results: "
129
  msgstr ""
130
 
131
+ #: admin.inc.php:235
132
  msgid ""
133
  "Comma separated list of category slugs. The field above has an autocomplete "
134
  "so simply start typing in the starting letters and it will prompt you with "
135
  "options"
136
  msgstr ""
137
 
138
+ #: admin.inc.php:238
139
  #, fuzzy
140
  msgid "Add related posts to:"
141
  msgstr "Tilføj Lignende indlæg til feeds"
142
 
143
+ #: admin.inc.php:240
144
  msgid "Posts"
145
  msgstr ""
146
 
147
+ #: admin.inc.php:241
148
  msgid "Pages"
149
  msgstr ""
150
 
151
+ #: admin.inc.php:242
152
  msgid "Home page"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:243
156
  msgid "Feeds"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:244
160
  msgid "Category archives"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:245
164
  msgid "Tag archives"
165
  msgstr ""
166
 
167
+ #: admin.inc.php:246
168
  msgid "Other archives"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:247
172
  #, fuzzy
173
  msgid ""
174
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
180
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du "
181
  "ønsker de lignende indlæg vist"
182
 
183
+ #: admin.inc.php:250
184
  msgid "Add a link to the plugin page as a final item in the list"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:251
188
  msgid " <em>Optional</em>"
189
  msgstr ""
190
 
191
+ #: admin.inc.php:258
192
  #, fuzzy
193
  msgid "Output options"
194
  msgstr "Indstillinger for output:"
195
 
196
+ #: admin.inc.php:260
197
  msgid "Title of related posts: "
198
  msgstr "Titel på Lignende indlæg: "
199
 
200
+ #: admin.inc.php:263
201
  msgid "When there are no posts, what should be shown?"
202
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
203
 
204
+ #: admin.inc.php:267
205
  msgid "Blank Output"
206
  msgstr "Intet"
207
 
208
+ #: admin.inc.php:271
209
  msgid "Display:"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:275 admin.inc.php:379
213
  msgid "Show post excerpt in list?"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:278
217
  msgid "Length of excerpt (in words): "
218
  msgstr ""
219
 
220
+ #: admin.inc.php:281
221
  msgid "Limit post title length (in characters)"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:284
225
  msgid "Open links in new window"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:287
229
  msgid "Add nofollow attribute to links in the list"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:290
233
  #, fuzzy
234
  msgid "Exclude display of related posts on these posts / pages"
235
  msgstr "Tilføj Lignende indlæg til feeds"
236
 
237
+ #: admin.inc.php:293
238
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:296
242
  msgid "Customize the output:"
243
  msgstr "Tilpas outputtet:"
244
 
245
+ #: admin.inc.php:298
246
  msgid "HTML to display before the list of posts: "
247
  msgstr "HTML, der skal vises før listen med indlæg: "
248
 
249
+ #: admin.inc.php:301
250
  msgid "HTML to display before each list item: "
251
  msgstr "HTML, der skal vises før hvert punkt på listen: "
252
 
253
+ #: admin.inc.php:304
254
  msgid "HTML to display after each list item: "
255
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
256
 
257
+ #: admin.inc.php:307
258
  msgid "HTML to display after the list of posts: "
259
  msgstr "HTML, der skal vises efter listen med indlæg: "
260
 
261
+ #: admin.inc.php:310
262
  msgid "Post thumbnail options:"
263
  msgstr "Indstillinger for indlægsminiaturer:"
264
 
265
+ #: admin.inc.php:312 admin.inc.php:382
266
  msgid "Location of post thumbnail:"
267
  msgstr ""
268
 
269
+ #: admin.inc.php:316 admin.inc.php:386
270
  #, fuzzy
271
  msgid "Display thumbnails inline with posts, before title"
272
  msgstr "Vis miniaturer inline med indlæg"
273
 
274
+ #: admin.inc.php:320 admin.inc.php:390
275
  #, fuzzy
276
  msgid "Display thumbnails inline with posts, after title"
277
  msgstr "Vis miniaturer inline med indlæg"
278
 
279
+ #: admin.inc.php:324 admin.inc.php:394
280
  msgid "Display only thumbnails, no text"
281
  msgstr "Vis kun miniaturer, ingen tekst"
282
 
283
+ #: admin.inc.php:328 admin.inc.php:398
284
  msgid "Do not display thumbnails, only text."
285
  msgstr "Vis ikke miniaturer, kun tekst."
286
 
287
+ #: admin.inc.php:332 admin.inc.php:402
288
  msgid "Maximum width of the thumbnail: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:335 admin.inc.php:405
292
  msgid "Maximum height of the thumbnail: "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:338
296
  msgid "Use timthumb to generate thumbnails? "
297
  msgstr ""
298
 
299
+ #: admin.inc.php:340
300
  msgid ""
301
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
302
  "\">timthumb</a> will be used to generate thumbnails"
303
  msgstr ""
304
 
305
+ #: admin.inc.php:343
306
  msgid "Quality of thumbnails generated by timthumb"
307
  msgstr ""
308
 
309
+ #: admin.inc.php:346
310
  msgid ""
311
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
312
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
313
  msgstr ""
314
 
315
+ #: admin.inc.php:349
316
  #, fuzzy
317
  msgid "Post thumbnail meta field name: "
318
  msgstr "Indstillinger for indlægsminiaturer:"
319
 
320
+ #: admin.inc.php:351
321
  msgid ""
322
  "The value of this field should contain the image source and is set in the "
323
  "<em>Add New Post</em> screen"
324
  msgstr ""
325
 
326
+ #: admin.inc.php:354
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
329
  "from the post?"
330
  msgstr ""
331
 
332
+ #: admin.inc.php:356
333
  msgid ""
334
  "This can slow down the loading of your page if the first image in the "
335
  "related posts is large in file-size"
336
  msgstr ""
337
 
338
+ #: admin.inc.php:359
339
  msgid "Use default thumbnail? "
340
  msgstr ""
341
 
342
+ #: admin.inc.php:361
343
  msgid ""
344
  "If checked, when no thumbnail is found, show a default one from the URL "
345
  "below. If not checked and no thumbnail is found, no image will be shown."
346
  msgstr ""
347
 
348
+ #: admin.inc.php:364
349
  msgid "Default thumbnail: "
350
  msgstr ""
351
 
352
+ #: admin.inc.php:366
353
  #, fuzzy
354
  msgid ""
355
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
360
  "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
361
  "findes, vil det vise standardbilledet specificeret nedenfor:"
362
 
363
+ #: admin.inc.php:372
364
  #, fuzzy
365
  msgid "Feed options"
366
  msgstr "Indstillinger:"
367
 
368
+ #: admin.inc.php:374
369
  msgid ""
370
  "Below options override the related posts settings for your blog feed. These "
371
  "only apply if you have selected to add related posts to Feeds in the General "
372
  "Options tab."
373
  msgstr ""
374
 
375
+ #: admin.inc.php:411
376
  msgid "Custom Styles"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:413
380
  msgid "Custom CSS to add to header:"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:416
384
  msgid ""
385
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
386
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
387
  "\">FAQ</a> for available CSS classes to style."
388
  msgstr ""
389
 
390
+ #: admin.inc.php:421
391
  #, fuzzy
392
  msgid "Save Options"
393
  msgstr "Indstillinger:"
394
 
395
+ #: admin.inc.php:422
396
  #, fuzzy
397
  msgid "Default Options"
398
  msgstr "Indstillinger for output:"
399
 
400
+ #: admin.inc.php:422
401
  msgid "Do you want to set options to Default?"
402
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
403
 
404
+ #: admin.inc.php:423
405
  msgid "Recreate Index"
406
  msgstr ""
407
 
408
+ #: admin.inc.php:423
409
  msgid "Are you sure you want to recreate the index?"
410
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
411
 
412
+ #: admin.inc.php:441
413
  #, fuzzy
414
  msgid "Contextual Related Posts"
415
  msgstr "Related Posts (Lignende indlæg)"
416
 
417
+ #: admin.inc.php:441 contextual-related-posts.php:277
418
  msgid "Related Posts"
419
  msgstr "Related Posts (Lignende indlæg)"
420
 
421
+ #: admin.inc.php:449
422
  msgid "plugin settings page"
423
  msgstr ""
424
 
425
+ #: admin.inc.php:454
426
  msgid ""
427
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
428
  "visit the "
429
  msgstr ""
430
 
431
+ #: admin.inc.php:454
432
  msgid " to configure."
433
  msgstr ""
434
 
languages/crp-de_DE.mo CHANGED
Binary file
languages/crp-de_DE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:41-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -23,91 +23,91 @@ msgstr "Optionen gespeichert."
23
  msgid "Options set to Default."
24
  msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
25
 
26
- #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "Index aufgefrischt"
29
 
30
- #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "Unterstützen Sie die Entwicklung"
33
 
34
- #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "Den Betrag in USD eingeben: "
37
 
38
- #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "Schicken Sie eine Spende an den Autor von"
41
 
42
- #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links"
46
 
47
- #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
- #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "Weitere Plugins"
55
 
56
- #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr "Ajay's Blog"
59
 
60
- #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Support"
63
 
64
- #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "Neueste Entwicklungen"
71
 
72
- #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:185
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:187
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
- #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
89
 
90
- #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
- #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
- #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
- #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
- #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
- #: admin.inc.php:211
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -117,55 +117,55 @@ msgstr ""
117
  "Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
118
  "Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
119
 
120
- #: admin.inc.php:213
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
- #: admin.inc.php:216
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
- #: admin.inc.php:232
129
  msgid ""
130
  "Comma separated list of category slugs. The field above has an autocomplete "
131
  "so simply start typing in the starting letters and it will prompt you with "
132
  "options"
133
  msgstr ""
134
 
135
- #: admin.inc.php:235
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
139
 
140
- #: admin.inc.php:237
141
  msgid "Posts"
142
  msgstr ""
143
 
144
- #: admin.inc.php:238
145
  msgid "Pages"
146
  msgstr ""
147
 
148
- #: admin.inc.php:239
149
  msgid "Home page"
150
  msgstr ""
151
 
152
- #: admin.inc.php:240
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
- #: admin.inc.php:241
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
- #: admin.inc.php:242
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
- #: admin.inc.php:243
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
- #: admin.inc.php:244
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -177,152 +177,152 @@ msgstr ""
177
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem "
178
  "die ähnlichen Beiträge aufgeliistet werden sollen"
179
 
180
- #: admin.inc.php:247
181
  msgid "Add a link to the plugin page as a final item in the list"
182
  msgstr ""
183
 
184
- #: admin.inc.php:248
185
  msgid " <em>Optional</em>"
186
  msgstr ""
187
 
188
- #: admin.inc.php:255
189
  #, fuzzy
190
  msgid "Output options"
191
  msgstr "Ausgabeotionen:"
192
 
193
- #: admin.inc.php:257
194
  msgid "Title of related posts: "
195
  msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
196
 
197
- #: admin.inc.php:260
198
  msgid "When there are no posts, what should be shown?"
199
  msgstr ""
200
  "Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
201
  "werden?"
202
 
203
- #: admin.inc.php:264
204
  msgid "Blank Output"
205
  msgstr "Nichts"
206
 
207
- #: admin.inc.php:268
208
  msgid "Display:"
209
  msgstr ""
210
 
211
- #: admin.inc.php:272 admin.inc.php:366
212
  msgid "Show post excerpt in list?"
213
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
214
 
215
- #: admin.inc.php:275
216
  msgid "Length of excerpt (in words): "
217
  msgstr "Länge des Auszugs (in Worten): "
218
 
219
- #: admin.inc.php:278
220
  msgid "Limit post title length (in characters)"
221
  msgstr ""
222
 
223
- #: admin.inc.php:281
224
  msgid "Open links in new window"
225
  msgstr ""
226
 
227
- #: admin.inc.php:284
228
  msgid "Add nofollow attribute to links in the list"
229
  msgstr ""
230
 
231
- #: admin.inc.php:287
232
  #, fuzzy
233
  msgid "Exclude display of related posts on these posts / pages"
234
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
235
 
236
- #: admin.inc.php:290
237
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
238
  msgstr ""
239
 
240
- #: admin.inc.php:293
241
  msgid "Customize the output:"
242
  msgstr "Die Ausgabe anpassen:"
243
 
244
- #: admin.inc.php:295
245
  msgid "HTML to display before the list of posts: "
246
  msgstr "HTML vor der Beitragsliste: "
247
 
248
- #: admin.inc.php:298
249
  msgid "HTML to display before each list item: "
250
  msgstr "HTML vor jedem Listenelement: "
251
 
252
- #: admin.inc.php:301
253
  msgid "HTML to display after each list item: "
254
  msgstr "HTML nach jedem Listenelement: "
255
 
256
- #: admin.inc.php:304
257
  msgid "HTML to display after the list of posts: "
258
  msgstr "HTML nach der Beitragsliste: "
259
 
260
- #: admin.inc.php:307
261
  msgid "Post thumbnail options:"
262
  msgstr "Optionen für die Beitrags-Thumbnails:"
263
 
264
- #: admin.inc.php:309 admin.inc.php:369
265
  msgid "Location of post thumbnail:"
266
  msgstr ""
267
 
268
- #: admin.inc.php:313 admin.inc.php:373
269
  #, fuzzy
270
  msgid "Display thumbnails inline with posts, before title"
271
  msgstr "Thumbnails und Beitragstitel anzeigen"
272
 
273
- #: admin.inc.php:317 admin.inc.php:377
274
  #, fuzzy
275
  msgid "Display thumbnails inline with posts, after title"
276
  msgstr "Thumbnails und Beitragstitel anzeigen"
277
 
278
- #: admin.inc.php:321 admin.inc.php:381
279
  msgid "Display only thumbnails, no text"
280
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
281
 
282
- #: admin.inc.php:325 admin.inc.php:385
283
  msgid "Do not display thumbnails, only text."
284
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
285
 
286
- #: admin.inc.php:329 admin.inc.php:389
287
  msgid "Maximum width of the thumbnail: "
288
  msgstr ""
289
 
290
- #: admin.inc.php:332 admin.inc.php:392
291
  msgid "Maximum height of the thumbnail: "
292
  msgstr ""
293
 
294
- #: admin.inc.php:335
295
  msgid "Use timthumb to generate thumbnails? "
296
  msgstr ""
297
 
298
- #: admin.inc.php:336
299
  msgid ""
300
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
301
  "\">timthumb</a> will be used to generate thumbnails"
302
  msgstr ""
303
 
304
- #: admin.inc.php:338
305
  msgid "Quality of thumbnails generated by timthumb"
306
  msgstr ""
307
 
308
- #: admin.inc.php:341
309
  msgid ""
310
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
311
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
312
  msgstr ""
313
 
314
- #: admin.inc.php:344
315
  #, fuzzy
316
  msgid "Post thumbnail meta field name: "
317
  msgstr "Optionen für die Beitrags-Thumbnails:"
318
 
319
- #: admin.inc.php:345
320
  msgid ""
321
  "The value of this field should contain the image source and is set in the "
322
  "<em>Add New Post</em> screen"
323
  msgstr ""
324
 
325
- #: admin.inc.php:347
326
  #, fuzzy
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -332,7 +332,7 @@ msgstr ""
332
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
333
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
334
 
335
- #: admin.inc.php:348
336
  #, fuzzy
337
  msgid ""
338
  "This can slow down the loading of your page if the first image in the "
@@ -342,21 +342,21 @@ msgstr ""
342
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
343
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
344
 
345
- #: admin.inc.php:350
346
  msgid "Use default thumbnail? "
347
  msgstr ""
348
 
349
- #: admin.inc.php:351
350
  msgid ""
351
  "If checked, when no thumbnail is found, show a default one from the URL "
352
  "below. If not checked and no thumbnail is found, no image will be shown."
353
  msgstr ""
354
 
355
- #: admin.inc.php:353
356
  msgid "Default thumbnail: "
357
  msgstr ""
358
 
359
- #: admin.inc.php:354
360
  #, fuzzy
361
  msgid ""
362
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -367,75 +367,75 @@ msgstr ""
367
  "nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
368
  "wird das unten spezifizierte Default-Thumbnail angezeigt:"
369
 
370
- #: admin.inc.php:359
371
  #, fuzzy
372
  msgid "Feed options"
373
  msgstr "Optionen:"
374
 
375
- #: admin.inc.php:361
376
  msgid ""
377
  "Below options override the related posts settings for your blog feed. These "
378
  "only apply if you have selected to add related posts to Feeds in the General "
379
  "Options tab."
380
  msgstr ""
381
 
382
- #: admin.inc.php:398
383
  msgid "Custom Styles"
384
  msgstr ""
385
 
386
- #: admin.inc.php:400
387
  msgid "Custom CSS to add to header:"
388
  msgstr ""
389
 
390
- #: admin.inc.php:403
391
  msgid ""
392
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
393
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
394
  "\">FAQ</a> for available CSS classes to style."
395
  msgstr ""
396
 
397
- #: admin.inc.php:407
398
  #, fuzzy
399
  msgid "Save Options"
400
  msgstr "Optionen:"
401
 
402
- #: admin.inc.php:408
403
  #, fuzzy
404
  msgid "Default Options"
405
  msgstr "Ausgabeotionen:"
406
 
407
- #: admin.inc.php:408
408
  msgid "Do you want to set options to Default?"
409
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
410
 
411
- #: admin.inc.php:409
412
  msgid "Recreate Index"
413
  msgstr ""
414
 
415
- #: admin.inc.php:409
416
  msgid "Are you sure you want to recreate the index?"
417
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
418
 
419
- #: admin.inc.php:426
420
  msgid "Contextual Related Posts"
421
  msgstr "Contextual Related Posts"
422
 
423
- #: admin.inc.php:426 contextual-related-posts.php:277
424
  msgid "Related Posts"
425
  msgstr "Related Posts"
426
 
427
- #: admin.inc.php:434
428
  #, fuzzy
429
  msgid "plugin settings page"
430
  msgstr "Plugin-Seite"
431
 
432
- #: admin.inc.php:439
433
  msgid ""
434
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
435
  "visit the "
436
  msgstr ""
437
 
438
- #: admin.inc.php:439
439
  msgid " to configure."
440
  msgstr ""
441
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:01-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
23
  msgid "Options set to Default."
24
  msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
25
 
26
+ #: admin.inc.php:128
27
  msgid "Index recreated"
28
  msgstr "Index aufgefrischt"
29
 
30
+ #: admin.inc.php:141
31
  msgid "Support the development"
32
  msgstr "Unterstützen Sie die Entwicklung"
33
 
34
+ #: admin.inc.php:149
35
  msgid "Enter amount in USD: "
36
  msgstr "Den Betrag in USD eingeben: "
37
 
38
+ #: admin.inc.php:153
39
  msgid "Send your donation to the author of"
40
  msgstr "Schicken Sie eine Spende an den Autor von"
41
 
42
+ #: admin.inc.php:164
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links"
46
 
47
+ #: admin.inc.php:166
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:167
53
  msgid "Other plugins"
54
  msgstr "Weitere Plugins"
55
 
56
+ #: admin.inc.php:168
57
  msgid "Ajay's blog"
58
  msgstr "Ajay's Blog"
59
 
60
+ #: admin.inc.php:169 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Support"
63
 
64
+ #: admin.inc.php:170
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:174
69
  msgid "Recent developments"
70
  msgstr "Neueste Entwicklungen"
71
 
72
+ #: admin.inc.php:184
73
  msgid "General options"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:186
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:188
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
+ #: admin.inc.php:191 admin.inc.php:376
87
  msgid "Number of related posts to display: "
88
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
89
 
90
+ #: admin.inc.php:194
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:195
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:197
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:208
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:211
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:213
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
117
  "Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
118
  "Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
119
 
120
+ #: admin.inc.php:216
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
+ #: admin.inc.php:219
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
+ #: admin.inc.php:235
129
  msgid ""
130
  "Comma separated list of category slugs. The field above has an autocomplete "
131
  "so simply start typing in the starting letters and it will prompt you with "
132
  "options"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:238
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
139
 
140
+ #: admin.inc.php:240
141
  msgid "Posts"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:241
145
  msgid "Pages"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:242
149
  msgid "Home page"
150
  msgstr ""
151
 
152
+ #: admin.inc.php:243
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:244
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:245
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:246
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:247
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
177
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem "
178
  "die ähnlichen Beiträge aufgeliistet werden sollen"
179
 
180
+ #: admin.inc.php:250
181
  msgid "Add a link to the plugin page as a final item in the list"
182
  msgstr ""
183
 
184
+ #: admin.inc.php:251
185
  msgid " <em>Optional</em>"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:258
189
  #, fuzzy
190
  msgid "Output options"
191
  msgstr "Ausgabeotionen:"
192
 
193
+ #: admin.inc.php:260
194
  msgid "Title of related posts: "
195
  msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
196
 
197
+ #: admin.inc.php:263
198
  msgid "When there are no posts, what should be shown?"
199
  msgstr ""
200
  "Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
201
  "werden?"
202
 
203
+ #: admin.inc.php:267
204
  msgid "Blank Output"
205
  msgstr "Nichts"
206
 
207
+ #: admin.inc.php:271
208
  msgid "Display:"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:275 admin.inc.php:379
212
  msgid "Show post excerpt in list?"
213
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
214
 
215
+ #: admin.inc.php:278
216
  msgid "Length of excerpt (in words): "
217
  msgstr "Länge des Auszugs (in Worten): "
218
 
219
+ #: admin.inc.php:281
220
  msgid "Limit post title length (in characters)"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:284
224
  msgid "Open links in new window"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:287
228
  msgid "Add nofollow attribute to links in the list"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:290
232
  #, fuzzy
233
  msgid "Exclude display of related posts on these posts / pages"
234
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
235
 
236
+ #: admin.inc.php:293
237
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
238
  msgstr ""
239
 
240
+ #: admin.inc.php:296
241
  msgid "Customize the output:"
242
  msgstr "Die Ausgabe anpassen:"
243
 
244
+ #: admin.inc.php:298
245
  msgid "HTML to display before the list of posts: "
246
  msgstr "HTML vor der Beitragsliste: "
247
 
248
+ #: admin.inc.php:301
249
  msgid "HTML to display before each list item: "
250
  msgstr "HTML vor jedem Listenelement: "
251
 
252
+ #: admin.inc.php:304
253
  msgid "HTML to display after each list item: "
254
  msgstr "HTML nach jedem Listenelement: "
255
 
256
+ #: admin.inc.php:307
257
  msgid "HTML to display after the list of posts: "
258
  msgstr "HTML nach der Beitragsliste: "
259
 
260
+ #: admin.inc.php:310
261
  msgid "Post thumbnail options:"
262
  msgstr "Optionen für die Beitrags-Thumbnails:"
263
 
264
+ #: admin.inc.php:312 admin.inc.php:382
265
  msgid "Location of post thumbnail:"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:316 admin.inc.php:386
269
  #, fuzzy
270
  msgid "Display thumbnails inline with posts, before title"
271
  msgstr "Thumbnails und Beitragstitel anzeigen"
272
 
273
+ #: admin.inc.php:320 admin.inc.php:390
274
  #, fuzzy
275
  msgid "Display thumbnails inline with posts, after title"
276
  msgstr "Thumbnails und Beitragstitel anzeigen"
277
 
278
+ #: admin.inc.php:324 admin.inc.php:394
279
  msgid "Display only thumbnails, no text"
280
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
281
 
282
+ #: admin.inc.php:328 admin.inc.php:398
283
  msgid "Do not display thumbnails, only text."
284
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
285
 
286
+ #: admin.inc.php:332 admin.inc.php:402
287
  msgid "Maximum width of the thumbnail: "
288
  msgstr ""
289
 
290
+ #: admin.inc.php:335 admin.inc.php:405
291
  msgid "Maximum height of the thumbnail: "
292
  msgstr ""
293
 
294
+ #: admin.inc.php:338
295
  msgid "Use timthumb to generate thumbnails? "
296
  msgstr ""
297
 
298
+ #: admin.inc.php:340
299
  msgid ""
300
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
301
  "\">timthumb</a> will be used to generate thumbnails"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:343
305
  msgid "Quality of thumbnails generated by timthumb"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:346
309
  msgid ""
310
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
311
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
312
  msgstr ""
313
 
314
+ #: admin.inc.php:349
315
  #, fuzzy
316
  msgid "Post thumbnail meta field name: "
317
  msgstr "Optionen für die Beitrags-Thumbnails:"
318
 
319
+ #: admin.inc.php:351
320
  msgid ""
321
  "The value of this field should contain the image source and is set in the "
322
  "<em>Add New Post</em> screen"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:354
326
  #, fuzzy
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
332
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
333
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
334
 
335
+ #: admin.inc.php:356
336
  #, fuzzy
337
  msgid ""
338
  "This can slow down the loading of your page if the first image in the "
342
  "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
343
  "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
344
 
345
+ #: admin.inc.php:359
346
  msgid "Use default thumbnail? "
347
  msgstr ""
348
 
349
+ #: admin.inc.php:361
350
  msgid ""
351
  "If checked, when no thumbnail is found, show a default one from the URL "
352
  "below. If not checked and no thumbnail is found, no image will be shown."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:364
356
  msgid "Default thumbnail: "
357
  msgstr ""
358
 
359
+ #: admin.inc.php:366
360
  #, fuzzy
361
  msgid ""
362
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
367
  "nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
368
  "wird das unten spezifizierte Default-Thumbnail angezeigt:"
369
 
370
+ #: admin.inc.php:372
371
  #, fuzzy
372
  msgid "Feed options"
373
  msgstr "Optionen:"
374
 
375
+ #: admin.inc.php:374
376
  msgid ""
377
  "Below options override the related posts settings for your blog feed. These "
378
  "only apply if you have selected to add related posts to Feeds in the General "
379
  "Options tab."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:411
383
  msgid "Custom Styles"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:413
387
  msgid "Custom CSS to add to header:"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:416
391
  msgid ""
392
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
393
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
394
  "\">FAQ</a> for available CSS classes to style."
395
  msgstr ""
396
 
397
+ #: admin.inc.php:421
398
  #, fuzzy
399
  msgid "Save Options"
400
  msgstr "Optionen:"
401
 
402
+ #: admin.inc.php:422
403
  #, fuzzy
404
  msgid "Default Options"
405
  msgstr "Ausgabeotionen:"
406
 
407
+ #: admin.inc.php:422
408
  msgid "Do you want to set options to Default?"
409
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
410
 
411
+ #: admin.inc.php:423
412
  msgid "Recreate Index"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:423
416
  msgid "Are you sure you want to recreate the index?"
417
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
418
 
419
+ #: admin.inc.php:441
420
  msgid "Contextual Related Posts"
421
  msgstr "Contextual Related Posts"
422
 
423
+ #: admin.inc.php:441 contextual-related-posts.php:277
424
  msgid "Related Posts"
425
  msgstr "Related Posts"
426
 
427
+ #: admin.inc.php:449
428
  #, fuzzy
429
  msgid "plugin settings page"
430
  msgstr "Plugin-Seite"
431
 
432
+ #: admin.inc.php:454
433
  msgid ""
434
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
435
  "visit the "
436
  msgstr ""
437
 
438
+ #: admin.inc.php:454
439
  msgid " to configure."
440
  msgstr ""
441
 
languages/crp-en_US.mo CHANGED
Binary file
languages/crp-en_US.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:39-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -23,384 +23,384 @@ msgstr ""
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
- #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
- #: admin.inc.php:163
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
- #: admin.inc.php:165
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
- #: admin.inc.php:166
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
- #: admin.inc.php:167
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
- #: admin.inc.php:168 contextual-related-posts.php:662
59
  msgid "Support"
60
  msgstr ""
61
 
62
- #: admin.inc.php:169
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
- #: admin.inc.php:173
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
- #: admin.inc.php:183
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:185
75
  msgid "Cache output?"
76
  msgstr ""
77
 
78
- #: admin.inc.php:187
79
  msgid ""
80
  "Enabling this option will cache the related posts output when the post is "
81
  "visited the first time. The cache is cleaned when you save this page."
82
  msgstr ""
83
 
84
- #: admin.inc.php:190 admin.inc.php:363
85
  msgid "Number of related posts to display: "
86
  msgstr ""
87
 
88
- #: admin.inc.php:193
89
  msgid "Related posts should be newer than:"
90
  msgstr ""
91
 
92
- #: admin.inc.php:194
93
  msgid "days"
94
  msgstr ""
95
 
96
- #: admin.inc.php:196
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
- #: admin.inc.php:207
101
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
102
  msgstr ""
103
 
104
- #: admin.inc.php:210
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
- #: admin.inc.php:211
109
  msgid ""
110
  "If unchecked, only posts titles are used. (I recommend using a caching "
111
  "plugin if you enable this)"
112
  msgstr ""
113
 
114
- #: admin.inc.php:213
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:216
119
  msgid "Categories to exclude from the results: "
120
  msgstr ""
121
 
122
- #: admin.inc.php:232
123
  msgid ""
124
  "Comma separated list of category slugs. The field above has an autocomplete "
125
  "so simply start typing in the starting letters and it will prompt you with "
126
  "options"
127
  msgstr ""
128
 
129
- #: admin.inc.php:235
130
  msgid "Add related posts to:"
131
  msgstr ""
132
 
133
- #: admin.inc.php:237
134
  msgid "Posts"
135
  msgstr ""
136
 
137
- #: admin.inc.php:238
138
  msgid "Pages"
139
  msgstr ""
140
 
141
- #: admin.inc.php:239
142
  msgid "Home page"
143
  msgstr ""
144
 
145
- #: admin.inc.php:240
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
- #: admin.inc.php:241
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
- #: admin.inc.php:242
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
- #: admin.inc.php:243
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:244
162
  msgid ""
163
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
164
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
165
  "you want it displayed"
166
  msgstr ""
167
 
168
- #: admin.inc.php:247
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
- #: admin.inc.php:248
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
- #: admin.inc.php:255
177
  msgid "Output options"
178
  msgstr ""
179
 
180
- #: admin.inc.php:257
181
  msgid "Title of related posts: "
182
  msgstr ""
183
 
184
- #: admin.inc.php:260
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
- #: admin.inc.php:264
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
- #: admin.inc.php:268
193
  msgid "Display:"
194
  msgstr ""
195
 
196
- #: admin.inc.php:272 admin.inc.php:366
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
- #: admin.inc.php:275
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
- #: admin.inc.php:278
205
  msgid "Limit post title length (in characters)"
206
  msgstr ""
207
 
208
- #: admin.inc.php:281
209
  msgid "Open links in new window"
210
  msgstr ""
211
 
212
- #: admin.inc.php:284
213
  msgid "Add nofollow attribute to links in the list"
214
  msgstr ""
215
 
216
- #: admin.inc.php:287
217
  msgid "Exclude display of related posts on these posts / pages"
218
  msgstr ""
219
 
220
- #: admin.inc.php:290
221
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
222
  msgstr ""
223
 
224
- #: admin.inc.php:293
225
  msgid "Customize the output:"
226
  msgstr ""
227
 
228
- #: admin.inc.php:295
229
  msgid "HTML to display before the list of posts: "
230
  msgstr ""
231
 
232
- #: admin.inc.php:298
233
  msgid "HTML to display before each list item: "
234
  msgstr ""
235
 
236
- #: admin.inc.php:301
237
  msgid "HTML to display after each list item: "
238
  msgstr ""
239
 
240
- #: admin.inc.php:304
241
  msgid "HTML to display after the list of posts: "
242
  msgstr ""
243
 
244
- #: admin.inc.php:307
245
  msgid "Post thumbnail options:"
246
  msgstr ""
247
 
248
- #: admin.inc.php:309 admin.inc.php:369
249
  msgid "Location of post thumbnail:"
250
  msgstr ""
251
 
252
- #: admin.inc.php:313 admin.inc.php:373
253
  msgid "Display thumbnails inline with posts, before title"
254
  msgstr ""
255
 
256
- #: admin.inc.php:317 admin.inc.php:377
257
  msgid "Display thumbnails inline with posts, after title"
258
  msgstr ""
259
 
260
- #: admin.inc.php:321 admin.inc.php:381
261
  msgid "Display only thumbnails, no text"
262
  msgstr ""
263
 
264
- #: admin.inc.php:325 admin.inc.php:385
265
  msgid "Do not display thumbnails, only text."
266
  msgstr ""
267
 
268
- #: admin.inc.php:329 admin.inc.php:389
269
  msgid "Maximum width of the thumbnail: "
270
  msgstr ""
271
 
272
- #: admin.inc.php:332 admin.inc.php:392
273
  msgid "Maximum height of the thumbnail: "
274
  msgstr ""
275
 
276
- #: admin.inc.php:335
277
  msgid "Use timthumb to generate thumbnails? "
278
  msgstr ""
279
 
280
- #: admin.inc.php:336
281
  msgid ""
282
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
283
  "\">timthumb</a> will be used to generate thumbnails"
284
  msgstr ""
285
 
286
- #: admin.inc.php:338
287
  msgid "Quality of thumbnails generated by timthumb"
288
  msgstr ""
289
 
290
- #: admin.inc.php:341
291
  msgid ""
292
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
293
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
294
  msgstr ""
295
 
296
- #: admin.inc.php:344
297
  msgid "Post thumbnail meta field name: "
298
  msgstr ""
299
 
300
- #: admin.inc.php:345
301
  msgid ""
302
  "The value of this field should contain the image source and is set in the "
303
  "<em>Add New Post</em> screen"
304
  msgstr ""
305
 
306
- #: admin.inc.php:347
307
  msgid ""
308
  "If the postmeta is not set, then should the plugin extract the first image "
309
  "from the post?"
310
  msgstr ""
311
 
312
- #: admin.inc.php:348
313
  msgid ""
314
  "This can slow down the loading of your page if the first image in the "
315
  "related posts is large in file-size"
316
  msgstr ""
317
 
318
- #: admin.inc.php:350
319
  msgid "Use default thumbnail? "
320
  msgstr ""
321
 
322
- #: admin.inc.php:351
323
  msgid ""
324
  "If checked, when no thumbnail is found, show a default one from the URL "
325
  "below. If not checked and no thumbnail is found, no image will be shown."
326
  msgstr ""
327
 
328
- #: admin.inc.php:353
329
  msgid "Default thumbnail: "
330
  msgstr ""
331
 
332
- #: admin.inc.php:354
333
  msgid ""
334
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
335
  "then it will check the meta field. If this is not available, then it will "
336
  "show the default image as specified above"
337
  msgstr ""
338
 
339
- #: admin.inc.php:359
340
  msgid "Feed options"
341
  msgstr ""
342
 
343
- #: admin.inc.php:361
344
  msgid ""
345
  "Below options override the related posts settings for your blog feed. These "
346
  "only apply if you have selected to add related posts to Feeds in the General "
347
  "Options tab."
348
  msgstr ""
349
 
350
- #: admin.inc.php:398
351
  msgid "Custom Styles"
352
  msgstr ""
353
 
354
- #: admin.inc.php:400
355
  msgid "Custom CSS to add to header:"
356
  msgstr ""
357
 
358
- #: admin.inc.php:403
359
  msgid ""
360
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
361
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
362
  "\">FAQ</a> for available CSS classes to style."
363
  msgstr ""
364
 
365
- #: admin.inc.php:407
366
  msgid "Save Options"
367
  msgstr ""
368
 
369
- #: admin.inc.php:408
370
  msgid "Default Options"
371
  msgstr ""
372
 
373
- #: admin.inc.php:408
374
  msgid "Do you want to set options to Default?"
375
  msgstr ""
376
 
377
- #: admin.inc.php:409
378
  msgid "Recreate Index"
379
  msgstr ""
380
 
381
- #: admin.inc.php:409
382
  msgid "Are you sure you want to recreate the index?"
383
  msgstr ""
384
 
385
- #: admin.inc.php:426
386
  msgid "Contextual Related Posts"
387
  msgstr ""
388
 
389
- #: admin.inc.php:426 contextual-related-posts.php:277
390
  msgid "Related Posts"
391
  msgstr ""
392
 
393
- #: admin.inc.php:434
394
  msgid "plugin settings page"
395
  msgstr ""
396
 
397
- #: admin.inc.php:439
398
  msgid ""
399
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
400
  "visit the "
401
  msgstr ""
402
 
403
- #: admin.inc.php:439
404
  msgid " to configure."
405
  msgstr ""
406
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:00-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:128
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:141
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:149
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
+ #: admin.inc.php:153
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:164
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:166
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:167
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:168
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:169 contextual-related-posts.php:662
59
  msgid "Support"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:170
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:174
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:184
71
  msgid "General options"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:186
75
  msgid "Cache output?"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:188
79
  msgid ""
80
  "Enabling this option will cache the related posts output when the post is "
81
  "visited the first time. The cache is cleaned when you save this page."
82
  msgstr ""
83
 
84
+ #: admin.inc.php:191 admin.inc.php:376
85
  msgid "Number of related posts to display: "
86
  msgstr ""
87
 
88
+ #: admin.inc.php:194
89
  msgid "Related posts should be newer than:"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:195
93
  msgid "days"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:197
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:208
101
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:211
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:213
109
  msgid ""
110
  "If unchecked, only posts titles are used. (I recommend using a caching "
111
  "plugin if you enable this)"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:216
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:219
119
  msgid "Categories to exclude from the results: "
120
  msgstr ""
121
 
122
+ #: admin.inc.php:235
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:238
130
  msgid "Add related posts to:"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:240
134
  msgid "Posts"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:241
138
  msgid "Pages"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:242
142
  msgid "Home page"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:243
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:244
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:245
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:246
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:247
162
  msgid ""
163
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
164
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
165
  "you want it displayed"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:250
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:251
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:258
177
  msgid "Output options"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:260
181
  msgid "Title of related posts: "
182
  msgstr ""
183
 
184
+ #: admin.inc.php:263
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:267
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:271
193
  msgid "Display:"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:275 admin.inc.php:379
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:278
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
+ #: admin.inc.php:281
205
  msgid "Limit post title length (in characters)"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:284
209
  msgid "Open links in new window"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:287
213
  msgid "Add nofollow attribute to links in the list"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:290
217
  msgid "Exclude display of related posts on these posts / pages"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:293
221
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:296
225
  msgid "Customize the output:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:298
229
  msgid "HTML to display before the list of posts: "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:301
233
  msgid "HTML to display before each list item: "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:304
237
  msgid "HTML to display after each list item: "
238
  msgstr ""
239
 
240
+ #: admin.inc.php:307
241
  msgid "HTML to display after the list of posts: "
242
  msgstr ""
243
 
244
+ #: admin.inc.php:310
245
  msgid "Post thumbnail options:"
246
  msgstr ""
247
 
248
+ #: admin.inc.php:312 admin.inc.php:382
249
  msgid "Location of post thumbnail:"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:316 admin.inc.php:386
253
  msgid "Display thumbnails inline with posts, before title"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:320 admin.inc.php:390
257
  msgid "Display thumbnails inline with posts, after title"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:324 admin.inc.php:394
261
  msgid "Display only thumbnails, no text"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:328 admin.inc.php:398
265
  msgid "Do not display thumbnails, only text."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:332 admin.inc.php:402
269
  msgid "Maximum width of the thumbnail: "
270
  msgstr ""
271
 
272
+ #: admin.inc.php:335 admin.inc.php:405
273
  msgid "Maximum height of the thumbnail: "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:338
277
  msgid "Use timthumb to generate thumbnails? "
278
  msgstr ""
279
 
280
+ #: admin.inc.php:340
281
  msgid ""
282
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
283
  "\">timthumb</a> will be used to generate thumbnails"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:343
287
  msgid "Quality of thumbnails generated by timthumb"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:346
291
  msgid ""
292
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
293
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
294
  msgstr ""
295
 
296
+ #: admin.inc.php:349
297
  msgid "Post thumbnail meta field name: "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:351
301
  msgid ""
302
  "The value of this field should contain the image source and is set in the "
303
  "<em>Add New Post</em> screen"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:354
307
  msgid ""
308
  "If the postmeta is not set, then should the plugin extract the first image "
309
  "from the post?"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:356
313
  msgid ""
314
  "This can slow down the loading of your page if the first image in the "
315
  "related posts is large in file-size"
316
  msgstr ""
317
 
318
+ #: admin.inc.php:359
319
  msgid "Use default thumbnail? "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:361
323
  msgid ""
324
  "If checked, when no thumbnail is found, show a default one from the URL "
325
  "below. If not checked and no thumbnail is found, no image will be shown."
326
  msgstr ""
327
 
328
+ #: admin.inc.php:364
329
  msgid "Default thumbnail: "
330
  msgstr ""
331
 
332
+ #: admin.inc.php:366
333
  msgid ""
334
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
335
  "then it will check the meta field. If this is not available, then it will "
336
  "show the default image as specified above"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:372
340
  msgid "Feed options"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:374
344
  msgid ""
345
  "Below options override the related posts settings for your blog feed. These "
346
  "only apply if you have selected to add related posts to Feeds in the General "
347
  "Options tab."
348
  msgstr ""
349
 
350
+ #: admin.inc.php:411
351
  msgid "Custom Styles"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:413
355
  msgid "Custom CSS to add to header:"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:416
359
  msgid ""
360
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
361
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
362
  "\">FAQ</a> for available CSS classes to style."
363
  msgstr ""
364
 
365
+ #: admin.inc.php:421
366
  msgid "Save Options"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:422
370
  msgid "Default Options"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:422
374
  msgid "Do you want to set options to Default?"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:423
378
  msgid "Recreate Index"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:423
382
  msgid "Are you sure you want to recreate the index?"
383
  msgstr ""
384
 
385
+ #: admin.inc.php:441
386
  msgid "Contextual Related Posts"
387
  msgstr ""
388
 
389
+ #: admin.inc.php:441 contextual-related-posts.php:277
390
  msgid "Related Posts"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:449
394
  msgid "plugin settings page"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:454
398
  msgid ""
399
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
400
  "visit the "
401
  msgstr ""
402
 
403
+ #: admin.inc.php:454
404
  msgid " to configure."
405
  msgstr ""
406
 
languages/crp-en_US.pot CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:39-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -23,384 +23,384 @@ msgstr ""
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
- #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
- #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
- #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
- #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
- #: admin.inc.php:163
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
- #: admin.inc.php:165
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
- #: admin.inc.php:166
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
- #: admin.inc.php:167
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
- #: admin.inc.php:168 contextual-related-posts.php:662
59
  msgid "Support"
60
  msgstr ""
61
 
62
- #: admin.inc.php:169
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
- #: admin.inc.php:173
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
- #: admin.inc.php:183
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:185
75
  msgid "Cache output?"
76
  msgstr ""
77
 
78
- #: admin.inc.php:187
79
  msgid ""
80
  "Enabling this option will cache the related posts output when the post is "
81
  "visited the first time. The cache is cleaned when you save this page."
82
  msgstr ""
83
 
84
- #: admin.inc.php:190 admin.inc.php:363
85
  msgid "Number of related posts to display: "
86
  msgstr ""
87
 
88
- #: admin.inc.php:193
89
  msgid "Related posts should be newer than:"
90
  msgstr ""
91
 
92
- #: admin.inc.php:194
93
  msgid "days"
94
  msgstr ""
95
 
96
- #: admin.inc.php:196
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
- #: admin.inc.php:207
101
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
102
  msgstr ""
103
 
104
- #: admin.inc.php:210
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
- #: admin.inc.php:211
109
  msgid ""
110
  "If unchecked, only posts titles are used. (I recommend using a caching "
111
  "plugin if you enable this)"
112
  msgstr ""
113
 
114
- #: admin.inc.php:213
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
- #: admin.inc.php:216
119
  msgid "Categories to exclude from the results: "
120
  msgstr ""
121
 
122
- #: admin.inc.php:232
123
  msgid ""
124
  "Comma separated list of category slugs. The field above has an autocomplete "
125
  "so simply start typing in the starting letters and it will prompt you with "
126
  "options"
127
  msgstr ""
128
 
129
- #: admin.inc.php:235
130
  msgid "Add related posts to:"
131
  msgstr ""
132
 
133
- #: admin.inc.php:237
134
  msgid "Posts"
135
  msgstr ""
136
 
137
- #: admin.inc.php:238
138
  msgid "Pages"
139
  msgstr ""
140
 
141
- #: admin.inc.php:239
142
  msgid "Home page"
143
  msgstr ""
144
 
145
- #: admin.inc.php:240
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
- #: admin.inc.php:241
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
- #: admin.inc.php:242
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
- #: admin.inc.php:243
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:244
162
  msgid ""
163
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
164
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
165
  "you want it displayed"
166
  msgstr ""
167
 
168
- #: admin.inc.php:247
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
- #: admin.inc.php:248
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
- #: admin.inc.php:255
177
  msgid "Output options"
178
  msgstr ""
179
 
180
- #: admin.inc.php:257
181
  msgid "Title of related posts: "
182
  msgstr ""
183
 
184
- #: admin.inc.php:260
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
- #: admin.inc.php:264
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
- #: admin.inc.php:268
193
  msgid "Display:"
194
  msgstr ""
195
 
196
- #: admin.inc.php:272 admin.inc.php:366
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
- #: admin.inc.php:275
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
- #: admin.inc.php:278
205
  msgid "Limit post title length (in characters)"
206
  msgstr ""
207
 
208
- #: admin.inc.php:281
209
  msgid "Open links in new window"
210
  msgstr ""
211
 
212
- #: admin.inc.php:284
213
  msgid "Add nofollow attribute to links in the list"
214
  msgstr ""
215
 
216
- #: admin.inc.php:287
217
  msgid "Exclude display of related posts on these posts / pages"
218
  msgstr ""
219
 
220
- #: admin.inc.php:290
221
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
222
  msgstr ""
223
 
224
- #: admin.inc.php:293
225
  msgid "Customize the output:"
226
  msgstr ""
227
 
228
- #: admin.inc.php:295
229
  msgid "HTML to display before the list of posts: "
230
  msgstr ""
231
 
232
- #: admin.inc.php:298
233
  msgid "HTML to display before each list item: "
234
  msgstr ""
235
 
236
- #: admin.inc.php:301
237
  msgid "HTML to display after each list item: "
238
  msgstr ""
239
 
240
- #: admin.inc.php:304
241
  msgid "HTML to display after the list of posts: "
242
  msgstr ""
243
 
244
- #: admin.inc.php:307
245
  msgid "Post thumbnail options:"
246
  msgstr ""
247
 
248
- #: admin.inc.php:309 admin.inc.php:369
249
  msgid "Location of post thumbnail:"
250
  msgstr ""
251
 
252
- #: admin.inc.php:313 admin.inc.php:373
253
  msgid "Display thumbnails inline with posts, before title"
254
  msgstr ""
255
 
256
- #: admin.inc.php:317 admin.inc.php:377
257
  msgid "Display thumbnails inline with posts, after title"
258
  msgstr ""
259
 
260
- #: admin.inc.php:321 admin.inc.php:381
261
  msgid "Display only thumbnails, no text"
262
  msgstr ""
263
 
264
- #: admin.inc.php:325 admin.inc.php:385
265
  msgid "Do not display thumbnails, only text."
266
  msgstr ""
267
 
268
- #: admin.inc.php:329 admin.inc.php:389
269
  msgid "Maximum width of the thumbnail: "
270
  msgstr ""
271
 
272
- #: admin.inc.php:332 admin.inc.php:392
273
  msgid "Maximum height of the thumbnail: "
274
  msgstr ""
275
 
276
- #: admin.inc.php:335
277
  msgid "Use timthumb to generate thumbnails? "
278
  msgstr ""
279
 
280
- #: admin.inc.php:336
281
  msgid ""
282
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
283
  "\">timthumb</a> will be used to generate thumbnails"
284
  msgstr ""
285
 
286
- #: admin.inc.php:338
287
  msgid "Quality of thumbnails generated by timthumb"
288
  msgstr ""
289
 
290
- #: admin.inc.php:341
291
  msgid ""
292
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
293
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
294
  msgstr ""
295
 
296
- #: admin.inc.php:344
297
  msgid "Post thumbnail meta field name: "
298
  msgstr ""
299
 
300
- #: admin.inc.php:345
301
  msgid ""
302
  "The value of this field should contain the image source and is set in the "
303
  "<em>Add New Post</em> screen"
304
  msgstr ""
305
 
306
- #: admin.inc.php:347
307
  msgid ""
308
  "If the postmeta is not set, then should the plugin extract the first image "
309
  "from the post?"
310
  msgstr ""
311
 
312
- #: admin.inc.php:348
313
  msgid ""
314
  "This can slow down the loading of your page if the first image in the "
315
  "related posts is large in file-size"
316
  msgstr ""
317
 
318
- #: admin.inc.php:350
319
  msgid "Use default thumbnail? "
320
  msgstr ""
321
 
322
- #: admin.inc.php:351
323
  msgid ""
324
  "If checked, when no thumbnail is found, show a default one from the URL "
325
  "below. If not checked and no thumbnail is found, no image will be shown."
326
  msgstr ""
327
 
328
- #: admin.inc.php:353
329
  msgid "Default thumbnail: "
330
  msgstr ""
331
 
332
- #: admin.inc.php:354
333
  msgid ""
334
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
335
  "then it will check the meta field. If this is not available, then it will "
336
  "show the default image as specified above"
337
  msgstr ""
338
 
339
- #: admin.inc.php:359
340
  msgid "Feed options"
341
  msgstr ""
342
 
343
- #: admin.inc.php:361
344
  msgid ""
345
  "Below options override the related posts settings for your blog feed. These "
346
  "only apply if you have selected to add related posts to Feeds in the General "
347
  "Options tab."
348
  msgstr ""
349
 
350
- #: admin.inc.php:398
351
  msgid "Custom Styles"
352
  msgstr ""
353
 
354
- #: admin.inc.php:400
355
  msgid "Custom CSS to add to header:"
356
  msgstr ""
357
 
358
- #: admin.inc.php:403
359
  msgid ""
360
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
361
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
362
  "\">FAQ</a> for available CSS classes to style."
363
  msgstr ""
364
 
365
- #: admin.inc.php:407
366
  msgid "Save Options"
367
  msgstr ""
368
 
369
- #: admin.inc.php:408
370
  msgid "Default Options"
371
  msgstr ""
372
 
373
- #: admin.inc.php:408
374
  msgid "Do you want to set options to Default?"
375
  msgstr ""
376
 
377
- #: admin.inc.php:409
378
  msgid "Recreate Index"
379
  msgstr ""
380
 
381
- #: admin.inc.php:409
382
  msgid "Are you sure you want to recreate the index?"
383
  msgstr ""
384
 
385
- #: admin.inc.php:426
386
  msgid "Contextual Related Posts"
387
  msgstr ""
388
 
389
- #: admin.inc.php:426 contextual-related-posts.php:277
390
  msgid "Related Posts"
391
  msgstr ""
392
 
393
- #: admin.inc.php:434
394
  msgid "plugin settings page"
395
  msgstr ""
396
 
397
- #: admin.inc.php:439
398
  msgid ""
399
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
400
  "visit the "
401
  msgstr ""
402
 
403
- #: admin.inc.php:439
404
  msgid " to configure."
405
  msgstr ""
406
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:00-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:128
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:141
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:149
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
+ #: admin.inc.php:153
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:164
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:166
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:167
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:168
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:169 contextual-related-posts.php:662
59
  msgid "Support"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:170
63
  msgid "Reviews"
64
  msgstr ""
65
 
66
+ #: admin.inc.php:174
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:184
71
  msgid "General options"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:186
75
  msgid "Cache output?"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:188
79
  msgid ""
80
  "Enabling this option will cache the related posts output when the post is "
81
  "visited the first time. The cache is cleaned when you save this page."
82
  msgstr ""
83
 
84
+ #: admin.inc.php:191 admin.inc.php:376
85
  msgid "Number of related posts to display: "
86
  msgstr ""
87
 
88
+ #: admin.inc.php:194
89
  msgid "Related posts should be newer than:"
90
  msgstr ""
91
 
92
+ #: admin.inc.php:195
93
  msgid "days"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:197
97
  msgid "Post types to include in results (including custom post types)"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:208
101
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:211
105
  msgid "Find related posts based on content as well as title"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:213
109
  msgid ""
110
  "If unchecked, only posts titles are used. (I recommend using a caching "
111
  "plugin if you enable this)"
112
  msgstr ""
113
 
114
+ #: admin.inc.php:216
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:219
119
  msgid "Categories to exclude from the results: "
120
  msgstr ""
121
 
122
+ #: admin.inc.php:235
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:238
130
  msgid "Add related posts to:"
131
  msgstr ""
132
 
133
+ #: admin.inc.php:240
134
  msgid "Posts"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:241
138
  msgid "Pages"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:242
142
  msgid "Home page"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:243
146
  msgid "Feeds"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:244
150
  msgid "Category archives"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:245
154
  msgid "Tag archives"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:246
158
  msgid "Other archives"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:247
162
  msgid ""
163
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
164
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
165
  "you want it displayed"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:250
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:251
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:258
177
  msgid "Output options"
178
  msgstr ""
179
 
180
+ #: admin.inc.php:260
181
  msgid "Title of related posts: "
182
  msgstr ""
183
 
184
+ #: admin.inc.php:263
185
  msgid "When there are no posts, what should be shown?"
186
  msgstr ""
187
 
188
+ #: admin.inc.php:267
189
  msgid "Blank Output"
190
  msgstr ""
191
 
192
+ #: admin.inc.php:271
193
  msgid "Display:"
194
  msgstr ""
195
 
196
+ #: admin.inc.php:275 admin.inc.php:379
197
  msgid "Show post excerpt in list?"
198
  msgstr ""
199
 
200
+ #: admin.inc.php:278
201
  msgid "Length of excerpt (in words): "
202
  msgstr ""
203
 
204
+ #: admin.inc.php:281
205
  msgid "Limit post title length (in characters)"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:284
209
  msgid "Open links in new window"
210
  msgstr ""
211
 
212
+ #: admin.inc.php:287
213
  msgid "Add nofollow attribute to links in the list"
214
  msgstr ""
215
 
216
+ #: admin.inc.php:290
217
  msgid "Exclude display of related posts on these posts / pages"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:293
221
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:296
225
  msgid "Customize the output:"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:298
229
  msgid "HTML to display before the list of posts: "
230
  msgstr ""
231
 
232
+ #: admin.inc.php:301
233
  msgid "HTML to display before each list item: "
234
  msgstr ""
235
 
236
+ #: admin.inc.php:304
237
  msgid "HTML to display after each list item: "
238
  msgstr ""
239
 
240
+ #: admin.inc.php:307
241
  msgid "HTML to display after the list of posts: "
242
  msgstr ""
243
 
244
+ #: admin.inc.php:310
245
  msgid "Post thumbnail options:"
246
  msgstr ""
247
 
248
+ #: admin.inc.php:312 admin.inc.php:382
249
  msgid "Location of post thumbnail:"
250
  msgstr ""
251
 
252
+ #: admin.inc.php:316 admin.inc.php:386
253
  msgid "Display thumbnails inline with posts, before title"
254
  msgstr ""
255
 
256
+ #: admin.inc.php:320 admin.inc.php:390
257
  msgid "Display thumbnails inline with posts, after title"
258
  msgstr ""
259
 
260
+ #: admin.inc.php:324 admin.inc.php:394
261
  msgid "Display only thumbnails, no text"
262
  msgstr ""
263
 
264
+ #: admin.inc.php:328 admin.inc.php:398
265
  msgid "Do not display thumbnails, only text."
266
  msgstr ""
267
 
268
+ #: admin.inc.php:332 admin.inc.php:402
269
  msgid "Maximum width of the thumbnail: "
270
  msgstr ""
271
 
272
+ #: admin.inc.php:335 admin.inc.php:405
273
  msgid "Maximum height of the thumbnail: "
274
  msgstr ""
275
 
276
+ #: admin.inc.php:338
277
  msgid "Use timthumb to generate thumbnails? "
278
  msgstr ""
279
 
280
+ #: admin.inc.php:340
281
  msgid ""
282
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
283
  "\">timthumb</a> will be used to generate thumbnails"
284
  msgstr ""
285
 
286
+ #: admin.inc.php:343
287
  msgid "Quality of thumbnails generated by timthumb"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:346
291
  msgid ""
292
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
293
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
294
  msgstr ""
295
 
296
+ #: admin.inc.php:349
297
  msgid "Post thumbnail meta field name: "
298
  msgstr ""
299
 
300
+ #: admin.inc.php:351
301
  msgid ""
302
  "The value of this field should contain the image source and is set in the "
303
  "<em>Add New Post</em> screen"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:354
307
  msgid ""
308
  "If the postmeta is not set, then should the plugin extract the first image "
309
  "from the post?"
310
  msgstr ""
311
 
312
+ #: admin.inc.php:356
313
  msgid ""
314
  "This can slow down the loading of your page if the first image in the "
315
  "related posts is large in file-size"
316
  msgstr ""
317
 
318
+ #: admin.inc.php:359
319
  msgid "Use default thumbnail? "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:361
323
  msgid ""
324
  "If checked, when no thumbnail is found, show a default one from the URL "
325
  "below. If not checked and no thumbnail is found, no image will be shown."
326
  msgstr ""
327
 
328
+ #: admin.inc.php:364
329
  msgid "Default thumbnail: "
330
  msgstr ""
331
 
332
+ #: admin.inc.php:366
333
  msgid ""
334
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
335
  "then it will check the meta field. If this is not available, then it will "
336
  "show the default image as specified above"
337
  msgstr ""
338
 
339
+ #: admin.inc.php:372
340
  msgid "Feed options"
341
  msgstr ""
342
 
343
+ #: admin.inc.php:374
344
  msgid ""
345
  "Below options override the related posts settings for your blog feed. These "
346
  "only apply if you have selected to add related posts to Feeds in the General "
347
  "Options tab."
348
  msgstr ""
349
 
350
+ #: admin.inc.php:411
351
  msgid "Custom Styles"
352
  msgstr ""
353
 
354
+ #: admin.inc.php:413
355
  msgid "Custom CSS to add to header:"
356
  msgstr ""
357
 
358
+ #: admin.inc.php:416
359
  msgid ""
360
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
361
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
362
  "\">FAQ</a> for available CSS classes to style."
363
  msgstr ""
364
 
365
+ #: admin.inc.php:421
366
  msgid "Save Options"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:422
370
  msgid "Default Options"
371
  msgstr ""
372
 
373
+ #: admin.inc.php:422
374
  msgid "Do you want to set options to Default?"
375
  msgstr ""
376
 
377
+ #: admin.inc.php:423
378
  msgid "Recreate Index"
379
  msgstr ""
380
 
381
+ #: admin.inc.php:423
382
  msgid "Are you sure you want to recreate the index?"
383
  msgstr ""
384
 
385
+ #: admin.inc.php:441
386
  msgid "Contextual Related Posts"
387
  msgstr ""
388
 
389
+ #: admin.inc.php:441 contextual-related-posts.php:277
390
  msgid "Related Posts"
391
  msgstr ""
392
 
393
+ #: admin.inc.php:449
394
  msgid "plugin settings page"
395
  msgstr ""
396
 
397
+ #: admin.inc.php:454
398
  msgid ""
399
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
400
  "visit the "
401
  msgstr ""
402
 
403
+ #: admin.inc.php:454
404
  msgid " to configure."
405
  msgstr ""
406
 
languages/crp-es_ES.mo CHANGED
Binary file
languages/crp-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:41-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -23,91 +23,91 @@ msgstr "Opciones guardadas correctament."
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
- #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
- #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "Apoya el desarrollo"
33
 
34
- #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "Ingresa monto en USD:"
37
 
38
- #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
- #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links rápidos"
46
 
47
- #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Posts relacionados contextualmente"
51
 
52
- #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "Otros plugins"
55
 
56
- #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr ""
59
 
60
- #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Soporte"
63
 
64
- #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "Desarrollos recientes"
71
 
72
- #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:185
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:187
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
- #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "Número de posts relacionados a mostrar:"
89
 
90
- #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
- #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
- #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
- #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
- #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
- #: admin.inc.php:211
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -117,55 +117,55 @@ msgstr ""
117
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
118
  "caché si activas esto)"
119
 
120
- #: admin.inc.php:213
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
- #: admin.inc.php:216
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
- #: admin.inc.php:232
129
  msgid ""
130
  "Comma separated list of category slugs. The field above has an autocomplete "
131
  "so simply start typing in the starting letters and it will prompt you with "
132
  "options"
133
  msgstr ""
134
 
135
- #: admin.inc.php:235
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "Agregar posts relacionados al feed"
139
 
140
- #: admin.inc.php:237
141
  msgid "Posts"
142
  msgstr ""
143
 
144
- #: admin.inc.php:238
145
  msgid "Pages"
146
  msgstr ""
147
 
148
- #: admin.inc.php:239
149
  msgid "Home page"
150
  msgstr ""
151
 
152
- #: admin.inc.php:240
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
- #: admin.inc.php:241
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
- #: admin.inc.php:242
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
- #: admin.inc.php:243
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
- #: admin.inc.php:244
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -176,150 +176,150 @@ msgstr ""
176
  "favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
177
  "(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
178
 
179
- #: admin.inc.php:247
180
  msgid "Add a link to the plugin page as a final item in the list"
181
  msgstr ""
182
 
183
- #: admin.inc.php:248
184
  msgid " <em>Optional</em>"
185
  msgstr ""
186
 
187
- #: admin.inc.php:255
188
  #, fuzzy
189
  msgid "Output options"
190
  msgstr "Opciones de Salida:"
191
 
192
- #: admin.inc.php:257
193
  msgid "Title of related posts: "
194
  msgstr "Título de posts relacionados:"
195
 
196
- #: admin.inc.php:260
197
  msgid "When there are no posts, what should be shown?"
198
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
199
 
200
- #: admin.inc.php:264
201
  msgid "Blank Output"
202
  msgstr "Salida vacía"
203
 
204
- #: admin.inc.php:268
205
  msgid "Display:"
206
  msgstr ""
207
 
208
- #: admin.inc.php:272 admin.inc.php:366
209
  msgid "Show post excerpt in list?"
210
  msgstr "¿Mostrar extracto con los items?"
211
 
212
- #: admin.inc.php:275
213
  msgid "Length of excerpt (in words): "
214
  msgstr "Tamaño del extracto (en palabras):"
215
 
216
- #: admin.inc.php:278
217
  msgid "Limit post title length (in characters)"
218
  msgstr ""
219
 
220
- #: admin.inc.php:281
221
  msgid "Open links in new window"
222
  msgstr ""
223
 
224
- #: admin.inc.php:284
225
  msgid "Add nofollow attribute to links in the list"
226
  msgstr ""
227
 
228
- #: admin.inc.php:287
229
  #, fuzzy
230
  msgid "Exclude display of related posts on these posts / pages"
231
  msgstr "Agregar posts relacionados al feed"
232
 
233
- #: admin.inc.php:290
234
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
235
  msgstr ""
236
 
237
- #: admin.inc.php:293
238
  msgid "Customize the output:"
239
  msgstr "Personalizar la salida:"
240
 
241
- #: admin.inc.php:295
242
  msgid "HTML to display before the list of posts: "
243
  msgstr "HTML a mostrar antes de todos los items:"
244
 
245
- #: admin.inc.php:298
246
  msgid "HTML to display before each list item: "
247
  msgstr "HTML a mostrar antes de cada item:"
248
 
249
- #: admin.inc.php:301
250
  msgid "HTML to display after each list item: "
251
  msgstr "HTML a mostrar despues de cada item:"
252
 
253
- #: admin.inc.php:304
254
  msgid "HTML to display after the list of posts: "
255
  msgstr "HTML a mostrar despues de todos los items:"
256
 
257
- #: admin.inc.php:307
258
  msgid "Post thumbnail options:"
259
  msgstr "Opciones de miniaturas en el post:"
260
 
261
- #: admin.inc.php:309 admin.inc.php:369
262
  msgid "Location of post thumbnail:"
263
  msgstr ""
264
 
265
- #: admin.inc.php:313 admin.inc.php:373
266
  #, fuzzy
267
  msgid "Display thumbnails inline with posts, before title"
268
  msgstr "Miniaturas en línea con los posts"
269
 
270
- #: admin.inc.php:317 admin.inc.php:377
271
  #, fuzzy
272
  msgid "Display thumbnails inline with posts, after title"
273
  msgstr "Miniaturas en línea con los posts"
274
 
275
- #: admin.inc.php:321 admin.inc.php:381
276
  msgid "Display only thumbnails, no text"
277
  msgstr "Solo miniaturas, sin texto"
278
 
279
- #: admin.inc.php:325 admin.inc.php:385
280
  msgid "Do not display thumbnails, only text."
281
  msgstr "No mostrar miniaturas, solo texto."
282
 
283
- #: admin.inc.php:329 admin.inc.php:389
284
  msgid "Maximum width of the thumbnail: "
285
  msgstr ""
286
 
287
- #: admin.inc.php:332 admin.inc.php:392
288
  msgid "Maximum height of the thumbnail: "
289
  msgstr ""
290
 
291
- #: admin.inc.php:335
292
  msgid "Use timthumb to generate thumbnails? "
293
  msgstr ""
294
 
295
- #: admin.inc.php:336
296
  msgid ""
297
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
298
  "\">timthumb</a> will be used to generate thumbnails"
299
  msgstr ""
300
 
301
- #: admin.inc.php:338
302
  msgid "Quality of thumbnails generated by timthumb"
303
  msgstr ""
304
 
305
- #: admin.inc.php:341
306
  msgid ""
307
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
308
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
309
  msgstr ""
310
 
311
- #: admin.inc.php:344
312
  #, fuzzy
313
  msgid "Post thumbnail meta field name: "
314
  msgstr "Opciones de miniaturas en el post:"
315
 
316
- #: admin.inc.php:345
317
  msgid ""
318
  "The value of this field should contain the image source and is set in the "
319
  "<em>Add New Post</em> screen"
320
  msgstr ""
321
 
322
- #: admin.inc.php:347
323
  #, fuzzy
324
  msgid ""
325
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -329,7 +329,7 @@ msgstr ""
329
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
330
  "tamaño"
331
 
332
- #: admin.inc.php:348
333
  #, fuzzy
334
  msgid ""
335
  "This can slow down the loading of your page if the first image in the "
@@ -339,21 +339,21 @@ msgstr ""
339
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
340
  "tamaño"
341
 
342
- #: admin.inc.php:350
343
  msgid "Use default thumbnail? "
344
  msgstr ""
345
 
346
- #: admin.inc.php:351
347
  msgid ""
348
  "If checked, when no thumbnail is found, show a default one from the URL "
349
  "below. If not checked and no thumbnail is found, no image will be shown."
350
  msgstr ""
351
 
352
- #: admin.inc.php:353
353
  msgid "Default thumbnail: "
354
  msgstr ""
355
 
356
- #: admin.inc.php:354
357
  #, fuzzy
358
  msgid ""
359
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -364,75 +364,75 @@ msgstr ""
364
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
365
  "la imágen padrón especificada a continuación:"
366
 
367
- #: admin.inc.php:359
368
  #, fuzzy
369
  msgid "Feed options"
370
  msgstr "Opciones:"
371
 
372
- #: admin.inc.php:361
373
  msgid ""
374
  "Below options override the related posts settings for your blog feed. These "
375
  "only apply if you have selected to add related posts to Feeds in the General "
376
  "Options tab."
377
  msgstr ""
378
 
379
- #: admin.inc.php:398
380
  msgid "Custom Styles"
381
  msgstr ""
382
 
383
- #: admin.inc.php:400
384
  msgid "Custom CSS to add to header:"
385
  msgstr ""
386
 
387
- #: admin.inc.php:403
388
  msgid ""
389
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
390
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
391
  "\">FAQ</a> for available CSS classes to style."
392
  msgstr ""
393
 
394
- #: admin.inc.php:407
395
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "Opciones:"
398
 
399
- #: admin.inc.php:408
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "Opciones de Salida:"
403
 
404
- #: admin.inc.php:408
405
  msgid "Do you want to set options to Default?"
406
  msgstr "¿Quieres resetear las opciones?"
407
 
408
- #: admin.inc.php:409
409
  msgid "Recreate Index"
410
  msgstr ""
411
 
412
- #: admin.inc.php:409
413
  msgid "Are you sure you want to recreate the index?"
414
  msgstr "¿Está seguro que quiere recrear el index?"
415
 
416
- #: admin.inc.php:426
417
  msgid "Contextual Related Posts"
418
  msgstr "Posts Relacionados Contextualmente"
419
 
420
- #: admin.inc.php:426 contextual-related-posts.php:277
421
  msgid "Related Posts"
422
  msgstr "Post Relacionados"
423
 
424
- #: admin.inc.php:434
425
  #, fuzzy
426
  msgid "plugin settings page"
427
  msgstr "sitio del plugin"
428
 
429
- #: admin.inc.php:439
430
  msgid ""
431
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
432
  "visit the "
433
  msgstr ""
434
 
435
- #: admin.inc.php:439
436
  msgid " to configure."
437
  msgstr ""
438
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:01-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
+ #: admin.inc.php:128
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
+ #: admin.inc.php:141
31
  msgid "Support the development"
32
  msgstr "Apoya el desarrollo"
33
 
34
+ #: admin.inc.php:149
35
  msgid "Enter amount in USD: "
36
  msgstr "Ingresa monto en USD:"
37
 
38
+ #: admin.inc.php:153
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
+ #: admin.inc.php:164
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links rápidos"
46
 
47
+ #: admin.inc.php:166
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Posts relacionados contextualmente"
51
 
52
+ #: admin.inc.php:167
53
  msgid "Other plugins"
54
  msgstr "Otros plugins"
55
 
56
+ #: admin.inc.php:168
57
  msgid "Ajay's blog"
58
  msgstr ""
59
 
60
+ #: admin.inc.php:169 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Soporte"
63
 
64
+ #: admin.inc.php:170
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:174
69
  msgid "Recent developments"
70
  msgstr "Desarrollos recientes"
71
 
72
+ #: admin.inc.php:184
73
  msgid "General options"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:186
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:188
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
+ #: admin.inc.php:191 admin.inc.php:376
87
  msgid "Number of related posts to display: "
88
  msgstr "Número de posts relacionados a mostrar:"
89
 
90
+ #: admin.inc.php:194
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:195
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:197
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:208
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:211
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:213
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
117
  "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
118
  "caché si activas esto)"
119
 
120
+ #: admin.inc.php:216
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
+ #: admin.inc.php:219
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
+ #: admin.inc.php:235
129
  msgid ""
130
  "Comma separated list of category slugs. The field above has an autocomplete "
131
  "so simply start typing in the starting letters and it will prompt you with "
132
  "options"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:238
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "Agregar posts relacionados al feed"
139
 
140
+ #: admin.inc.php:240
141
  msgid "Posts"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:241
145
  msgid "Pages"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:242
149
  msgid "Home page"
150
  msgstr ""
151
 
152
+ #: admin.inc.php:243
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:244
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:245
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:246
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:247
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
176
  "favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
177
  "(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
178
 
179
+ #: admin.inc.php:250
180
  msgid "Add a link to the plugin page as a final item in the list"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:251
184
  msgid " <em>Optional</em>"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:258
188
  #, fuzzy
189
  msgid "Output options"
190
  msgstr "Opciones de Salida:"
191
 
192
+ #: admin.inc.php:260
193
  msgid "Title of related posts: "
194
  msgstr "Título de posts relacionados:"
195
 
196
+ #: admin.inc.php:263
197
  msgid "When there are no posts, what should be shown?"
198
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
199
 
200
+ #: admin.inc.php:267
201
  msgid "Blank Output"
202
  msgstr "Salida vacía"
203
 
204
+ #: admin.inc.php:271
205
  msgid "Display:"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:275 admin.inc.php:379
209
  msgid "Show post excerpt in list?"
210
  msgstr "¿Mostrar extracto con los items?"
211
 
212
+ #: admin.inc.php:278
213
  msgid "Length of excerpt (in words): "
214
  msgstr "Tamaño del extracto (en palabras):"
215
 
216
+ #: admin.inc.php:281
217
  msgid "Limit post title length (in characters)"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:284
221
  msgid "Open links in new window"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:287
225
  msgid "Add nofollow attribute to links in the list"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:290
229
  #, fuzzy
230
  msgid "Exclude display of related posts on these posts / pages"
231
  msgstr "Agregar posts relacionados al feed"
232
 
233
+ #: admin.inc.php:293
234
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:296
238
  msgid "Customize the output:"
239
  msgstr "Personalizar la salida:"
240
 
241
+ #: admin.inc.php:298
242
  msgid "HTML to display before the list of posts: "
243
  msgstr "HTML a mostrar antes de todos los items:"
244
 
245
+ #: admin.inc.php:301
246
  msgid "HTML to display before each list item: "
247
  msgstr "HTML a mostrar antes de cada item:"
248
 
249
+ #: admin.inc.php:304
250
  msgid "HTML to display after each list item: "
251
  msgstr "HTML a mostrar despues de cada item:"
252
 
253
+ #: admin.inc.php:307
254
  msgid "HTML to display after the list of posts: "
255
  msgstr "HTML a mostrar despues de todos los items:"
256
 
257
+ #: admin.inc.php:310
258
  msgid "Post thumbnail options:"
259
  msgstr "Opciones de miniaturas en el post:"
260
 
261
+ #: admin.inc.php:312 admin.inc.php:382
262
  msgid "Location of post thumbnail:"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:316 admin.inc.php:386
266
  #, fuzzy
267
  msgid "Display thumbnails inline with posts, before title"
268
  msgstr "Miniaturas en línea con los posts"
269
 
270
+ #: admin.inc.php:320 admin.inc.php:390
271
  #, fuzzy
272
  msgid "Display thumbnails inline with posts, after title"
273
  msgstr "Miniaturas en línea con los posts"
274
 
275
+ #: admin.inc.php:324 admin.inc.php:394
276
  msgid "Display only thumbnails, no text"
277
  msgstr "Solo miniaturas, sin texto"
278
 
279
+ #: admin.inc.php:328 admin.inc.php:398
280
  msgid "Do not display thumbnails, only text."
281
  msgstr "No mostrar miniaturas, solo texto."
282
 
283
+ #: admin.inc.php:332 admin.inc.php:402
284
  msgid "Maximum width of the thumbnail: "
285
  msgstr ""
286
 
287
+ #: admin.inc.php:335 admin.inc.php:405
288
  msgid "Maximum height of the thumbnail: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:338
292
  msgid "Use timthumb to generate thumbnails? "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:340
296
  msgid ""
297
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
298
  "\">timthumb</a> will be used to generate thumbnails"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:343
302
  msgid "Quality of thumbnails generated by timthumb"
303
  msgstr ""
304
 
305
+ #: admin.inc.php:346
306
  msgid ""
307
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
308
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
309
  msgstr ""
310
 
311
+ #: admin.inc.php:349
312
  #, fuzzy
313
  msgid "Post thumbnail meta field name: "
314
  msgstr "Opciones de miniaturas en el post:"
315
 
316
+ #: admin.inc.php:351
317
  msgid ""
318
  "The value of this field should contain the image source and is set in the "
319
  "<em>Add New Post</em> screen"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:354
323
  #, fuzzy
324
  msgid ""
325
  "If the postmeta is not set, then should the plugin extract the first image "
329
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
330
  "tamaño"
331
 
332
+ #: admin.inc.php:356
333
  #, fuzzy
334
  msgid ""
335
  "This can slow down the loading of your page if the first image in the "
339
  "del post. Esto puede relentizar la carga si la primera imágen es de gran "
340
  "tamaño"
341
 
342
+ #: admin.inc.php:359
343
  msgid "Use default thumbnail? "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:361
347
  msgid ""
348
  "If checked, when no thumbnail is found, show a default one from the URL "
349
  "below. If not checked and no thumbnail is found, no image will be shown."
350
  msgstr ""
351
 
352
+ #: admin.inc.php:364
353
  msgid "Default thumbnail: "
354
  msgstr ""
355
 
356
+ #: admin.inc.php:366
357
  #, fuzzy
358
  msgid ""
359
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
364
  "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
365
  "la imágen padrón especificada a continuación:"
366
 
367
+ #: admin.inc.php:372
368
  #, fuzzy
369
  msgid "Feed options"
370
  msgstr "Opciones:"
371
 
372
+ #: admin.inc.php:374
373
  msgid ""
374
  "Below options override the related posts settings for your blog feed. These "
375
  "only apply if you have selected to add related posts to Feeds in the General "
376
  "Options tab."
377
  msgstr ""
378
 
379
+ #: admin.inc.php:411
380
  msgid "Custom Styles"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:413
384
  msgid "Custom CSS to add to header:"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:416
388
  msgid ""
389
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
390
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
391
  "\">FAQ</a> for available CSS classes to style."
392
  msgstr ""
393
 
394
+ #: admin.inc.php:421
395
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "Opciones:"
398
 
399
+ #: admin.inc.php:422
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "Opciones de Salida:"
403
 
404
+ #: admin.inc.php:422
405
  msgid "Do you want to set options to Default?"
406
  msgstr "¿Quieres resetear las opciones?"
407
 
408
+ #: admin.inc.php:423
409
  msgid "Recreate Index"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:423
413
  msgid "Are you sure you want to recreate the index?"
414
  msgstr "¿Está seguro que quiere recrear el index?"
415
 
416
+ #: admin.inc.php:441
417
  msgid "Contextual Related Posts"
418
  msgstr "Posts Relacionados Contextualmente"
419
 
420
+ #: admin.inc.php:441 contextual-related-posts.php:277
421
  msgid "Related Posts"
422
  msgstr "Post Relacionados"
423
 
424
+ #: admin.inc.php:449
425
  #, fuzzy
426
  msgid "plugin settings page"
427
  msgstr "sitio del plugin"
428
 
429
+ #: admin.inc.php:454
430
  msgid ""
431
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
432
  "visit the "
433
  msgstr ""
434
 
435
+ #: admin.inc.php:454
436
  msgid " to configure."
437
  msgstr ""
438
 
languages/crp-it_IT.mo CHANGED
Binary file
languages/crp-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:41-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
@@ -23,91 +23,91 @@ msgstr "Le opzioni sono state salvate correttamente."
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
- #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "Sostieni lo sviluppo"
33
 
34
- #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "Inserisci la cifra in USD: "
37
 
38
- #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
- #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Collegamenti veloci"
46
 
47
- #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
- #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "Altri plugin"
55
 
56
- #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr "Il blog di Ajay"
59
 
60
- #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Supporto"
63
 
64
- #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "Sviluppi recenti"
71
 
72
- #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:185
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:187
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
- #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "numero di articoli correlati da mostrare:"
89
 
90
- #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
- #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
- #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
- #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
- #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
- #: admin.inc.php:211
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -117,55 +117,55 @@ msgstr ""
117
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
118
  "preferibile attivare un plugin per la cache)"
119
 
120
- #: admin.inc.php:213
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
- #: admin.inc.php:216
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
- #: admin.inc.php:232
129
  msgid ""
130
  "Comma separated list of category slugs. The field above has an autocomplete "
131
  "so simply start typing in the starting letters and it will prompt you with "
132
  "options"
133
  msgstr ""
134
 
135
- #: admin.inc.php:235
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "aggiungi gli articoli correlati al feed"
139
 
140
- #: admin.inc.php:237
141
  msgid "Posts"
142
  msgstr ""
143
 
144
- #: admin.inc.php:238
145
  msgid "Pages"
146
  msgstr ""
147
 
148
- #: admin.inc.php:239
149
  msgid "Home page"
150
  msgstr ""
151
 
152
- #: admin.inc.php:240
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
- #: admin.inc.php:241
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
- #: admin.inc.php:242
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
- #: admin.inc.php:243
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
- #: admin.inc.php:244
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -176,150 +176,150 @@ msgstr ""
176
  "inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
177
  "(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
178
 
179
- #: admin.inc.php:247
180
  msgid "Add a link to the plugin page as a final item in the list"
181
  msgstr ""
182
 
183
- #: admin.inc.php:248
184
  msgid " <em>Optional</em>"
185
  msgstr ""
186
 
187
- #: admin.inc.php:255
188
  #, fuzzy
189
  msgid "Output options"
190
  msgstr "Opzioni output:"
191
 
192
- #: admin.inc.php:257
193
  msgid "Title of related posts: "
194
  msgstr "titolo per gli articoli correlati:"
195
 
196
- #: admin.inc.php:260
197
  msgid "When there are no posts, what should be shown?"
198
  msgstr "Cosa desideri mostrare in assenza di articoli?"
199
 
200
- #: admin.inc.php:264
201
  msgid "Blank Output"
202
  msgstr "nulla"
203
 
204
- #: admin.inc.php:268
205
  msgid "Display:"
206
  msgstr ""
207
 
208
- #: admin.inc.php:272 admin.inc.php:366
209
  msgid "Show post excerpt in list?"
210
  msgstr "Desideri mostrare gli estratti?"
211
 
212
- #: admin.inc.php:275
213
  msgid "Length of excerpt (in words): "
214
  msgstr "Lunghezza estratto (in parole): "
215
 
216
- #: admin.inc.php:278
217
  msgid "Limit post title length (in characters)"
218
  msgstr ""
219
 
220
- #: admin.inc.php:281
221
  msgid "Open links in new window"
222
  msgstr ""
223
 
224
- #: admin.inc.php:284
225
  msgid "Add nofollow attribute to links in the list"
226
  msgstr ""
227
 
228
- #: admin.inc.php:287
229
  #, fuzzy
230
  msgid "Exclude display of related posts on these posts / pages"
231
  msgstr "aggiungi gli articoli correlati al feed"
232
 
233
- #: admin.inc.php:290
234
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
235
  msgstr ""
236
 
237
- #: admin.inc.php:293
238
  msgid "Customize the output:"
239
  msgstr "Personalizzazione output:"
240
 
241
- #: admin.inc.php:295
242
  msgid "HTML to display before the list of posts: "
243
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
244
 
245
- #: admin.inc.php:298
246
  msgid "HTML to display before each list item: "
247
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
248
 
249
- #: admin.inc.php:301
250
  msgid "HTML to display after each list item: "
251
  msgstr "HTML da mostrare dopo ogni lista:"
252
 
253
- #: admin.inc.php:304
254
  msgid "HTML to display after the list of posts: "
255
  msgstr "HTML da mostrare dopo la lista degli articoli:"
256
 
257
- #: admin.inc.php:307
258
  msgid "Post thumbnail options:"
259
  msgstr "Opzioni miniature articolo:"
260
 
261
- #: admin.inc.php:309 admin.inc.php:369
262
  msgid "Location of post thumbnail:"
263
  msgstr ""
264
 
265
- #: admin.inc.php:313 admin.inc.php:373
266
  #, fuzzy
267
  msgid "Display thumbnails inline with posts, before title"
268
  msgstr "Mostra gli articoli con le miniature inline"
269
 
270
- #: admin.inc.php:317 admin.inc.php:377
271
  #, fuzzy
272
  msgid "Display thumbnails inline with posts, after title"
273
  msgstr "Mostra gli articoli con le miniature inline"
274
 
275
- #: admin.inc.php:321 admin.inc.php:381
276
  msgid "Display only thumbnails, no text"
277
  msgstr "Mostra le sole miniature, nessun testo"
278
 
279
- #: admin.inc.php:325 admin.inc.php:385
280
  msgid "Do not display thumbnails, only text."
281
  msgstr "Non mostrare le miniature, solo testo."
282
 
283
- #: admin.inc.php:329 admin.inc.php:389
284
  msgid "Maximum width of the thumbnail: "
285
  msgstr ""
286
 
287
- #: admin.inc.php:332 admin.inc.php:392
288
  msgid "Maximum height of the thumbnail: "
289
  msgstr ""
290
 
291
- #: admin.inc.php:335
292
  msgid "Use timthumb to generate thumbnails? "
293
  msgstr ""
294
 
295
- #: admin.inc.php:336
296
  msgid ""
297
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
298
  "\">timthumb</a> will be used to generate thumbnails"
299
  msgstr ""
300
 
301
- #: admin.inc.php:338
302
  msgid "Quality of thumbnails generated by timthumb"
303
  msgstr ""
304
 
305
- #: admin.inc.php:341
306
  msgid ""
307
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
308
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
309
  msgstr ""
310
 
311
- #: admin.inc.php:344
312
  #, fuzzy
313
  msgid "Post thumbnail meta field name: "
314
  msgstr "Opzioni miniature articolo:"
315
 
316
- #: admin.inc.php:345
317
  msgid ""
318
  "The value of this field should contain the image source and is set in the "
319
  "<em>Add New Post</em> screen"
320
  msgstr ""
321
 
322
- #: admin.inc.php:347
323
  #, fuzzy
324
  msgid ""
325
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -330,7 +330,7 @@ msgstr ""
330
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
331
  "dimensioni"
332
 
333
- #: admin.inc.php:348
334
  #, fuzzy
335
  msgid ""
336
  "This can slow down the loading of your page if the first image in the "
@@ -341,21 +341,21 @@ msgstr ""
341
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
342
  "dimensioni"
343
 
344
- #: admin.inc.php:350
345
  msgid "Use default thumbnail? "
346
  msgstr ""
347
 
348
- #: admin.inc.php:351
349
  msgid ""
350
  "If checked, when no thumbnail is found, show a default one from the URL "
351
  "below. If not checked and no thumbnail is found, no image will be shown."
352
  msgstr ""
353
 
354
- #: admin.inc.php:353
355
  msgid "Default thumbnail: "
356
  msgstr ""
357
 
358
- #: admin.inc.php:354
359
  #, fuzzy
360
  msgid ""
361
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -367,75 +367,75 @@ msgstr ""
367
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
368
  "specificato qui sotto:"
369
 
370
- #: admin.inc.php:359
371
  #, fuzzy
372
  msgid "Feed options"
373
  msgstr "Opzioni:"
374
 
375
- #: admin.inc.php:361
376
  msgid ""
377
  "Below options override the related posts settings for your blog feed. These "
378
  "only apply if you have selected to add related posts to Feeds in the General "
379
  "Options tab."
380
  msgstr ""
381
 
382
- #: admin.inc.php:398
383
  msgid "Custom Styles"
384
  msgstr ""
385
 
386
- #: admin.inc.php:400
387
  msgid "Custom CSS to add to header:"
388
  msgstr ""
389
 
390
- #: admin.inc.php:403
391
  msgid ""
392
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
393
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
394
  "\">FAQ</a> for available CSS classes to style."
395
  msgstr ""
396
 
397
- #: admin.inc.php:407
398
  #, fuzzy
399
  msgid "Save Options"
400
  msgstr "Opzioni:"
401
 
402
- #: admin.inc.php:408
403
  #, fuzzy
404
  msgid "Default Options"
405
  msgstr "Opzioni output:"
406
 
407
- #: admin.inc.php:408
408
  msgid "Do you want to set options to Default?"
409
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
410
 
411
- #: admin.inc.php:409
412
  msgid "Recreate Index"
413
  msgstr ""
414
 
415
- #: admin.inc.php:409
416
  msgid "Are you sure you want to recreate the index?"
417
  msgstr "Sei certo di volere ricreare l'indice?"
418
 
419
- #: admin.inc.php:426
420
  msgid "Contextual Related Posts"
421
  msgstr "Contextual Related Posts"
422
 
423
- #: admin.inc.php:426 contextual-related-posts.php:277
424
  msgid "Related Posts"
425
  msgstr "Related Posts"
426
 
427
- #: admin.inc.php:434
428
  #, fuzzy
429
  msgid "plugin settings page"
430
  msgstr "pagina plugin"
431
 
432
- #: admin.inc.php:439
433
  msgid ""
434
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
435
  "visit the "
436
  msgstr ""
437
 
438
- #: admin.inc.php:439
439
  msgid " to configure."
440
  msgstr ""
441
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:01-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"
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
+ #: admin.inc.php:128
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
+ #: admin.inc.php:141
31
  msgid "Support the development"
32
  msgstr "Sostieni lo sviluppo"
33
 
34
+ #: admin.inc.php:149
35
  msgid "Enter amount in USD: "
36
  msgstr "Inserisci la cifra in USD: "
37
 
38
+ #: admin.inc.php:153
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
+ #: admin.inc.php:164
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Collegamenti veloci"
46
 
47
+ #: admin.inc.php:166
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:167
53
  msgid "Other plugins"
54
  msgstr "Altri plugin"
55
 
56
+ #: admin.inc.php:168
57
  msgid "Ajay's blog"
58
  msgstr "Il blog di Ajay"
59
 
60
+ #: admin.inc.php:169 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Supporto"
63
 
64
+ #: admin.inc.php:170
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:174
69
  msgid "Recent developments"
70
  msgstr "Sviluppi recenti"
71
 
72
+ #: admin.inc.php:184
73
  msgid "General options"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:186
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:188
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
+ #: admin.inc.php:191 admin.inc.php:376
87
  msgid "Number of related posts to display: "
88
  msgstr "numero di articoli correlati da mostrare:"
89
 
90
+ #: admin.inc.php:194
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:195
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:197
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:208
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:211
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:213
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
117
  "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
118
  "preferibile attivare un plugin per la cache)"
119
 
120
+ #: admin.inc.php:216
121
  msgid "List of post or page IDs to exclude from the results: "
122
  msgstr ""
123
 
124
+ #: admin.inc.php:219
125
  msgid "Categories to exclude from the results: "
126
  msgstr ""
127
 
128
+ #: admin.inc.php:235
129
  msgid ""
130
  "Comma separated list of category slugs. The field above has an autocomplete "
131
  "so simply start typing in the starting letters and it will prompt you with "
132
  "options"
133
  msgstr ""
134
 
135
+ #: admin.inc.php:238
136
  #, fuzzy
137
  msgid "Add related posts to:"
138
  msgstr "aggiungi gli articoli correlati al feed"
139
 
140
+ #: admin.inc.php:240
141
  msgid "Posts"
142
  msgstr ""
143
 
144
+ #: admin.inc.php:241
145
  msgid "Pages"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:242
149
  msgid "Home page"
150
  msgstr ""
151
 
152
+ #: admin.inc.php:243
153
  msgid "Feeds"
154
  msgstr ""
155
 
156
+ #: admin.inc.php:244
157
  msgid "Category archives"
158
  msgstr ""
159
 
160
+ #: admin.inc.php:245
161
  msgid "Tag archives"
162
  msgstr ""
163
 
164
+ #: admin.inc.php:246
165
  msgid "Other archives"
166
  msgstr ""
167
 
168
+ #: admin.inc.php:247
169
  #, fuzzy
170
  msgid ""
171
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
176
  "inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
177
  "(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
178
 
179
+ #: admin.inc.php:250
180
  msgid "Add a link to the plugin page as a final item in the list"
181
  msgstr ""
182
 
183
+ #: admin.inc.php:251
184
  msgid " <em>Optional</em>"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:258
188
  #, fuzzy
189
  msgid "Output options"
190
  msgstr "Opzioni output:"
191
 
192
+ #: admin.inc.php:260
193
  msgid "Title of related posts: "
194
  msgstr "titolo per gli articoli correlati:"
195
 
196
+ #: admin.inc.php:263
197
  msgid "When there are no posts, what should be shown?"
198
  msgstr "Cosa desideri mostrare in assenza di articoli?"
199
 
200
+ #: admin.inc.php:267
201
  msgid "Blank Output"
202
  msgstr "nulla"
203
 
204
+ #: admin.inc.php:271
205
  msgid "Display:"
206
  msgstr ""
207
 
208
+ #: admin.inc.php:275 admin.inc.php:379
209
  msgid "Show post excerpt in list?"
210
  msgstr "Desideri mostrare gli estratti?"
211
 
212
+ #: admin.inc.php:278
213
  msgid "Length of excerpt (in words): "
214
  msgstr "Lunghezza estratto (in parole): "
215
 
216
+ #: admin.inc.php:281
217
  msgid "Limit post title length (in characters)"
218
  msgstr ""
219
 
220
+ #: admin.inc.php:284
221
  msgid "Open links in new window"
222
  msgstr ""
223
 
224
+ #: admin.inc.php:287
225
  msgid "Add nofollow attribute to links in the list"
226
  msgstr ""
227
 
228
+ #: admin.inc.php:290
229
  #, fuzzy
230
  msgid "Exclude display of related posts on these posts / pages"
231
  msgstr "aggiungi gli articoli correlati al feed"
232
 
233
+ #: admin.inc.php:293
234
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:296
238
  msgid "Customize the output:"
239
  msgstr "Personalizzazione output:"
240
 
241
+ #: admin.inc.php:298
242
  msgid "HTML to display before the list of posts: "
243
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
244
 
245
+ #: admin.inc.php:301
246
  msgid "HTML to display before each list item: "
247
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
248
 
249
+ #: admin.inc.php:304
250
  msgid "HTML to display after each list item: "
251
  msgstr "HTML da mostrare dopo ogni lista:"
252
 
253
+ #: admin.inc.php:307
254
  msgid "HTML to display after the list of posts: "
255
  msgstr "HTML da mostrare dopo la lista degli articoli:"
256
 
257
+ #: admin.inc.php:310
258
  msgid "Post thumbnail options:"
259
  msgstr "Opzioni miniature articolo:"
260
 
261
+ #: admin.inc.php:312 admin.inc.php:382
262
  msgid "Location of post thumbnail:"
263
  msgstr ""
264
 
265
+ #: admin.inc.php:316 admin.inc.php:386
266
  #, fuzzy
267
  msgid "Display thumbnails inline with posts, before title"
268
  msgstr "Mostra gli articoli con le miniature inline"
269
 
270
+ #: admin.inc.php:320 admin.inc.php:390
271
  #, fuzzy
272
  msgid "Display thumbnails inline with posts, after title"
273
  msgstr "Mostra gli articoli con le miniature inline"
274
 
275
+ #: admin.inc.php:324 admin.inc.php:394
276
  msgid "Display only thumbnails, no text"
277
  msgstr "Mostra le sole miniature, nessun testo"
278
 
279
+ #: admin.inc.php:328 admin.inc.php:398
280
  msgid "Do not display thumbnails, only text."
281
  msgstr "Non mostrare le miniature, solo testo."
282
 
283
+ #: admin.inc.php:332 admin.inc.php:402
284
  msgid "Maximum width of the thumbnail: "
285
  msgstr ""
286
 
287
+ #: admin.inc.php:335 admin.inc.php:405
288
  msgid "Maximum height of the thumbnail: "
289
  msgstr ""
290
 
291
+ #: admin.inc.php:338
292
  msgid "Use timthumb to generate thumbnails? "
293
  msgstr ""
294
 
295
+ #: admin.inc.php:340
296
  msgid ""
297
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
298
  "\">timthumb</a> will be used to generate thumbnails"
299
  msgstr ""
300
 
301
+ #: admin.inc.php:343
302
  msgid "Quality of thumbnails generated by timthumb"
303
  msgstr ""
304
 
305
+ #: admin.inc.php:346
306
  msgid ""
307
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
308
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
309
  msgstr ""
310
 
311
+ #: admin.inc.php:349
312
  #, fuzzy
313
  msgid "Post thumbnail meta field name: "
314
  msgstr "Opzioni miniature articolo:"
315
 
316
+ #: admin.inc.php:351
317
  msgid ""
318
  "The value of this field should contain the image source and is set in the "
319
  "<em>Add New Post</em> screen"
320
  msgstr ""
321
 
322
+ #: admin.inc.php:354
323
  #, fuzzy
324
  msgid ""
325
  "If the postmeta is not set, then should the plugin extract the first image "
330
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
331
  "dimensioni"
332
 
333
+ #: admin.inc.php:356
334
  #, fuzzy
335
  msgid ""
336
  "This can slow down the loading of your page if the first image in the "
341
  "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
342
  "dimensioni"
343
 
344
+ #: admin.inc.php:359
345
  msgid "Use default thumbnail? "
346
  msgstr ""
347
 
348
+ #: admin.inc.php:361
349
  msgid ""
350
  "If checked, when no thumbnail is found, show a default one from the URL "
351
  "below. If not checked and no thumbnail is found, no image will be shown."
352
  msgstr ""
353
 
354
+ #: admin.inc.php:364
355
  msgid "Default thumbnail: "
356
  msgstr ""
357
 
358
+ #: admin.inc.php:366
359
  #, fuzzy
360
  msgid ""
361
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
367
  "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
368
  "specificato qui sotto:"
369
 
370
+ #: admin.inc.php:372
371
  #, fuzzy
372
  msgid "Feed options"
373
  msgstr "Opzioni:"
374
 
375
+ #: admin.inc.php:374
376
  msgid ""
377
  "Below options override the related posts settings for your blog feed. These "
378
  "only apply if you have selected to add related posts to Feeds in the General "
379
  "Options tab."
380
  msgstr ""
381
 
382
+ #: admin.inc.php:411
383
  msgid "Custom Styles"
384
  msgstr ""
385
 
386
+ #: admin.inc.php:413
387
  msgid "Custom CSS to add to header:"
388
  msgstr ""
389
 
390
+ #: admin.inc.php:416
391
  msgid ""
392
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
393
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
394
  "\">FAQ</a> for available CSS classes to style."
395
  msgstr ""
396
 
397
+ #: admin.inc.php:421
398
  #, fuzzy
399
  msgid "Save Options"
400
  msgstr "Opzioni:"
401
 
402
+ #: admin.inc.php:422
403
  #, fuzzy
404
  msgid "Default Options"
405
  msgstr "Opzioni output:"
406
 
407
+ #: admin.inc.php:422
408
  msgid "Do you want to set options to Default?"
409
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
410
 
411
+ #: admin.inc.php:423
412
  msgid "Recreate Index"
413
  msgstr ""
414
 
415
+ #: admin.inc.php:423
416
  msgid "Are you sure you want to recreate the index?"
417
  msgstr "Sei certo di volere ricreare l'indice?"
418
 
419
+ #: admin.inc.php:441
420
  msgid "Contextual Related Posts"
421
  msgstr "Contextual Related Posts"
422
 
423
+ #: admin.inc.php:441 contextual-related-posts.php:277
424
  msgid "Related Posts"
425
  msgstr "Related Posts"
426
 
427
+ #: admin.inc.php:449
428
  #, fuzzy
429
  msgid "plugin settings page"
430
  msgstr "pagina plugin"
431
 
432
+ #: admin.inc.php:454
433
  msgid ""
434
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
435
  "visit the "
436
  msgstr ""
437
 
438
+ #: admin.inc.php:454
439
  msgid " to configure."
440
  msgstr ""
441
 
languages/crp-lt_LT.mo ADDED
Binary file
languages/crp-lt_LT.po ADDED
@@ -0,0 +1,531 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Contextual Related Posts\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:01-0000\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
+ "Language-Team: <me@ajaydsouza.com>\n"
9
+ "Language: ru_RU\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.5\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: admin.inc.php:96
19
+ msgid "Options saved successfully."
20
+ msgstr "Opcijas veiksmīgi saglabāts."
21
+
22
+ #: admin.inc.php:112
23
+ msgid "Options set to Default."
24
+ msgstr "Opcijas iestatīts uz Default."
25
+
26
+ #: admin.inc.php:128
27
+ msgid "Index recreated"
28
+ msgstr "indekss pārbūvēts"
29
+
30
+ #: admin.inc.php:141
31
+ msgid "Support the development"
32
+ msgstr "Atbalstīt"
33
+
34
+ #: admin.inc.php:149
35
+ msgid "Enter amount in USD: "
36
+ msgstr "Ievadiet summu USD:"
37
+
38
+ #: admin.inc.php:153
39
+ msgid "Send your donation to the author of"
40
+ msgstr "Sūtiet savu ziedojumu autoram"
41
+
42
+ #: admin.inc.php:164
43
+ msgid "Quick Links"
44
+ msgstr "Ātrās saites"
45
+
46
+ #: admin.inc.php:166
47
+ msgid "Contextual Related Posts plugin page"
48
+ msgstr "Konteksta saistītus amatus"
49
+
50
+ #: admin.inc.php:167
51
+ msgid "Other plugins"
52
+ msgstr "citas plugins"
53
+
54
+ #: admin.inc.php:168
55
+ msgid "Ajay's blog"
56
+ msgstr "Ajay blogs"
57
+
58
+ #: admin.inc.php:169 contextual-related-posts.php:662
59
+ msgid "Support"
60
+ msgstr "atbalstīt"
61
+
62
+ #: admin.inc.php:170
63
+ msgid "Reviews"
64
+ msgstr ""
65
+
66
+ #: admin.inc.php:174
67
+ msgid "Recent developments"
68
+ msgstr "Nesenie notikumi"
69
+
70
+ #: admin.inc.php:184
71
+ msgid "General options"
72
+ msgstr ""
73
+
74
+ #: admin.inc.php:186
75
+ msgid "Cache output?"
76
+ msgstr ""
77
+
78
+ #: admin.inc.php:188
79
+ msgid ""
80
+ "Enabling this option will cache the related posts output when the post is "
81
+ "visited the first time. The cache is cleaned when you save this page."
82
+ msgstr ""
83
+
84
+ #: admin.inc.php:191 admin.inc.php:376
85
+ msgid "Number of related posts to display: "
86
+ msgstr "Skaits saistītus amatus, lai parādītu:"
87
+
88
+ #: admin.inc.php:194
89
+ msgid "Related posts should be newer than:"
90
+ msgstr ""
91
+
92
+ #: admin.inc.php:195
93
+ msgid "days"
94
+ msgstr ""
95
+
96
+ #: admin.inc.php:197
97
+ msgid "Post types to include in results (including custom post types)"
98
+ msgstr ""
99
+
100
+ #: admin.inc.php:208
101
+ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
102
+ msgstr ""
103
+
104
+ #: admin.inc.php:211
105
+ msgid "Find related posts based on content as well as title"
106
+ msgstr ""
107
+
108
+ #: admin.inc.php:213
109
+ msgid ""
110
+ "If unchecked, only posts titles are used. (I recommend using a caching "
111
+ "plugin if you enable this)"
112
+ msgstr ""
113
+ "Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
114
+ "caching spraudnis, ja aktivizēsiet šo)"
115
+
116
+ #: admin.inc.php:216
117
+ msgid "List of post or page IDs to exclude from the results: "
118
+ msgstr ""
119
+
120
+ #: admin.inc.php:219
121
+ msgid "Categories to exclude from the results: "
122
+ msgstr ""
123
+
124
+ #: admin.inc.php:235
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:238
132
+ msgid "Add related posts to:"
133
+ msgstr "Pievienot saistītus amatus barībā"
134
+
135
+ #: admin.inc.php:240
136
+ msgid "Posts"
137
+ msgstr ""
138
+
139
+ #: admin.inc.php:241
140
+ msgid "Pages"
141
+ msgstr ""
142
+
143
+ #: admin.inc.php:242
144
+ msgid "Home page"
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:243
148
+ msgid "Feeds"
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:244
152
+ msgid "Category archives"
153
+ msgstr ""
154
+
155
+ #: admin.inc.php:245
156
+ msgid "Tag archives"
157
+ msgstr ""
158
+
159
+ #: admin.inc.php:246
160
+ msgid "Other archives"
161
+ msgstr ""
162
+
163
+ #: admin.inc.php:247
164
+ msgid ""
165
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
166
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
167
+ "you want it displayed"
168
+ msgstr ""
169
+ "Ja vēlaties atslēgt šo, lūdzu, pievienojiet <code> <php if (function_exists "
170
+ "(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
171
+ "vēlaties to parādīt"
172
+
173
+ #: admin.inc.php:250
174
+ msgid "Add a link to the plugin page as a final item in the list"
175
+ msgstr ""
176
+
177
+ #: admin.inc.php:251
178
+ msgid " <em>Optional</em>"
179
+ msgstr ""
180
+
181
+ #: admin.inc.php:258
182
+ msgid "Output options"
183
+ msgstr "Izejas opcijas:"
184
+
185
+ #: admin.inc.php:260
186
+ msgid "Title of related posts: "
187
+ msgstr "Nosaukums saistītus amatus:"
188
+
189
+ #: admin.inc.php:263
190
+ msgid "When there are no posts, what should be shown?"
191
+ msgstr "Ja nav amati, kas būtu redzams?"
192
+
193
+ #: admin.inc.php:267
194
+ msgid "Blank Output"
195
+ msgstr "tukša izeja"
196
+
197
+ #: admin.inc.php:271
198
+ msgid "Display:"
199
+ msgstr ""
200
+
201
+ #: admin.inc.php:275 admin.inc.php:379
202
+ msgid "Show post excerpt in list?"
203
+ msgstr "Rādīt post izvilkumu sarakstā?"
204
+
205
+ #: admin.inc.php:278
206
+ msgid "Length of excerpt (in words): "
207
+ msgstr "Garums izrakstā (vārdiem)"
208
+
209
+ #: admin.inc.php:281
210
+ msgid "Limit post title length (in characters)"
211
+ msgstr ""
212
+
213
+ #: admin.inc.php:284
214
+ msgid "Open links in new window"
215
+ msgstr ""
216
+
217
+ #: admin.inc.php:287
218
+ msgid "Add nofollow attribute to links in the list"
219
+ msgstr ""
220
+
221
+ #: admin.inc.php:290
222
+ msgid "Exclude display of related posts on these posts / pages"
223
+ msgstr "Pievienot saistītus amatus barībā"
224
+
225
+ #: admin.inc.php:293
226
+ msgid "Enter comma separated list of IDs. e.g. 188,320,500"
227
+ msgstr ""
228
+
229
+ #: admin.inc.php:296
230
+ msgid "Customize the output:"
231
+ msgstr "Pielāgot izejas:"
232
+
233
+ #: admin.inc.php:298
234
+ msgid "HTML to display before the list of posts: "
235
+ msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
236
+
237
+ #: admin.inc.php:301
238
+ msgid "HTML to display before each list item: "
239
+ msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
240
+
241
+ #: admin.inc.php:304
242
+ msgid "HTML to display after each list item: "
243
+ msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
244
+
245
+ #: admin.inc.php:307
246
+ msgid "HTML to display after the list of posts: "
247
+ msgstr "HTML, lai parādītu pēc amatu sarakstā:"
248
+
249
+ #: admin.inc.php:310
250
+ msgid "Post thumbnail options:"
251
+ msgstr "Post sīktēlu iespējas:"
252
+
253
+ #: admin.inc.php:312 admin.inc.php:382
254
+ msgid "Location of post thumbnail:"
255
+ msgstr ""
256
+
257
+ #: admin.inc.php:316 admin.inc.php:386
258
+ msgid "Display thumbnails inline with posts, before title"
259
+ msgstr "Rādīt skices ar ziņojumiem"
260
+
261
+ #: admin.inc.php:320 admin.inc.php:390
262
+ msgid "Display thumbnails inline with posts, after title"
263
+ msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
264
+
265
+ #: admin.inc.php:324 admin.inc.php:394
266
+ msgid "Display only thumbnails, no text"
267
+ msgstr "Attēlotu tikai sīktēlus, teksts"
268
+
269
+ #: admin.inc.php:328 admin.inc.php:398
270
+ msgid "Do not display thumbnails, only text."
271
+ msgstr "Nerādīt sīktēlus, tikai tekstu."
272
+
273
+ #: admin.inc.php:332 admin.inc.php:402
274
+ msgid "Maximum width of the thumbnail: "
275
+ msgstr ""
276
+
277
+ #: admin.inc.php:335 admin.inc.php:405
278
+ msgid "Maximum height of the thumbnail: "
279
+ msgstr ""
280
+
281
+ #: admin.inc.php:338
282
+ msgid "Use timthumb to generate thumbnails? "
283
+ msgstr ""
284
+
285
+ #: admin.inc.php:340
286
+ msgid ""
287
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
288
+ "\">timthumb</a> will be used to generate thumbnails"
289
+ msgstr ""
290
+
291
+ #: admin.inc.php:343
292
+ msgid "Quality of thumbnails generated by timthumb"
293
+ msgstr ""
294
+
295
+ #: admin.inc.php:346
296
+ msgid ""
297
+ "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
298
+ "also the highest file size. Suggested maximum value is 95. CRP default is 75."
299
+ msgstr ""
300
+
301
+ #: admin.inc.php:349
302
+ msgid "Post thumbnail meta field name: "
303
+ msgstr "Attēlu rīki post:"
304
+
305
+ #: admin.inc.php:351
306
+ msgid ""
307
+ "The value of this field should contain the image source and is set in the "
308
+ "<em>Add New Post</em> screen"
309
+ msgstr ""
310
+
311
+ #: admin.inc.php:354
312
+ msgid ""
313
+ "If the postmeta is not set, then should the plugin extract the first image "
314
+ "from the post?"
315
+ msgstr ""
316
+ "Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
317
+
318
+ #: admin.inc.php:356
319
+ msgid ""
320
+ "This can slow down the loading of your page if the first image in the "
321
+ "related posts is large in file-size"
322
+ msgstr ""
323
+ "Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
324
+ "liela faila izmēra"
325
+
326
+ #: admin.inc.php:359
327
+ msgid "Use default thumbnail? "
328
+ msgstr ""
329
+
330
+ #: admin.inc.php:361
331
+ msgid ""
332
+ "If checked, when no thumbnail is found, show a default one from the URL "
333
+ "below. If not checked and no thumbnail is found, no image will be shown."
334
+ msgstr ""
335
+
336
+ #: admin.inc.php:364
337
+ msgid "Default thumbnail: "
338
+ msgstr ""
339
+
340
+ #: admin.inc.php:366
341
+ msgid ""
342
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
343
+ "then it will check the meta field. If this is not available, then it will "
344
+ "show the default image as specified above"
345
+ msgstr ""
346
+ "Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad tas "
347
+ "būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
348
+ "noklusējuma attēlu, kā minēts iepriekš"
349
+
350
+ #: admin.inc.php:372
351
+ msgid "Feed options"
352
+ msgstr "Iespējas:"
353
+
354
+ #: admin.inc.php:374
355
+ msgid ""
356
+ "Below options override the related posts settings for your blog feed. These "
357
+ "only apply if you have selected to add related posts to Feeds in the General "
358
+ "Options tab."
359
+ msgstr ""
360
+
361
+ #: admin.inc.php:411
362
+ msgid "Custom Styles"
363
+ msgstr ""
364
+
365
+ #: admin.inc.php:413
366
+ msgid "Custom CSS to add to header:"
367
+ msgstr ""
368
+
369
+ #: admin.inc.php:416
370
+ msgid ""
371
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
372
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
373
+ "\">FAQ</a> for available CSS classes to style."
374
+ msgstr ""
375
+
376
+ #: admin.inc.php:421
377
+ msgid "Save Options"
378
+ msgstr "Saglabāt opcijas"
379
+
380
+ #: admin.inc.php:422
381
+ msgid "Default Options"
382
+ msgstr "noklusējuma opcijas"
383
+
384
+ #: admin.inc.php:422
385
+ msgid "Do you want to set options to Default?"
386
+ msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
387
+
388
+ #: admin.inc.php:423
389
+ msgid "Recreate Index"
390
+ msgstr ""
391
+
392
+ #: admin.inc.php:423
393
+ msgid "Are you sure you want to recreate the index?"
394
+ msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
395
+
396
+ #: admin.inc.php:441
397
+ msgid "Contextual Related Posts"
398
+ msgstr "Konteksta Related Posts"
399
+
400
+ #: admin.inc.php:441 contextual-related-posts.php:277
401
+ msgid "Related Posts"
402
+ msgstr "Related Posts"
403
+
404
+ #: admin.inc.php:449
405
+ msgid "plugin settings page"
406
+ msgstr "spraudnis iestatījumu lapa"
407
+
408
+ #: admin.inc.php:454
409
+ msgid ""
410
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
411
+ "visit the "
412
+ msgstr ""
413
+
414
+ #: admin.inc.php:454
415
+ msgid " to configure."
416
+ msgstr ""
417
+
418
+ #: contextual-related-posts.php:136
419
+ msgid "Powered by"
420
+ msgstr "Powered by"
421
+
422
+ #: contextual-related-posts.php:276
423
+ msgid "Display Related Posts"
424
+ msgstr "Displeja Related Posts"
425
+
426
+ #: contextual-related-posts.php:289
427
+ msgid "Title"
428
+ msgstr ""
429
+
430
+ #: contextual-related-posts.php:294
431
+ msgid "No. of posts"
432
+ msgstr ""
433
+
434
+ #: contextual-related-posts.php:299
435
+ msgid " Show excerpt?"
436
+ msgstr "Rādīt izvilkumu?"
437
+
438
+ #: contextual-related-posts.php:303
439
+ msgid "Thumbnail options"
440
+ msgstr "sīktēlu iespējas"
441
+
442
+ #: contextual-related-posts.php:305
443
+ msgid "Thumbnails inline, before title"
444
+ msgstr "Sīktēli inline, pirms virsraksta"
445
+
446
+ #: contextual-related-posts.php:306
447
+ msgid "Thumbnails inline, after title"
448
+ msgstr "Sīktēli inline, pēc nosaukuma"
449
+
450
+ #: contextual-related-posts.php:307
451
+ msgid "Only thumbnails, no text"
452
+ msgstr "Tikai sīktēlus, bez teksta"
453
+
454
+ #: contextual-related-posts.php:308
455
+ msgid "No thumbnails, only text."
456
+ msgstr "Nav sīktēlus, tikai tekstu."
457
+
458
+ #: contextual-related-posts.php:313
459
+ msgid "Thumbnail height"
460
+ msgstr "sīktēls augstums"
461
+
462
+ #: contextual-related-posts.php:318
463
+ msgid "Thumbnail width"
464
+ msgstr "Thumbnail platums"
465
+
466
+ #: contextual-related-posts.php:393
467
+ msgid "<h3>Related Posts:</h3>"
468
+ msgstr "<h3>saistīta posts:</h3>"
469
+
470
+ #: contextual-related-posts.php:394
471
+ msgid "No related posts found"
472
+ msgstr "Nr saistītus amatus atrasts"
473
+
474
+ #: contextual-related-posts.php:648
475
+ msgid "Settings"
476
+ msgstr "iestatījumi"
477
+
478
+ #: contextual-related-posts.php:663
479
+ msgid "Donate"
480
+ msgstr "ziedot"
481
+
482
+ #~ msgid "Follow @ajaydsouza on Twitter"
483
+ #~ msgstr "Следовать @ajaydsouza на Твиттере"
484
+
485
+ #~ msgid "Display \"No Related Posts\""
486
+ #~ msgstr "Показывать \"Нет похожих постов\""
487
+
488
+ #~ msgid "Exclude Categories: "
489
+ #~ msgstr "Исключить категории:"
490
+
491
+ #~ msgid "plugin page"
492
+ #~ msgstr "Страница плагина"
493
+
494
+ #~ msgid "Exclude Pages in Related Posts"
495
+ #~ msgstr "Исключить страницы в Похожих постах"
496
+
497
+ #~ msgid ""
498
+ #~ "Add related posts to the post content on single posts. <br />If you "
499
+ #~ "choose to disable this, please add <code>&lt;?php if(function_exists"
500
+ #~ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file "
501
+ #~ "where you want it displayed"
502
+ #~ msgstr ""
503
+ #~ "Добавить связанные посты в содержание поста. Если вы захотите отключить "
504
+ #~ "это, пожалуйста, добавьте код: <code>&lt;?php if(function_exists"
505
+ #~ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в файл шаблона вашего "
506
+ #~ "сайта"
507
+
508
+ #~ msgid ""
509
+ #~ "Append link to this plugin as item. Optional, but would be nice to give "
510
+ #~ "me some link love"
511
+ #~ msgstr ""
512
+ #~ "Добавить ссылку на этот плагин в качестве пункта. Необязательно, но было "
513
+ #~ "бы неплохо, чтобы поддержать разработчика."
514
+
515
+ #~ msgid ""
516
+ #~ "Post thumbnail meta field (the meta should point contain the image "
517
+ #~ "source): "
518
+ #~ msgstr ""
519
+ #~ "Мета-данные изображения поста (они должны содержать источник изображения):"
520
+
521
+ #~ msgid "Thumbnail dimensions:"
522
+ #~ msgstr "Размеры уменьшенного изображения:"
523
+
524
+ #~ msgid "Max width: "
525
+ #~ msgstr "Максимальная ширина:"
526
+
527
+ #~ msgid "Max height: "
528
+ #~ msgstr "Максимальная высота:"
529
+
530
+ #~ msgid "Support forum"
531
+ #~ msgstr "Форум поддержки"
languages/crp-nl_NL.mo CHANGED
Binary file
languages/crp-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: http://WPwebshop.com <info@wppg.me>\n"
@@ -25,91 +25,91 @@ msgstr "Opties succesvol opgeslagen."
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
- #: admin.inc.php:127
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
- #: admin.inc.php:140
33
  msgid "Support the development"
34
  msgstr "Ondersteun de ontwikkeling"
35
 
36
- #: admin.inc.php:148
37
  msgid "Enter amount in USD: "
38
  msgstr "Voer het bedrag in USD in:"
39
 
40
- #: admin.inc.php:152
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
- #: admin.inc.php:163
45
  #, fuzzy
46
  msgid "Quick Links"
47
  msgstr "Quick links"
48
 
49
- #: admin.inc.php:165
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Contextual Related Posts "
53
 
54
- #: admin.inc.php:166
55
  msgid "Other plugins"
56
  msgstr "Andere plugins"
57
 
58
- #: admin.inc.php:167
59
  msgid "Ajay's blog"
60
  msgstr "Ajay's blog"
61
 
62
- #: admin.inc.php:168 contextual-related-posts.php:662
63
  msgid "Support"
64
  msgstr "Ondersteuning"
65
 
66
- #: admin.inc.php:169
67
  msgid "Reviews"
68
  msgstr ""
69
 
70
- #: admin.inc.php:173
71
  msgid "Recent developments"
72
  msgstr "Recente ontwikkelingen"
73
 
74
- #: admin.inc.php:183
75
  msgid "General options"
76
  msgstr ""
77
 
78
- #: admin.inc.php:185
79
  msgid "Cache output?"
80
  msgstr ""
81
 
82
- #: admin.inc.php:187
83
  msgid ""
84
  "Enabling this option will cache the related posts output when the post is "
85
  "visited the first time. The cache is cleaned when you save this page."
86
  msgstr ""
87
 
88
- #: admin.inc.php:190 admin.inc.php:363
89
  msgid "Number of related posts to display: "
90
  msgstr "Aantal weer te geven gerelateerde berichten:"
91
 
92
- #: admin.inc.php:193
93
  msgid "Related posts should be newer than:"
94
  msgstr ""
95
 
96
- #: admin.inc.php:194
97
  msgid "days"
98
  msgstr ""
99
 
100
- #: admin.inc.php:196
101
  msgid "Post types to include in results (including custom post types)"
102
  msgstr ""
103
 
104
- #: admin.inc.php:207
105
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
106
  msgstr ""
107
 
108
- #: admin.inc.php:210
109
  msgid "Find related posts based on content as well as title"
110
  msgstr ""
111
 
112
- #: admin.inc.php:211
113
  #, fuzzy
114
  msgid ""
115
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -119,55 +119,55 @@ msgstr ""
119
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
120
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
121
 
122
- #: admin.inc.php:213
123
  msgid "List of post or page IDs to exclude from the results: "
124
  msgstr ""
125
 
126
- #: admin.inc.php:216
127
  msgid "Categories to exclude from the results: "
128
  msgstr ""
129
 
130
- #: admin.inc.php:232
131
  msgid ""
132
  "Comma separated list of category slugs. The field above has an autocomplete "
133
  "so simply start typing in the starting letters and it will prompt you with "
134
  "options"
135
  msgstr ""
136
 
137
- #: admin.inc.php:235
138
  #, fuzzy
139
  msgid "Add related posts to:"
140
  msgstr "Voeg gerelateerde berichten toe aan feed"
141
 
142
- #: admin.inc.php:237
143
  msgid "Posts"
144
  msgstr ""
145
 
146
- #: admin.inc.php:238
147
  msgid "Pages"
148
  msgstr ""
149
 
150
- #: admin.inc.php:239
151
  msgid "Home page"
152
  msgstr ""
153
 
154
- #: admin.inc.php:240
155
  msgid "Feeds"
156
  msgstr ""
157
 
158
- #: admin.inc.php:241
159
  msgid "Category archives"
160
  msgstr ""
161
 
162
- #: admin.inc.php:242
163
  msgid "Tag archives"
164
  msgstr ""
165
 
166
- #: admin.inc.php:243
167
  msgid "Other archives"
168
  msgstr ""
169
 
170
- #: admin.inc.php:244
171
  #, fuzzy
172
  msgid ""
173
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -179,150 +179,150 @@ msgstr ""
179
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon "
180
  "bestand waar je het wilt laten weergeven"
181
 
182
- #: admin.inc.php:247
183
  msgid "Add a link to the plugin page as a final item in the list"
184
  msgstr ""
185
 
186
- #: admin.inc.php:248
187
  msgid " <em>Optional</em>"
188
  msgstr ""
189
 
190
- #: admin.inc.php:255
191
  #, fuzzy
192
  msgid "Output options"
193
  msgstr "Output Opties:"
194
 
195
- #: admin.inc.php:257
196
  msgid "Title of related posts: "
197
  msgstr "Titel van gerelateerde berichten:"
198
 
199
- #: admin.inc.php:260
200
  msgid "When there are no posts, what should be shown?"
201
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
202
 
203
- #: admin.inc.php:264
204
  msgid "Blank Output"
205
  msgstr "Lege Output"
206
 
207
- #: admin.inc.php:268
208
  msgid "Display:"
209
  msgstr ""
210
 
211
- #: admin.inc.php:272 admin.inc.php:366
212
  msgid "Show post excerpt in list?"
213
  msgstr "Laat bericht uittreksel zien in lijst?"
214
 
215
- #: admin.inc.php:275
216
  msgid "Length of excerpt (in words): "
217
  msgstr "Lengte van uittreksel (in woorden):"
218
 
219
- #: admin.inc.php:278
220
  msgid "Limit post title length (in characters)"
221
  msgstr ""
222
 
223
- #: admin.inc.php:281
224
  msgid "Open links in new window"
225
  msgstr ""
226
 
227
- #: admin.inc.php:284
228
  msgid "Add nofollow attribute to links in the list"
229
  msgstr ""
230
 
231
- #: admin.inc.php:287
232
  #, fuzzy
233
  msgid "Exclude display of related posts on these posts / pages"
234
  msgstr "Voeg gerelateerde berichten toe aan feed"
235
 
236
- #: admin.inc.php:290
237
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
238
  msgstr ""
239
 
240
- #: admin.inc.php:293
241
  msgid "Customize the output:"
242
  msgstr "Aanpassen van de output:"
243
 
244
- #: admin.inc.php:295
245
  msgid "HTML to display before the list of posts: "
246
  msgstr "Weer te geven HTML voor de berichtenlijst:"
247
 
248
- #: admin.inc.php:298
249
  msgid "HTML to display before each list item: "
250
  msgstr "Weer te geven HTML voor elk item in de lijst:"
251
 
252
- #: admin.inc.php:301
253
  msgid "HTML to display after each list item: "
254
  msgstr "Weer te geven HTML na elk item in de lijst:"
255
 
256
- #: admin.inc.php:304
257
  msgid "HTML to display after the list of posts: "
258
  msgstr "Weer te geven HTML na de berichtenlijst:"
259
 
260
- #: admin.inc.php:307
261
  msgid "Post thumbnail options:"
262
  msgstr "Berichtopties miniatuurafbeelding:"
263
 
264
- #: admin.inc.php:309 admin.inc.php:369
265
  msgid "Location of post thumbnail:"
266
  msgstr ""
267
 
268
- #: admin.inc.php:313 admin.inc.php:373
269
  #, fuzzy
270
  msgid "Display thumbnails inline with posts, before title"
271
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
272
 
273
- #: admin.inc.php:317 admin.inc.php:377
274
  #, fuzzy
275
  msgid "Display thumbnails inline with posts, after title"
276
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
277
 
278
- #: admin.inc.php:321 admin.inc.php:381
279
  msgid "Display only thumbnails, no text"
280
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
281
 
282
- #: admin.inc.php:325 admin.inc.php:385
283
  msgid "Do not display thumbnails, only text."
284
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
285
 
286
- #: admin.inc.php:329 admin.inc.php:389
287
  msgid "Maximum width of the thumbnail: "
288
  msgstr ""
289
 
290
- #: admin.inc.php:332 admin.inc.php:392
291
  msgid "Maximum height of the thumbnail: "
292
  msgstr ""
293
 
294
- #: admin.inc.php:335
295
  msgid "Use timthumb to generate thumbnails? "
296
  msgstr ""
297
 
298
- #: admin.inc.php:336
299
  msgid ""
300
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
301
  "\">timthumb</a> will be used to generate thumbnails"
302
  msgstr ""
303
 
304
- #: admin.inc.php:338
305
  msgid "Quality of thumbnails generated by timthumb"
306
  msgstr ""
307
 
308
- #: admin.inc.php:341
309
  msgid ""
310
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
311
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
312
  msgstr ""
313
 
314
- #: admin.inc.php:344
315
  #, fuzzy
316
  msgid "Post thumbnail meta field name: "
317
  msgstr "Berichtopties miniatuurafbeelding:"
318
 
319
- #: admin.inc.php:345
320
  msgid ""
321
  "The value of this field should contain the image source and is set in the "
322
  "<em>Add New Post</em> screen"
323
  msgstr ""
324
 
325
- #: admin.inc.php:347
326
  #, fuzzy
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -332,7 +332,7 @@ msgstr ""
332
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
333
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
334
 
335
- #: admin.inc.php:348
336
  #, fuzzy
337
  msgid ""
338
  "This can slow down the loading of your page if the first image in the "
@@ -342,21 +342,21 @@ msgstr ""
342
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
343
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
344
 
345
- #: admin.inc.php:350
346
  msgid "Use default thumbnail? "
347
  msgstr ""
348
 
349
- #: admin.inc.php:351
350
  msgid ""
351
  "If checked, when no thumbnail is found, show a default one from the URL "
352
  "below. If not checked and no thumbnail is found, no image will be shown."
353
  msgstr ""
354
 
355
- #: admin.inc.php:353
356
  msgid "Default thumbnail: "
357
  msgstr ""
358
 
359
- #: admin.inc.php:354
360
  #, fuzzy
361
  msgid ""
362
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -368,75 +368,75 @@ msgstr ""
368
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
369
  "hieronder aangegeven:"
370
 
371
- #: admin.inc.php:359
372
  #, fuzzy
373
  msgid "Feed options"
374
  msgstr "Opties:"
375
 
376
- #: admin.inc.php:361
377
  msgid ""
378
  "Below options override the related posts settings for your blog feed. These "
379
  "only apply if you have selected to add related posts to Feeds in the General "
380
  "Options tab."
381
  msgstr ""
382
 
383
- #: admin.inc.php:398
384
  msgid "Custom Styles"
385
  msgstr ""
386
 
387
- #: admin.inc.php:400
388
  msgid "Custom CSS to add to header:"
389
  msgstr ""
390
 
391
- #: admin.inc.php:403
392
  msgid ""
393
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
394
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
395
  "\">FAQ</a> for available CSS classes to style."
396
  msgstr ""
397
 
398
- #: admin.inc.php:407
399
  #, fuzzy
400
  msgid "Save Options"
401
  msgstr "Opties:"
402
 
403
- #: admin.inc.php:408
404
  #, fuzzy
405
  msgid "Default Options"
406
  msgstr "Output Opties:"
407
 
408
- #: admin.inc.php:408
409
  msgid "Do you want to set options to Default?"
410
  msgstr "Wil je opties terug naar standaard instellen?"
411
 
412
- #: admin.inc.php:409
413
  msgid "Recreate Index"
414
  msgstr ""
415
 
416
- #: admin.inc.php:409
417
  msgid "Are you sure you want to recreate the index?"
418
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
419
 
420
- #: admin.inc.php:426
421
  msgid "Contextual Related Posts"
422
  msgstr "Contextual Related Posts"
423
 
424
- #: admin.inc.php:426 contextual-related-posts.php:277
425
  msgid "Related Posts"
426
  msgstr "Gerelateerde Berichten"
427
 
428
- #: admin.inc.php:434
429
  #, fuzzy
430
  msgid "plugin settings page"
431
  msgstr "plugin pagina"
432
 
433
- #: admin.inc.php:439
434
  msgid ""
435
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
436
  "visit the "
437
  msgstr ""
438
 
439
- #: admin.inc.php:439
440
  msgid " to configure."
441
  msgstr ""
442
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:01-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"
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
+ #: admin.inc.php:128
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
+ #: admin.inc.php:141
33
  msgid "Support the development"
34
  msgstr "Ondersteun de ontwikkeling"
35
 
36
+ #: admin.inc.php:149
37
  msgid "Enter amount in USD: "
38
  msgstr "Voer het bedrag in USD in:"
39
 
40
+ #: admin.inc.php:153
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
+ #: admin.inc.php:164
45
  #, fuzzy
46
  msgid "Quick Links"
47
  msgstr "Quick links"
48
 
49
+ #: admin.inc.php:166
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Contextual Related Posts "
53
 
54
+ #: admin.inc.php:167
55
  msgid "Other plugins"
56
  msgstr "Andere plugins"
57
 
58
+ #: admin.inc.php:168
59
  msgid "Ajay's blog"
60
  msgstr "Ajay's blog"
61
 
62
+ #: admin.inc.php:169 contextual-related-posts.php:662
63
  msgid "Support"
64
  msgstr "Ondersteuning"
65
 
66
+ #: admin.inc.php:170
67
  msgid "Reviews"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:174
71
  msgid "Recent developments"
72
  msgstr "Recente ontwikkelingen"
73
 
74
+ #: admin.inc.php:184
75
  msgid "General options"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:186
79
  msgid "Cache output?"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:188
83
  msgid ""
84
  "Enabling this option will cache the related posts output when the post is "
85
  "visited the first time. The cache is cleaned when you save this page."
86
  msgstr ""
87
 
88
+ #: admin.inc.php:191 admin.inc.php:376
89
  msgid "Number of related posts to display: "
90
  msgstr "Aantal weer te geven gerelateerde berichten:"
91
 
92
+ #: admin.inc.php:194
93
  msgid "Related posts should be newer than:"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:195
97
  msgid "days"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:197
101
  msgid "Post types to include in results (including custom post types)"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:208
105
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:211
109
  msgid "Find related posts based on content as well as title"
110
  msgstr ""
111
 
112
+ #: admin.inc.php:213
113
  #, fuzzy
114
  msgid ""
115
  "If unchecked, only posts titles are used. (I recommend using a caching "
119
  "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
120
  "gebruik van een caching plugin aan wanneer je dit inschakelt)"
121
 
122
+ #: admin.inc.php:216
123
  msgid "List of post or page IDs to exclude from the results: "
124
  msgstr ""
125
 
126
+ #: admin.inc.php:219
127
  msgid "Categories to exclude from the results: "
128
  msgstr ""
129
 
130
+ #: admin.inc.php:235
131
  msgid ""
132
  "Comma separated list of category slugs. The field above has an autocomplete "
133
  "so simply start typing in the starting letters and it will prompt you with "
134
  "options"
135
  msgstr ""
136
 
137
+ #: admin.inc.php:238
138
  #, fuzzy
139
  msgid "Add related posts to:"
140
  msgstr "Voeg gerelateerde berichten toe aan feed"
141
 
142
+ #: admin.inc.php:240
143
  msgid "Posts"
144
  msgstr ""
145
 
146
+ #: admin.inc.php:241
147
  msgid "Pages"
148
  msgstr ""
149
 
150
+ #: admin.inc.php:242
151
  msgid "Home page"
152
  msgstr ""
153
 
154
+ #: admin.inc.php:243
155
  msgid "Feeds"
156
  msgstr ""
157
 
158
+ #: admin.inc.php:244
159
  msgid "Category archives"
160
  msgstr ""
161
 
162
+ #: admin.inc.php:245
163
  msgid "Tag archives"
164
  msgstr ""
165
 
166
+ #: admin.inc.php:246
167
  msgid "Other archives"
168
  msgstr ""
169
 
170
+ #: admin.inc.php:247
171
  #, fuzzy
172
  msgid ""
173
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
179
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon "
180
  "bestand waar je het wilt laten weergeven"
181
 
182
+ #: admin.inc.php:250
183
  msgid "Add a link to the plugin page as a final item in the list"
184
  msgstr ""
185
 
186
+ #: admin.inc.php:251
187
  msgid " <em>Optional</em>"
188
  msgstr ""
189
 
190
+ #: admin.inc.php:258
191
  #, fuzzy
192
  msgid "Output options"
193
  msgstr "Output Opties:"
194
 
195
+ #: admin.inc.php:260
196
  msgid "Title of related posts: "
197
  msgstr "Titel van gerelateerde berichten:"
198
 
199
+ #: admin.inc.php:263
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:267
204
  msgid "Blank Output"
205
  msgstr "Lege Output"
206
 
207
+ #: admin.inc.php:271
208
  msgid "Display:"
209
  msgstr ""
210
 
211
+ #: admin.inc.php:275 admin.inc.php:379
212
  msgid "Show post excerpt in list?"
213
  msgstr "Laat bericht uittreksel zien in lijst?"
214
 
215
+ #: admin.inc.php:278
216
  msgid "Length of excerpt (in words): "
217
  msgstr "Lengte van uittreksel (in woorden):"
218
 
219
+ #: admin.inc.php:281
220
  msgid "Limit post title length (in characters)"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:284
224
  msgid "Open links in new window"
225
  msgstr ""
226
 
227
+ #: admin.inc.php:287
228
  msgid "Add nofollow attribute to links in the list"
229
  msgstr ""
230
 
231
+ #: admin.inc.php:290
232
  #, fuzzy
233
  msgid "Exclude display of related posts on these posts / pages"
234
  msgstr "Voeg gerelateerde berichten toe aan feed"
235
 
236
+ #: admin.inc.php:293
237
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
238
  msgstr ""
239
 
240
+ #: admin.inc.php:296
241
  msgid "Customize the output:"
242
  msgstr "Aanpassen van de output:"
243
 
244
+ #: admin.inc.php:298
245
  msgid "HTML to display before the list of posts: "
246
  msgstr "Weer te geven HTML voor de berichtenlijst:"
247
 
248
+ #: admin.inc.php:301
249
  msgid "HTML to display before each list item: "
250
  msgstr "Weer te geven HTML voor elk item in de lijst:"
251
 
252
+ #: admin.inc.php:304
253
  msgid "HTML to display after each list item: "
254
  msgstr "Weer te geven HTML na elk item in de lijst:"
255
 
256
+ #: admin.inc.php:307
257
  msgid "HTML to display after the list of posts: "
258
  msgstr "Weer te geven HTML na de berichtenlijst:"
259
 
260
+ #: admin.inc.php:310
261
  msgid "Post thumbnail options:"
262
  msgstr "Berichtopties miniatuurafbeelding:"
263
 
264
+ #: admin.inc.php:312 admin.inc.php:382
265
  msgid "Location of post thumbnail:"
266
  msgstr ""
267
 
268
+ #: admin.inc.php:316 admin.inc.php:386
269
  #, fuzzy
270
  msgid "Display thumbnails inline with posts, before title"
271
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
272
 
273
+ #: admin.inc.php:320 admin.inc.php:390
274
  #, fuzzy
275
  msgid "Display thumbnails inline with posts, after title"
276
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
277
 
278
+ #: admin.inc.php:324 admin.inc.php:394
279
  msgid "Display only thumbnails, no text"
280
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
281
 
282
+ #: admin.inc.php:328 admin.inc.php:398
283
  msgid "Do not display thumbnails, only text."
284
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
285
 
286
+ #: admin.inc.php:332 admin.inc.php:402
287
  msgid "Maximum width of the thumbnail: "
288
  msgstr ""
289
 
290
+ #: admin.inc.php:335 admin.inc.php:405
291
  msgid "Maximum height of the thumbnail: "
292
  msgstr ""
293
 
294
+ #: admin.inc.php:338
295
  msgid "Use timthumb to generate thumbnails? "
296
  msgstr ""
297
 
298
+ #: admin.inc.php:340
299
  msgid ""
300
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
301
  "\">timthumb</a> will be used to generate thumbnails"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:343
305
  msgid "Quality of thumbnails generated by timthumb"
306
  msgstr ""
307
 
308
+ #: admin.inc.php:346
309
  msgid ""
310
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
311
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
312
  msgstr ""
313
 
314
+ #: admin.inc.php:349
315
  #, fuzzy
316
  msgid "Post thumbnail meta field name: "
317
  msgstr "Berichtopties miniatuurafbeelding:"
318
 
319
+ #: admin.inc.php:351
320
  msgid ""
321
  "The value of this field should contain the image source and is set in the "
322
  "<em>Add New Post</em> screen"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:354
326
  #, fuzzy
327
  msgid ""
328
  "If the postmeta is not set, then should the plugin extract the first image "
332
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
333
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
334
 
335
+ #: admin.inc.php:356
336
  #, fuzzy
337
  msgid ""
338
  "This can slow down the loading of your page if the first image in the "
342
  "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
343
  "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
344
 
345
+ #: admin.inc.php:359
346
  msgid "Use default thumbnail? "
347
  msgstr ""
348
 
349
+ #: admin.inc.php:361
350
  msgid ""
351
  "If checked, when no thumbnail is found, show a default one from the URL "
352
  "below. If not checked and no thumbnail is found, no image will be shown."
353
  msgstr ""
354
 
355
+ #: admin.inc.php:364
356
  msgid "Default thumbnail: "
357
  msgstr ""
358
 
359
+ #: admin.inc.php:366
360
  #, fuzzy
361
  msgid ""
362
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
368
  "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
369
  "hieronder aangegeven:"
370
 
371
+ #: admin.inc.php:372
372
  #, fuzzy
373
  msgid "Feed options"
374
  msgstr "Opties:"
375
 
376
+ #: admin.inc.php:374
377
  msgid ""
378
  "Below options override the related posts settings for your blog feed. These "
379
  "only apply if you have selected to add related posts to Feeds in the General "
380
  "Options tab."
381
  msgstr ""
382
 
383
+ #: admin.inc.php:411
384
  msgid "Custom Styles"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:413
388
  msgid "Custom CSS to add to header:"
389
  msgstr ""
390
 
391
+ #: admin.inc.php:416
392
  msgid ""
393
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
394
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
395
  "\">FAQ</a> for available CSS classes to style."
396
  msgstr ""
397
 
398
+ #: admin.inc.php:421
399
  #, fuzzy
400
  msgid "Save Options"
401
  msgstr "Opties:"
402
 
403
+ #: admin.inc.php:422
404
  #, fuzzy
405
  msgid "Default Options"
406
  msgstr "Output Opties:"
407
 
408
+ #: admin.inc.php:422
409
  msgid "Do you want to set options to Default?"
410
  msgstr "Wil je opties terug naar standaard instellen?"
411
 
412
+ #: admin.inc.php:423
413
  msgid "Recreate Index"
414
  msgstr ""
415
 
416
+ #: admin.inc.php:423
417
  msgid "Are you sure you want to recreate the index?"
418
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
419
 
420
+ #: admin.inc.php:441
421
  msgid "Contextual Related Posts"
422
  msgstr "Contextual Related Posts"
423
 
424
+ #: admin.inc.php:441 contextual-related-posts.php:277
425
  msgid "Related Posts"
426
  msgstr "Gerelateerde Berichten"
427
 
428
+ #: admin.inc.php:449
429
  #, fuzzy
430
  msgid "plugin settings page"
431
  msgstr "plugin pagina"
432
 
433
+ #: admin.inc.php:454
434
  msgid ""
435
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
436
  "visit the "
437
  msgstr ""
438
 
439
+ #: admin.inc.php:454
440
  msgid " to configure."
441
  msgstr ""
442
 
languages/crp-ru_RU.mo CHANGED
Binary file
languages/crp-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
@@ -23,91 +23,91 @@ msgstr "Настройки сохранены успешно."
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
- #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
- #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "Поддержка развития проекта"
33
 
34
- #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "Введите сумму в долларах США:"
37
 
38
- #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
- #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Быстрые ссылки"
46
 
47
- #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Контекстные похожие посты"
51
 
52
- #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "Другие плагины"
55
 
56
- #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr "Блог автора (Ajay, английский язык)"
59
 
60
- #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Поддержка"
63
 
64
- #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "Последние разработки"
71
 
72
- #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:185
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:187
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
- #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "Количество отображаемых похожих постов:"
89
 
90
- #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
- #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
- #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
- #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
- #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
- #: admin.inc.php:211
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
@@ -118,55 +118,55 @@ msgstr ""
118
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
119
  "опцию)"
120
 
121
- #: admin.inc.php:213
122
  msgid "List of post or page IDs to exclude from the results: "
123
  msgstr ""
124
 
125
- #: admin.inc.php:216
126
  msgid "Categories to exclude from the results: "
127
  msgstr ""
128
 
129
- #: admin.inc.php:232
130
  msgid ""
131
  "Comma separated list of category slugs. The field above has an autocomplete "
132
  "so simply start typing in the starting letters and it will prompt you with "
133
  "options"
134
  msgstr ""
135
 
136
- #: admin.inc.php:235
137
  #, fuzzy
138
  msgid "Add related posts to:"
139
  msgstr "Добавить похожие посты в фид"
140
 
141
- #: admin.inc.php:237
142
  msgid "Posts"
143
  msgstr ""
144
 
145
- #: admin.inc.php:238
146
  msgid "Pages"
147
  msgstr ""
148
 
149
- #: admin.inc.php:239
150
  msgid "Home page"
151
  msgstr ""
152
 
153
- #: admin.inc.php:240
154
  msgid "Feeds"
155
  msgstr ""
156
 
157
- #: admin.inc.php:241
158
  msgid "Category archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:242
162
  msgid "Tag archives"
163
  msgstr ""
164
 
165
- #: admin.inc.php:243
166
  msgid "Other archives"
167
  msgstr ""
168
 
169
- #: admin.inc.php:244
170
  #, fuzzy
171
  msgid ""
172
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
@@ -178,150 +178,150 @@ msgstr ""
178
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на "
179
  "вашем сайте"
180
 
181
- #: admin.inc.php:247
182
  msgid "Add a link to the plugin page as a final item in the list"
183
  msgstr ""
184
 
185
- #: admin.inc.php:248
186
  msgid " <em>Optional</em>"
187
  msgstr ""
188
 
189
- #: admin.inc.php:255
190
  #, fuzzy
191
  msgid "Output options"
192
  msgstr "Опции вывода:"
193
 
194
- #: admin.inc.php:257
195
  msgid "Title of related posts: "
196
  msgstr "Названия связанных постов:"
197
 
198
- #: admin.inc.php:260
199
  msgid "When there are no posts, what should be shown?"
200
  msgstr "Когда нет сообщений, что должно быть показано?"
201
 
202
- #: admin.inc.php:264
203
  msgid "Blank Output"
204
  msgstr "Пустой выход"
205
 
206
- #: admin.inc.php:268
207
  msgid "Display:"
208
  msgstr ""
209
 
210
- #: admin.inc.php:272 admin.inc.php:366
211
  msgid "Show post excerpt in list?"
212
  msgstr "Показать выдержки из поста в списке?"
213
 
214
- #: admin.inc.php:275
215
  msgid "Length of excerpt (in words): "
216
  msgstr "Длина выдержки (в словах):"
217
 
218
- #: admin.inc.php:278
219
  msgid "Limit post title length (in characters)"
220
  msgstr ""
221
 
222
- #: admin.inc.php:281
223
  msgid "Open links in new window"
224
  msgstr ""
225
 
226
- #: admin.inc.php:284
227
  msgid "Add nofollow attribute to links in the list"
228
  msgstr ""
229
 
230
- #: admin.inc.php:287
231
  #, fuzzy
232
  msgid "Exclude display of related posts on these posts / pages"
233
  msgstr "Добавить похожие посты в фид"
234
 
235
- #: admin.inc.php:290
236
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
237
  msgstr ""
238
 
239
- #: admin.inc.php:293
240
  msgid "Customize the output:"
241
  msgstr "Настройки выхода:"
242
 
243
- #: admin.inc.php:295
244
  msgid "HTML to display before the list of posts: "
245
  msgstr "HTML для показа перед списком сообщений: "
246
 
247
- #: admin.inc.php:298
248
  msgid "HTML to display before each list item: "
249
  msgstr "HTML для показа перед каждым элементом списка: "
250
 
251
- #: admin.inc.php:301
252
  msgid "HTML to display after each list item: "
253
  msgstr "HTML для отображения после каждого элемента списка: "
254
 
255
- #: admin.inc.php:304
256
  msgid "HTML to display after the list of posts: "
257
  msgstr "HTML для отображения после списка сообщений: "
258
 
259
- #: admin.inc.php:307
260
  msgid "Post thumbnail options:"
261
  msgstr "Опции изображения поста:"
262
 
263
- #: admin.inc.php:309 admin.inc.php:369
264
  msgid "Location of post thumbnail:"
265
  msgstr ""
266
 
267
- #: admin.inc.php:313 admin.inc.php:373
268
  #, fuzzy
269
  msgid "Display thumbnails inline with posts, before title"
270
  msgstr "Показать эскизы в соответствии с сообщениями"
271
 
272
- #: admin.inc.php:317 admin.inc.php:377
273
  #, fuzzy
274
  msgid "Display thumbnails inline with posts, after title"
275
  msgstr "Показать эскизы в соответствии с сообщениями"
276
 
277
- #: admin.inc.php:321 admin.inc.php:381
278
  msgid "Display only thumbnails, no text"
279
  msgstr "Показывать только изображения, без текста"
280
 
281
- #: admin.inc.php:325 admin.inc.php:385
282
  msgid "Do not display thumbnails, only text."
283
  msgstr "Не показывать изображения, только текст"
284
 
285
- #: admin.inc.php:329 admin.inc.php:389
286
  msgid "Maximum width of the thumbnail: "
287
  msgstr ""
288
 
289
- #: admin.inc.php:332 admin.inc.php:392
290
  msgid "Maximum height of the thumbnail: "
291
  msgstr ""
292
 
293
- #: admin.inc.php:335
294
  msgid "Use timthumb to generate thumbnails? "
295
  msgstr ""
296
 
297
- #: admin.inc.php:336
298
  msgid ""
299
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
300
  "\">timthumb</a> will be used to generate thumbnails"
301
  msgstr ""
302
 
303
- #: admin.inc.php:338
304
  msgid "Quality of thumbnails generated by timthumb"
305
  msgstr ""
306
 
307
- #: admin.inc.php:341
308
  msgid ""
309
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
310
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
311
  msgstr ""
312
 
313
- #: admin.inc.php:344
314
  #, fuzzy
315
  msgid "Post thumbnail meta field name: "
316
  msgstr "Опции изображения поста:"
317
 
318
- #: admin.inc.php:345
319
  msgid ""
320
  "The value of this field should contain the image source and is set in the "
321
  "<em>Add New Post</em> screen"
322
  msgstr ""
323
 
324
- #: admin.inc.php:347
325
  #, fuzzy
326
  msgid ""
327
  "If the postmeta is not set, then should the plugin extract the first image "
@@ -330,7 +330,7 @@ msgstr ""
330
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
331
  "может замедлить загрузку сообщения (если изображение слишком велико)"
332
 
333
- #: admin.inc.php:348
334
  #, fuzzy
335
  msgid ""
336
  "This can slow down the loading of your page if the first image in the "
@@ -339,21 +339,21 @@ msgstr ""
339
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
340
  "может замедлить загрузку сообщения (если изображение слишком велико)"
341
 
342
- #: admin.inc.php:350
343
  msgid "Use default thumbnail? "
344
  msgstr ""
345
 
346
- #: admin.inc.php:351
347
  msgid ""
348
  "If checked, when no thumbnail is found, show a default one from the URL "
349
  "below. If not checked and no thumbnail is found, no image will be shown."
350
  msgstr ""
351
 
352
- #: admin.inc.php:353
353
  msgid "Default thumbnail: "
354
  msgstr ""
355
 
356
- #: admin.inc.php:354
357
  #, fuzzy
358
  msgid ""
359
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
@@ -364,75 +364,75 @@ msgstr ""
364
  "обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
365
  "плагин будет показывать изображение по умолчанию, как указано ниже:"
366
 
367
- #: admin.inc.php:359
368
  #, fuzzy
369
  msgid "Feed options"
370
  msgstr "Опции:"
371
 
372
- #: admin.inc.php:361
373
  msgid ""
374
  "Below options override the related posts settings for your blog feed. These "
375
  "only apply if you have selected to add related posts to Feeds in the General "
376
  "Options tab."
377
  msgstr ""
378
 
379
- #: admin.inc.php:398
380
  msgid "Custom Styles"
381
  msgstr ""
382
 
383
- #: admin.inc.php:400
384
  msgid "Custom CSS to add to header:"
385
  msgstr ""
386
 
387
- #: admin.inc.php:403
388
  msgid ""
389
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
390
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
391
  "\">FAQ</a> for available CSS classes to style."
392
  msgstr ""
393
 
394
- #: admin.inc.php:407
395
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "Опции:"
398
 
399
- #: admin.inc.php:408
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "Опции вывода:"
403
 
404
- #: admin.inc.php:408
405
  msgid "Do you want to set options to Default?"
406
  msgstr "Вы хотите задать параметры по умолчанию?"
407
 
408
- #: admin.inc.php:409
409
  msgid "Recreate Index"
410
  msgstr ""
411
 
412
- #: admin.inc.php:409
413
  msgid "Are you sure you want to recreate the index?"
414
  msgstr "Вы уверены, что хотите воссоздать индекс?"
415
 
416
- #: admin.inc.php:426
417
  msgid "Contextual Related Posts"
418
  msgstr "Контекстные похожие посты"
419
 
420
- #: admin.inc.php:426 contextual-related-posts.php:277
421
  msgid "Related Posts"
422
  msgstr "Похожие посты"
423
 
424
- #: admin.inc.php:434
425
  #, fuzzy
426
  msgid "plugin settings page"
427
  msgstr "Страница плагина"
428
 
429
- #: admin.inc.php:439
430
  msgid ""
431
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
432
  "visit the "
433
  msgstr ""
434
 
435
- #: admin.inc.php:439
436
  msgid " to configure."
437
  msgstr ""
438
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:01-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
+ #: admin.inc.php:128
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
+ #: admin.inc.php:141
31
  msgid "Support the development"
32
  msgstr "Поддержка развития проекта"
33
 
34
+ #: admin.inc.php:149
35
  msgid "Enter amount in USD: "
36
  msgstr "Введите сумму в долларах США:"
37
 
38
+ #: admin.inc.php:153
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
+ #: admin.inc.php:164
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Быстрые ссылки"
46
 
47
+ #: admin.inc.php:166
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Контекстные похожие посты"
51
 
52
+ #: admin.inc.php:167
53
  msgid "Other plugins"
54
  msgstr "Другие плагины"
55
 
56
+ #: admin.inc.php:168
57
  msgid "Ajay's blog"
58
  msgstr "Блог автора (Ajay, английский язык)"
59
 
60
+ #: admin.inc.php:169 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "Поддержка"
63
 
64
+ #: admin.inc.php:170
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:174
69
  msgid "Recent developments"
70
  msgstr "Последние разработки"
71
 
72
+ #: admin.inc.php:184
73
  msgid "General options"
74
  msgstr ""
75
 
76
+ #: admin.inc.php:186
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:188
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
+ #: admin.inc.php:191 admin.inc.php:376
87
  msgid "Number of related posts to display: "
88
  msgstr "Количество отображаемых похожих постов:"
89
 
90
+ #: admin.inc.php:194
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:195
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:197
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:208
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:211
107
  msgid "Find related posts based on content as well as title"
108
  msgstr ""
109
 
110
+ #: admin.inc.php:213
111
  #, fuzzy
112
  msgid ""
113
  "If unchecked, only posts titles are used. (I recommend using a caching "
118
  "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
119
  "опцию)"
120
 
121
+ #: admin.inc.php:216
122
  msgid "List of post or page IDs to exclude from the results: "
123
  msgstr ""
124
 
125
+ #: admin.inc.php:219
126
  msgid "Categories to exclude from the results: "
127
  msgstr ""
128
 
129
+ #: admin.inc.php:235
130
  msgid ""
131
  "Comma separated list of category slugs. The field above has an autocomplete "
132
  "so simply start typing in the starting letters and it will prompt you with "
133
  "options"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:238
137
  #, fuzzy
138
  msgid "Add related posts to:"
139
  msgstr "Добавить похожие посты в фид"
140
 
141
+ #: admin.inc.php:240
142
  msgid "Posts"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:241
146
  msgid "Pages"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:242
150
  msgid "Home page"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:243
154
  msgid "Feeds"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:244
158
  msgid "Category archives"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:245
162
  msgid "Tag archives"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:246
166
  msgid "Other archives"
167
  msgstr ""
168
 
169
+ #: admin.inc.php:247
170
  #, fuzzy
171
  msgid ""
172
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
178
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на "
179
  "вашем сайте"
180
 
181
+ #: admin.inc.php:250
182
  msgid "Add a link to the plugin page as a final item in the list"
183
  msgstr ""
184
 
185
+ #: admin.inc.php:251
186
  msgid " <em>Optional</em>"
187
  msgstr ""
188
 
189
+ #: admin.inc.php:258
190
  #, fuzzy
191
  msgid "Output options"
192
  msgstr "Опции вывода:"
193
 
194
+ #: admin.inc.php:260
195
  msgid "Title of related posts: "
196
  msgstr "Названия связанных постов:"
197
 
198
+ #: admin.inc.php:263
199
  msgid "When there are no posts, what should be shown?"
200
  msgstr "Когда нет сообщений, что должно быть показано?"
201
 
202
+ #: admin.inc.php:267
203
  msgid "Blank Output"
204
  msgstr "Пустой выход"
205
 
206
+ #: admin.inc.php:271
207
  msgid "Display:"
208
  msgstr ""
209
 
210
+ #: admin.inc.php:275 admin.inc.php:379
211
  msgid "Show post excerpt in list?"
212
  msgstr "Показать выдержки из поста в списке?"
213
 
214
+ #: admin.inc.php:278
215
  msgid "Length of excerpt (in words): "
216
  msgstr "Длина выдержки (в словах):"
217
 
218
+ #: admin.inc.php:281
219
  msgid "Limit post title length (in characters)"
220
  msgstr ""
221
 
222
+ #: admin.inc.php:284
223
  msgid "Open links in new window"
224
  msgstr ""
225
 
226
+ #: admin.inc.php:287
227
  msgid "Add nofollow attribute to links in the list"
228
  msgstr ""
229
 
230
+ #: admin.inc.php:290
231
  #, fuzzy
232
  msgid "Exclude display of related posts on these posts / pages"
233
  msgstr "Добавить похожие посты в фид"
234
 
235
+ #: admin.inc.php:293
236
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
237
  msgstr ""
238
 
239
+ #: admin.inc.php:296
240
  msgid "Customize the output:"
241
  msgstr "Настройки выхода:"
242
 
243
+ #: admin.inc.php:298
244
  msgid "HTML to display before the list of posts: "
245
  msgstr "HTML для показа перед списком сообщений: "
246
 
247
+ #: admin.inc.php:301
248
  msgid "HTML to display before each list item: "
249
  msgstr "HTML для показа перед каждым элементом списка: "
250
 
251
+ #: admin.inc.php:304
252
  msgid "HTML to display after each list item: "
253
  msgstr "HTML для отображения после каждого элемента списка: "
254
 
255
+ #: admin.inc.php:307
256
  msgid "HTML to display after the list of posts: "
257
  msgstr "HTML для отображения после списка сообщений: "
258
 
259
+ #: admin.inc.php:310
260
  msgid "Post thumbnail options:"
261
  msgstr "Опции изображения поста:"
262
 
263
+ #: admin.inc.php:312 admin.inc.php:382
264
  msgid "Location of post thumbnail:"
265
  msgstr ""
266
 
267
+ #: admin.inc.php:316 admin.inc.php:386
268
  #, fuzzy
269
  msgid "Display thumbnails inline with posts, before title"
270
  msgstr "Показать эскизы в соответствии с сообщениями"
271
 
272
+ #: admin.inc.php:320 admin.inc.php:390
273
  #, fuzzy
274
  msgid "Display thumbnails inline with posts, after title"
275
  msgstr "Показать эскизы в соответствии с сообщениями"
276
 
277
+ #: admin.inc.php:324 admin.inc.php:394
278
  msgid "Display only thumbnails, no text"
279
  msgstr "Показывать только изображения, без текста"
280
 
281
+ #: admin.inc.php:328 admin.inc.php:398
282
  msgid "Do not display thumbnails, only text."
283
  msgstr "Не показывать изображения, только текст"
284
 
285
+ #: admin.inc.php:332 admin.inc.php:402
286
  msgid "Maximum width of the thumbnail: "
287
  msgstr ""
288
 
289
+ #: admin.inc.php:335 admin.inc.php:405
290
  msgid "Maximum height of the thumbnail: "
291
  msgstr ""
292
 
293
+ #: admin.inc.php:338
294
  msgid "Use timthumb to generate thumbnails? "
295
  msgstr ""
296
 
297
+ #: admin.inc.php:340
298
  msgid ""
299
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
300
  "\">timthumb</a> will be used to generate thumbnails"
301
  msgstr ""
302
 
303
+ #: admin.inc.php:343
304
  msgid "Quality of thumbnails generated by timthumb"
305
  msgstr ""
306
 
307
+ #: admin.inc.php:346
308
  msgid ""
309
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
310
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
311
  msgstr ""
312
 
313
+ #: admin.inc.php:349
314
  #, fuzzy
315
  msgid "Post thumbnail meta field name: "
316
  msgstr "Опции изображения поста:"
317
 
318
+ #: admin.inc.php:351
319
  msgid ""
320
  "The value of this field should contain the image source and is set in the "
321
  "<em>Add New Post</em> screen"
322
  msgstr ""
323
 
324
+ #: admin.inc.php:354
325
  #, fuzzy
326
  msgid ""
327
  "If the postmeta is not set, then should the plugin extract the first image "
330
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
331
  "может замедлить загрузку сообщения (если изображение слишком велико)"
332
 
333
+ #: admin.inc.php:356
334
  #, fuzzy
335
  msgid ""
336
  "This can slow down the loading of your page if the first image in the "
339
  "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
340
  "может замедлить загрузку сообщения (если изображение слишком велико)"
341
 
342
+ #: admin.inc.php:359
343
  msgid "Use default thumbnail? "
344
  msgstr ""
345
 
346
+ #: admin.inc.php:361
347
  msgid ""
348
  "If checked, when no thumbnail is found, show a default one from the URL "
349
  "below. If not checked and no thumbnail is found, no image will be shown."
350
  msgstr ""
351
 
352
+ #: admin.inc.php:364
353
  msgid "Default thumbnail: "
354
  msgstr ""
355
 
356
+ #: admin.inc.php:366
357
  #, fuzzy
358
  msgid ""
359
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
364
  "обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
365
  "плагин будет показывать изображение по умолчанию, как указано ниже:"
366
 
367
+ #: admin.inc.php:372
368
  #, fuzzy
369
  msgid "Feed options"
370
  msgstr "Опции:"
371
 
372
+ #: admin.inc.php:374
373
  msgid ""
374
  "Below options override the related posts settings for your blog feed. These "
375
  "only apply if you have selected to add related posts to Feeds in the General "
376
  "Options tab."
377
  msgstr ""
378
 
379
+ #: admin.inc.php:411
380
  msgid "Custom Styles"
381
  msgstr ""
382
 
383
+ #: admin.inc.php:413
384
  msgid "Custom CSS to add to header:"
385
  msgstr ""
386
 
387
+ #: admin.inc.php:416
388
  msgid ""
389
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
390
  "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
391
  "\">FAQ</a> for available CSS classes to style."
392
  msgstr ""
393
 
394
+ #: admin.inc.php:421
395
  #, fuzzy
396
  msgid "Save Options"
397
  msgstr "Опции:"
398
 
399
+ #: admin.inc.php:422
400
  #, fuzzy
401
  msgid "Default Options"
402
  msgstr "Опции вывода:"
403
 
404
+ #: admin.inc.php:422
405
  msgid "Do you want to set options to Default?"
406
  msgstr "Вы хотите задать параметры по умолчанию?"
407
 
408
+ #: admin.inc.php:423
409
  msgid "Recreate Index"
410
  msgstr ""
411
 
412
+ #: admin.inc.php:423
413
  msgid "Are you sure you want to recreate the index?"
414
  msgstr "Вы уверены, что хотите воссоздать индекс?"
415
 
416
+ #: admin.inc.php:441
417
  msgid "Contextual Related Posts"
418
  msgstr "Контекстные похожие посты"
419
 
420
+ #: admin.inc.php:441 contextual-related-posts.php:277
421
  msgid "Related Posts"
422
  msgstr "Похожие посты"
423
 
424
+ #: admin.inc.php:449
425
  #, fuzzy
426
  msgid "plugin settings page"
427
  msgstr "Страница плагина"
428
 
429
+ #: admin.inc.php:454
430
  msgid ""
431
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
432
  "visit the "
433
  msgstr ""
434
 
435
+ #: admin.inc.php:454
436
  msgid " to configure."
437
  msgstr ""
438
 
languages/crp-zh_CN.mo CHANGED
Binary file
languages/crp-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-07 23:42-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
@@ -23,146 +23,146 @@ msgstr "成功保存设置。"
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
- #: admin.inc.php:127
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
- #: admin.inc.php:140
31
  msgid "Support the development"
32
  msgstr "支持开发"
33
 
34
- #: admin.inc.php:148
35
  msgid "Enter amount in USD: "
36
  msgstr "输入美元金额:"
37
 
38
- #: admin.inc.php:152
39
  msgid "Send your donation to the author of"
40
  msgstr "捐赠给作者"
41
 
42
- #: admin.inc.php:163
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "快捷链接"
46
 
47
- #: admin.inc.php:165
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "相关日志"
51
 
52
- #: admin.inc.php:166
53
  msgid "Other plugins"
54
  msgstr "其他插件"
55
 
56
- #: admin.inc.php:167
57
  msgid "Ajay's blog"
58
  msgstr "Ajay 的博客"
59
 
60
- #: admin.inc.php:168 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "技术支持"
63
 
64
- #: admin.inc.php:169
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
- #: admin.inc.php:173
69
  msgid "Recent developments"
70
  msgstr "最新开发"
71
 
72
- #: admin.inc.php:183
73
  msgid "General options"
74
  msgstr "一般设置"
75
 
76
- #: admin.inc.php:185
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
- #: admin.inc.php:187
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
- #: admin.inc.php:190 admin.inc.php:363
87
  msgid "Number of related posts to display: "
88
  msgstr "相关日志数量:"
89
 
90
- #: admin.inc.php:193
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
- #: admin.inc.php:194
95
  msgid "days"
96
  msgstr ""
97
 
98
- #: admin.inc.php:196
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr "被索引的日志类型(包含自定义日志类型)"
101
 
102
- #: admin.inc.php:207
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
105
 
106
- #: admin.inc.php:210
107
  msgid "Find related posts based on content as well as title"
108
  msgstr "根据标题和正文内容索引"
109
 
110
- #: admin.inc.php:211
111
  msgid ""
112
  "If unchecked, only posts titles are used. (I recommend using a caching "
113
  "plugin if you enable this)"
114
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
115
 
116
- #: admin.inc.php:213
117
  msgid "List of post or page IDs to exclude from the results: "
118
  msgstr "排除的文章或页面 ID:"
119
 
120
- #: admin.inc.php:216
121
  #, fuzzy
122
  msgid "Categories to exclude from the results: "
123
  msgstr "排除的文章或页面 ID:"
124
 
125
- #: admin.inc.php:232
126
  msgid ""
127
  "Comma separated list of category slugs. The field above has an autocomplete "
128
  "so simply start typing in the starting letters and it will prompt you with "
129
  "options"
130
  msgstr ""
131
 
132
- #: admin.inc.php:235
133
  #, fuzzy
134
  msgid "Add related posts to:"
135
  msgstr "添加相关日志到 feed 里"
136
 
137
- #: admin.inc.php:237
138
  msgid "Posts"
139
  msgstr ""
140
 
141
- #: admin.inc.php:238
142
  msgid "Pages"
143
  msgstr ""
144
 
145
- #: admin.inc.php:239
146
  msgid "Home page"
147
  msgstr ""
148
 
149
- #: admin.inc.php:240
150
  msgid "Feeds"
151
  msgstr ""
152
 
153
- #: admin.inc.php:241
154
  msgid "Category archives"
155
  msgstr ""
156
 
157
- #: admin.inc.php:242
158
  msgid "Tag archives"
159
  msgstr ""
160
 
161
- #: admin.inc.php:243
162
  msgid "Other archives"
163
  msgstr ""
164
 
165
- #: admin.inc.php:244
166
  msgid ""
167
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
168
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
@@ -171,121 +171,121 @@ msgstr ""
171
  "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
172
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
173
 
174
- #: admin.inc.php:247
175
  msgid "Add a link to the plugin page as a final item in the list"
176
  msgstr "在相关日志后添加插件页面的链接"
177
 
178
- #: admin.inc.php:248
179
  msgid " <em>Optional</em>"
180
  msgstr " <em>可选</em>"
181
 
182
- #: admin.inc.php:255
183
  #, fuzzy
184
  msgid "Output options"
185
  msgstr "显示设置"
186
 
187
- #: admin.inc.php:257
188
  msgid "Title of related posts: "
189
  msgstr "相关日志的标题:"
190
 
191
- #: admin.inc.php:260
192
  msgid "When there are no posts, what should be shown?"
193
  msgstr "当不存在相关日志时,显示什么?"
194
 
195
- #: admin.inc.php:264
196
  msgid "Blank Output"
197
  msgstr "不显示"
198
 
199
- #: admin.inc.php:268
200
  msgid "Display:"
201
  msgstr ""
202
 
203
- #: admin.inc.php:272 admin.inc.php:366
204
  msgid "Show post excerpt in list?"
205
  msgstr "是否显示日志摘要?"
206
 
207
- #: admin.inc.php:275
208
  msgid "Length of excerpt (in words): "
209
  msgstr "摘要长度(词数):"
210
 
211
- #: admin.inc.php:278
212
  msgid "Limit post title length (in characters)"
213
  msgstr ""
214
 
215
- #: admin.inc.php:281
216
  msgid "Open links in new window"
217
  msgstr ""
218
 
219
- #: admin.inc.php:284
220
  msgid "Add nofollow attribute to links in the list"
221
  msgstr ""
222
 
223
- #: admin.inc.php:287
224
  #, fuzzy
225
  msgid "Exclude display of related posts on these posts / pages"
226
  msgstr "添加相关日志到页面里"
227
 
228
- #: admin.inc.php:290
229
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
230
  msgstr ""
231
 
232
- #: admin.inc.php:293
233
  msgid "Customize the output:"
234
  msgstr "自定义显示:"
235
 
236
- #: admin.inc.php:295
237
  msgid "HTML to display before the list of posts: "
238
  msgstr "显示在每篇日志后面的 HTML 标签:"
239
 
240
- #: admin.inc.php:298
241
  msgid "HTML to display before each list item: "
242
  msgstr "显示在每篇日志后面的 HTML 标签:"
243
 
244
- #: admin.inc.php:301
245
  msgid "HTML to display after each list item: "
246
  msgstr "显示在日志列表前面的 HTML 标签:"
247
 
248
- #: admin.inc.php:304
249
  msgid "HTML to display after the list of posts: "
250
  msgstr "显示在日志列表后面的 HTML 标签:"
251
 
252
- #: admin.inc.php:307
253
  msgid "Post thumbnail options:"
254
  msgstr "日志缩略图设置:"
255
 
256
- #: admin.inc.php:309 admin.inc.php:369
257
  msgid "Location of post thumbnail:"
258
  msgstr "日志缩略图位置:"
259
 
260
- #: admin.inc.php:313 admin.inc.php:373
261
  msgid "Display thumbnails inline with posts, before title"
262
  msgstr "在标题前显示缩略图"
263
 
264
- #: admin.inc.php:317 admin.inc.php:377
265
  msgid "Display thumbnails inline with posts, after title"
266
  msgstr "在标题后显示缩略图"
267
 
268
- #: admin.inc.php:321 admin.inc.php:381
269
  msgid "Display only thumbnails, no text"
270
  msgstr "不显示文本,只显示缩略图"
271
 
272
- #: admin.inc.php:325 admin.inc.php:385
273
  msgid "Do not display thumbnails, only text."
274
  msgstr "不显示缩略图,只显示文本"
275
 
276
- #: admin.inc.php:329 admin.inc.php:389
277
  msgid "Maximum width of the thumbnail: "
278
  msgstr "缩略图最大宽度"
279
 
280
- #: admin.inc.php:332 admin.inc.php:392
281
  msgid "Maximum height of the thumbnail: "
282
  msgstr "缩略图最大高度"
283
 
284
- #: admin.inc.php:335
285
  msgid "Use timthumb to generate thumbnails? "
286
  msgstr "是否使用 timthumb 生成缩略图?"
287
 
288
- #: admin.inc.php:336
289
  msgid ""
290
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
291
  "\">timthumb</a> will be used to generate thumbnails"
@@ -293,54 +293,54 @@ msgstr ""
293
  "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
294
  "\">timthumb</a> 生成缩略图"
295
 
296
- #: admin.inc.php:338
297
  msgid "Quality of thumbnails generated by timthumb"
298
  msgstr ""
299
 
300
- #: admin.inc.php:341
301
  msgid ""
302
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
303
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
304
  msgstr ""
305
 
306
- #: admin.inc.php:344
307
  msgid "Post thumbnail meta field name: "
308
  msgstr "日志缩略图自定义栏目的名称:"
309
 
310
- #: admin.inc.php:345
311
  msgid ""
312
  "The value of this field should contain the image source and is set in the "
313
  "<em>Add New Post</em> screen"
314
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
315
 
316
- #: admin.inc.php:347
317
  msgid ""
318
  "If the postmeta is not set, then should the plugin extract the first image "
319
  "from the post?"
320
  msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
321
 
322
- #: admin.inc.php:348
323
  msgid ""
324
  "This can slow down the loading of your page if the first image in the "
325
  "related posts is large in file-size"
326
  msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
327
 
328
- #: admin.inc.php:350
329
  msgid "Use default thumbnail? "
330
  msgstr "是否使用默认缩略图?"
331
 
332
- #: admin.inc.php:351
333
  msgid ""
334
  "If checked, when no thumbnail is found, show a default one from the URL "
335
  "below. If not checked and no thumbnail is found, no image will be shown."
336
  msgstr ""
337
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
338
 
339
- #: admin.inc.php:353
340
  msgid "Default thumbnail: "
341
  msgstr "默认缩略图:"
342
 
343
- #: admin.inc.php:354
344
  msgid ""
345
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
346
  "then it will check the meta field. If this is not available, then it will "
@@ -349,27 +349,27 @@ msgstr ""
349
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
350
  "示上面默认图像"
351
 
352
- #: admin.inc.php:359
353
  #, fuzzy
354
  msgid "Feed options"
355
  msgstr "一般设置"
356
 
357
- #: admin.inc.php:361
358
  msgid ""
359
  "Below options override the related posts settings for your blog feed. These "
360
  "only apply if you have selected to add related posts to Feeds in the General "
361
  "Options tab."
362
  msgstr ""
363
 
364
- #: admin.inc.php:398
365
  msgid "Custom Styles"
366
  msgstr "自定义样式"
367
 
368
- #: admin.inc.php:400
369
  msgid "Custom CSS to add to header:"
370
  msgstr "添加自定义 CSS 到 header:"
371
 
372
- #: admin.inc.php:403
373
  #, fuzzy
374
  msgid ""
375
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
@@ -379,45 +379,45 @@ msgstr ""
379
  "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
380
  "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
381
 
382
- #: admin.inc.php:407
383
  msgid "Save Options"
384
  msgstr "保存设置"
385
 
386
- #: admin.inc.php:408
387
  msgid "Default Options"
388
  msgstr "默认设置"
389
 
390
- #: admin.inc.php:408
391
  msgid "Do you want to set options to Default?"
392
  msgstr "是否要重置设置?"
393
 
394
- #: admin.inc.php:409
395
  msgid "Recreate Index"
396
  msgstr "重建索引"
397
 
398
- #: admin.inc.php:409
399
  msgid "Are you sure you want to recreate the index?"
400
  msgstr "是否要重建索引?"
401
 
402
- #: admin.inc.php:426
403
  msgid "Contextual Related Posts"
404
  msgstr "Contextual Related Posts"
405
 
406
- #: admin.inc.php:426 contextual-related-posts.php:277
407
  msgid "Related Posts"
408
  msgstr "相关日志"
409
 
410
- #: admin.inc.php:434
411
  msgid "plugin settings page"
412
  msgstr "插件设置页面"
413
 
414
- #: admin.inc.php:439
415
  msgid ""
416
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
417
  "visit the "
418
  msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
419
 
420
- #: admin.inc.php:439
421
  msgid " to configure."
422
  msgstr "设置插件。"
423
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-04-26 08:02-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
+ #: admin.inc.php:128
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
+ #: admin.inc.php:141
31
  msgid "Support the development"
32
  msgstr "支持开发"
33
 
34
+ #: admin.inc.php:149
35
  msgid "Enter amount in USD: "
36
  msgstr "输入美元金额:"
37
 
38
+ #: admin.inc.php:153
39
  msgid "Send your donation to the author of"
40
  msgstr "捐赠给作者"
41
 
42
+ #: admin.inc.php:164
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "快捷链接"
46
 
47
+ #: admin.inc.php:166
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "相关日志"
51
 
52
+ #: admin.inc.php:167
53
  msgid "Other plugins"
54
  msgstr "其他插件"
55
 
56
+ #: admin.inc.php:168
57
  msgid "Ajay's blog"
58
  msgstr "Ajay 的博客"
59
 
60
+ #: admin.inc.php:169 contextual-related-posts.php:662
61
  msgid "Support"
62
  msgstr "技术支持"
63
 
64
+ #: admin.inc.php:170
65
  msgid "Reviews"
66
  msgstr ""
67
 
68
+ #: admin.inc.php:174
69
  msgid "Recent developments"
70
  msgstr "最新开发"
71
 
72
+ #: admin.inc.php:184
73
  msgid "General options"
74
  msgstr "一般设置"
75
 
76
+ #: admin.inc.php:186
77
  msgid "Cache output?"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:188
81
  msgid ""
82
  "Enabling this option will cache the related posts output when the post is "
83
  "visited the first time. The cache is cleaned when you save this page."
84
  msgstr ""
85
 
86
+ #: admin.inc.php:191 admin.inc.php:376
87
  msgid "Number of related posts to display: "
88
  msgstr "相关日志数量:"
89
 
90
+ #: admin.inc.php:194
91
  msgid "Related posts should be newer than:"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:195
95
  msgid "days"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:197
99
  msgid "Post types to include in results (including custom post types)"
100
  msgstr "被索引的日志类型(包含自定义日志类型)"
101
 
102
+ #: admin.inc.php:208
103
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
104
  msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
105
 
106
+ #: admin.inc.php:211
107
  msgid "Find related posts based on content as well as title"
108
  msgstr "根据标题和正文内容索引"
109
 
110
+ #: admin.inc.php:213
111
  msgid ""
112
  "If unchecked, only posts titles are used. (I recommend using a caching "
113
  "plugin if you enable this)"
114
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
115
 
116
+ #: admin.inc.php:216
117
  msgid "List of post or page IDs to exclude from the results: "
118
  msgstr "排除的文章或页面 ID:"
119
 
120
+ #: admin.inc.php:219
121
  #, fuzzy
122
  msgid "Categories to exclude from the results: "
123
  msgstr "排除的文章或页面 ID:"
124
 
125
+ #: admin.inc.php:235
126
  msgid ""
127
  "Comma separated list of category slugs. The field above has an autocomplete "
128
  "so simply start typing in the starting letters and it will prompt you with "
129
  "options"
130
  msgstr ""
131
 
132
+ #: admin.inc.php:238
133
  #, fuzzy
134
  msgid "Add related posts to:"
135
  msgstr "添加相关日志到 feed 里"
136
 
137
+ #: admin.inc.php:240
138
  msgid "Posts"
139
  msgstr ""
140
 
141
+ #: admin.inc.php:241
142
  msgid "Pages"
143
  msgstr ""
144
 
145
+ #: admin.inc.php:242
146
  msgid "Home page"
147
  msgstr ""
148
 
149
+ #: admin.inc.php:243
150
  msgid "Feeds"
151
  msgstr ""
152
 
153
+ #: admin.inc.php:244
154
  msgid "Category archives"
155
  msgstr ""
156
 
157
+ #: admin.inc.php:245
158
  msgid "Tag archives"
159
  msgstr ""
160
 
161
+ #: admin.inc.php:246
162
  msgid "Other archives"
163
  msgstr ""
164
 
165
+ #: admin.inc.php:247
166
  msgid ""
167
  "If you choose to disable this, please add <code>&lt;?php if(function_exists"
168
  "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
171
  "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
172
  "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
173
 
174
+ #: admin.inc.php:250
175
  msgid "Add a link to the plugin page as a final item in the list"
176
  msgstr "在相关日志后添加插件页面的链接"
177
 
178
+ #: admin.inc.php:251
179
  msgid " <em>Optional</em>"
180
  msgstr " <em>可选</em>"
181
 
182
+ #: admin.inc.php:258
183
  #, fuzzy
184
  msgid "Output options"
185
  msgstr "显示设置"
186
 
187
+ #: admin.inc.php:260
188
  msgid "Title of related posts: "
189
  msgstr "相关日志的标题:"
190
 
191
+ #: admin.inc.php:263
192
  msgid "When there are no posts, what should be shown?"
193
  msgstr "当不存在相关日志时,显示什么?"
194
 
195
+ #: admin.inc.php:267
196
  msgid "Blank Output"
197
  msgstr "不显示"
198
 
199
+ #: admin.inc.php:271
200
  msgid "Display:"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:275 admin.inc.php:379
204
  msgid "Show post excerpt in list?"
205
  msgstr "是否显示日志摘要?"
206
 
207
+ #: admin.inc.php:278
208
  msgid "Length of excerpt (in words): "
209
  msgstr "摘要长度(词数):"
210
 
211
+ #: admin.inc.php:281
212
  msgid "Limit post title length (in characters)"
213
  msgstr ""
214
 
215
+ #: admin.inc.php:284
216
  msgid "Open links in new window"
217
  msgstr ""
218
 
219
+ #: admin.inc.php:287
220
  msgid "Add nofollow attribute to links in the list"
221
  msgstr ""
222
 
223
+ #: admin.inc.php:290
224
  #, fuzzy
225
  msgid "Exclude display of related posts on these posts / pages"
226
  msgstr "添加相关日志到页面里"
227
 
228
+ #: admin.inc.php:293
229
  msgid "Enter comma separated list of IDs. e.g. 188,320,500"
230
  msgstr ""
231
 
232
+ #: admin.inc.php:296
233
  msgid "Customize the output:"
234
  msgstr "自定义显示:"
235
 
236
+ #: admin.inc.php:298
237
  msgid "HTML to display before the list of posts: "
238
  msgstr "显示在每篇日志后面的 HTML 标签:"
239
 
240
+ #: admin.inc.php:301
241
  msgid "HTML to display before each list item: "
242
  msgstr "显示在每篇日志后面的 HTML 标签:"
243
 
244
+ #: admin.inc.php:304
245
  msgid "HTML to display after each list item: "
246
  msgstr "显示在日志列表前面的 HTML 标签:"
247
 
248
+ #: admin.inc.php:307
249
  msgid "HTML to display after the list of posts: "
250
  msgstr "显示在日志列表后面的 HTML 标签:"
251
 
252
+ #: admin.inc.php:310
253
  msgid "Post thumbnail options:"
254
  msgstr "日志缩略图设置:"
255
 
256
+ #: admin.inc.php:312 admin.inc.php:382
257
  msgid "Location of post thumbnail:"
258
  msgstr "日志缩略图位置:"
259
 
260
+ #: admin.inc.php:316 admin.inc.php:386
261
  msgid "Display thumbnails inline with posts, before title"
262
  msgstr "在标题前显示缩略图"
263
 
264
+ #: admin.inc.php:320 admin.inc.php:390
265
  msgid "Display thumbnails inline with posts, after title"
266
  msgstr "在标题后显示缩略图"
267
 
268
+ #: admin.inc.php:324 admin.inc.php:394
269
  msgid "Display only thumbnails, no text"
270
  msgstr "不显示文本,只显示缩略图"
271
 
272
+ #: admin.inc.php:328 admin.inc.php:398
273
  msgid "Do not display thumbnails, only text."
274
  msgstr "不显示缩略图,只显示文本"
275
 
276
+ #: admin.inc.php:332 admin.inc.php:402
277
  msgid "Maximum width of the thumbnail: "
278
  msgstr "缩略图最大宽度"
279
 
280
+ #: admin.inc.php:335 admin.inc.php:405
281
  msgid "Maximum height of the thumbnail: "
282
  msgstr "缩略图最大高度"
283
 
284
+ #: admin.inc.php:338
285
  msgid "Use timthumb to generate thumbnails? "
286
  msgstr "是否使用 timthumb 生成缩略图?"
287
 
288
+ #: admin.inc.php:340
289
  msgid ""
290
  "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
291
  "\">timthumb</a> will be used to generate thumbnails"
293
  "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
294
  "\">timthumb</a> 生成缩略图"
295
 
296
+ #: admin.inc.php:343
297
  msgid "Quality of thumbnails generated by timthumb"
298
  msgstr ""
299
 
300
+ #: admin.inc.php:346
301
  msgid ""
302
  "Enter values between 0 and 100 only. 100 is highest quality, however, it is "
303
  "also the highest file size. Suggested maximum value is 95. CRP default is 75."
304
  msgstr ""
305
 
306
+ #: admin.inc.php:349
307
  msgid "Post thumbnail meta field name: "
308
  msgstr "日志缩略图自定义栏目的名称:"
309
 
310
+ #: admin.inc.php:351
311
  msgid ""
312
  "The value of this field should contain the image source and is set in the "
313
  "<em>Add New Post</em> screen"
314
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
315
 
316
+ #: admin.inc.php:354
317
  msgid ""
318
  "If the postmeta is not set, then should the plugin extract the first image "
319
  "from the post?"
320
  msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
321
 
322
+ #: admin.inc.php:356
323
  msgid ""
324
  "This can slow down the loading of your page if the first image in the "
325
  "related posts is large in file-size"
326
  msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
327
 
328
+ #: admin.inc.php:359
329
  msgid "Use default thumbnail? "
330
  msgstr "是否使用默认缩略图?"
331
 
332
+ #: admin.inc.php:361
333
  msgid ""
334
  "If checked, when no thumbnail is found, show a default one from the URL "
335
  "below. If not checked and no thumbnail is found, no image will be shown."
336
  msgstr ""
337
  "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
338
 
339
+ #: admin.inc.php:364
340
  msgid "Default thumbnail: "
341
  msgstr "默认缩略图:"
342
 
343
+ #: admin.inc.php:366
344
  msgid ""
345
  "The plugin will first check if the post contains a thumbnail. If it doesn't "
346
  "then it will check the meta field. If this is not available, then it will "
349
  "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
350
  "示上面默认图像"
351
 
352
+ #: admin.inc.php:372
353
  #, fuzzy
354
  msgid "Feed options"
355
  msgstr "一般设置"
356
 
357
+ #: admin.inc.php:374
358
  msgid ""
359
  "Below options override the related posts settings for your blog feed. These "
360
  "only apply if you have selected to add related posts to Feeds in the General "
361
  "Options tab."
362
  msgstr ""
363
 
364
+ #: admin.inc.php:411
365
  msgid "Custom Styles"
366
  msgstr "自定义样式"
367
 
368
+ #: admin.inc.php:413
369
  msgid "Custom CSS to add to header:"
370
  msgstr "添加自定义 CSS 到 header:"
371
 
372
+ #: admin.inc.php:416
373
  #, fuzzy
374
  msgid ""
375
  "Do not include <code>style</code> tags. Check out the <a href=\"http://"
379
  "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
380
  "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
381
 
382
+ #: admin.inc.php:421
383
  msgid "Save Options"
384
  msgstr "保存设置"
385
 
386
+ #: admin.inc.php:422
387
  msgid "Default Options"
388
  msgstr "默认设置"
389
 
390
+ #: admin.inc.php:422
391
  msgid "Do you want to set options to Default?"
392
  msgstr "是否要重置设置?"
393
 
394
+ #: admin.inc.php:423
395
  msgid "Recreate Index"
396
  msgstr "重建索引"
397
 
398
+ #: admin.inc.php:423
399
  msgid "Are you sure you want to recreate the index?"
400
  msgstr "是否要重建索引?"
401
 
402
+ #: admin.inc.php:441
403
  msgid "Contextual Related Posts"
404
  msgstr "Contextual Related Posts"
405
 
406
+ #: admin.inc.php:441 contextual-related-posts.php:277
407
  msgid "Related Posts"
408
  msgstr "相关日志"
409
 
410
+ #: admin.inc.php:449
411
  msgid "plugin settings page"
412
  msgstr "插件设置页面"
413
 
414
+ #: admin.inc.php:454
415
  msgid ""
416
  "Contextual Related Posts plugin has just been installed / upgraded. Please "
417
  "visit the "
418
  msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
419
 
420
+ #: admin.inc.php:454
421
  msgid " to configure."
422
  msgstr "设置插件。"
423
 
readme.txt CHANGED
@@ -40,13 +40,16 @@ Contextual Related Posts is one of the most feature rich related posts plugins f
40
 
41
  == Upgrade Notice ==
42
 
43
- = 1.8.6 =
44
- * New caching option; new function to return related posts; New shortcode; bug fixes and performance improvements
45
- Refer to Changelog for more information
46
 
47
 
48
  == Changelog ==
49
 
 
 
 
 
50
  = 1.8.6 =
51
  * New: Related posts are now cached
52
  * New: New function <code>get_crp_posts</code> to get only the list of posts in an array. Check the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ</a> on how to use it.
@@ -306,7 +309,6 @@ You can insert the related posts anywhere in your post using the `[crp]` shortco
306
  Below are a few features that I plan on implementing in future versions of the plugin. However, there is no fixed time-frame for this and largely depends on how much time I can contribute to development.
307
 
308
  * Select random posts if there are no similar posts
309
- * Shortcode support
310
  * Exclude display on select categories and tags
311
  * Restrict related posts to same category
312
  * Better relevance tweaking
40
 
41
  == Upgrade Notice ==
42
 
43
+ = 1.8.7 =
44
+ * IMPORTANT security update: Potential XSS vulnerability fixed. Thanks to Charlie Eriksen via Secunia SVCRP for reporting this
 
45
 
46
 
47
  == Changelog ==
48
 
49
+ = 1.8.7 =
50
+ * Important security update: Potential XSS vulnerability fixed. Thanks to Charlie Eriksen via Secunia SVCRP for reporting this
51
+ * Added Latvian translation
52
+
53
  = 1.8.6 =
54
  * New: Related posts are now cached
55
  * New: New function <code>get_crp_posts</code> to get only the list of posts in an array. Check the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ</a> on how to use it.
309
  Below are a few features that I plan on implementing in future versions of the plugin. However, there is no fixed time-frame for this and largely depends on how much time I can contribute to development.
310
 
311
  * Select random posts if there are no similar posts
 
312
  * Exclude display on select categories and tags
313
  * Restrict related posts to same category
314
  * Better relevance tweaking