Contextual Related Posts - Version 1.8.4

Version Description

  • Exclude related posts on certain posts/pages, include related posts on home page and other archive pages, new timthumb version, miscellaneous fixes. Refer to Changelog for more information

=

Download this release

Release Info

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

Code changes from version 1.8.3 to 1.8.4

admin.inc.php CHANGED
@@ -18,48 +18,58 @@ function crp_options() {
18
 
19
 
20
  if($_POST['crp_save']){
21
- $crp_settings[title] = ($_POST['title']);
22
- $crp_settings[limit] = intval($_POST['limit']);
23
- $crp_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
24
- $crp_settings[add_to_content] = (($_POST['add_to_content']) ? true : false);
25
- $crp_settings[add_to_page] = (($_POST['add_to_page']) ? true : false);
26
- $crp_settings[add_to_feed] = (($_POST['add_to_feed']) ? true : false);
27
- $crp_settings[match_content] = (($_POST['match_content']) ? true : false);
28
- $crp_settings[blank_output] = (($_POST['blank_output'] == 'blank' ) ? true : false);
29
- $crp_settings[blank_output_text] = $_POST['blank_output_text'];
30
- $crp_settings[post_thumb_op] = $_POST['post_thumb_op'];
31
- $crp_settings[before_list] = $_POST['before_list'];
32
- $crp_settings[after_list] = $_POST['after_list'];
33
- $crp_settings[before_list_item] = $_POST['before_list_item'];
34
- $crp_settings[after_list_item] = $_POST['after_list_item'];
35
- $crp_settings[thumb_meta] = $_POST['thumb_meta'];
36
- $crp_settings[thumb_default] = $_POST['thumb_default'];
37
- $crp_settings[thumb_height] = intval($_POST['thumb_height']);
38
- $crp_settings[thumb_width] = intval($_POST['thumb_width']);
39
- $crp_settings[thumb_default_show] = (($_POST['thumb_default_show']) ? true : false);
40
- $crp_settings[thumb_timthumb] = (($_POST['thumb_timthumb']) ? true : false);
41
- $crp_settings[scan_images] = (($_POST['scan_images']) ? true : false);
42
- $crp_settings[show_excerpt] = (($_POST['show_excerpt']) ? true : false);
43
- $crp_settings[excerpt_length] = intval($_POST['excerpt_length']);
44
- $crp_settings[show_credit] = (($_POST['show_credit']) ? true : false);
45
- $crp_settings[custom_CSS] = $_POST['custom_CSS'];
46
- $crp_settings[exclude_post_ids] = $_POST['exclude_post_ids'];
 
 
 
 
 
 
 
 
 
47
 
48
- $exclude_categories_slugs = explode(", ",$crp_settings[exclude_cat_slugs]);
 
49
 
50
  $exclude_categories = '';
51
  foreach ($exclude_categories_slugs as $exclude_categories_slug) {
52
  $catObj = get_category_by_slug($exclude_categories_slug);
53
  $exclude_categories .= $catObj->term_id . ',';
54
  }
55
- $crp_settings[exclude_categories] = substr($exclude_categories, 0, -2);
56
 
57
  $wp_post_types = get_post_types( array(
58
  'public' => true,
59
  ) );
60
  $post_types_arr = (is_array($_POST['post_types'])) ? $_POST['post_types'] : array('post' => 'post');
61
  $post_types = array_intersect($wp_post_types, $post_types_arr);
62
- $crp_settings[post_types] = http_build_query($post_types, '', '&');
63
 
64
  update_option('ald_crp_settings', $crp_settings);
65
 
@@ -138,6 +148,7 @@ function crp_options() {
138
  <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',CRP_LOCAL_NAME) ?></a></li>
139
  <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',CRP_LOCAL_NAME) ?></a></li>
140
  <li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e('Support',CRP_LOCAL_NAME) ?></a></li>
 
141
  <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',CRP_LOCAL_NAME) ?></a></li>
142
  </ul>
143
  </div>
@@ -158,7 +169,10 @@ function crp_options() {
158
  </h3>
159
  <table class="form-table">
160
  <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
161
- <td><input type="textbox" name="limit" id="limit" value="<?php echo attribute_escape(stripslashes($crp_settings[limit])); ?>"></td>
 
 
 
162
  </tr>
163
  <tr style="vertical-align: top;"><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
164
  <td>
@@ -175,12 +189,12 @@ function crp_options() {
175
  </td>
176
  </tr>
177
  <tr style="vertical-align: top;"><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
178
- <td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings[match_content]) echo 'checked="checked"' ?> /> <br /><?php _e('If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)',CRP_LOCAL_NAME); ?></td>
179
  </tr>
180
  <tr style="vertical-align: top;"><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
181
- <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo attribute_escape(stripslashes($crp_settings[exclude_post_ids])); ?>" style="width:250px"></td>
182
  </tr>
183
- <tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Exclude Categories: ',CRP_LOCAL_NAME); ?></label></th>
184
  <td>
185
  <div style="position:relative;text-align:left">
186
  <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
@@ -194,21 +208,24 @@ function crp_options() {
194
  </div>
195
  </td></tr>
196
  </table>
197
- <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($crp_settings[exclude_cat_slugs])); ?></textarea>
198
  </div>
199
  </td>
200
  </tr>
201
- <tr style="vertical-align: top;"><th scope="row"><label for="add_to_content"><?php _e('Add related posts to the post content on single posts',CRP_LOCAL_NAME); ?></label></th>
202
- <td><input type="checkbox" name="add_to_content" id="add_to_content" <?php if ($crp_settings[add_to_content]) echo 'checked="checked"' ?> /> <br /><?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); ?></td>
203
- </tr>
204
- <tr style="vertical-align: top;"><th scope="row"><label for="add_to_page"><?php _e('Add related posts to pages',CRP_LOCAL_NAME); ?></label></th>
205
- <td><input type="checkbox" name="add_to_page" id="add_to_page" <?php if ($crp_settings[add_to_page]) echo 'checked="checked"' ?> /> <br /><?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); ?></td>
206
- </tr>
207
- <tr style="vertical-align: top;"><th scope="row"><label for="add_to_feed"><?php _e('Add related posts to feed',CRP_LOCAL_NAME); ?></label></th>
208
- <td><input type="checkbox" name="add_to_feed" id="add_to_feed" <?php if ($crp_settings[add_to_feed]) echo 'checked="checked"' ?> /></td>
 
 
 
209
  </tr>
210
  <tr style="vertical-align: top;"><th scope="row"><label for="show_credit"><?php _e('Add a link to the plugin page as a final item in the list',CRP_LOCAL_NAME); ?></label></th>
211
- <td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($crp_settings[show_credit]) echo 'checked="checked"' ?> /> <?php _e(' <em>Optional</em>',CRP_LOCAL_NAME); ?></td>
212
  </tr>
213
 
214
  </table>
@@ -220,7 +237,7 @@ function crp_options() {
220
  </h3>
221
  <table class="form-table">
222
  <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
223
- <td><input type="textbox" name="title" id="title" value="<?php echo attribute_escape(stripslashes($crp_settings[title])); ?>" style="width:250px" /></td>
224
  </tr>
225
  <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>
226
  <td>
@@ -235,24 +252,30 @@ function crp_options() {
235
  </td>
236
  </tr>
237
  <tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
238
- <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($crp_settings[show_excerpt]) echo 'checked="checked"' ?> /></td>
239
  </tr>
240
  <tr style="vertical-align: top;"><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',CRP_LOCAL_NAME); ?></label></th>
241
- <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($crp_settings[excerpt_length]); ?>" /></td>
 
 
 
 
 
 
242
  </tr>
243
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
244
  </tr>
245
  <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>
246
- <td><input type="textbox" name="before_list" id="before_list" value="<?php echo attribute_escape(stripslashes($crp_settings[before_list])); ?>" style="width:250px" /></td>
247
  </tr>
248
  <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>
249
- <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo attribute_escape(stripslashes($crp_settings[before_list_item])); ?>" style="width:250px" /></td>
250
  </tr>
251
  <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>
252
- <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo attribute_escape(stripslashes($crp_settings[after_list_item])); ?>" style="width:250px" /></td>
253
  </tr>
254
  <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>
255
- <td><input type="textbox" name="after_list" id="after_list" value="<?php echo attribute_escape(stripslashes($crp_settings[after_list])); ?>" style="width:250px" /></td>
256
  </tr>
257
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',CRP_LOCAL_NAME); ?></th>
258
  </tr>
@@ -277,25 +300,25 @@ function crp_options() {
277
  </td>
278
  </tr>
279
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
280
- <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo attribute_escape(stripslashes($crp_settings[thumb_width])); ?>" style="width:30px" />px</td>
281
  </tr>
282
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
283
- <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo attribute_escape(stripslashes($crp_settings[thumb_height])); ?>" style="width:30px" />px</td>
284
  </tr>
285
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',CRP_LOCAL_NAME); ?></label></th>
286
- <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>
287
  </tr>
288
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',CRP_LOCAL_NAME); ?></label></th>
289
- <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo attribute_escape(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>
290
  </tr>
291
  <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>
292
- <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>
293
  </tr>
294
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',CRP_LOCAL_NAME); ?></label></th>
295
- <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>
296
  </tr>
297
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
298
- <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo attribute_escape(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>
299
  </tr>
300
  </table>
301
  </div>
@@ -306,8 +329,8 @@ function crp_options() {
306
  <table class="form-table">
307
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
308
  </tr>
309
- <tr style="vertical-align: top; "><td scope="row" colspan="2"><textarea name="custom_CSS" id="custom_CSS" rows="15" cols="80"><?php echo stripslashes($crp_settings[custom_CSS]); ?></textarea>
310
- <br /><em><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/">FAQ</a> for available CSS classes to style.',CRP_LOCAL_NAME); ?></em></td></tr>
311
  </table>
312
  </div>
313
  <p>
18
 
19
 
20
  if($_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'] = (($_POST['match_content']) ? true : false);
27
+
28
+ $crp_settings['add_to_content'] = (($_POST['add_to_content']) ? true : false);
29
+ $crp_settings['add_to_page'] = (($_POST['add_to_page']) ? true : false);
30
+ $crp_settings['add_to_feed'] = (($_POST['add_to_feed']) ? true : false);
31
+ $crp_settings['add_to_home'] = (($_POST['add_to_home']) ? true : false);
32
+ $crp_settings['add_to_category_archives'] = (($_POST['add_to_category_archives']) ? true : false);
33
+ $crp_settings['add_to_tag_archives'] = (($_POST['add_to_tag_archives']) ? true : false);
34
+ $crp_settings['add_to_archives'] = (($_POST['add_to_archives']) ? true : false);
35
+
36
+ $crp_settings['title_length'] = intval($_POST['title_length']);
37
+ $crp_settings['blank_output'] = (($_POST['blank_output'] == 'blank' ) ? true : false);
38
+ $crp_settings['blank_output_text'] = $_POST['blank_output_text'];
39
+ $crp_settings['post_thumb_op'] = $_POST['post_thumb_op'];
40
+ $crp_settings['before_list'] = $_POST['before_list'];
41
+ $crp_settings['after_list'] = $_POST['after_list'];
42
+ $crp_settings['before_list_item'] = $_POST['before_list_item'];
43
+ $crp_settings['after_list_item'] = $_POST['after_list_item'];
44
+
45
+ $crp_settings['thumb_meta'] = $_POST['thumb_meta'];
46
+ $crp_settings['thumb_default'] = $_POST['thumb_default'];
47
+ $crp_settings['thumb_height'] = intval($_POST['thumb_height']);
48
+ $crp_settings['thumb_width'] = intval($_POST['thumb_width']);
49
+ $crp_settings['thumb_default_show'] = (($_POST['thumb_default_show']) ? true : false);
50
+ $crp_settings['thumb_timthumb'] = (($_POST['thumb_timthumb']) ? true : false);
51
+ $crp_settings['scan_images'] = (($_POST['scan_images']) ? true : false);
52
+ $crp_settings['show_excerpt'] = (($_POST['show_excerpt']) ? true : false);
53
+ $crp_settings['excerpt_length'] = intval($_POST['excerpt_length']);
54
+ $crp_settings['show_credit'] = (($_POST['show_credit']) ? true : false);
55
+ $crp_settings['custom_CSS'] = $_POST['custom_CSS'];
56
 
57
+ $crp_settings['exclude_cat_slugs'] = ($_POST['exclude_cat_slugs']);
58
+ $exclude_categories_slugs = explode(", ",$crp_settings['exclude_cat_slugs']);
59
 
60
  $exclude_categories = '';
61
  foreach ($exclude_categories_slugs as $exclude_categories_slug) {
62
  $catObj = get_category_by_slug($exclude_categories_slug);
63
  $exclude_categories .= $catObj->term_id . ',';
64
  }
65
+ $crp_settings['exclude_categories'] = substr($exclude_categories, 0, -2);
66
 
67
  $wp_post_types = get_post_types( array(
68
  'public' => true,
69
  ) );
70
  $post_types_arr = (is_array($_POST['post_types'])) ? $_POST['post_types'] : array('post' => 'post');
71
  $post_types = array_intersect($wp_post_types, $post_types_arr);
72
+ $crp_settings['post_types'] = http_build_query($post_types, '', '&');
73
 
74
  update_option('ald_crp_settings', $crp_settings);
75
 
148
  <li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',CRP_LOCAL_NAME) ?></a></li>
149
  <li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',CRP_LOCAL_NAME) ?></a></li>
150
  <li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e('Support',CRP_LOCAL_NAME) ?></a></li>
151
+ <li><a href="http://wordpress.org/support/view/plugin-reviews/contextual-related-posts"><?php _e('Reviews',CRP_LOCAL_NAME) ?></a></li>
152
  <li><a href="http://twitter.com/ajaydsouza"><?php _e('Follow @ajaydsouza on Twitter',CRP_LOCAL_NAME) ?></a></li>
153
  </ul>
154
  </div>
169
  </h3>
170
  <table class="form-table">
171
  <tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
172
+ <td><input type="textbox" name="limit" id="limit" value="<?php echo attribute_escape(stripslashes($crp_settings['limit'])); ?>"></td>
173
+ </tr>
174
+ <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>
175
+ <td><input type="textbox" name="daily_range" id="daily_range" value="<?php echo attribute_escape(stripslashes($crp_settings['daily_range'])); ?>"><?php _e('days',CRP_LOCAL_NAME); ?></td>
176
  </tr>
177
  <tr style="vertical-align: top;"><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
178
  <td>
189
  </td>
190
  </tr>
191
  <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>
192
+ <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>
193
  </tr>
194
  <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>
195
+ <td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo attribute_escape(stripslashes($crp_settings['exclude_post_ids'])); ?>" style="width:250px"></td>
196
  </tr>
197
+ <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>
198
  <td>
199
  <div style="position:relative;text-align:left">
200
  <table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
208
  </div>
209
  </td></tr>
210
  </table>
211
+ <textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($crp_settings['exclude_cat_slugs'])); ?></textarea>
212
  </div>
213
  </td>
214
  </tr>
215
+ <tr style="vertical-align: top;"><th scope="row"><?php _e('Add related posts to:',CRP_LOCAL_NAME); ?></th>
216
+ <td>
217
+ <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 />
218
+ <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 />
219
+ <label><input type="checkbox" name="add_to_home" id="add_to_home" <?php if ($crp_settings['add_to_home']) echo 'checked="checked"' ?> /> <?php _e('Home page',CRP_LOCAL_NAME); ?></label></label><br />
220
+ <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 />
221
+ <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 />
222
+ <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 />
223
+ <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 />
224
+ <?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); ?>
225
+ </td>
226
  </tr>
227
  <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>
228
+ <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>
229
  </tr>
230
 
231
  </table>
237
  </h3>
238
  <table class="form-table">
239
  <tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
240
+ <td><input type="textbox" name="title" id="title" value="<?php echo attribute_escape(stripslashes($crp_settings['title'])); ?>" style="width:250px" /></td>
241
  </tr>
242
  <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>
243
  <td>
252
  </td>
253
  </tr>
254
  <tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
255
+ <td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($crp_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
256
  </tr>
257
  <tr style="vertical-align: top;"><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',CRP_LOCAL_NAME); ?></label></th>
258
+ <td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($crp_settings['excerpt_length']); ?>" /></td>
259
+ </tr>
260
+ <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>
261
+ <td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($crp_settings['title_length']); ?>" /></td>
262
+ </tr>
263
+ <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 (Enter comma separated list of IDs): ',CRP_LOCAL_NAME); ?></label></th>
264
+ <td><input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo attribute_escape(stripslashes($crp_settings['exclude_on_post_ids'])); ?>" style="width:250px"></td>
265
  </tr>
266
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
267
  </tr>
268
  <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>
269
+ <td><input type="textbox" name="before_list" id="before_list" value="<?php echo attribute_escape(stripslashes($crp_settings['before_list'])); ?>" style="width:250px" /></td>
270
  </tr>
271
  <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>
272
+ <td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo attribute_escape(stripslashes($crp_settings['before_list_item'])); ?>" style="width:250px" /></td>
273
  </tr>
274
  <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>
275
+ <td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo attribute_escape(stripslashes($crp_settings['after_list_item'])); ?>" style="width:250px" /></td>
276
  </tr>
277
  <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>
278
+ <td><input type="textbox" name="after_list" id="after_list" value="<?php echo attribute_escape(stripslashes($crp_settings['after_list'])); ?>" style="width:250px" /></td>
279
  </tr>
280
  <tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',CRP_LOCAL_NAME); ?></th>
281
  </tr>
300
  </td>
301
  </tr>
302
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
303
+ <td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo attribute_escape(stripslashes($crp_settings['thumb_width'])); ?>" style="width:30px" />px</td>
304
  </tr>
305
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
306
+ <td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo attribute_escape(stripslashes($crp_settings['thumb_height'])); ?>" style="width:30px" />px</td>
307
  </tr>
308
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',CRP_LOCAL_NAME); ?></label></th>
309
+ <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>
310
  </tr>
311
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',CRP_LOCAL_NAME); ?></label></th>
312
+ <td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo attribute_escape(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>
313
  </tr>
314
  <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>
315
+ <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>
316
  </tr>
317
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',CRP_LOCAL_NAME); ?></label></th>
318
+ <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>
319
  </tr>
320
  <tr style="vertical-align: top;"><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
321
+ <td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo attribute_escape(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>
322
  </tr>
323
  </table>
324
  </div>
329
  <table class="form-table">
330
  <tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
331
  </tr>
332
+ <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>
333
+ <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>
334
  </table>
335
  </div>
336
  <p>
contextual-related-posts.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
- Version: 1.8.3
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
@@ -80,15 +80,19 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
80
  $stuff = addslashes($post->post_title);
81
  }
82
 
 
 
 
83
 
84
  if ((is_int($post->ID))&&($stuff != '')) {
85
  $sql = "SELECT DISTINCT ID,post_title,post_date "
86
  . " FROM ".$wpdb->posts." WHERE "
87
  . "MATCH (post_title,post_content) AGAINST ('".$stuff."') "
88
  . "AND post_date <= '".$now."' "
 
89
  . "AND post_status = 'publish' "
90
- . "AND id != ".$post->ID." ";
91
- if ($crp_settings[exclude_post_ids]!='') $sql .= "AND id NOT IN (".$crp_settings[exclude_post_ids].") ";
92
  $sql .= "AND ( ";
93
  $multiple = false;
94
  foreach ($post_types as $post_type) {
@@ -108,12 +112,12 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
108
  $output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
109
 
110
  if($searches){
111
- if(!$is_widget) $output .= (stripslashes($crp_settings[title]));
112
  $output .= $crp_settings['before_list'];
113
  foreach($searches as $search) {
114
  $categorys = get_the_category($search->ID); //Fetch categories of the plugin
115
  $p_in_c = false; // Variable to check if post exists in a particular category
116
- $title = get_the_title($search->ID);
117
  foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
118
  $p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
119
  if ($p_in_c) break; // End loop if post found in category
@@ -127,7 +131,9 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
127
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_title">'.$title.'</a>'; // Add title if post thumbnail is to be displayed after
128
  }
129
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
130
- $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark">'.crp_get_the_post_thumbnail($search->ID).'</a>';
 
 
131
  }
132
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
133
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_title">'.$title.'</a>'; // Add title when required by settings
@@ -144,7 +150,7 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
144
  if ($crp_settings['show_credit']) {
145
  $output .= $crp_settings['before_list_item'];
146
  $output .= __('Powered by',CRP_LOCAL_NAME);
147
- $output .= ' <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a>'.$crp_settings['after_list_item'];
148
  }
149
  $output .= $crp_settings['after_list'];
150
  }else{
@@ -162,14 +168,26 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
162
 
163
  function ald_crp_content($content) {
164
 
165
- global $single;
166
  $crp_settings = crp_read_options();
167
 
 
 
 
 
 
 
168
  if((is_single())&&($crp_settings['add_to_content'])) {
169
  return $content.ald_crp('is_widget=0');
170
  } elseif((is_page())&&($crp_settings['add_to_page'])) {
171
  return $content.ald_crp('is_widget=0');
172
- } elseif((is_feed())&&($crp_settings['add_to_feed'])) {
 
 
 
 
 
 
173
  return $content.ald_crp('is_widget=0');
174
  } else {
175
  return $content;
@@ -177,6 +195,20 @@ function ald_crp_content($content) {
177
  }
178
  add_filter('the_content', 'ald_crp_content');
179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  function echo_ald_crp() {
181
  echo ald_crp('is_widget=0');
182
  }
@@ -236,22 +268,20 @@ class WidgetCRP extends WP_Widget
236
 
237
  $crp_settings = crp_read_options();
238
 
239
- $title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($crp_settings[title]) : $instance['title']);
240
  $limit = $instance['limit'];
241
  $show_excerpt = $instance['show_excerpt'];
242
  $post_thumb_op = $instance['post_thumb_op'];
243
- if (empty($limit)) $limit = $crp_settings[limit];
244
 
245
  $output = $before_widget;
246
  $output .= $before_title . $title . $after_title;
247
  $output .= ald_crp('is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op);
248
  $output .= $after_widget;
249
 
250
- if((is_single())&&($crp_settings['add_to_content'])) {
251
- echo $output;
252
- } elseif((is_page())&&($crp_settings['add_to_page'])) {
253
- echo $output;
254
- } elseif((is_feed())&&($crp_settings['add_to_feed'])) {
255
  echo $output;
256
  }
257
 
@@ -281,14 +311,20 @@ function crp_default_options() {
281
  'title' => $title, // Add before the content
282
  'add_to_content' => true, // Add related posts to content (only on single posts)
283
  'add_to_page' => false, // Add related posts to content (only on single pages)
284
- 'add_to_feed' => true, // Add related posts to feed
 
 
 
 
285
  'limit' => '5', // How many posts to display?
 
286
  'show_credit' => false, // Link to this plugin's page?
287
  'match_content' => true, // Match against post content as well as title
288
  'blank_output' => true, // Blank output?
289
  'exclude_categories' => '', // Exclude these categories
290
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
291
- 'exclude_post_ids' => '', // Comma separated list of page / post IDs
 
292
  'before_list' => '<ul>', // Before the entire list
293
  'after_list' => '</ul>', // After the entire list
294
  'before_list_item' => '<li>', // Before each list item
@@ -303,6 +339,7 @@ function crp_default_options() {
303
  'scan_images' => false, // Scan post for images
304
  'show_excerpt' => false, // Show description in list item
305
  'excerpt_length' => '10', // Length of characters
 
306
  'post_types' => $post_types, // WordPress custom post types
307
  'custom_CSS' => '', // Custom CSS to style the output
308
  );
@@ -337,15 +374,25 @@ function crp_header() {
337
  global $wpdb, $post, $single;
338
 
339
  $crp_settings = crp_read_options();
340
- $crp_custom_CSS = stripslashes($crp_settings[custom_CSS]);
341
 
342
  // Add CSS to header
343
  if ($crp_custom_CSS != '') {
344
- if((is_single())&&($crp_settings['add_to_content'])) {
345
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
346
- } elseif((is_page())&&($crp_settings['add_to_page'])) {
347
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
348
- }
 
 
 
 
 
 
 
 
 
 
349
  }
350
  }
351
 
@@ -369,33 +416,48 @@ if (function_exists('register_activation_hook')) {
369
  register_activation_hook(__FILE__,'ald_crp_activate');
370
  }
371
 
 
 
 
 
 
 
 
 
 
 
 
 
 
372
  // Function to get the post thumbnail
373
- function crp_get_the_post_thumbnail($postid) {
374
 
375
  global $crp_url;
376
  $result = get_post($postid);
377
- $crp_settings = crp_read_options();
378
  $output = '';
379
  $title = get_the_title($postid);
380
 
381
- if (function_exists('has_post_thumbnail') && has_post_thumbnail($result->ID)) {
382
- $output .= get_the_post_thumbnail($result->ID, array($crp_settings[thumb_width],$crp_settings[thumb_height]), array('title' => $title,'alt' => $title, 'class' => 'crp_thumb', 'border' => '0'));
 
 
383
  } else {
384
- $postimage = get_post_meta($result->ID, $crp_settings[thumb_meta], true); // Check
385
- if (!$postimage && $crp_settings['scan_images']) {
386
- preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
387
  // any image there?
388
- if (isset($matches) && $matches[1][0]) {
389
- $postimage = $matches[1][0]; // we need the first one only!
390
  }
391
  }
392
  if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
393
- if ($crp_settings['thumb_default_show'] && !$postimage) $postimage = $crp_settings[thumb_default]; // If no thumb found and settings permit, use default thumb
394
  if ($postimage) {
395
- if ($crp_settings[thumb_timthumb]) {
396
- $output .= '<img src="'.$crp_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$crp_settings[thumb_width].'&amp;h='.$crp_settings[thumb_height].'&amp;zc=1&amp;q=75" alt="'.$title.'" title="'.$title.'" style="max-width:'.$crp_settings[thumb_width].'px;max-height:'.$crp_settings[thumb_height].'px;" border="0" class="crp_thumb" />';
397
  } else {
398
- $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$crp_settings[thumb_width].'px;max-height:'.$crp_settings[thumb_height].'px;" border="0" class="crp_thumb" />';
399
  }
400
  }
401
  }
@@ -426,15 +488,23 @@ function crp_excerpt($id,$excerpt_length){
426
  return $out;
427
  }
428
 
429
- // Function to save the global page ID. Used for the widget
430
- // Code from: http://indrek.it/blog/wordpress-front-page-vs-home-page-and-getting-post-id-outside-or-after-the-loop-in-every-possible-way/
431
- function crp_save_page_ID() {
432
- // Declare globals as before
433
- global $crp_page_id;
434
- global $post;
435
- $my_page_id = $post->ID;
 
 
 
 
 
 
 
 
 
436
  }
437
- add_action('wp_head', 'crp_save_page_ID');
438
 
439
  // This function adds an Options page in WP Admin
440
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
+ Version: 1.8.4
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
80
  $stuff = addslashes($post->post_title);
81
  }
82
 
83
+ $daily_range = $crp_settings['daily_range'] - 1;
84
+ $current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $now ) );
85
+ $current_date = date ( 'Y-m-d H:i:s' , $current_date );
86
 
87
  if ((is_int($post->ID))&&($stuff != '')) {
88
  $sql = "SELECT DISTINCT ID,post_title,post_date "
89
  . " FROM ".$wpdb->posts." WHERE "
90
  . "MATCH (post_title,post_content) AGAINST ('".$stuff."') "
91
  . "AND post_date <= '".$now."' "
92
+ . "AND post_date >= '".$current_date."' "
93
  . "AND post_status = 'publish' "
94
+ . "AND ID != ".$post->ID." ";
95
+ if ($crp_settings['exclude_post_ids']!='') $sql .= "AND ID NOT IN (".$crp_settings['exclude_post_ids'].") ";
96
  $sql .= "AND ( ";
97
  $multiple = false;
98
  foreach ($post_types as $post_type) {
112
  $output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
113
 
114
  if($searches){
115
+ if(!$is_widget) $output .= (stripslashes($crp_settings['title']));
116
  $output .= $crp_settings['before_list'];
117
  foreach($searches as $search) {
118
  $categorys = get_the_category($search->ID); //Fetch categories of the plugin
119
  $p_in_c = false; // Variable to check if post exists in a particular category
120
+ $title = crp_max_formatted_content(get_the_title($search->ID),$crp_settings['title_length']);
121
  foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
122
  $p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
123
  if ($p_in_c) break; // End loop if post found in category
131
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_title">'.$title.'</a>'; // Add title if post thumbnail is to be displayed after
132
  }
133
  if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
134
+ $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark">';
135
+ $output .= crp_get_the_post_thumbnail($search->ID, $crp_settings);
136
+ $output .= '</a>';
137
  }
138
  if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
139
  $output .= '<a href="'.get_permalink($search->ID).'" rel="bookmark" class="crp_title">'.$title.'</a>'; // Add title when required by settings
150
  if ($crp_settings['show_credit']) {
151
  $output .= $crp_settings['before_list_item'];
152
  $output .= __('Powered by',CRP_LOCAL_NAME);
153
+ $output .= ' <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/" rel="nofollow">Contextual Related Posts</a>'.$crp_settings['after_list_item'];
154
  }
155
  $output .= $crp_settings['after_list'];
156
  }else{
168
 
169
  function ald_crp_content($content) {
170
 
171
+ global $single, $post;
172
  $crp_settings = crp_read_options();
173
 
174
+
175
+ $exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
176
+ //$p_in_c = (in_array($post->ID, $exclude_on_post_ids)) ? true : false;
177
+ if (in_array($post->ID, $exclude_on_post_ids)) return $content; // Exit without adding related posts
178
+
179
+
180
  if((is_single())&&($crp_settings['add_to_content'])) {
181
  return $content.ald_crp('is_widget=0');
182
  } elseif((is_page())&&($crp_settings['add_to_page'])) {
183
  return $content.ald_crp('is_widget=0');
184
+ } elseif((is_home())&&($crp_settings['add_to_home'])) {
185
+ return $content.ald_crp('is_widget=0');
186
+ } elseif((is_category())&&($crp_settings['add_to_category_archives'])) {
187
+ return $content.ald_crp('is_widget=0');
188
+ } elseif((is_tag())&&($crp_settings['add_to_tag_archives'])) {
189
+ return $content.ald_crp('is_widget=0');
190
+ } elseif( ( (is_tax()) || (is_author()) || (is_date()) ) &&($crp_settings['add_to_archives'])) {
191
  return $content.ald_crp('is_widget=0');
192
  } else {
193
  return $content;
195
  }
196
  add_filter('the_content', 'ald_crp_content');
197
 
198
+ function ald_crp_rss($content) {
199
+ global $post;
200
+ $crp_settings = crp_read_options();
201
+
202
+ if($crp_settings['add_to_feed']) {
203
+ return $content.ald_crp('is_widget=0');
204
+ } else {
205
+ return $content;
206
+ }
207
+ }
208
+ add_filter('the_excerpt_rss', 'ald_crp_rss');
209
+ add_filter('the_content_feed', 'ald_crp_rss');
210
+
211
+
212
  function echo_ald_crp() {
213
  echo ald_crp('is_widget=0');
214
  }
268
 
269
  $crp_settings = crp_read_options();
270
 
271
+ $title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($crp_settings['title']) : $instance['title']);
272
  $limit = $instance['limit'];
273
  $show_excerpt = $instance['show_excerpt'];
274
  $post_thumb_op = $instance['post_thumb_op'];
275
+ if (empty($limit)) $limit = $crp_settings['limit'];
276
 
277
  $output = $before_widget;
278
  $output .= $before_title . $title . $after_title;
279
  $output .= ald_crp('is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op);
280
  $output .= $after_widget;
281
 
282
+ $exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
283
+
284
+ if( ( (is_single()) && (!is_single($exclude_on_post_ids)) ) || ( (is_page()) && (!is_page($exclude_on_post_ids)) ) ) {
 
 
285
  echo $output;
286
  }
287
 
311
  'title' => $title, // Add before the content
312
  'add_to_content' => true, // Add related posts to content (only on single posts)
313
  'add_to_page' => false, // Add related posts to content (only on single pages)
314
+ 'add_to_feed' => true, // Add related posts to feed (full)
315
+ 'add_to_home' => false, // Add related posts to home page
316
+ 'add_to_category_archives' => false, // Add related posts to category archives
317
+ 'add_to_tag_archives' => false, // Add related posts to tag archives
318
+ 'add_to_archives' => false, // Add related posts to other archives
319
  'limit' => '5', // How many posts to display?
320
+ 'daily_range' => '1095', // How old posts should be displayed?
321
  'show_credit' => false, // Link to this plugin's page?
322
  'match_content' => true, // Match against post content as well as title
323
  'blank_output' => true, // Blank output?
324
  'exclude_categories' => '', // Exclude these categories
325
  'exclude_cat_slugs' => '', // Exclude these categories (slugs)
326
+ 'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
327
+ 'exclude_on_post_ids' => '', // Comma separate list of page/post IDs to not display related posts on
328
  'before_list' => '<ul>', // Before the entire list
329
  'after_list' => '</ul>', // After the entire list
330
  'before_list_item' => '<li>', // Before each list item
339
  'scan_images' => false, // Scan post for images
340
  'show_excerpt' => false, // Show description in list item
341
  'excerpt_length' => '10', // Length of characters
342
+ 'title_length' => '60', // Limit length of post title
343
  'post_types' => $post_types, // WordPress custom post types
344
  'custom_CSS' => '', // Custom CSS to style the output
345
  );
374
  global $wpdb, $post, $single;
375
 
376
  $crp_settings = crp_read_options();
377
+ $crp_custom_CSS = stripslashes($crp_settings['custom_CSS']);
378
 
379
  // Add CSS to header
380
  if ($crp_custom_CSS != '') {
381
+ if((is_single())) {
382
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
383
+ } elseif((is_page())) {
384
  echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
385
+ } elseif((is_home())&&($crp_settings['add_to_home'])) {
386
+ echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
387
+ } elseif((is_category())&&($crp_settings['add_to_category_archives'])) {
388
+ echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
389
+ } elseif((is_tag())&&($crp_settings['add_to_tag_archives'])) {
390
+ echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
391
+ } elseif( ( (is_tax()) || (is_author()) || (is_date()) ) &&($crp_settings['add_to_archives'])) {
392
+ echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
393
+ } elseif ( is_active_widget( false, false, 'WidgetCRP', true ) ) {
394
+ echo '<style type="text/css">'.$crp_custom_CSS.'</style>';
395
+ }
396
  }
397
  }
398
 
416
  register_activation_hook(__FILE__,'ald_crp_activate');
417
  }
418
 
419
+ // Filter function to resize post thumbnail. Filters out tp10_postimage
420
+ function crp_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb) {
421
+ global $crp_url;
422
+
423
+ if ($thumb_timthumb) {
424
+ $new_pi = $crp_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$thumb_width.'&amp;h='.$thumb_height.'&amp;zc=1&amp;q=75';
425
+ } else {
426
+ $new_pi = $postimage;
427
+ }
428
+ return $new_pi;
429
+ }
430
+ add_filter('crp_postimage', 'crp_scale_thumbs', 10, 4);
431
+
432
  // Function to get the post thumbnail
433
+ function crp_get_the_post_thumbnail($postid, $settings_array) {
434
 
435
  global $crp_url;
436
  $result = get_post($postid);
437
+ if (empty($settings_array)) $settings_array = crp_read_options();
438
  $output = '';
439
  $title = get_the_title($postid);
440
 
441
+ if (function_exists('has_post_thumbnail') && ( (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!='') || (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!= false) ) ) {
442
+ $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
443
+ $postimage = apply_filters( $filter, $postimage[0], $settings_array['thumb_width'], $settings_array['thumb_height'], $settings_array['thumb_timthumb'] );
444
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$settings_array['thumb_width'].'px;max-height:'.$settings_array['thumb_height'].'px;" border="0" class="crp_thumb" />';
445
  } else {
446
+ $postimage = get_post_meta($result->ID, $settings_array['thumb_meta'], true); // Check
447
+ if (!$postimage && $settings_array['scan_images']) {
448
+ preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $result->post_content, $matches );
449
  // any image there?
450
+ if ( ( (strpos($matches[1][0], parse_url(get_option('home'),PHP_URL_HOST)) !== false) && (strpos($matches[1][0], 'http://') !== false) ) || (strpos($matches[1][0], 'http://') === false) ) {
451
+ $postimage = $matches[1][0]; // we need the first one only!
452
  }
453
  }
454
  if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
455
+ if ($settings_array['thumb_default_show'] && !$postimage) $postimage = $settings_array['thumb_default']; // If no thumb found and settings permit, use default thumb
456
  if ($postimage) {
457
+ if ($settings_array['thumb_timthumb']) {
458
+ $output .= '<img src="'.$crp_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&amp;w='.$settings_array['thumb_width'].'&amp;h='.$settings_array['thumb_height'].'&amp;zc=1&amp;q=75" alt="'.$title.'" title="'.$title.'" style="max-width:'.$settings_array['thumb_width'].'px;max-height:'.$settings_array['thumb_height'].'px;" border="0" class="crp_thumb" />';
459
  } else {
460
+ $output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$settings_array['thumb_width'].'px;max-height:'.$settings_array['thumb_height'].'px;" border="0" class="crp_thumb" />';
461
  }
462
  }
463
  }
488
  return $out;
489
  }
490
 
491
+ // Function to limit content by characters
492
+ function crp_max_formatted_content($content, $MaxLength = -1) {
493
+ $content = strip_tags($content); // Remove CRLFs, leaving space in their wake
494
+
495
+ if (($MaxLength > 0) && (strlen($content) > $MaxLength)) {
496
+ $aWords = preg_split("/[\s]+/", substr($content, 0, $MaxLength));
497
+
498
+ // Break back down into a string of words, but drop the last one if it's chopped off
499
+ if (substr($content, $MaxLength, 1) == " ") {
500
+ $content = implode(" ", $aWords);
501
+ } else {
502
+ $content = implode(" ", array_slice($aWords, 0, -1)).'&hellip;';
503
+ }
504
+ }
505
+
506
+ return $content;
507
  }
 
508
 
509
  // This function adds an Options page in WP Admin
510
  if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
languages/crp-da_DK.mo CHANGED
Binary file
languages/crp-da_DK.po CHANGED
@@ -2,380 +2,459 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:19-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2;plural=n != 1;\n"
13
- "X-Poedit-Language: Danish\n"
14
- "X-Poedit-Country: DENMARK\n"
15
  "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;_nc:1,2;_n_noop:1,2\n"
 
17
  "X-Poedit-Basepath: ../\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:70
21
  msgid "Options saved successfully."
22
  msgstr "Indstillingerne blev gemt."
23
 
24
- #: admin.inc.php:86
25
  msgid "Options set to Default."
26
  msgstr "Indstillingerne sat til standardværdier."
27
 
28
- #: admin.inc.php:101
29
  msgid "Index recreated"
30
  msgstr "Indeks blev gendannet"
31
 
32
- #: admin.inc.php:114
33
  #, fuzzy
34
  msgid "Support the development"
35
  msgstr "Støt udviklingen"
36
 
37
- #: admin.inc.php:122
38
  msgid "Enter amount in USD: "
39
  msgstr ""
40
 
41
- #: admin.inc.php:126
42
  msgid "Send your donation to the author of"
43
  msgstr ""
44
 
45
- #: admin.inc.php:135
46
  msgid "Quick Links"
47
  msgstr ""
48
 
49
- #: admin.inc.php:137
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Related Posts (Lignende indlæg)"
53
 
54
- #: admin.inc.php:138
55
  msgid "Other plugins"
56
  msgstr ""
57
 
58
- #: admin.inc.php:139
59
  msgid "Ajay's blog"
60
  msgstr ""
61
 
62
- #: admin.inc.php:140
63
- #: contextual-related-posts.php:451
64
  msgid "Support"
65
  msgstr "Support"
66
 
67
- #: admin.inc.php:141
 
 
 
 
68
  msgid "Follow @ajaydsouza on Twitter"
69
  msgstr ""
70
 
71
- #: admin.inc.php:145
72
  msgid "Recent developments"
73
  msgstr ""
74
 
75
- #: admin.inc.php:157
76
  msgid "General options"
77
  msgstr ""
78
 
79
- #: admin.inc.php:160
80
  msgid "Number of related posts to display: "
81
  msgstr "Antal Lignende indlæg, der skal vises: "
82
 
83
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
84
  msgid "Post types to include in results (including custom post types)"
85
  msgstr ""
86
 
87
- #: admin.inc.php:174
88
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
89
  msgstr ""
90
 
91
- #: admin.inc.php:177
92
  msgid "Find related posts based on content as well as title"
93
  msgstr ""
94
 
95
- #: admin.inc.php:178
96
  #, fuzzy
97
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
98
- msgstr "Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer dette)"
 
 
 
 
 
99
 
100
- #: admin.inc.php:180
101
  msgid "List of post or page IDs to exclude from the results: "
102
  msgstr ""
103
 
104
- #: admin.inc.php:183
105
- msgid "Exclude Categories: "
106
- msgstr "Udelad kategorier: "
107
-
108
- #: admin.inc.php:201
109
- msgid "Add related posts to the post content on single posts"
110
  msgstr ""
111
 
112
- #: admin.inc.php:202
113
- #: admin.inc.php:205
114
  #, fuzzy
115
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
116
- msgstr "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
117
-
118
- #: admin.inc.php:204
119
- #, fuzzy
120
- msgid "Add related posts to pages"
121
  msgstr "Tilføj Lignende indlæg til feeds"
122
 
123
- #: admin.inc.php:207
124
- msgid "Add related posts to feed"
125
- msgstr "Tilføj Lignende indlæg til feeds"
126
 
127
- #: admin.inc.php:210
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  msgid "Add a link to the plugin page as a final item in the list"
129
  msgstr ""
130
 
131
- #: admin.inc.php:211
132
  msgid " <em>Optional</em>"
133
  msgstr ""
134
 
135
- #: admin.inc.php:219
136
  #, fuzzy
137
  msgid "Output Options"
138
  msgstr "Indstillinger for output:"
139
 
140
- #: admin.inc.php:222
141
  msgid "Title of related posts: "
142
  msgstr "Titel på Lignende indlæg: "
143
 
144
- #: admin.inc.php:225
145
  msgid "When there are no posts, what should be shown?"
146
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
147
 
148
- #: admin.inc.php:229
149
  msgid "Blank Output"
150
  msgstr "Intet"
151
 
152
- #: admin.inc.php:233
153
  msgid "Display \"No Related Posts\""
154
  msgstr "Vis \"Ingen lignende indlæg\""
155
 
156
- #: admin.inc.php:237
157
  msgid "Show post excerpt in list?"
158
  msgstr ""
159
 
160
- #: admin.inc.php:240
161
  msgid "Length of excerpt (in words): "
162
  msgstr ""
163
 
164
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
165
  msgid "Customize the output:"
166
  msgstr "Tilpas outputtet:"
167
 
168
- #: admin.inc.php:245
169
  msgid "HTML to display before the list of posts: "
170
  msgstr "HTML, der skal vises før listen med indlæg: "
171
 
172
- #: admin.inc.php:248
173
  msgid "HTML to display before each list item: "
174
  msgstr "HTML, der skal vises før hvert punkt på listen: "
175
 
176
- #: admin.inc.php:251
177
  msgid "HTML to display after each list item: "
178
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
179
 
180
- #: admin.inc.php:254
181
  msgid "HTML to display after the list of posts: "
182
  msgstr "HTML, der skal vises efter listen med indlæg: "
183
 
184
- #: admin.inc.php:257
185
  msgid "Post thumbnail options:"
186
  msgstr "Indstillinger for indlægsminiaturer:"
187
 
188
- #: admin.inc.php:259
189
  msgid "Location of post thumbnail:"
190
  msgstr ""
191
 
192
- #: admin.inc.php:263
193
  #, fuzzy
194
  msgid "Display thumbnails inline with posts, before title"
195
  msgstr "Vis miniaturer inline med indlæg"
196
 
197
- #: admin.inc.php:267
198
  #, fuzzy
199
  msgid "Display thumbnails inline with posts, after title"
200
  msgstr "Vis miniaturer inline med indlæg"
201
 
202
- #: admin.inc.php:271
203
  msgid "Display only thumbnails, no text"
204
  msgstr "Vis kun miniaturer, ingen tekst"
205
 
206
- #: admin.inc.php:275
207
  msgid "Do not display thumbnails, only text."
208
  msgstr "Vis ikke miniaturer, kun tekst."
209
 
210
- #: admin.inc.php:279
211
  msgid "Maximum width of the thumbnail: "
212
  msgstr ""
213
 
214
- #: admin.inc.php:282
215
  msgid "Maximum height of the thumbnail: "
216
  msgstr ""
217
 
218
- #: admin.inc.php:285
219
  msgid "Use timthumb to generate thumbnails? "
220
  msgstr ""
221
 
222
- #: admin.inc.php:286
223
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
 
 
224
  msgstr ""
225
 
226
- #: admin.inc.php:288
227
  #, fuzzy
228
  msgid "Post thumbnail meta field name: "
229
  msgstr "Indstillinger for indlægsminiaturer:"
230
 
231
- #: admin.inc.php:289
232
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
233
  msgstr ""
234
 
235
- #: admin.inc.php:291
236
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
 
 
237
  msgstr ""
238
 
239
- #: admin.inc.php:292
240
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
 
 
241
  msgstr ""
242
 
243
- #: admin.inc.php:294
244
  msgid "Use default thumbnail? "
245
  msgstr ""
246
 
247
- #: admin.inc.php:295
248
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
 
 
249
  msgstr ""
250
 
251
- #: admin.inc.php:297
252
  msgid "Default thumbnail: "
253
  msgstr ""
254
 
255
- #: admin.inc.php:298
256
  #, fuzzy
257
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
258
- msgstr "Pluginnet tjekker først, om indlægget indeholder en miniature. Hvis indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke findes, vil det vise standardbilledet specificeret nedenfor:"
 
 
 
 
 
 
259
 
260
- #: admin.inc.php:304
261
  msgid "Custom Styles"
262
  msgstr ""
263
 
264
- #: admin.inc.php:307
265
  msgid "Custom CSS to add to header:"
266
  msgstr ""
267
 
268
- #: admin.inc.php:310
269
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
 
 
 
270
  msgstr ""
271
 
272
- #: admin.inc.php:314
273
  #, fuzzy
274
  msgid "Save Options"
275
  msgstr "Indstillinger:"
276
 
277
- #: admin.inc.php:315
278
  #, fuzzy
279
  msgid "Default Options"
280
  msgstr "Indstillinger for output:"
281
 
282
- #: admin.inc.php:315
283
  msgid "Do you want to set options to Default?"
284
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
285
 
286
- #: admin.inc.php:316
287
  msgid "Recreate Index"
288
  msgstr ""
289
 
290
- #: admin.inc.php:316
291
  msgid "Are you sure you want to recreate the index?"
292
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
293
 
294
- #: admin.inc.php:346
295
  #, fuzzy
296
  msgid "Contextual Related Posts"
297
  msgstr "Related Posts (Lignende indlæg)"
298
 
299
- #: admin.inc.php:346
300
- #: contextual-related-posts.php:190
301
  msgid "Related Posts"
302
  msgstr "Related Posts (Lignende indlæg)"
303
 
304
- #: admin.inc.php:355
305
  msgid "plugin settings page"
306
  msgstr ""
307
 
308
- #: admin.inc.php:360
309
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
310
  msgstr ""
311
 
312
- #: admin.inc.php:360
313
  msgid " to configure."
314
  msgstr ""
315
 
316
- #: contextual-related-posts.php:146
317
  msgid "Powered by"
318
  msgstr ""
319
 
320
- #: contextual-related-posts.php:151
321
- #: contextual-related-posts.php:156
322
  msgid "No related posts found"
323
  msgstr "Ingen lignende indlæg fundet"
324
 
325
- #: contextual-related-posts.php:189
326
  #, fuzzy
327
  msgid "Display Related Posts"
328
  msgstr "Vis \"Ingen lignende indlæg\""
329
 
330
- #: contextual-related-posts.php:200
331
  msgid "Title"
332
  msgstr ""
333
 
334
- #: contextual-related-posts.php:205
335
  msgid "No. of posts"
336
  msgstr ""
337
 
338
- #: contextual-related-posts.php:209
339
  #, fuzzy
340
  msgid "Thumbnail options"
341
  msgstr "Indstillinger for indlægsminiaturer:"
342
 
343
- #: contextual-related-posts.php:211
344
  #, fuzzy
345
  msgid "Thumbnails inline, before title"
346
  msgstr "Vis miniaturer inline med indlæg"
347
 
348
- #: contextual-related-posts.php:212
349
  #, fuzzy
350
  msgid "Thumbnails inline, after title"
351
  msgstr "Vis miniaturer inline med indlæg"
352
 
353
- #: contextual-related-posts.php:213
354
  #, fuzzy
355
  msgid "Only thumbnails, no text"
356
  msgstr "Vis kun miniaturer, ingen tekst"
357
 
358
- #: contextual-related-posts.php:214
359
  #, fuzzy
360
  msgid "No thumbnails, only text."
361
  msgstr "Vis ikke miniaturer, kun tekst."
362
 
363
- #: contextual-related-posts.php:219
364
  msgid " Show excerpt?"
365
  msgstr ""
366
 
367
- #: contextual-related-posts.php:271
368
  msgid "<h3>Related Posts:</h3>"
369
  msgstr "<h3>Lignende indlæg:</h3>"
370
 
371
- #: contextual-related-posts.php:450
372
  msgid "Settings"
373
  msgstr "Opsætning"
374
 
375
- #: contextual-related-posts.php:452
376
  msgid "Donate"
377
  msgstr "Donation"
378
 
 
 
 
 
 
 
 
379
  #~ msgid "Exclude Pages in Related Posts"
380
  #~ msgstr "Udelad sider i Lignende indlæg"
381
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts 1.5.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:29-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"
9
+ "Language: da_DK\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2;plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;"
16
+ "_nc:1,2;_n_noop:1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
+ "X-Generator: Poedit 1.5.4\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: admin.inc.php:80
22
  msgid "Options saved successfully."
23
  msgstr "Indstillingerne blev gemt."
24
 
25
+ #: admin.inc.php:96
26
  msgid "Options set to Default."
27
  msgstr "Indstillingerne sat til standardværdier."
28
 
29
+ #: admin.inc.php:111
30
  msgid "Index recreated"
31
  msgstr "Indeks blev gendannet"
32
 
33
+ #: admin.inc.php:124
34
  #, fuzzy
35
  msgid "Support the development"
36
  msgstr "Støt udviklingen"
37
 
38
+ #: admin.inc.php:132
39
  msgid "Enter amount in USD: "
40
  msgstr ""
41
 
42
+ #: admin.inc.php:136
43
  msgid "Send your donation to the author of"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:145
47
  msgid "Quick Links"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:147
51
  #, fuzzy
52
  msgid "Contextual Related Posts plugin page"
53
  msgstr "Related Posts (Lignende indlæg)"
54
 
55
+ #: admin.inc.php:148
56
  msgid "Other plugins"
57
  msgstr ""
58
 
59
+ #: admin.inc.php:149
60
  msgid "Ajay's blog"
61
  msgstr ""
62
 
63
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
64
  msgid "Support"
65
  msgstr "Support"
66
 
67
+ #: admin.inc.php:151
68
+ msgid "Reviews"
69
+ msgstr ""
70
+
71
+ #: admin.inc.php:152
72
  msgid "Follow @ajaydsouza on Twitter"
73
  msgstr ""
74
 
75
+ #: admin.inc.php:156
76
  msgid "Recent developments"
77
  msgstr ""
78
 
79
+ #: admin.inc.php:168
80
  msgid "General options"
81
  msgstr ""
82
 
83
+ #: admin.inc.php:171
84
  msgid "Number of related posts to display: "
85
  msgstr "Antal Lignende indlæg, der skal vises: "
86
 
87
+ #: admin.inc.php:174
88
+ msgid "Related posts should be newer than:"
89
+ msgstr ""
90
+
91
+ #: admin.inc.php:175
92
+ msgid "days"
93
+ msgstr ""
94
+
95
+ #: admin.inc.php:177
96
  msgid "Post types to include in results (including custom post types)"
97
  msgstr ""
98
 
99
+ #: admin.inc.php:188
100
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
101
  msgstr ""
102
 
103
+ #: admin.inc.php:191
104
  msgid "Find related posts based on content as well as title"
105
  msgstr ""
106
 
107
+ #: admin.inc.php:192
108
  #, fuzzy
109
+ msgid ""
110
+ "If unchecked, only posts titles are used. (I recommend using a caching "
111
+ "plugin if you enable this)"
112
+ msgstr ""
113
+ "Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges "
114
+ "kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
115
+ "dette)"
116
 
117
+ #: admin.inc.php:194
118
  msgid "List of post or page IDs to exclude from the results: "
119
  msgstr ""
120
 
121
+ #: admin.inc.php:197
122
+ msgid "Categories to exclude from the results: "
 
 
 
 
123
  msgstr ""
124
 
125
+ #: admin.inc.php:215
 
126
  #, fuzzy
127
+ msgid "Add related posts to:"
 
 
 
 
 
128
  msgstr "Tilføj Lignende indlæg til feeds"
129
 
130
+ #: admin.inc.php:217
131
+ msgid "Posts"
132
+ msgstr ""
133
 
134
+ #: admin.inc.php:218
135
+ msgid "Pages"
136
+ msgstr ""
137
+
138
+ #: admin.inc.php:219
139
+ msgid "Home page"
140
+ msgstr ""
141
+
142
+ #: admin.inc.php:220
143
+ msgid "Feeds"
144
+ msgstr ""
145
+
146
+ #: admin.inc.php:221
147
+ msgid "Category archives"
148
+ msgstr ""
149
+
150
+ #: admin.inc.php:222
151
+ msgid "Tag archives"
152
+ msgstr ""
153
+
154
+ #: admin.inc.php:223
155
+ msgid "Other archives"
156
+ msgstr ""
157
+
158
+ #: admin.inc.php:224
159
+ #, fuzzy
160
+ msgid ""
161
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
162
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
163
+ "you want it displayed"
164
+ msgstr ""
165
+ "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at "
166
+ "deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists"
167
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du "
168
+ "ønsker de lignende indlæg vist"
169
+
170
+ #: admin.inc.php:227
171
  msgid "Add a link to the plugin page as a final item in the list"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:228
175
  msgid " <em>Optional</em>"
176
  msgstr ""
177
 
178
+ #: admin.inc.php:236
179
  #, fuzzy
180
  msgid "Output Options"
181
  msgstr "Indstillinger for output:"
182
 
183
+ #: admin.inc.php:239
184
  msgid "Title of related posts: "
185
  msgstr "Titel på Lignende indlæg: "
186
 
187
+ #: admin.inc.php:242
188
  msgid "When there are no posts, what should be shown?"
189
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
190
 
191
+ #: admin.inc.php:246
192
  msgid "Blank Output"
193
  msgstr "Intet"
194
 
195
+ #: admin.inc.php:250
196
  msgid "Display \"No Related Posts\""
197
  msgstr "Vis \"Ingen lignende indlæg\""
198
 
199
+ #: admin.inc.php:254
200
  msgid "Show post excerpt in list?"
201
  msgstr ""
202
 
203
+ #: admin.inc.php:257
204
  msgid "Length of excerpt (in words): "
205
  msgstr ""
206
 
207
+ #: admin.inc.php:260
208
+ msgid "Limit post title length (in characters)"
209
+ msgstr ""
210
+
211
+ #: admin.inc.php:263
212
+ msgid ""
213
+ "Exclude display of related posts on these posts / pages (Enter comma "
214
+ "separated list of IDs): "
215
+ msgstr ""
216
+
217
+ #: admin.inc.php:266
218
  msgid "Customize the output:"
219
  msgstr "Tilpas outputtet:"
220
 
221
+ #: admin.inc.php:268
222
  msgid "HTML to display before the list of posts: "
223
  msgstr "HTML, der skal vises før listen med indlæg: "
224
 
225
+ #: admin.inc.php:271
226
  msgid "HTML to display before each list item: "
227
  msgstr "HTML, der skal vises før hvert punkt på listen: "
228
 
229
+ #: admin.inc.php:274
230
  msgid "HTML to display after each list item: "
231
  msgstr "HTML, der skal vises efter hvert punkt på listen: "
232
 
233
+ #: admin.inc.php:277
234
  msgid "HTML to display after the list of posts: "
235
  msgstr "HTML, der skal vises efter listen med indlæg: "
236
 
237
+ #: admin.inc.php:280
238
  msgid "Post thumbnail options:"
239
  msgstr "Indstillinger for indlægsminiaturer:"
240
 
241
+ #: admin.inc.php:282
242
  msgid "Location of post thumbnail:"
243
  msgstr ""
244
 
245
+ #: admin.inc.php:286
246
  #, fuzzy
247
  msgid "Display thumbnails inline with posts, before title"
248
  msgstr "Vis miniaturer inline med indlæg"
249
 
250
+ #: admin.inc.php:290
251
  #, fuzzy
252
  msgid "Display thumbnails inline with posts, after title"
253
  msgstr "Vis miniaturer inline med indlæg"
254
 
255
+ #: admin.inc.php:294
256
  msgid "Display only thumbnails, no text"
257
  msgstr "Vis kun miniaturer, ingen tekst"
258
 
259
+ #: admin.inc.php:298
260
  msgid "Do not display thumbnails, only text."
261
  msgstr "Vis ikke miniaturer, kun tekst."
262
 
263
+ #: admin.inc.php:302
264
  msgid "Maximum width of the thumbnail: "
265
  msgstr ""
266
 
267
+ #: admin.inc.php:305
268
  msgid "Maximum height of the thumbnail: "
269
  msgstr ""
270
 
271
+ #: admin.inc.php:308
272
  msgid "Use timthumb to generate thumbnails? "
273
  msgstr ""
274
 
275
+ #: admin.inc.php:309
276
+ msgid ""
277
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
278
+ "\">timthumb</a> will be used to generate thumbnails"
279
  msgstr ""
280
 
281
+ #: admin.inc.php:311
282
  #, fuzzy
283
  msgid "Post thumbnail meta field name: "
284
  msgstr "Indstillinger for indlægsminiaturer:"
285
 
286
+ #: admin.inc.php:312
287
+ msgid ""
288
+ "The value of this field should contain the image source and is set in the "
289
+ "<em>Add New Post</em> screen"
290
  msgstr ""
291
 
292
+ #: admin.inc.php:314
293
+ msgid ""
294
+ "If the postmeta is not set, then should the plugin extract the first image "
295
+ "from the post?"
296
  msgstr ""
297
 
298
+ #: admin.inc.php:315
299
+ msgid ""
300
+ "This can slow down the loading of your page if the first image in the "
301
+ "related posts is large in file-size"
302
  msgstr ""
303
 
304
+ #: admin.inc.php:317
305
  msgid "Use default thumbnail? "
306
  msgstr ""
307
 
308
+ #: admin.inc.php:318
309
+ msgid ""
310
+ "If checked, when no thumbnail is found, show a default one from the URL "
311
+ "below. If not checked and no thumbnail is found, no image will be shown."
312
  msgstr ""
313
 
314
+ #: admin.inc.php:320
315
  msgid "Default thumbnail: "
316
  msgstr ""
317
 
318
+ #: admin.inc.php:321
319
  #, fuzzy
320
+ msgid ""
321
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
322
+ "then it will check the meta field. If this is not available, then it will "
323
+ "show the default image as specified above"
324
+ msgstr ""
325
+ "Pluginnet tjekker først, om indlægget indeholder en miniature. Hvis "
326
+ "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
327
+ "findes, vil det vise standardbilledet specificeret nedenfor:"
328
 
329
+ #: admin.inc.php:327
330
  msgid "Custom Styles"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:330
334
  msgid "Custom CSS to add to header:"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:333
338
+ msgid ""
339
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
340
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
341
+ "\">FAQ</a> for available CSS classes to style."
342
  msgstr ""
343
 
344
+ #: admin.inc.php:337
345
  #, fuzzy
346
  msgid "Save Options"
347
  msgstr "Indstillinger:"
348
 
349
+ #: admin.inc.php:338
350
  #, fuzzy
351
  msgid "Default Options"
352
  msgstr "Indstillinger for output:"
353
 
354
+ #: admin.inc.php:338
355
  msgid "Do you want to set options to Default?"
356
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
357
 
358
+ #: admin.inc.php:339
359
  msgid "Recreate Index"
360
  msgstr ""
361
 
362
+ #: admin.inc.php:339
363
  msgid "Are you sure you want to recreate the index?"
364
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
365
 
366
+ #: admin.inc.php:369
367
  #, fuzzy
368
  msgid "Contextual Related Posts"
369
  msgstr "Related Posts (Lignende indlæg)"
370
 
371
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
372
  msgid "Related Posts"
373
  msgstr "Related Posts (Lignende indlæg)"
374
 
375
+ #: admin.inc.php:378
376
  msgid "plugin settings page"
377
  msgstr ""
378
 
379
+ #: admin.inc.php:383
380
+ msgid ""
381
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
382
+ "visit the "
383
  msgstr ""
384
 
385
+ #: admin.inc.php:383
386
  msgid " to configure."
387
  msgstr ""
388
 
389
+ #: contextual-related-posts.php:152
390
  msgid "Powered by"
391
  msgstr ""
392
 
393
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
394
  msgid "No related posts found"
395
  msgstr "Ingen lignende indlæg fundet"
396
 
397
+ #: contextual-related-posts.php:221
398
  #, fuzzy
399
  msgid "Display Related Posts"
400
  msgstr "Vis \"Ingen lignende indlæg\""
401
 
402
+ #: contextual-related-posts.php:232
403
  msgid "Title"
404
  msgstr ""
405
 
406
+ #: contextual-related-posts.php:237
407
  msgid "No. of posts"
408
  msgstr ""
409
 
410
+ #: contextual-related-posts.php:241
411
  #, fuzzy
412
  msgid "Thumbnail options"
413
  msgstr "Indstillinger for indlægsminiaturer:"
414
 
415
+ #: contextual-related-posts.php:243
416
  #, fuzzy
417
  msgid "Thumbnails inline, before title"
418
  msgstr "Vis miniaturer inline med indlæg"
419
 
420
+ #: contextual-related-posts.php:244
421
  #, fuzzy
422
  msgid "Thumbnails inline, after title"
423
  msgstr "Vis miniaturer inline med indlæg"
424
 
425
+ #: contextual-related-posts.php:245
426
  #, fuzzy
427
  msgid "Only thumbnails, no text"
428
  msgstr "Vis kun miniaturer, ingen tekst"
429
 
430
+ #: contextual-related-posts.php:246
431
  #, fuzzy
432
  msgid "No thumbnails, only text."
433
  msgstr "Vis ikke miniaturer, kun tekst."
434
 
435
+ #: contextual-related-posts.php:251
436
  msgid " Show excerpt?"
437
  msgstr ""
438
 
439
+ #: contextual-related-posts.php:301
440
  msgid "<h3>Related Posts:</h3>"
441
  msgstr "<h3>Lignende indlæg:</h3>"
442
 
443
+ #: contextual-related-posts.php:520
444
  msgid "Settings"
445
  msgstr "Opsætning"
446
 
447
+ #: contextual-related-posts.php:522
448
  msgid "Donate"
449
  msgstr "Donation"
450
 
451
+ #~ msgid "Exclude Categories: "
452
+ #~ msgstr "Udelad kategorier: "
453
+
454
+ #, fuzzy
455
+ #~ msgid "Add related posts to pages"
456
+ #~ msgstr "Tilføj Lignende indlæg til feeds"
457
+
458
  #~ msgid "Exclude Pages in Related Posts"
459
  #~ msgstr "Udelad sider i Lignende indlæg"
460
 
languages/crp-de_DE.mo CHANGED
Binary file
languages/crp-de_DE.po CHANGED
@@ -2,380 +2,467 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:19-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
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
 
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:70
18
  msgid "Options saved successfully."
19
  msgstr "Optionen gespeichert."
20
 
21
- #: admin.inc.php:86
22
  msgid "Options set to Default."
23
  msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
24
 
25
- #: admin.inc.php:101
26
  msgid "Index recreated"
27
  msgstr "Index aufgefrischt"
28
 
29
- #: admin.inc.php:114
30
  msgid "Support the development"
31
  msgstr "Unterstützen Sie die Entwicklung"
32
 
33
- #: admin.inc.php:122
34
  msgid "Enter amount in USD: "
35
  msgstr "Den Betrag in USD eingeben: "
36
 
37
- #: admin.inc.php:126
38
  msgid "Send your donation to the author of"
39
  msgstr "Schicken Sie eine Spende an den Autor von"
40
 
41
- #: admin.inc.php:135
42
  #, fuzzy
43
  msgid "Quick Links"
44
  msgstr "Links"
45
 
46
- #: admin.inc.php:137
47
  #, fuzzy
48
  msgid "Contextual Related Posts plugin page"
49
  msgstr "Contextual Related Posts "
50
 
51
- #: admin.inc.php:138
52
  msgid "Other plugins"
53
  msgstr "Weitere Plugins"
54
 
55
- #: admin.inc.php:139
56
  msgid "Ajay's blog"
57
  msgstr "Ajay's Blog"
58
 
59
- #: admin.inc.php:140
60
- #: contextual-related-posts.php:451
61
  msgid "Support"
62
  msgstr "Support"
63
 
64
- #: admin.inc.php:141
 
 
 
 
65
  msgid "Follow @ajaydsouza on Twitter"
66
  msgstr "@ajaydsouza auf Twitter folgen"
67
 
68
- #: admin.inc.php:145
69
  msgid "Recent developments"
70
  msgstr "Neueste Entwicklungen"
71
 
72
- #: admin.inc.php:157
73
  msgid "General options"
74
  msgstr ""
75
 
76
- #: admin.inc.php:160
77
  msgid "Number of related posts to display: "
78
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
79
 
80
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
81
  msgid "Post types to include in results (including custom post types)"
82
  msgstr ""
83
 
84
- #: admin.inc.php:174
85
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
86
  msgstr ""
87
 
88
- #: admin.inc.php:177
89
  msgid "Find related posts based on content as well as title"
90
  msgstr ""
91
 
92
- #: admin.inc.php:178
93
  #, fuzzy
94
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
95
- msgstr "Ähnliche Beiträge sowohl im Beitragstitel als auch im Beitragsinhalt suchen. Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
 
 
 
 
 
96
 
97
- #: admin.inc.php:180
98
  msgid "List of post or page IDs to exclude from the results: "
99
  msgstr ""
100
 
101
- #: admin.inc.php:183
102
- msgid "Exclude Categories: "
103
- msgstr "Kategorien ausschließen: "
104
-
105
- #: admin.inc.php:201
106
- msgid "Add related posts to the post content on single posts"
107
  msgstr ""
108
 
109
- #: admin.inc.php:202
110
- #: admin.inc.php:205
111
  #, fuzzy
112
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
113
- msgstr "Ähnliche Beiträge auch in statischen Seiten auflisten.<br />Wenn Sie das deaktivieren wollen, fügen Sie <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem die ähnlichen Beiträge aufgeliistet werden sollen"
114
-
115
- #: admin.inc.php:204
116
- #, fuzzy
117
- msgid "Add related posts to pages"
118
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
119
 
120
- #: admin.inc.php:207
121
- msgid "Add related posts to feed"
122
- msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
 
124
- #: admin.inc.php:210
125
  msgid "Add a link to the plugin page as a final item in the list"
126
  msgstr ""
127
 
128
- #: admin.inc.php:211
129
  msgid " <em>Optional</em>"
130
  msgstr ""
131
 
132
- #: admin.inc.php:219
133
  #, fuzzy
134
  msgid "Output Options"
135
  msgstr "Ausgabeotionen:"
136
 
137
- #: admin.inc.php:222
138
  msgid "Title of related posts: "
139
  msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
140
 
141
- #: admin.inc.php:225
142
  msgid "When there are no posts, what should be shown?"
143
- msgstr "Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt werden?"
 
 
144
 
145
- #: admin.inc.php:229
146
  msgid "Blank Output"
147
  msgstr "Nichts"
148
 
149
- #: admin.inc.php:233
150
  msgid "Display \"No Related Posts\""
151
  msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
152
 
153
- #: admin.inc.php:237
154
  msgid "Show post excerpt in list?"
155
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
156
 
157
- #: admin.inc.php:240
158
  msgid "Length of excerpt (in words): "
159
  msgstr "Länge des Auszugs (in Worten): "
160
 
161
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
162
  msgid "Customize the output:"
163
  msgstr "Die Ausgabe anpassen:"
164
 
165
- #: admin.inc.php:245
166
  msgid "HTML to display before the list of posts: "
167
  msgstr "HTML vor der Beitragsliste: "
168
 
169
- #: admin.inc.php:248
170
  msgid "HTML to display before each list item: "
171
  msgstr "HTML vor jedem Listenelement: "
172
 
173
- #: admin.inc.php:251
174
  msgid "HTML to display after each list item: "
175
  msgstr "HTML nach jedem Listenelement: "
176
 
177
- #: admin.inc.php:254
178
  msgid "HTML to display after the list of posts: "
179
  msgstr "HTML nach der Beitragsliste: "
180
 
181
- #: admin.inc.php:257
182
  msgid "Post thumbnail options:"
183
  msgstr "Optionen für die Beitrags-Thumbnails:"
184
 
185
- #: admin.inc.php:259
186
  msgid "Location of post thumbnail:"
187
  msgstr ""
188
 
189
- #: admin.inc.php:263
190
  #, fuzzy
191
  msgid "Display thumbnails inline with posts, before title"
192
  msgstr "Thumbnails und Beitragstitel anzeigen"
193
 
194
- #: admin.inc.php:267
195
  #, fuzzy
196
  msgid "Display thumbnails inline with posts, after title"
197
  msgstr "Thumbnails und Beitragstitel anzeigen"
198
 
199
- #: admin.inc.php:271
200
  msgid "Display only thumbnails, no text"
201
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
202
 
203
- #: admin.inc.php:275
204
  msgid "Do not display thumbnails, only text."
205
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
206
 
207
- #: admin.inc.php:279
208
  msgid "Maximum width of the thumbnail: "
209
  msgstr ""
210
 
211
- #: admin.inc.php:282
212
  msgid "Maximum height of the thumbnail: "
213
  msgstr ""
214
 
215
- #: admin.inc.php:285
216
  msgid "Use timthumb to generate thumbnails? "
217
  msgstr ""
218
 
219
- #: admin.inc.php:286
220
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
 
 
221
  msgstr ""
222
 
223
- #: admin.inc.php:288
224
  #, fuzzy
225
  msgid "Post thumbnail meta field name: "
226
  msgstr "Optionen für die Beitrags-Thumbnails:"
227
 
228
- #: admin.inc.php:289
229
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
230
  msgstr ""
231
 
232
- #: admin.inc.php:291
233
  #, fuzzy
234
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
235
- msgstr "Wenn 'Postmeta' nicht gesetzt ist, dann soll das Plugin das erste Bild aus dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
 
 
 
 
 
236
 
237
- #: admin.inc.php:292
238
  #, fuzzy
239
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
240
- msgstr "Wenn 'Postmeta' nicht gesetzt ist, dann soll das Plugin das erste Bild aus dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
 
 
 
 
 
241
 
242
- #: admin.inc.php:294
243
  msgid "Use default thumbnail? "
244
  msgstr ""
245
 
246
- #: admin.inc.php:295
247
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
 
 
248
  msgstr ""
249
 
250
- #: admin.inc.php:297
251
  msgid "Default thumbnail: "
252
  msgstr ""
253
 
254
- #: admin.inc.php:298
255
  #, fuzzy
256
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
257
- msgstr "Das Plugin prüft zunächst, ob der Beitrag einen Thumbnail enthält. Wenn nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, wird das unten spezifizierte Default-Thumbnail angezeigt:"
 
 
 
 
 
 
258
 
259
- #: admin.inc.php:304
260
  msgid "Custom Styles"
261
  msgstr ""
262
 
263
- #: admin.inc.php:307
264
  msgid "Custom CSS to add to header:"
265
  msgstr ""
266
 
267
- #: admin.inc.php:310
268
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
 
 
 
269
  msgstr ""
270
 
271
- #: admin.inc.php:314
272
  #, fuzzy
273
  msgid "Save Options"
274
  msgstr "Optionen:"
275
 
276
- #: admin.inc.php:315
277
  #, fuzzy
278
  msgid "Default Options"
279
  msgstr "Ausgabeotionen:"
280
 
281
- #: admin.inc.php:315
282
  msgid "Do you want to set options to Default?"
283
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
284
 
285
- #: admin.inc.php:316
286
  msgid "Recreate Index"
287
  msgstr ""
288
 
289
- #: admin.inc.php:316
290
  msgid "Are you sure you want to recreate the index?"
291
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
292
 
293
- #: admin.inc.php:346
294
  msgid "Contextual Related Posts"
295
  msgstr "Contextual Related Posts"
296
 
297
- #: admin.inc.php:346
298
- #: contextual-related-posts.php:190
299
  msgid "Related Posts"
300
  msgstr "Related Posts"
301
 
302
- #: admin.inc.php:355
303
  #, fuzzy
304
  msgid "plugin settings page"
305
  msgstr "Plugin-Seite"
306
 
307
- #: admin.inc.php:360
308
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
309
  msgstr ""
310
 
311
- #: admin.inc.php:360
312
  msgid " to configure."
313
  msgstr ""
314
 
315
- #: contextual-related-posts.php:146
316
  msgid "Powered by"
317
  msgstr "Powered by"
318
 
319
- #: contextual-related-posts.php:151
320
- #: contextual-related-posts.php:156
321
  msgid "No related posts found"
322
  msgstr "Keine ähnlichen Beiträge gefunden"
323
 
324
- #: contextual-related-posts.php:189
325
  #, fuzzy
326
  msgid "Display Related Posts"
327
  msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
328
 
329
- #: contextual-related-posts.php:200
330
  msgid "Title"
331
  msgstr ""
332
 
333
- #: contextual-related-posts.php:205
334
  msgid "No. of posts"
335
  msgstr ""
336
 
337
- #: contextual-related-posts.php:209
338
  #, fuzzy
339
  msgid "Thumbnail options"
340
  msgstr "Optionen für die Beitrags-Thumbnails:"
341
 
342
- #: contextual-related-posts.php:211
343
  #, fuzzy
344
  msgid "Thumbnails inline, before title"
345
  msgstr "Thumbnails und Beitragstitel anzeigen"
346
 
347
- #: contextual-related-posts.php:212
348
  #, fuzzy
349
  msgid "Thumbnails inline, after title"
350
  msgstr "Thumbnails und Beitragstitel anzeigen"
351
 
352
- #: contextual-related-posts.php:213
353
  #, fuzzy
354
  msgid "Only thumbnails, no text"
355
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
356
 
357
- #: contextual-related-posts.php:214
358
  #, fuzzy
359
  msgid "No thumbnails, only text."
360
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
361
 
362
- #: contextual-related-posts.php:219
363
  #, fuzzy
364
  msgid " Show excerpt?"
365
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
366
 
367
- #: contextual-related-posts.php:271
368
  msgid "<h3>Related Posts:</h3>"
369
  msgstr "<h3>Ähnliche Beiträge:</h3>"
370
 
371
- #: contextual-related-posts.php:450
372
  msgid "Settings"
373
  msgstr "Einstellungen"
374
 
375
- #: contextual-related-posts.php:452
376
  msgid "Donate"
377
  msgstr "Spenden"
378
 
 
 
 
 
 
 
 
379
  #~ msgid "plugin page"
380
  #~ msgstr "Plugin-Seite"
381
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
9
+ "Language: en\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.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:80
19
  msgid "Options saved successfully."
20
  msgstr "Optionen gespeichert."
21
 
22
+ #: admin.inc.php:96
23
  msgid "Options set to Default."
24
  msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
25
 
26
+ #: admin.inc.php:111
27
  msgid "Index recreated"
28
  msgstr "Index aufgefrischt"
29
 
30
+ #: admin.inc.php:124
31
  msgid "Support the development"
32
  msgstr "Unterstützen Sie die Entwicklung"
33
 
34
+ #: admin.inc.php:132
35
  msgid "Enter amount in USD: "
36
  msgstr "Den Betrag in USD eingeben: "
37
 
38
+ #: admin.inc.php:136
39
  msgid "Send your donation to the author of"
40
  msgstr "Schicken Sie eine Spende an den Autor von"
41
 
42
+ #: admin.inc.php:145
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links"
46
 
47
+ #: admin.inc.php:147
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:148
53
  msgid "Other plugins"
54
  msgstr "Weitere Plugins"
55
 
56
+ #: admin.inc.php:149
57
  msgid "Ajay's blog"
58
  msgstr "Ajay's Blog"
59
 
60
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
61
  msgid "Support"
62
  msgstr "Support"
63
 
64
+ #: admin.inc.php:151
65
+ msgid "Reviews"
66
+ msgstr ""
67
+
68
+ #: admin.inc.php:152
69
  msgid "Follow @ajaydsouza on Twitter"
70
  msgstr "@ajaydsouza auf Twitter folgen"
71
 
72
+ #: admin.inc.php:156
73
  msgid "Recent developments"
74
  msgstr "Neueste Entwicklungen"
75
 
76
+ #: admin.inc.php:168
77
  msgid "General options"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:171
81
  msgid "Number of related posts to display: "
82
  msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
83
 
84
+ #: admin.inc.php:174
85
+ msgid "Related posts should be newer than:"
86
+ msgstr ""
87
+
88
+ #: admin.inc.php:175
89
+ msgid "days"
90
+ msgstr ""
91
+
92
+ #: admin.inc.php:177
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:188
97
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:191
101
  msgid "Find related posts based on content as well as title"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:192
105
  #, fuzzy
106
+ msgid ""
107
+ "If unchecked, only posts titles are used. (I recommend using a caching "
108
+ "plugin if you enable this)"
109
+ msgstr ""
110
+ "Ähnliche Beiträge sowohl im Beitragstitel als auch im Beitragsinhalt suchen. "
111
+ "Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
112
+ "Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
113
 
114
+ #: admin.inc.php:194
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:197
119
+ msgid "Categories to exclude from the results: "
 
 
 
 
120
  msgstr ""
121
 
122
+ #: admin.inc.php:215
 
123
  #, fuzzy
124
+ msgid "Add related posts to:"
 
 
 
 
 
125
  msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
126
 
127
+ #: admin.inc.php:217
128
+ msgid "Posts"
129
+ msgstr ""
130
+
131
+ #: admin.inc.php:218
132
+ msgid "Pages"
133
+ msgstr ""
134
+
135
+ #: admin.inc.php:219
136
+ msgid "Home page"
137
+ msgstr ""
138
+
139
+ #: admin.inc.php:220
140
+ msgid "Feeds"
141
+ msgstr ""
142
+
143
+ #: admin.inc.php:221
144
+ msgid "Category archives"
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:222
148
+ msgid "Tag archives"
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:223
152
+ msgid "Other archives"
153
+ msgstr ""
154
+
155
+ #: admin.inc.php:224
156
+ #, fuzzy
157
+ msgid ""
158
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
159
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
160
+ "you want it displayed"
161
+ msgstr ""
162
+ "Ähnliche Beiträge auch in statischen Seiten auflisten.<br />Wenn Sie das "
163
+ "deaktivieren wollen, fügen Sie <code>&lt;?php if(function_exists"
164
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> in das Template ein, in dem "
165
+ "die ähnlichen Beiträge aufgeliistet werden sollen"
166
 
167
+ #: admin.inc.php:227
168
  msgid "Add a link to the plugin page as a final item in the list"
169
  msgstr ""
170
 
171
+ #: admin.inc.php:228
172
  msgid " <em>Optional</em>"
173
  msgstr ""
174
 
175
+ #: admin.inc.php:236
176
  #, fuzzy
177
  msgid "Output Options"
178
  msgstr "Ausgabeotionen:"
179
 
180
+ #: admin.inc.php:239
181
  msgid "Title of related posts: "
182
  msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
183
 
184
+ #: admin.inc.php:242
185
  msgid "When there are no posts, what should be shown?"
186
+ msgstr ""
187
+ "Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
188
+ "werden?"
189
 
190
+ #: admin.inc.php:246
191
  msgid "Blank Output"
192
  msgstr "Nichts"
193
 
194
+ #: admin.inc.php:250
195
  msgid "Display \"No Related Posts\""
196
  msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
197
 
198
+ #: admin.inc.php:254
199
  msgid "Show post excerpt in list?"
200
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
201
 
202
+ #: admin.inc.php:257
203
  msgid "Length of excerpt (in words): "
204
  msgstr "Länge des Auszugs (in Worten): "
205
 
206
+ #: admin.inc.php:260
207
+ msgid "Limit post title length (in characters)"
208
+ msgstr ""
209
+
210
+ #: admin.inc.php:263
211
+ msgid ""
212
+ "Exclude display of related posts on these posts / pages (Enter comma "
213
+ "separated list of IDs): "
214
+ msgstr ""
215
+
216
+ #: admin.inc.php:266
217
  msgid "Customize the output:"
218
  msgstr "Die Ausgabe anpassen:"
219
 
220
+ #: admin.inc.php:268
221
  msgid "HTML to display before the list of posts: "
222
  msgstr "HTML vor der Beitragsliste: "
223
 
224
+ #: admin.inc.php:271
225
  msgid "HTML to display before each list item: "
226
  msgstr "HTML vor jedem Listenelement: "
227
 
228
+ #: admin.inc.php:274
229
  msgid "HTML to display after each list item: "
230
  msgstr "HTML nach jedem Listenelement: "
231
 
232
+ #: admin.inc.php:277
233
  msgid "HTML to display after the list of posts: "
234
  msgstr "HTML nach der Beitragsliste: "
235
 
236
+ #: admin.inc.php:280
237
  msgid "Post thumbnail options:"
238
  msgstr "Optionen für die Beitrags-Thumbnails:"
239
 
240
+ #: admin.inc.php:282
241
  msgid "Location of post thumbnail:"
242
  msgstr ""
243
 
244
+ #: admin.inc.php:286
245
  #, fuzzy
246
  msgid "Display thumbnails inline with posts, before title"
247
  msgstr "Thumbnails und Beitragstitel anzeigen"
248
 
249
+ #: admin.inc.php:290
250
  #, fuzzy
251
  msgid "Display thumbnails inline with posts, after title"
252
  msgstr "Thumbnails und Beitragstitel anzeigen"
253
 
254
+ #: admin.inc.php:294
255
  msgid "Display only thumbnails, no text"
256
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
257
 
258
+ #: admin.inc.php:298
259
  msgid "Do not display thumbnails, only text."
260
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
261
 
262
+ #: admin.inc.php:302
263
  msgid "Maximum width of the thumbnail: "
264
  msgstr ""
265
 
266
+ #: admin.inc.php:305
267
  msgid "Maximum height of the thumbnail: "
268
  msgstr ""
269
 
270
+ #: admin.inc.php:308
271
  msgid "Use timthumb to generate thumbnails? "
272
  msgstr ""
273
 
274
+ #: admin.inc.php:309
275
+ msgid ""
276
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
277
+ "\">timthumb</a> will be used to generate thumbnails"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:311
281
  #, fuzzy
282
  msgid "Post thumbnail meta field name: "
283
  msgstr "Optionen für die Beitrags-Thumbnails:"
284
 
285
+ #: admin.inc.php:312
286
+ msgid ""
287
+ "The value of this field should contain the image source and is set in the "
288
+ "<em>Add New Post</em> screen"
289
  msgstr ""
290
 
291
+ #: admin.inc.php:314
292
  #, fuzzy
293
+ msgid ""
294
+ "If the postmeta is not set, then should the plugin extract the first image "
295
+ "from the post?"
296
+ msgstr ""
297
+ "Wenn 'Postmeta' nicht gesetzt ist, dann soll das Plugin das erste Bild aus "
298
+ "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
299
+ "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
300
 
301
+ #: admin.inc.php:315
302
  #, fuzzy
303
+ msgid ""
304
+ "This can slow down the loading of your page if the first image in the "
305
+ "related posts is large in file-size"
306
+ msgstr ""
307
+ "Wenn 'Postmeta' nicht gesetzt ist, dann soll das Plugin das erste Bild aus "
308
+ "dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
309
+ "verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
310
 
311
+ #: admin.inc.php:317
312
  msgid "Use default thumbnail? "
313
  msgstr ""
314
 
315
+ #: admin.inc.php:318
316
+ msgid ""
317
+ "If checked, when no thumbnail is found, show a default one from the URL "
318
+ "below. If not checked and no thumbnail is found, no image will be shown."
319
  msgstr ""
320
 
321
+ #: admin.inc.php:320
322
  msgid "Default thumbnail: "
323
  msgstr ""
324
 
325
+ #: admin.inc.php:321
326
  #, fuzzy
327
+ msgid ""
328
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
329
+ "then it will check the meta field. If this is not available, then it will "
330
+ "show the default image as specified above"
331
+ msgstr ""
332
+ "Das Plugin prüft zunächst, ob der Beitrag einen Thumbnail enthält. Wenn "
333
+ "nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
334
+ "wird das unten spezifizierte Default-Thumbnail angezeigt:"
335
 
336
+ #: admin.inc.php:327
337
  msgid "Custom Styles"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:330
341
  msgid "Custom CSS to add to header:"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:333
345
+ msgid ""
346
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
347
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
348
+ "\">FAQ</a> for available CSS classes to style."
349
  msgstr ""
350
 
351
+ #: admin.inc.php:337
352
  #, fuzzy
353
  msgid "Save Options"
354
  msgstr "Optionen:"
355
 
356
+ #: admin.inc.php:338
357
  #, fuzzy
358
  msgid "Default Options"
359
  msgstr "Ausgabeotionen:"
360
 
361
+ #: admin.inc.php:338
362
  msgid "Do you want to set options to Default?"
363
  msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
364
 
365
+ #: admin.inc.php:339
366
  msgid "Recreate Index"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:339
370
  msgid "Are you sure you want to recreate the index?"
371
  msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
372
 
373
+ #: admin.inc.php:369
374
  msgid "Contextual Related Posts"
375
  msgstr "Contextual Related Posts"
376
 
377
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
378
  msgid "Related Posts"
379
  msgstr "Related Posts"
380
 
381
+ #: admin.inc.php:378
382
  #, fuzzy
383
  msgid "plugin settings page"
384
  msgstr "Plugin-Seite"
385
 
386
+ #: admin.inc.php:383
387
+ msgid ""
388
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
389
+ "visit the "
390
  msgstr ""
391
 
392
+ #: admin.inc.php:383
393
  msgid " to configure."
394
  msgstr ""
395
 
396
+ #: contextual-related-posts.php:152
397
  msgid "Powered by"
398
  msgstr "Powered by"
399
 
400
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
401
  msgid "No related posts found"
402
  msgstr "Keine ähnlichen Beiträge gefunden"
403
 
404
+ #: contextual-related-posts.php:221
405
  #, fuzzy
406
  msgid "Display Related Posts"
407
  msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
408
 
409
+ #: contextual-related-posts.php:232
410
  msgid "Title"
411
  msgstr ""
412
 
413
+ #: contextual-related-posts.php:237
414
  msgid "No. of posts"
415
  msgstr ""
416
 
417
+ #: contextual-related-posts.php:241
418
  #, fuzzy
419
  msgid "Thumbnail options"
420
  msgstr "Optionen für die Beitrags-Thumbnails:"
421
 
422
+ #: contextual-related-posts.php:243
423
  #, fuzzy
424
  msgid "Thumbnails inline, before title"
425
  msgstr "Thumbnails und Beitragstitel anzeigen"
426
 
427
+ #: contextual-related-posts.php:244
428
  #, fuzzy
429
  msgid "Thumbnails inline, after title"
430
  msgstr "Thumbnails und Beitragstitel anzeigen"
431
 
432
+ #: contextual-related-posts.php:245
433
  #, fuzzy
434
  msgid "Only thumbnails, no text"
435
  msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
436
 
437
+ #: contextual-related-posts.php:246
438
  #, fuzzy
439
  msgid "No thumbnails, only text."
440
  msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
441
 
442
+ #: contextual-related-posts.php:251
443
  #, fuzzy
444
  msgid " Show excerpt?"
445
  msgstr "Auszug des Beitrags in der Liste anzeigen?"
446
 
447
+ #: contextual-related-posts.php:301
448
  msgid "<h3>Related Posts:</h3>"
449
  msgstr "<h3>Ähnliche Beiträge:</h3>"
450
 
451
+ #: contextual-related-posts.php:520
452
  msgid "Settings"
453
  msgstr "Einstellungen"
454
 
455
+ #: contextual-related-posts.php:522
456
  msgid "Donate"
457
  msgstr "Spenden"
458
 
459
+ #~ msgid "Exclude Categories: "
460
+ #~ msgstr "Kategorien ausschließen: "
461
+
462
+ #, fuzzy
463
+ #~ msgid "Add related posts to pages"
464
+ #~ msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
465
+
466
  #~ msgid "plugin page"
467
  #~ msgstr "Plugin-Seite"
468
 
languages/crp-en_US.mo CHANGED
Binary file
languages/crp-en_US.po CHANGED
@@ -2,355 +2,416 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:18-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
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
 
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:70
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:86
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:101
26
  msgid "Index recreated"
27
  msgstr ""
28
 
29
- #: admin.inc.php:114
30
  msgid "Support the development"
31
  msgstr ""
32
 
33
- #: admin.inc.php:122
34
  msgid "Enter amount in USD: "
35
  msgstr ""
36
 
37
- #: admin.inc.php:126
38
  msgid "Send your donation to the author of"
39
  msgstr ""
40
 
41
- #: admin.inc.php:135
42
  msgid "Quick Links"
43
  msgstr ""
44
 
45
- #: admin.inc.php:137
46
  msgid "Contextual Related Posts plugin page"
47
  msgstr ""
48
 
49
- #: admin.inc.php:138
50
  msgid "Other plugins"
51
  msgstr ""
52
 
53
- #: admin.inc.php:139
54
  msgid "Ajay's blog"
55
  msgstr ""
56
 
57
- #: admin.inc.php:140
58
- #: contextual-related-posts.php:451
59
  msgid "Support"
60
  msgstr ""
61
 
62
- #: admin.inc.php:141
 
 
 
 
63
  msgid "Follow @ajaydsouza on Twitter"
64
  msgstr ""
65
 
66
- #: admin.inc.php:145
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
- #: admin.inc.php:157
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:160
75
  msgid "Number of related posts to display: "
76
  msgstr ""
77
 
78
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
- #: admin.inc.php:174
83
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
84
  msgstr ""
85
 
86
- #: admin.inc.php:177
87
  msgid "Find related posts based on content as well as title"
88
  msgstr ""
89
 
90
- #: admin.inc.php:178
91
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
 
 
92
  msgstr ""
93
 
94
- #: admin.inc.php:180
95
  msgid "List of post or page IDs to exclude from the results: "
96
  msgstr ""
97
 
98
- #: admin.inc.php:183
99
- msgid "Exclude Categories: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgstr ""
101
 
102
- #: admin.inc.php:201
103
- msgid "Add related posts to the post content on single posts"
104
  msgstr ""
105
 
106
- #: admin.inc.php:202
107
- #: admin.inc.php:205
108
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
109
  msgstr ""
110
 
111
- #: admin.inc.php:204
112
- msgid "Add related posts to pages"
113
  msgstr ""
114
 
115
- #: admin.inc.php:207
116
- msgid "Add related posts to feed"
 
 
 
117
  msgstr ""
118
 
119
- #: admin.inc.php:210
120
  msgid "Add a link to the plugin page as a final item in the list"
121
  msgstr ""
122
 
123
- #: admin.inc.php:211
124
  msgid " <em>Optional</em>"
125
  msgstr ""
126
 
127
- #: admin.inc.php:219
128
  msgid "Output Options"
129
  msgstr ""
130
 
131
- #: admin.inc.php:222
132
  msgid "Title of related posts: "
133
  msgstr ""
134
 
135
- #: admin.inc.php:225
136
  msgid "When there are no posts, what should be shown?"
137
  msgstr ""
138
 
139
- #: admin.inc.php:229
140
  msgid "Blank Output"
141
  msgstr ""
142
 
143
- #: admin.inc.php:233
144
  msgid "Display \"No Related Posts\""
145
  msgstr ""
146
 
147
- #: admin.inc.php:237
148
  msgid "Show post excerpt in list?"
149
  msgstr ""
150
 
151
- #: admin.inc.php:240
152
  msgid "Length of excerpt (in words): "
153
  msgstr ""
154
 
155
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
156
  msgid "Customize the output:"
157
  msgstr ""
158
 
159
- #: admin.inc.php:245
160
  msgid "HTML to display before the list of posts: "
161
  msgstr ""
162
 
163
- #: admin.inc.php:248
164
  msgid "HTML to display before each list item: "
165
  msgstr ""
166
 
167
- #: admin.inc.php:251
168
  msgid "HTML to display after each list item: "
169
  msgstr ""
170
 
171
- #: admin.inc.php:254
172
  msgid "HTML to display after the list of posts: "
173
  msgstr ""
174
 
175
- #: admin.inc.php:257
176
  msgid "Post thumbnail options:"
177
  msgstr ""
178
 
179
- #: admin.inc.php:259
180
  msgid "Location of post thumbnail:"
181
  msgstr ""
182
 
183
- #: admin.inc.php:263
184
  msgid "Display thumbnails inline with posts, before title"
185
  msgstr ""
186
 
187
- #: admin.inc.php:267
188
  msgid "Display thumbnails inline with posts, after title"
189
  msgstr ""
190
 
191
- #: admin.inc.php:271
192
  msgid "Display only thumbnails, no text"
193
  msgstr ""
194
 
195
- #: admin.inc.php:275
196
  msgid "Do not display thumbnails, only text."
197
  msgstr ""
198
 
199
- #: admin.inc.php:279
200
  msgid "Maximum width of the thumbnail: "
201
  msgstr ""
202
 
203
- #: admin.inc.php:282
204
  msgid "Maximum height of the thumbnail: "
205
  msgstr ""
206
 
207
- #: admin.inc.php:285
208
  msgid "Use timthumb to generate thumbnails? "
209
  msgstr ""
210
 
211
- #: admin.inc.php:286
212
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
 
 
213
  msgstr ""
214
 
215
- #: admin.inc.php:288
216
  msgid "Post thumbnail meta field name: "
217
  msgstr ""
218
 
219
- #: admin.inc.php:289
220
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
221
  msgstr ""
222
 
223
- #: admin.inc.php:291
224
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
 
 
225
  msgstr ""
226
 
227
- #: admin.inc.php:292
228
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
 
 
229
  msgstr ""
230
 
231
- #: admin.inc.php:294
232
  msgid "Use default thumbnail? "
233
  msgstr ""
234
 
235
- #: admin.inc.php:295
236
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
 
 
237
  msgstr ""
238
 
239
- #: admin.inc.php:297
240
  msgid "Default thumbnail: "
241
  msgstr ""
242
 
243
- #: admin.inc.php:298
244
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
 
 
 
245
  msgstr ""
246
 
247
- #: admin.inc.php:304
248
  msgid "Custom Styles"
249
  msgstr ""
250
 
251
- #: admin.inc.php:307
252
  msgid "Custom CSS to add to header:"
253
  msgstr ""
254
 
255
- #: admin.inc.php:310
256
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
 
 
 
257
  msgstr ""
258
 
259
- #: admin.inc.php:314
260
  msgid "Save Options"
261
  msgstr ""
262
 
263
- #: admin.inc.php:315
264
  msgid "Default Options"
265
  msgstr ""
266
 
267
- #: admin.inc.php:315
268
  msgid "Do you want to set options to Default?"
269
  msgstr ""
270
 
271
- #: admin.inc.php:316
272
  msgid "Recreate Index"
273
  msgstr ""
274
 
275
- #: admin.inc.php:316
276
  msgid "Are you sure you want to recreate the index?"
277
  msgstr ""
278
 
279
- #: admin.inc.php:346
280
  msgid "Contextual Related Posts"
281
  msgstr ""
282
 
283
- #: admin.inc.php:346
284
- #: contextual-related-posts.php:190
285
  msgid "Related Posts"
286
  msgstr ""
287
 
288
- #: admin.inc.php:355
289
  msgid "plugin settings page"
290
  msgstr ""
291
 
292
- #: admin.inc.php:360
293
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
294
  msgstr ""
295
 
296
- #: admin.inc.php:360
297
  msgid " to configure."
298
  msgstr ""
299
 
300
- #: contextual-related-posts.php:146
301
  msgid "Powered by"
302
  msgstr ""
303
 
304
- #: contextual-related-posts.php:151
305
- #: contextual-related-posts.php:156
306
  msgid "No related posts found"
307
  msgstr ""
308
 
309
- #: contextual-related-posts.php:189
310
  msgid "Display Related Posts"
311
  msgstr ""
312
 
313
- #: contextual-related-posts.php:200
314
  msgid "Title"
315
  msgstr ""
316
 
317
- #: contextual-related-posts.php:205
318
  msgid "No. of posts"
319
  msgstr ""
320
 
321
- #: contextual-related-posts.php:209
322
  msgid "Thumbnail options"
323
  msgstr ""
324
 
325
- #: contextual-related-posts.php:211
326
  msgid "Thumbnails inline, before title"
327
  msgstr ""
328
 
329
- #: contextual-related-posts.php:212
330
  msgid "Thumbnails inline, after title"
331
  msgstr ""
332
 
333
- #: contextual-related-posts.php:213
334
  msgid "Only thumbnails, no text"
335
  msgstr ""
336
 
337
- #: contextual-related-posts.php:214
338
  msgid "No thumbnails, only text."
339
  msgstr ""
340
 
341
- #: contextual-related-posts.php:219
342
  msgid " Show excerpt?"
343
  msgstr ""
344
 
345
- #: contextual-related-posts.php:271
346
  msgid "<h3>Related Posts:</h3>"
347
  msgstr ""
348
 
349
- #: contextual-related-posts.php:450
350
  msgid "Settings"
351
  msgstr ""
352
 
353
- #: contextual-related-posts.php:452
354
  msgid "Donate"
355
  msgstr ""
356
-
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
9
+ "Language: en\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.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:80
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:96
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:111
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:124
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:132
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
+ #: admin.inc.php:136
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:145
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:147
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:148
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:149
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
59
  msgid "Support"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:151
63
+ msgid "Reviews"
64
+ msgstr ""
65
+
66
+ #: admin.inc.php:152
67
  msgid "Follow @ajaydsouza on Twitter"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:156
71
  msgid "Recent developments"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:168
75
  msgid "General options"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:171
79
  msgid "Number of related posts to display: "
80
  msgstr ""
81
 
82
+ #: admin.inc.php:174
83
+ msgid "Related posts should be newer than:"
84
+ msgstr ""
85
+
86
+ #: admin.inc.php:175
87
+ msgid "days"
88
+ msgstr ""
89
+
90
+ #: admin.inc.php:177
91
  msgid "Post types to include in results (including custom post types)"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:188
95
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:191
99
  msgid "Find related posts based on content as well as title"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:192
103
+ msgid ""
104
+ "If unchecked, only posts titles are used. (I recommend using a caching "
105
+ "plugin if you enable this)"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:194
109
  msgid "List of post or page IDs to exclude from the results: "
110
  msgstr ""
111
 
112
+ #: admin.inc.php:197
113
+ msgid "Categories to exclude from the results: "
114
+ msgstr ""
115
+
116
+ #: admin.inc.php:215
117
+ msgid "Add related posts to:"
118
+ msgstr ""
119
+
120
+ #: admin.inc.php:217
121
+ msgid "Posts"
122
+ msgstr ""
123
+
124
+ #: admin.inc.php:218
125
+ msgid "Pages"
126
+ msgstr ""
127
+
128
+ #: admin.inc.php:219
129
+ msgid "Home page"
130
+ msgstr ""
131
+
132
+ #: admin.inc.php:220
133
+ msgid "Feeds"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:221
137
+ msgid "Category archives"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:222
141
+ msgid "Tag archives"
 
142
  msgstr ""
143
 
144
+ #: admin.inc.php:223
145
+ msgid "Other archives"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:224
149
+ msgid ""
150
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
151
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
152
+ "you want it displayed"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:227
156
  msgid "Add a link to the plugin page as a final item in the list"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:228
160
  msgid " <em>Optional</em>"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:236
164
  msgid "Output Options"
165
  msgstr ""
166
 
167
+ #: admin.inc.php:239
168
  msgid "Title of related posts: "
169
  msgstr ""
170
 
171
+ #: admin.inc.php:242
172
  msgid "When there are no posts, what should be shown?"
173
  msgstr ""
174
 
175
+ #: admin.inc.php:246
176
  msgid "Blank Output"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:250
180
  msgid "Display \"No Related Posts\""
181
  msgstr ""
182
 
183
+ #: admin.inc.php:254
184
  msgid "Show post excerpt in list?"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:257
188
  msgid "Length of excerpt (in words): "
189
  msgstr ""
190
 
191
+ #: admin.inc.php:260
192
+ msgid "Limit post title length (in characters)"
193
+ msgstr ""
194
+
195
+ #: admin.inc.php:263
196
+ msgid ""
197
+ "Exclude display of related posts on these posts / pages (Enter comma "
198
+ "separated list of IDs): "
199
+ msgstr ""
200
+
201
+ #: admin.inc.php:266
202
  msgid "Customize the output:"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:268
206
  msgid "HTML to display before the list of posts: "
207
  msgstr ""
208
 
209
+ #: admin.inc.php:271
210
  msgid "HTML to display before each list item: "
211
  msgstr ""
212
 
213
+ #: admin.inc.php:274
214
  msgid "HTML to display after each list item: "
215
  msgstr ""
216
 
217
+ #: admin.inc.php:277
218
  msgid "HTML to display after the list of posts: "
219
  msgstr ""
220
 
221
+ #: admin.inc.php:280
222
  msgid "Post thumbnail options:"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:282
226
  msgid "Location of post thumbnail:"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:286
230
  msgid "Display thumbnails inline with posts, before title"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:290
234
  msgid "Display thumbnails inline with posts, after title"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:294
238
  msgid "Display only thumbnails, no text"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:298
242
  msgid "Do not display thumbnails, only text."
243
  msgstr ""
244
 
245
+ #: admin.inc.php:302
246
  msgid "Maximum width of the thumbnail: "
247
  msgstr ""
248
 
249
+ #: admin.inc.php:305
250
  msgid "Maximum height of the thumbnail: "
251
  msgstr ""
252
 
253
+ #: admin.inc.php:308
254
  msgid "Use timthumb to generate thumbnails? "
255
  msgstr ""
256
 
257
+ #: admin.inc.php:309
258
+ msgid ""
259
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
260
+ "\">timthumb</a> will be used to generate thumbnails"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:311
264
  msgid "Post thumbnail meta field name: "
265
  msgstr ""
266
 
267
+ #: admin.inc.php:312
268
+ msgid ""
269
+ "The value of this field should contain the image source and is set in the "
270
+ "<em>Add New Post</em> screen"
271
  msgstr ""
272
 
273
+ #: admin.inc.php:314
274
+ msgid ""
275
+ "If the postmeta is not set, then should the plugin extract the first image "
276
+ "from the post?"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:315
280
+ msgid ""
281
+ "This can slow down the loading of your page if the first image in the "
282
+ "related posts is large in file-size"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:317
286
  msgid "Use default thumbnail? "
287
  msgstr ""
288
 
289
+ #: admin.inc.php:318
290
+ msgid ""
291
+ "If checked, when no thumbnail is found, show a default one from the URL "
292
+ "below. If not checked and no thumbnail is found, no image will be shown."
293
  msgstr ""
294
 
295
+ #: admin.inc.php:320
296
  msgid "Default thumbnail: "
297
  msgstr ""
298
 
299
+ #: admin.inc.php:321
300
+ msgid ""
301
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
302
+ "then it will check the meta field. If this is not available, then it will "
303
+ "show the default image as specified above"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:327
307
  msgid "Custom Styles"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:330
311
  msgid "Custom CSS to add to header:"
312
  msgstr ""
313
 
314
+ #: admin.inc.php:333
315
+ msgid ""
316
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
317
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
318
+ "\">FAQ</a> for available CSS classes to style."
319
  msgstr ""
320
 
321
+ #: admin.inc.php:337
322
  msgid "Save Options"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:338
326
  msgid "Default Options"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:338
330
  msgid "Do you want to set options to Default?"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:339
334
  msgid "Recreate Index"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:339
338
  msgid "Are you sure you want to recreate the index?"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:369
342
  msgid "Contextual Related Posts"
343
  msgstr ""
344
 
345
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
346
  msgid "Related Posts"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:378
350
  msgid "plugin settings page"
351
  msgstr ""
352
 
353
+ #: admin.inc.php:383
354
+ msgid ""
355
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
356
+ "visit the "
357
  msgstr ""
358
 
359
+ #: admin.inc.php:383
360
  msgid " to configure."
361
  msgstr ""
362
 
363
+ #: contextual-related-posts.php:152
364
  msgid "Powered by"
365
  msgstr ""
366
 
367
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
368
  msgid "No related posts found"
369
  msgstr ""
370
 
371
+ #: contextual-related-posts.php:221
372
  msgid "Display Related Posts"
373
  msgstr ""
374
 
375
+ #: contextual-related-posts.php:232
376
  msgid "Title"
377
  msgstr ""
378
 
379
+ #: contextual-related-posts.php:237
380
  msgid "No. of posts"
381
  msgstr ""
382
 
383
+ #: contextual-related-posts.php:241
384
  msgid "Thumbnail options"
385
  msgstr ""
386
 
387
+ #: contextual-related-posts.php:243
388
  msgid "Thumbnails inline, before title"
389
  msgstr ""
390
 
391
+ #: contextual-related-posts.php:244
392
  msgid "Thumbnails inline, after title"
393
  msgstr ""
394
 
395
+ #: contextual-related-posts.php:245
396
  msgid "Only thumbnails, no text"
397
  msgstr ""
398
 
399
+ #: contextual-related-posts.php:246
400
  msgid "No thumbnails, only text."
401
  msgstr ""
402
 
403
+ #: contextual-related-posts.php:251
404
  msgid " Show excerpt?"
405
  msgstr ""
406
 
407
+ #: contextual-related-posts.php:301
408
  msgid "<h3>Related Posts:</h3>"
409
  msgstr ""
410
 
411
+ #: contextual-related-posts.php:520
412
  msgid "Settings"
413
  msgstr ""
414
 
415
+ #: contextual-related-posts.php:522
416
  msgid "Donate"
417
  msgstr ""
 
languages/crp-en_US.pot CHANGED
@@ -2,355 +2,416 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:18-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
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
 
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin.inc.php:70
18
  msgid "Options saved successfully."
19
  msgstr ""
20
 
21
- #: admin.inc.php:86
22
  msgid "Options set to Default."
23
  msgstr ""
24
 
25
- #: admin.inc.php:101
26
  msgid "Index recreated"
27
  msgstr ""
28
 
29
- #: admin.inc.php:114
30
  msgid "Support the development"
31
  msgstr ""
32
 
33
- #: admin.inc.php:122
34
  msgid "Enter amount in USD: "
35
  msgstr ""
36
 
37
- #: admin.inc.php:126
38
  msgid "Send your donation to the author of"
39
  msgstr ""
40
 
41
- #: admin.inc.php:135
42
  msgid "Quick Links"
43
  msgstr ""
44
 
45
- #: admin.inc.php:137
46
  msgid "Contextual Related Posts plugin page"
47
  msgstr ""
48
 
49
- #: admin.inc.php:138
50
  msgid "Other plugins"
51
  msgstr ""
52
 
53
- #: admin.inc.php:139
54
  msgid "Ajay's blog"
55
  msgstr ""
56
 
57
- #: admin.inc.php:140
58
- #: contextual-related-posts.php:451
59
  msgid "Support"
60
  msgstr ""
61
 
62
- #: admin.inc.php:141
 
 
 
 
63
  msgid "Follow @ajaydsouza on Twitter"
64
  msgstr ""
65
 
66
- #: admin.inc.php:145
67
  msgid "Recent developments"
68
  msgstr ""
69
 
70
- #: admin.inc.php:157
71
  msgid "General options"
72
  msgstr ""
73
 
74
- #: admin.inc.php:160
75
  msgid "Number of related posts to display: "
76
  msgstr ""
77
 
78
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
79
  msgid "Post types to include in results (including custom post types)"
80
  msgstr ""
81
 
82
- #: admin.inc.php:174
83
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
84
  msgstr ""
85
 
86
- #: admin.inc.php:177
87
  msgid "Find related posts based on content as well as title"
88
  msgstr ""
89
 
90
- #: admin.inc.php:178
91
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
 
 
92
  msgstr ""
93
 
94
- #: admin.inc.php:180
95
  msgid "List of post or page IDs to exclude from the results: "
96
  msgstr ""
97
 
98
- #: admin.inc.php:183
99
- msgid "Exclude Categories: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgstr ""
101
 
102
- #: admin.inc.php:201
103
- msgid "Add related posts to the post content on single posts"
104
  msgstr ""
105
 
106
- #: admin.inc.php:202
107
- #: admin.inc.php:205
108
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
109
  msgstr ""
110
 
111
- #: admin.inc.php:204
112
- msgid "Add related posts to pages"
113
  msgstr ""
114
 
115
- #: admin.inc.php:207
116
- msgid "Add related posts to feed"
 
 
 
117
  msgstr ""
118
 
119
- #: admin.inc.php:210
120
  msgid "Add a link to the plugin page as a final item in the list"
121
  msgstr ""
122
 
123
- #: admin.inc.php:211
124
  msgid " <em>Optional</em>"
125
  msgstr ""
126
 
127
- #: admin.inc.php:219
128
  msgid "Output Options"
129
  msgstr ""
130
 
131
- #: admin.inc.php:222
132
  msgid "Title of related posts: "
133
  msgstr ""
134
 
135
- #: admin.inc.php:225
136
  msgid "When there are no posts, what should be shown?"
137
  msgstr ""
138
 
139
- #: admin.inc.php:229
140
  msgid "Blank Output"
141
  msgstr ""
142
 
143
- #: admin.inc.php:233
144
  msgid "Display \"No Related Posts\""
145
  msgstr ""
146
 
147
- #: admin.inc.php:237
148
  msgid "Show post excerpt in list?"
149
  msgstr ""
150
 
151
- #: admin.inc.php:240
152
  msgid "Length of excerpt (in words): "
153
  msgstr ""
154
 
155
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
156
  msgid "Customize the output:"
157
  msgstr ""
158
 
159
- #: admin.inc.php:245
160
  msgid "HTML to display before the list of posts: "
161
  msgstr ""
162
 
163
- #: admin.inc.php:248
164
  msgid "HTML to display before each list item: "
165
  msgstr ""
166
 
167
- #: admin.inc.php:251
168
  msgid "HTML to display after each list item: "
169
  msgstr ""
170
 
171
- #: admin.inc.php:254
172
  msgid "HTML to display after the list of posts: "
173
  msgstr ""
174
 
175
- #: admin.inc.php:257
176
  msgid "Post thumbnail options:"
177
  msgstr ""
178
 
179
- #: admin.inc.php:259
180
  msgid "Location of post thumbnail:"
181
  msgstr ""
182
 
183
- #: admin.inc.php:263
184
  msgid "Display thumbnails inline with posts, before title"
185
  msgstr ""
186
 
187
- #: admin.inc.php:267
188
  msgid "Display thumbnails inline with posts, after title"
189
  msgstr ""
190
 
191
- #: admin.inc.php:271
192
  msgid "Display only thumbnails, no text"
193
  msgstr ""
194
 
195
- #: admin.inc.php:275
196
  msgid "Do not display thumbnails, only text."
197
  msgstr ""
198
 
199
- #: admin.inc.php:279
200
  msgid "Maximum width of the thumbnail: "
201
  msgstr ""
202
 
203
- #: admin.inc.php:282
204
  msgid "Maximum height of the thumbnail: "
205
  msgstr ""
206
 
207
- #: admin.inc.php:285
208
  msgid "Use timthumb to generate thumbnails? "
209
  msgstr ""
210
 
211
- #: admin.inc.php:286
212
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
 
 
213
  msgstr ""
214
 
215
- #: admin.inc.php:288
216
  msgid "Post thumbnail meta field name: "
217
  msgstr ""
218
 
219
- #: admin.inc.php:289
220
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
221
  msgstr ""
222
 
223
- #: admin.inc.php:291
224
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
 
 
225
  msgstr ""
226
 
227
- #: admin.inc.php:292
228
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
 
 
229
  msgstr ""
230
 
231
- #: admin.inc.php:294
232
  msgid "Use default thumbnail? "
233
  msgstr ""
234
 
235
- #: admin.inc.php:295
236
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
 
 
237
  msgstr ""
238
 
239
- #: admin.inc.php:297
240
  msgid "Default thumbnail: "
241
  msgstr ""
242
 
243
- #: admin.inc.php:298
244
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
 
 
 
245
  msgstr ""
246
 
247
- #: admin.inc.php:304
248
  msgid "Custom Styles"
249
  msgstr ""
250
 
251
- #: admin.inc.php:307
252
  msgid "Custom CSS to add to header:"
253
  msgstr ""
254
 
255
- #: admin.inc.php:310
256
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
 
 
 
257
  msgstr ""
258
 
259
- #: admin.inc.php:314
260
  msgid "Save Options"
261
  msgstr ""
262
 
263
- #: admin.inc.php:315
264
  msgid "Default Options"
265
  msgstr ""
266
 
267
- #: admin.inc.php:315
268
  msgid "Do you want to set options to Default?"
269
  msgstr ""
270
 
271
- #: admin.inc.php:316
272
  msgid "Recreate Index"
273
  msgstr ""
274
 
275
- #: admin.inc.php:316
276
  msgid "Are you sure you want to recreate the index?"
277
  msgstr ""
278
 
279
- #: admin.inc.php:346
280
  msgid "Contextual Related Posts"
281
  msgstr ""
282
 
283
- #: admin.inc.php:346
284
- #: contextual-related-posts.php:190
285
  msgid "Related Posts"
286
  msgstr ""
287
 
288
- #: admin.inc.php:355
289
  msgid "plugin settings page"
290
  msgstr ""
291
 
292
- #: admin.inc.php:360
293
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
294
  msgstr ""
295
 
296
- #: admin.inc.php:360
297
  msgid " to configure."
298
  msgstr ""
299
 
300
- #: contextual-related-posts.php:146
301
  msgid "Powered by"
302
  msgstr ""
303
 
304
- #: contextual-related-posts.php:151
305
- #: contextual-related-posts.php:156
306
  msgid "No related posts found"
307
  msgstr ""
308
 
309
- #: contextual-related-posts.php:189
310
  msgid "Display Related Posts"
311
  msgstr ""
312
 
313
- #: contextual-related-posts.php:200
314
  msgid "Title"
315
  msgstr ""
316
 
317
- #: contextual-related-posts.php:205
318
  msgid "No. of posts"
319
  msgstr ""
320
 
321
- #: contextual-related-posts.php:209
322
  msgid "Thumbnail options"
323
  msgstr ""
324
 
325
- #: contextual-related-posts.php:211
326
  msgid "Thumbnails inline, before title"
327
  msgstr ""
328
 
329
- #: contextual-related-posts.php:212
330
  msgid "Thumbnails inline, after title"
331
  msgstr ""
332
 
333
- #: contextual-related-posts.php:213
334
  msgid "Only thumbnails, no text"
335
  msgstr ""
336
 
337
- #: contextual-related-posts.php:214
338
  msgid "No thumbnails, only text."
339
  msgstr ""
340
 
341
- #: contextual-related-posts.php:219
342
  msgid " Show excerpt?"
343
  msgstr ""
344
 
345
- #: contextual-related-posts.php:271
346
  msgid "<h3>Related Posts:</h3>"
347
  msgstr ""
348
 
349
- #: contextual-related-posts.php:450
350
  msgid "Settings"
351
  msgstr ""
352
 
353
- #: contextual-related-posts.php:452
354
  msgid "Donate"
355
  msgstr ""
356
-
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:29-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: <me@ajaydsouza.com>\n"
9
+ "Language: en\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.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:80
19
  msgid "Options saved successfully."
20
  msgstr ""
21
 
22
+ #: admin.inc.php:96
23
  msgid "Options set to Default."
24
  msgstr ""
25
 
26
+ #: admin.inc.php:111
27
  msgid "Index recreated"
28
  msgstr ""
29
 
30
+ #: admin.inc.php:124
31
  msgid "Support the development"
32
  msgstr ""
33
 
34
+ #: admin.inc.php:132
35
  msgid "Enter amount in USD: "
36
  msgstr ""
37
 
38
+ #: admin.inc.php:136
39
  msgid "Send your donation to the author of"
40
  msgstr ""
41
 
42
+ #: admin.inc.php:145
43
  msgid "Quick Links"
44
  msgstr ""
45
 
46
+ #: admin.inc.php:147
47
  msgid "Contextual Related Posts plugin page"
48
  msgstr ""
49
 
50
+ #: admin.inc.php:148
51
  msgid "Other plugins"
52
  msgstr ""
53
 
54
+ #: admin.inc.php:149
55
  msgid "Ajay's blog"
56
  msgstr ""
57
 
58
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
59
  msgid "Support"
60
  msgstr ""
61
 
62
+ #: admin.inc.php:151
63
+ msgid "Reviews"
64
+ msgstr ""
65
+
66
+ #: admin.inc.php:152
67
  msgid "Follow @ajaydsouza on Twitter"
68
  msgstr ""
69
 
70
+ #: admin.inc.php:156
71
  msgid "Recent developments"
72
  msgstr ""
73
 
74
+ #: admin.inc.php:168
75
  msgid "General options"
76
  msgstr ""
77
 
78
+ #: admin.inc.php:171
79
  msgid "Number of related posts to display: "
80
  msgstr ""
81
 
82
+ #: admin.inc.php:174
83
+ msgid "Related posts should be newer than:"
84
+ msgstr ""
85
+
86
+ #: admin.inc.php:175
87
+ msgid "days"
88
+ msgstr ""
89
+
90
+ #: admin.inc.php:177
91
  msgid "Post types to include in results (including custom post types)"
92
  msgstr ""
93
 
94
+ #: admin.inc.php:188
95
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:191
99
  msgid "Find related posts based on content as well as title"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:192
103
+ msgid ""
104
+ "If unchecked, only posts titles are used. (I recommend using a caching "
105
+ "plugin if you enable this)"
106
  msgstr ""
107
 
108
+ #: admin.inc.php:194
109
  msgid "List of post or page IDs to exclude from the results: "
110
  msgstr ""
111
 
112
+ #: admin.inc.php:197
113
+ msgid "Categories to exclude from the results: "
114
+ msgstr ""
115
+
116
+ #: admin.inc.php:215
117
+ msgid "Add related posts to:"
118
+ msgstr ""
119
+
120
+ #: admin.inc.php:217
121
+ msgid "Posts"
122
+ msgstr ""
123
+
124
+ #: admin.inc.php:218
125
+ msgid "Pages"
126
+ msgstr ""
127
+
128
+ #: admin.inc.php:219
129
+ msgid "Home page"
130
+ msgstr ""
131
+
132
+ #: admin.inc.php:220
133
+ msgid "Feeds"
134
  msgstr ""
135
 
136
+ #: admin.inc.php:221
137
+ msgid "Category archives"
138
  msgstr ""
139
 
140
+ #: admin.inc.php:222
141
+ msgid "Tag archives"
 
142
  msgstr ""
143
 
144
+ #: admin.inc.php:223
145
+ msgid "Other archives"
146
  msgstr ""
147
 
148
+ #: admin.inc.php:224
149
+ msgid ""
150
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
151
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
152
+ "you want it displayed"
153
  msgstr ""
154
 
155
+ #: admin.inc.php:227
156
  msgid "Add a link to the plugin page as a final item in the list"
157
  msgstr ""
158
 
159
+ #: admin.inc.php:228
160
  msgid " <em>Optional</em>"
161
  msgstr ""
162
 
163
+ #: admin.inc.php:236
164
  msgid "Output Options"
165
  msgstr ""
166
 
167
+ #: admin.inc.php:239
168
  msgid "Title of related posts: "
169
  msgstr ""
170
 
171
+ #: admin.inc.php:242
172
  msgid "When there are no posts, what should be shown?"
173
  msgstr ""
174
 
175
+ #: admin.inc.php:246
176
  msgid "Blank Output"
177
  msgstr ""
178
 
179
+ #: admin.inc.php:250
180
  msgid "Display \"No Related Posts\""
181
  msgstr ""
182
 
183
+ #: admin.inc.php:254
184
  msgid "Show post excerpt in list?"
185
  msgstr ""
186
 
187
+ #: admin.inc.php:257
188
  msgid "Length of excerpt (in words): "
189
  msgstr ""
190
 
191
+ #: admin.inc.php:260
192
+ msgid "Limit post title length (in characters)"
193
+ msgstr ""
194
+
195
+ #: admin.inc.php:263
196
+ msgid ""
197
+ "Exclude display of related posts on these posts / pages (Enter comma "
198
+ "separated list of IDs): "
199
+ msgstr ""
200
+
201
+ #: admin.inc.php:266
202
  msgid "Customize the output:"
203
  msgstr ""
204
 
205
+ #: admin.inc.php:268
206
  msgid "HTML to display before the list of posts: "
207
  msgstr ""
208
 
209
+ #: admin.inc.php:271
210
  msgid "HTML to display before each list item: "
211
  msgstr ""
212
 
213
+ #: admin.inc.php:274
214
  msgid "HTML to display after each list item: "
215
  msgstr ""
216
 
217
+ #: admin.inc.php:277
218
  msgid "HTML to display after the list of posts: "
219
  msgstr ""
220
 
221
+ #: admin.inc.php:280
222
  msgid "Post thumbnail options:"
223
  msgstr ""
224
 
225
+ #: admin.inc.php:282
226
  msgid "Location of post thumbnail:"
227
  msgstr ""
228
 
229
+ #: admin.inc.php:286
230
  msgid "Display thumbnails inline with posts, before title"
231
  msgstr ""
232
 
233
+ #: admin.inc.php:290
234
  msgid "Display thumbnails inline with posts, after title"
235
  msgstr ""
236
 
237
+ #: admin.inc.php:294
238
  msgid "Display only thumbnails, no text"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:298
242
  msgid "Do not display thumbnails, only text."
243
  msgstr ""
244
 
245
+ #: admin.inc.php:302
246
  msgid "Maximum width of the thumbnail: "
247
  msgstr ""
248
 
249
+ #: admin.inc.php:305
250
  msgid "Maximum height of the thumbnail: "
251
  msgstr ""
252
 
253
+ #: admin.inc.php:308
254
  msgid "Use timthumb to generate thumbnails? "
255
  msgstr ""
256
 
257
+ #: admin.inc.php:309
258
+ msgid ""
259
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
260
+ "\">timthumb</a> will be used to generate thumbnails"
261
  msgstr ""
262
 
263
+ #: admin.inc.php:311
264
  msgid "Post thumbnail meta field name: "
265
  msgstr ""
266
 
267
+ #: admin.inc.php:312
268
+ msgid ""
269
+ "The value of this field should contain the image source and is set in the "
270
+ "<em>Add New Post</em> screen"
271
  msgstr ""
272
 
273
+ #: admin.inc.php:314
274
+ msgid ""
275
+ "If the postmeta is not set, then should the plugin extract the first image "
276
+ "from the post?"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:315
280
+ msgid ""
281
+ "This can slow down the loading of your page if the first image in the "
282
+ "related posts is large in file-size"
283
  msgstr ""
284
 
285
+ #: admin.inc.php:317
286
  msgid "Use default thumbnail? "
287
  msgstr ""
288
 
289
+ #: admin.inc.php:318
290
+ msgid ""
291
+ "If checked, when no thumbnail is found, show a default one from the URL "
292
+ "below. If not checked and no thumbnail is found, no image will be shown."
293
  msgstr ""
294
 
295
+ #: admin.inc.php:320
296
  msgid "Default thumbnail: "
297
  msgstr ""
298
 
299
+ #: admin.inc.php:321
300
+ msgid ""
301
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
302
+ "then it will check the meta field. If this is not available, then it will "
303
+ "show the default image as specified above"
304
  msgstr ""
305
 
306
+ #: admin.inc.php:327
307
  msgid "Custom Styles"
308
  msgstr ""
309
 
310
+ #: admin.inc.php:330
311
  msgid "Custom CSS to add to header:"
312
  msgstr ""
313
 
314
+ #: admin.inc.php:333
315
+ msgid ""
316
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
317
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
318
+ "\">FAQ</a> for available CSS classes to style."
319
  msgstr ""
320
 
321
+ #: admin.inc.php:337
322
  msgid "Save Options"
323
  msgstr ""
324
 
325
+ #: admin.inc.php:338
326
  msgid "Default Options"
327
  msgstr ""
328
 
329
+ #: admin.inc.php:338
330
  msgid "Do you want to set options to Default?"
331
  msgstr ""
332
 
333
+ #: admin.inc.php:339
334
  msgid "Recreate Index"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:339
338
  msgid "Are you sure you want to recreate the index?"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:369
342
  msgid "Contextual Related Posts"
343
  msgstr ""
344
 
345
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
346
  msgid "Related Posts"
347
  msgstr ""
348
 
349
+ #: admin.inc.php:378
350
  msgid "plugin settings page"
351
  msgstr ""
352
 
353
+ #: admin.inc.php:383
354
+ msgid ""
355
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
356
+ "visit the "
357
  msgstr ""
358
 
359
+ #: admin.inc.php:383
360
  msgid " to configure."
361
  msgstr ""
362
 
363
+ #: contextual-related-posts.php:152
364
  msgid "Powered by"
365
  msgstr ""
366
 
367
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
368
  msgid "No related posts found"
369
  msgstr ""
370
 
371
+ #: contextual-related-posts.php:221
372
  msgid "Display Related Posts"
373
  msgstr ""
374
 
375
+ #: contextual-related-posts.php:232
376
  msgid "Title"
377
  msgstr ""
378
 
379
+ #: contextual-related-posts.php:237
380
  msgid "No. of posts"
381
  msgstr ""
382
 
383
+ #: contextual-related-posts.php:241
384
  msgid "Thumbnail options"
385
  msgstr ""
386
 
387
+ #: contextual-related-posts.php:243
388
  msgid "Thumbnails inline, before title"
389
  msgstr ""
390
 
391
+ #: contextual-related-posts.php:244
392
  msgid "Thumbnails inline, after title"
393
  msgstr ""
394
 
395
+ #: contextual-related-posts.php:245
396
  msgid "Only thumbnails, no text"
397
  msgstr ""
398
 
399
+ #: contextual-related-posts.php:246
400
  msgid "No thumbnails, only text."
401
  msgstr ""
402
 
403
+ #: contextual-related-posts.php:251
404
  msgid " Show excerpt?"
405
  msgstr ""
406
 
407
+ #: contextual-related-posts.php:301
408
  msgid "<h3>Related Posts:</h3>"
409
  msgstr ""
410
 
411
+ #: contextual-related-posts.php:520
412
  msgid "Settings"
413
  msgstr ""
414
 
415
+ #: contextual-related-posts.php:522
416
  msgid "Donate"
417
  msgstr ""
 
languages/crp-es_ES.mo CHANGED
Binary file
languages/crp-es_ES.po CHANGED
@@ -2,381 +2,464 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:19-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
13
  "X-Poedit-Basepath: ../\n"
14
- "X-Poedit-Language: Spanish\n"
15
- "X-Poedit-Country: SPAIN\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:70
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
- #: admin.inc.php:86
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
- #: admin.inc.php:101
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
- #: admin.inc.php:114
31
  msgid "Support the development"
32
  msgstr "Apoya el desarrollo"
33
 
34
- #: admin.inc.php:122
35
  msgid "Enter amount in USD: "
36
  msgstr "Ingresa monto en USD:"
37
 
38
- #: admin.inc.php:126
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
- #: admin.inc.php:135
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links rápidos"
46
 
47
- #: admin.inc.php:137
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Posts relacionados contextualmente"
51
 
52
- #: admin.inc.php:138
53
  msgid "Other plugins"
54
  msgstr "Otros plugins"
55
 
56
- #: admin.inc.php:139
57
  msgid "Ajay's blog"
58
  msgstr ""
59
 
60
- #: admin.inc.php:140
61
- #: contextual-related-posts.php:451
62
  msgid "Support"
63
  msgstr "Soporte"
64
 
65
- #: admin.inc.php:141
 
 
 
 
66
  msgid "Follow @ajaydsouza on Twitter"
67
  msgstr "Seguir @ajaydsouza en Twitter"
68
 
69
- #: admin.inc.php:145
70
  msgid "Recent developments"
71
  msgstr "Desarrollos recientes"
72
 
73
- #: admin.inc.php:157
74
  msgid "General options"
75
  msgstr ""
76
 
77
- #: admin.inc.php:160
78
  msgid "Number of related posts to display: "
79
  msgstr "Número de posts relacionados a mostrar:"
80
 
81
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
82
  msgid "Post types to include in results (including custom post types)"
83
  msgstr ""
84
 
85
- #: admin.inc.php:174
86
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
87
  msgstr ""
88
 
89
- #: admin.inc.php:177
90
  msgid "Find related posts based on content as well as title"
91
  msgstr ""
92
 
93
- #: admin.inc.php:178
94
  #, fuzzy
95
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
96
- msgstr "Encuentra posts relacionados basados en el contexto y el título. Si es deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de caché si activas esto)"
 
 
 
 
 
97
 
98
- #: admin.inc.php:180
99
  msgid "List of post or page IDs to exclude from the results: "
100
  msgstr ""
101
 
102
- #: admin.inc.php:183
103
- msgid "Exclude Categories: "
104
- msgstr "Excluir Categorías:"
105
-
106
- #: admin.inc.php:201
107
- msgid "Add related posts to the post content on single posts"
108
  msgstr ""
109
 
110
- #: admin.inc.php:202
111
- #: admin.inc.php:205
112
  #, fuzzy
113
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
114
- msgstr "Agregar posts relacionados a páginas. <br />Si eliges desabilitar esto, por favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
115
-
116
- #: admin.inc.php:204
117
- #, fuzzy
118
- msgid "Add related posts to pages"
119
  msgstr "Agregar posts relacionados al feed"
120
 
121
- #: admin.inc.php:207
122
- msgid "Add related posts to feed"
123
- msgstr "Agregar posts relacionados al feed"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
 
125
- #: admin.inc.php:210
126
  msgid "Add a link to the plugin page as a final item in the list"
127
  msgstr ""
128
 
129
- #: admin.inc.php:211
130
  msgid " <em>Optional</em>"
131
  msgstr ""
132
 
133
- #: admin.inc.php:219
134
  #, fuzzy
135
  msgid "Output Options"
136
  msgstr "Opciones de Salida:"
137
 
138
- #: admin.inc.php:222
139
  msgid "Title of related posts: "
140
  msgstr "Título de posts relacionados:"
141
 
142
- #: admin.inc.php:225
143
  msgid "When there are no posts, what should be shown?"
144
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
145
 
146
- #: admin.inc.php:229
147
  msgid "Blank Output"
148
  msgstr "Salida vacía"
149
 
150
- #: admin.inc.php:233
151
  msgid "Display \"No Related Posts\""
152
  msgstr "Mostrar \"Posts No Relacionados\""
153
 
154
- #: admin.inc.php:237
155
  msgid "Show post excerpt in list?"
156
  msgstr "¿Mostrar extracto con los items?"
157
 
158
- #: admin.inc.php:240
159
  msgid "Length of excerpt (in words): "
160
  msgstr "Tamaño del extracto (en palabras):"
161
 
162
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
163
  msgid "Customize the output:"
164
  msgstr "Personalizar la salida:"
165
 
166
- #: admin.inc.php:245
167
  msgid "HTML to display before the list of posts: "
168
  msgstr "HTML a mostrar antes de todos los items:"
169
 
170
- #: admin.inc.php:248
171
  msgid "HTML to display before each list item: "
172
  msgstr "HTML a mostrar antes de cada item:"
173
 
174
- #: admin.inc.php:251
175
  msgid "HTML to display after each list item: "
176
  msgstr "HTML a mostrar despues de cada item:"
177
 
178
- #: admin.inc.php:254
179
  msgid "HTML to display after the list of posts: "
180
  msgstr "HTML a mostrar despues de todos los items:"
181
 
182
- #: admin.inc.php:257
183
  msgid "Post thumbnail options:"
184
  msgstr "Opciones de miniaturas en el post:"
185
 
186
- #: admin.inc.php:259
187
  msgid "Location of post thumbnail:"
188
  msgstr ""
189
 
190
- #: admin.inc.php:263
191
  #, fuzzy
192
  msgid "Display thumbnails inline with posts, before title"
193
  msgstr "Miniaturas en línea con los posts"
194
 
195
- #: admin.inc.php:267
196
  #, fuzzy
197
  msgid "Display thumbnails inline with posts, after title"
198
  msgstr "Miniaturas en línea con los posts"
199
 
200
- #: admin.inc.php:271
201
  msgid "Display only thumbnails, no text"
202
  msgstr "Solo miniaturas, sin texto"
203
 
204
- #: admin.inc.php:275
205
  msgid "Do not display thumbnails, only text."
206
  msgstr "No mostrar miniaturas, solo texto."
207
 
208
- #: admin.inc.php:279
209
  msgid "Maximum width of the thumbnail: "
210
  msgstr ""
211
 
212
- #: admin.inc.php:282
213
  msgid "Maximum height of the thumbnail: "
214
  msgstr ""
215
 
216
- #: admin.inc.php:285
217
  msgid "Use timthumb to generate thumbnails? "
218
  msgstr ""
219
 
220
- #: admin.inc.php:286
221
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
 
 
222
  msgstr ""
223
 
224
- #: admin.inc.php:288
225
  #, fuzzy
226
  msgid "Post thumbnail meta field name: "
227
  msgstr "Opciones de miniaturas en el post:"
228
 
229
- #: admin.inc.php:289
230
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
231
  msgstr ""
232
 
233
- #: admin.inc.php:291
234
  #, fuzzy
235
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
236
- msgstr "Si el postmeta no está definido, entonces el plugin extrae la primera imágen del post. Esto puede relentizar la carga si la primera imágen es de gran tamaño"
 
 
 
 
 
237
 
238
- #: admin.inc.php:292
239
  #, fuzzy
240
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
241
- msgstr "Si el postmeta no está definido, entonces el plugin extrae la primera imágen del post. Esto puede relentizar la carga si la primera imágen es de gran tamaño"
 
 
 
 
 
242
 
243
- #: admin.inc.php:294
244
  msgid "Use default thumbnail? "
245
  msgstr ""
246
 
247
- #: admin.inc.php:295
248
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
 
 
249
  msgstr ""
250
 
251
- #: admin.inc.php:297
252
  msgid "Default thumbnail: "
253
  msgstr ""
254
 
255
- #: admin.inc.php:298
256
  #, fuzzy
257
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
258
- msgstr "El plugin primero verificará si el post contiene miniaturas. Si no tiene ninguno verificará el campo meta. Si no está disponible, entonces mostrará la imágen padrón especificada a continuación:"
 
 
 
 
 
 
259
 
260
- #: admin.inc.php:304
261
  msgid "Custom Styles"
262
  msgstr ""
263
 
264
- #: admin.inc.php:307
265
  msgid "Custom CSS to add to header:"
266
  msgstr ""
267
 
268
- #: admin.inc.php:310
269
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
 
 
 
270
  msgstr ""
271
 
272
- #: admin.inc.php:314
273
  #, fuzzy
274
  msgid "Save Options"
275
  msgstr "Opciones:"
276
 
277
- #: admin.inc.php:315
278
  #, fuzzy
279
  msgid "Default Options"
280
  msgstr "Opciones de Salida:"
281
 
282
- #: admin.inc.php:315
283
  msgid "Do you want to set options to Default?"
284
  msgstr "¿Quieres resetear las opciones?"
285
 
286
- #: admin.inc.php:316
287
  msgid "Recreate Index"
288
  msgstr ""
289
 
290
- #: admin.inc.php:316
291
  msgid "Are you sure you want to recreate the index?"
292
  msgstr "¿Está seguro que quiere recrear el index?"
293
 
294
- #: admin.inc.php:346
295
  msgid "Contextual Related Posts"
296
  msgstr "Posts Relacionados Contextualmente"
297
 
298
- #: admin.inc.php:346
299
- #: contextual-related-posts.php:190
300
  msgid "Related Posts"
301
  msgstr "Post Relacionados"
302
 
303
- #: admin.inc.php:355
304
  #, fuzzy
305
  msgid "plugin settings page"
306
  msgstr "sitio del plugin"
307
 
308
- #: admin.inc.php:360
309
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
310
  msgstr ""
311
 
312
- #: admin.inc.php:360
313
  msgid " to configure."
314
  msgstr ""
315
 
316
- #: contextual-related-posts.php:146
317
  msgid "Powered by"
318
  msgstr "Creado por"
319
 
320
- #: contextual-related-posts.php:151
321
- #: contextual-related-posts.php:156
322
  msgid "No related posts found"
323
  msgstr "No hay posts relacionados"
324
 
325
- #: contextual-related-posts.php:189
326
  #, fuzzy
327
  msgid "Display Related Posts"
328
  msgstr "Mostrar \"Posts No Relacionados\""
329
 
330
- #: contextual-related-posts.php:200
331
  msgid "Title"
332
  msgstr ""
333
 
334
- #: contextual-related-posts.php:205
335
  msgid "No. of posts"
336
  msgstr ""
337
 
338
- #: contextual-related-posts.php:209
339
  #, fuzzy
340
  msgid "Thumbnail options"
341
  msgstr "Opciones de miniaturas en el post:"
342
 
343
- #: contextual-related-posts.php:211
344
  #, fuzzy
345
  msgid "Thumbnails inline, before title"
346
  msgstr "Miniaturas en línea con los posts"
347
 
348
- #: contextual-related-posts.php:212
349
  #, fuzzy
350
  msgid "Thumbnails inline, after title"
351
  msgstr "Miniaturas en línea con los posts"
352
 
353
- #: contextual-related-posts.php:213
354
  #, fuzzy
355
  msgid "Only thumbnails, no text"
356
  msgstr "Solo miniaturas, sin texto"
357
 
358
- #: contextual-related-posts.php:214
359
  #, fuzzy
360
  msgid "No thumbnails, only text."
361
  msgstr "No mostrar miniaturas, solo texto."
362
 
363
- #: contextual-related-posts.php:219
364
  #, fuzzy
365
  msgid " Show excerpt?"
366
  msgstr "¿Mostrar extracto con los items?"
367
 
368
- #: contextual-related-posts.php:271
369
  msgid "<h3>Related Posts:</h3>"
370
  msgstr "<h3>Post Relacionados:</h3>"
371
 
372
- #: contextual-related-posts.php:450
373
  msgid "Settings"
374
  msgstr "Opciones"
375
 
376
- #: contextual-related-posts.php:452
377
  msgid "Donate"
378
  msgstr "Donar"
379
 
 
 
 
 
 
 
 
380
  #~ msgid "plugin page"
381
  #~ msgstr "sitio del plugin"
382
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:30-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
9
+ "Language: es_ES\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.4\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:80
19
  msgid "Options saved successfully."
20
  msgstr "Opciones guardadas correctament."
21
 
22
+ #: admin.inc.php:96
23
  msgid "Options set to Default."
24
  msgstr "Restablecer opciones originales"
25
 
26
+ #: admin.inc.php:111
27
  msgid "Index recreated"
28
  msgstr "Recrear el Index"
29
 
30
+ #: admin.inc.php:124
31
  msgid "Support the development"
32
  msgstr "Apoya el desarrollo"
33
 
34
+ #: admin.inc.php:132
35
  msgid "Enter amount in USD: "
36
  msgstr "Ingresa monto en USD:"
37
 
38
+ #: admin.inc.php:136
39
  msgid "Send your donation to the author of"
40
  msgstr "Enviar tu donación al autor de"
41
 
42
+ #: admin.inc.php:145
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Links rápidos"
46
 
47
+ #: admin.inc.php:147
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Posts relacionados contextualmente"
51
 
52
+ #: admin.inc.php:148
53
  msgid "Other plugins"
54
  msgstr "Otros plugins"
55
 
56
+ #: admin.inc.php:149
57
  msgid "Ajay's blog"
58
  msgstr ""
59
 
60
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
61
  msgid "Support"
62
  msgstr "Soporte"
63
 
64
+ #: admin.inc.php:151
65
+ msgid "Reviews"
66
+ msgstr ""
67
+
68
+ #: admin.inc.php:152
69
  msgid "Follow @ajaydsouza on Twitter"
70
  msgstr "Seguir @ajaydsouza en Twitter"
71
 
72
+ #: admin.inc.php:156
73
  msgid "Recent developments"
74
  msgstr "Desarrollos recientes"
75
 
76
+ #: admin.inc.php:168
77
  msgid "General options"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:171
81
  msgid "Number of related posts to display: "
82
  msgstr "Número de posts relacionados a mostrar:"
83
 
84
+ #: admin.inc.php:174
85
+ msgid "Related posts should be newer than:"
86
+ msgstr ""
87
+
88
+ #: admin.inc.php:175
89
+ msgid "days"
90
+ msgstr ""
91
+
92
+ #: admin.inc.php:177
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:188
97
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:191
101
  msgid "Find related posts based on content as well as title"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:192
105
  #, fuzzy
106
+ msgid ""
107
+ "If unchecked, only posts titles are used. (I recommend using a caching "
108
+ "plugin if you enable this)"
109
+ msgstr ""
110
+ "Encuentra posts relacionados basados en el contexto y el título. Si es "
111
+ "deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
112
+ "caché si activas esto)"
113
 
114
+ #: admin.inc.php:194
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:197
119
+ msgid "Categories to exclude from the results: "
 
 
 
 
120
  msgstr ""
121
 
122
+ #: admin.inc.php:215
 
123
  #, fuzzy
124
+ msgid "Add related posts to:"
 
 
 
 
 
125
  msgstr "Agregar posts relacionados al feed"
126
 
127
+ #: admin.inc.php:217
128
+ msgid "Posts"
129
+ msgstr ""
130
+
131
+ #: admin.inc.php:218
132
+ msgid "Pages"
133
+ msgstr ""
134
+
135
+ #: admin.inc.php:219
136
+ msgid "Home page"
137
+ msgstr ""
138
+
139
+ #: admin.inc.php:220
140
+ msgid "Feeds"
141
+ msgstr ""
142
+
143
+ #: admin.inc.php:221
144
+ msgid "Category archives"
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:222
148
+ msgid "Tag archives"
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:223
152
+ msgid "Other archives"
153
+ msgstr ""
154
+
155
+ #: admin.inc.php:224
156
+ #, fuzzy
157
+ msgid ""
158
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
159
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
160
+ "you want it displayed"
161
+ msgstr ""
162
+ "Agregar posts relacionados a páginas. <br />Si eliges desabilitar esto, por "
163
+ "favor agrega <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
164
+ "(); ?&gt;</code> a tu archivo de template donde quieras q se muestre"
165
 
166
+ #: admin.inc.php:227
167
  msgid "Add a link to the plugin page as a final item in the list"
168
  msgstr ""
169
 
170
+ #: admin.inc.php:228
171
  msgid " <em>Optional</em>"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:236
175
  #, fuzzy
176
  msgid "Output Options"
177
  msgstr "Opciones de Salida:"
178
 
179
+ #: admin.inc.php:239
180
  msgid "Title of related posts: "
181
  msgstr "Título de posts relacionados:"
182
 
183
+ #: admin.inc.php:242
184
  msgid "When there are no posts, what should be shown?"
185
  msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
186
 
187
+ #: admin.inc.php:246
188
  msgid "Blank Output"
189
  msgstr "Salida vacía"
190
 
191
+ #: admin.inc.php:250
192
  msgid "Display \"No Related Posts\""
193
  msgstr "Mostrar \"Posts No Relacionados\""
194
 
195
+ #: admin.inc.php:254
196
  msgid "Show post excerpt in list?"
197
  msgstr "¿Mostrar extracto con los items?"
198
 
199
+ #: admin.inc.php:257
200
  msgid "Length of excerpt (in words): "
201
  msgstr "Tamaño del extracto (en palabras):"
202
 
203
+ #: admin.inc.php:260
204
+ msgid "Limit post title length (in characters)"
205
+ msgstr ""
206
+
207
+ #: admin.inc.php:263
208
+ msgid ""
209
+ "Exclude display of related posts on these posts / pages (Enter comma "
210
+ "separated list of IDs): "
211
+ msgstr ""
212
+
213
+ #: admin.inc.php:266
214
  msgid "Customize the output:"
215
  msgstr "Personalizar la salida:"
216
 
217
+ #: admin.inc.php:268
218
  msgid "HTML to display before the list of posts: "
219
  msgstr "HTML a mostrar antes de todos los items:"
220
 
221
+ #: admin.inc.php:271
222
  msgid "HTML to display before each list item: "
223
  msgstr "HTML a mostrar antes de cada item:"
224
 
225
+ #: admin.inc.php:274
226
  msgid "HTML to display after each list item: "
227
  msgstr "HTML a mostrar despues de cada item:"
228
 
229
+ #: admin.inc.php:277
230
  msgid "HTML to display after the list of posts: "
231
  msgstr "HTML a mostrar despues de todos los items:"
232
 
233
+ #: admin.inc.php:280
234
  msgid "Post thumbnail options:"
235
  msgstr "Opciones de miniaturas en el post:"
236
 
237
+ #: admin.inc.php:282
238
  msgid "Location of post thumbnail:"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:286
242
  #, fuzzy
243
  msgid "Display thumbnails inline with posts, before title"
244
  msgstr "Miniaturas en línea con los posts"
245
 
246
+ #: admin.inc.php:290
247
  #, fuzzy
248
  msgid "Display thumbnails inline with posts, after title"
249
  msgstr "Miniaturas en línea con los posts"
250
 
251
+ #: admin.inc.php:294
252
  msgid "Display only thumbnails, no text"
253
  msgstr "Solo miniaturas, sin texto"
254
 
255
+ #: admin.inc.php:298
256
  msgid "Do not display thumbnails, only text."
257
  msgstr "No mostrar miniaturas, solo texto."
258
 
259
+ #: admin.inc.php:302
260
  msgid "Maximum width of the thumbnail: "
261
  msgstr ""
262
 
263
+ #: admin.inc.php:305
264
  msgid "Maximum height of the thumbnail: "
265
  msgstr ""
266
 
267
+ #: admin.inc.php:308
268
  msgid "Use timthumb to generate thumbnails? "
269
  msgstr ""
270
 
271
+ #: admin.inc.php:309
272
+ msgid ""
273
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
274
+ "\">timthumb</a> will be used to generate thumbnails"
275
  msgstr ""
276
 
277
+ #: admin.inc.php:311
278
  #, fuzzy
279
  msgid "Post thumbnail meta field name: "
280
  msgstr "Opciones de miniaturas en el post:"
281
 
282
+ #: admin.inc.php:312
283
+ msgid ""
284
+ "The value of this field should contain the image source and is set in the "
285
+ "<em>Add New Post</em> screen"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:314
289
  #, fuzzy
290
+ msgid ""
291
+ "If the postmeta is not set, then should the plugin extract the first image "
292
+ "from the post?"
293
+ msgstr ""
294
+ "Si el postmeta no está definido, entonces el plugin extrae la primera imágen "
295
+ "del post. Esto puede relentizar la carga si la primera imágen es de gran "
296
+ "tamaño"
297
 
298
+ #: admin.inc.php:315
299
  #, fuzzy
300
+ msgid ""
301
+ "This can slow down the loading of your page if the first image in the "
302
+ "related posts is large in file-size"
303
+ msgstr ""
304
+ "Si el postmeta no está definido, entonces el plugin extrae la primera imágen "
305
+ "del post. Esto puede relentizar la carga si la primera imágen es de gran "
306
+ "tamaño"
307
 
308
+ #: admin.inc.php:317
309
  msgid "Use default thumbnail? "
310
  msgstr ""
311
 
312
+ #: admin.inc.php:318
313
+ msgid ""
314
+ "If checked, when no thumbnail is found, show a default one from the URL "
315
+ "below. If not checked and no thumbnail is found, no image will be shown."
316
  msgstr ""
317
 
318
+ #: admin.inc.php:320
319
  msgid "Default thumbnail: "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:321
323
  #, fuzzy
324
+ msgid ""
325
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
326
+ "then it will check the meta field. If this is not available, then it will "
327
+ "show the default image as specified above"
328
+ msgstr ""
329
+ "El plugin primero verificará si el post contiene miniaturas. Si no tiene "
330
+ "ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
331
+ "la imágen padrón especificada a continuación:"
332
 
333
+ #: admin.inc.php:327
334
  msgid "Custom Styles"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:330
338
  msgid "Custom CSS to add to header:"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:333
342
+ msgid ""
343
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
344
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
345
+ "\">FAQ</a> for available CSS classes to style."
346
  msgstr ""
347
 
348
+ #: admin.inc.php:337
349
  #, fuzzy
350
  msgid "Save Options"
351
  msgstr "Opciones:"
352
 
353
+ #: admin.inc.php:338
354
  #, fuzzy
355
  msgid "Default Options"
356
  msgstr "Opciones de Salida:"
357
 
358
+ #: admin.inc.php:338
359
  msgid "Do you want to set options to Default?"
360
  msgstr "¿Quieres resetear las opciones?"
361
 
362
+ #: admin.inc.php:339
363
  msgid "Recreate Index"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:339
367
  msgid "Are you sure you want to recreate the index?"
368
  msgstr "¿Está seguro que quiere recrear el index?"
369
 
370
+ #: admin.inc.php:369
371
  msgid "Contextual Related Posts"
372
  msgstr "Posts Relacionados Contextualmente"
373
 
374
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
375
  msgid "Related Posts"
376
  msgstr "Post Relacionados"
377
 
378
+ #: admin.inc.php:378
379
  #, fuzzy
380
  msgid "plugin settings page"
381
  msgstr "sitio del plugin"
382
 
383
+ #: admin.inc.php:383
384
+ msgid ""
385
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
386
+ "visit the "
387
  msgstr ""
388
 
389
+ #: admin.inc.php:383
390
  msgid " to configure."
391
  msgstr ""
392
 
393
+ #: contextual-related-posts.php:152
394
  msgid "Powered by"
395
  msgstr "Creado por"
396
 
397
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
398
  msgid "No related posts found"
399
  msgstr "No hay posts relacionados"
400
 
401
+ #: contextual-related-posts.php:221
402
  #, fuzzy
403
  msgid "Display Related Posts"
404
  msgstr "Mostrar \"Posts No Relacionados\""
405
 
406
+ #: contextual-related-posts.php:232
407
  msgid "Title"
408
  msgstr ""
409
 
410
+ #: contextual-related-posts.php:237
411
  msgid "No. of posts"
412
  msgstr ""
413
 
414
+ #: contextual-related-posts.php:241
415
  #, fuzzy
416
  msgid "Thumbnail options"
417
  msgstr "Opciones de miniaturas en el post:"
418
 
419
+ #: contextual-related-posts.php:243
420
  #, fuzzy
421
  msgid "Thumbnails inline, before title"
422
  msgstr "Miniaturas en línea con los posts"
423
 
424
+ #: contextual-related-posts.php:244
425
  #, fuzzy
426
  msgid "Thumbnails inline, after title"
427
  msgstr "Miniaturas en línea con los posts"
428
 
429
+ #: contextual-related-posts.php:245
430
  #, fuzzy
431
  msgid "Only thumbnails, no text"
432
  msgstr "Solo miniaturas, sin texto"
433
 
434
+ #: contextual-related-posts.php:246
435
  #, fuzzy
436
  msgid "No thumbnails, only text."
437
  msgstr "No mostrar miniaturas, solo texto."
438
 
439
+ #: contextual-related-posts.php:251
440
  #, fuzzy
441
  msgid " Show excerpt?"
442
  msgstr "¿Mostrar extracto con los items?"
443
 
444
+ #: contextual-related-posts.php:301
445
  msgid "<h3>Related Posts:</h3>"
446
  msgstr "<h3>Post Relacionados:</h3>"
447
 
448
+ #: contextual-related-posts.php:520
449
  msgid "Settings"
450
  msgstr "Opciones"
451
 
452
+ #: contextual-related-posts.php:522
453
  msgid "Donate"
454
  msgstr "Donar"
455
 
456
+ #~ msgid "Exclude Categories: "
457
+ #~ msgstr "Excluir Categorías:"
458
+
459
+ #, fuzzy
460
+ #~ msgid "Add related posts to pages"
461
+ #~ msgstr "Agregar posts relacionados al feed"
462
+
463
  #~ msgid "plugin page"
464
  #~ msgstr "sitio del plugin"
465
 
languages/crp-it_IT.mo CHANGED
Binary file
languages/crp-it_IT.po CHANGED
@@ -2,381 +2,467 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:19-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Italian\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Poedit-Country: ITALY\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:70
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
- #: admin.inc.php:86
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
- #: admin.inc.php:101
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
- #: admin.inc.php:114
31
  msgid "Support the development"
32
  msgstr "Sostieni lo sviluppo"
33
 
34
- #: admin.inc.php:122
35
  msgid "Enter amount in USD: "
36
  msgstr "Inserisci la cifra in USD: "
37
 
38
- #: admin.inc.php:126
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
- #: admin.inc.php:135
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Collegamenti veloci"
46
 
47
- #: admin.inc.php:137
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
- #: admin.inc.php:138
53
  msgid "Other plugins"
54
  msgstr "Altri plugin"
55
 
56
- #: admin.inc.php:139
57
  msgid "Ajay's blog"
58
  msgstr "Il blog di Ajay"
59
 
60
- #: admin.inc.php:140
61
- #: contextual-related-posts.php:451
62
  msgid "Support"
63
  msgstr "Supporto"
64
 
65
- #: admin.inc.php:141
 
 
 
 
66
  msgid "Follow @ajaydsouza on Twitter"
67
  msgstr "Segui @ajaydsouza su Twitter"
68
 
69
- #: admin.inc.php:145
70
  msgid "Recent developments"
71
  msgstr "Sviluppi recenti"
72
 
73
- #: admin.inc.php:157
74
  msgid "General options"
75
  msgstr ""
76
 
77
- #: admin.inc.php:160
78
  msgid "Number of related posts to display: "
79
  msgstr "numero di articoli correlati da mostrare:"
80
 
81
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
82
  msgid "Post types to include in results (including custom post types)"
83
  msgstr ""
84
 
85
- #: admin.inc.php:174
86
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
87
  msgstr ""
88
 
89
- #: admin.inc.php:177
90
  msgid "Find related posts based on content as well as title"
91
  msgstr ""
92
 
93
- #: admin.inc.php:178
94
  #, fuzzy
95
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
96
- msgstr "Ricerca degli articoli correlati in relazione al contenuto ed al titolo. Se disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é preferibile attivare un plugin per la cache)"
 
 
 
 
 
97
 
98
- #: admin.inc.php:180
99
  msgid "List of post or page IDs to exclude from the results: "
100
  msgstr ""
101
 
102
- #: admin.inc.php:183
103
- msgid "Exclude Categories: "
104
- msgstr "escludi le categorie:"
105
-
106
- #: admin.inc.php:201
107
- msgid "Add related posts to the post content on single posts"
108
  msgstr ""
109
 
110
- #: admin.inc.php:202
111
- #: admin.inc.php:205
112
  #, fuzzy
113
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
114
- msgstr "aggiungi gli articoli correlati alle pagine. <br />oppure disattiva ed inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
115
-
116
- #: admin.inc.php:204
117
- #, fuzzy
118
- msgid "Add related posts to pages"
119
  msgstr "aggiungi gli articoli correlati al feed"
120
 
121
- #: admin.inc.php:207
122
- msgid "Add related posts to feed"
123
- msgstr "aggiungi gli articoli correlati al feed"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
 
125
- #: admin.inc.php:210
126
  msgid "Add a link to the plugin page as a final item in the list"
127
  msgstr ""
128
 
129
- #: admin.inc.php:211
130
  msgid " <em>Optional</em>"
131
  msgstr ""
132
 
133
- #: admin.inc.php:219
134
  #, fuzzy
135
  msgid "Output Options"
136
  msgstr "Opzioni output:"
137
 
138
- #: admin.inc.php:222
139
  msgid "Title of related posts: "
140
  msgstr "titolo per gli articoli correlati:"
141
 
142
- #: admin.inc.php:225
143
  msgid "When there are no posts, what should be shown?"
144
  msgstr "Cosa desideri mostrare in assenza di articoli?"
145
 
146
- #: admin.inc.php:229
147
  msgid "Blank Output"
148
  msgstr "nulla"
149
 
150
- #: admin.inc.php:233
151
  msgid "Display \"No Related Posts\""
152
  msgstr "\"Nessun articolo correlato\""
153
 
154
- #: admin.inc.php:237
155
  msgid "Show post excerpt in list?"
156
  msgstr "Desideri mostrare gli estratti?"
157
 
158
- #: admin.inc.php:240
159
  msgid "Length of excerpt (in words): "
160
  msgstr "Lunghezza estratto (in parole): "
161
 
162
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
163
  msgid "Customize the output:"
164
  msgstr "Personalizzazione output:"
165
 
166
- #: admin.inc.php:245
167
  msgid "HTML to display before the list of posts: "
168
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
169
 
170
- #: admin.inc.php:248
171
  msgid "HTML to display before each list item: "
172
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
173
 
174
- #: admin.inc.php:251
175
  msgid "HTML to display after each list item: "
176
  msgstr "HTML da mostrare dopo ogni lista:"
177
 
178
- #: admin.inc.php:254
179
  msgid "HTML to display after the list of posts: "
180
  msgstr "HTML da mostrare dopo la lista degli articoli:"
181
 
182
- #: admin.inc.php:257
183
  msgid "Post thumbnail options:"
184
  msgstr "Opzioni miniature articolo:"
185
 
186
- #: admin.inc.php:259
187
  msgid "Location of post thumbnail:"
188
  msgstr ""
189
 
190
- #: admin.inc.php:263
191
  #, fuzzy
192
  msgid "Display thumbnails inline with posts, before title"
193
  msgstr "Mostra gli articoli con le miniature inline"
194
 
195
- #: admin.inc.php:267
196
  #, fuzzy
197
  msgid "Display thumbnails inline with posts, after title"
198
  msgstr "Mostra gli articoli con le miniature inline"
199
 
200
- #: admin.inc.php:271
201
  msgid "Display only thumbnails, no text"
202
  msgstr "Mostra le sole miniature, nessun testo"
203
 
204
- #: admin.inc.php:275
205
  msgid "Do not display thumbnails, only text."
206
  msgstr "Non mostrare le miniature, solo testo."
207
 
208
- #: admin.inc.php:279
209
  msgid "Maximum width of the thumbnail: "
210
  msgstr ""
211
 
212
- #: admin.inc.php:282
213
  msgid "Maximum height of the thumbnail: "
214
  msgstr ""
215
 
216
- #: admin.inc.php:285
217
  msgid "Use timthumb to generate thumbnails? "
218
  msgstr ""
219
 
220
- #: admin.inc.php:286
221
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
 
 
222
  msgstr ""
223
 
224
- #: admin.inc.php:288
225
  #, fuzzy
226
  msgid "Post thumbnail meta field name: "
227
  msgstr "Opzioni miniature articolo:"
228
 
229
- #: admin.inc.php:289
230
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
231
  msgstr ""
232
 
233
- #: admin.inc.php:291
234
  #, fuzzy
235
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
236
- msgstr "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo la prima immagine. Questa operazione potrebbe rallentare il caricamento del tuo articolo nel caso in cui la prima immagine corelata fosse di grandi dimensioni"
 
 
 
 
 
 
237
 
238
- #: admin.inc.php:292
239
  #, fuzzy
240
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
241
- msgstr "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo la prima immagine. Questa operazione potrebbe rallentare il caricamento del tuo articolo nel caso in cui la prima immagine corelata fosse di grandi dimensioni"
 
 
 
 
 
 
242
 
243
- #: admin.inc.php:294
244
  msgid "Use default thumbnail? "
245
  msgstr ""
246
 
247
- #: admin.inc.php:295
248
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
 
 
249
  msgstr ""
250
 
251
- #: admin.inc.php:297
252
  msgid "Default thumbnail: "
253
  msgstr ""
254
 
255
- #: admin.inc.php:298
256
  #, fuzzy
257
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
258
- msgstr "Come prima operazione, il plugin controllerà la presenza di una miniatura nell'articolo. Nel caso in cui non fosse presente, verificherà il campo meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come specificato qui sotto:"
 
 
 
 
 
 
 
259
 
260
- #: admin.inc.php:304
261
  msgid "Custom Styles"
262
  msgstr ""
263
 
264
- #: admin.inc.php:307
265
  msgid "Custom CSS to add to header:"
266
  msgstr ""
267
 
268
- #: admin.inc.php:310
269
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
 
 
 
270
  msgstr ""
271
 
272
- #: admin.inc.php:314
273
  #, fuzzy
274
  msgid "Save Options"
275
  msgstr "Opzioni:"
276
 
277
- #: admin.inc.php:315
278
  #, fuzzy
279
  msgid "Default Options"
280
  msgstr "Opzioni output:"
281
 
282
- #: admin.inc.php:315
283
  msgid "Do you want to set options to Default?"
284
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
285
 
286
- #: admin.inc.php:316
287
  msgid "Recreate Index"
288
  msgstr ""
289
 
290
- #: admin.inc.php:316
291
  msgid "Are you sure you want to recreate the index?"
292
  msgstr "Sei certo di volere ricreare l'indice?"
293
 
294
- #: admin.inc.php:346
295
  msgid "Contextual Related Posts"
296
  msgstr "Contextual Related Posts"
297
 
298
- #: admin.inc.php:346
299
- #: contextual-related-posts.php:190
300
  msgid "Related Posts"
301
  msgstr "Related Posts"
302
 
303
- #: admin.inc.php:355
304
  #, fuzzy
305
  msgid "plugin settings page"
306
  msgstr "pagina plugin"
307
 
308
- #: admin.inc.php:360
309
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
310
  msgstr ""
311
 
312
- #: admin.inc.php:360
313
  msgid " to configure."
314
  msgstr ""
315
 
316
- #: contextual-related-posts.php:146
317
  msgid "Powered by"
318
  msgstr "Powered by"
319
 
320
- #: contextual-related-posts.php:151
321
- #: contextual-related-posts.php:156
322
  msgid "No related posts found"
323
  msgstr "Non é stato trovato alcun articolo correlato"
324
 
325
- #: contextual-related-posts.php:189
326
  #, fuzzy
327
  msgid "Display Related Posts"
328
  msgstr "\"Nessun articolo correlato\""
329
 
330
- #: contextual-related-posts.php:200
331
  msgid "Title"
332
  msgstr ""
333
 
334
- #: contextual-related-posts.php:205
335
  msgid "No. of posts"
336
  msgstr ""
337
 
338
- #: contextual-related-posts.php:209
339
  #, fuzzy
340
  msgid "Thumbnail options"
341
  msgstr "Opzioni miniature articolo:"
342
 
343
- #: contextual-related-posts.php:211
344
  #, fuzzy
345
  msgid "Thumbnails inline, before title"
346
  msgstr "Mostra gli articoli con le miniature inline"
347
 
348
- #: contextual-related-posts.php:212
349
  #, fuzzy
350
  msgid "Thumbnails inline, after title"
351
  msgstr "Mostra gli articoli con le miniature inline"
352
 
353
- #: contextual-related-posts.php:213
354
  #, fuzzy
355
  msgid "Only thumbnails, no text"
356
  msgstr "Mostra le sole miniature, nessun testo"
357
 
358
- #: contextual-related-posts.php:214
359
  #, fuzzy
360
  msgid "No thumbnails, only text."
361
  msgstr "Non mostrare le miniature, solo testo."
362
 
363
- #: contextual-related-posts.php:219
364
  #, fuzzy
365
  msgid " Show excerpt?"
366
  msgstr "Desideri mostrare gli estratti?"
367
 
368
- #: contextual-related-posts.php:271
369
  msgid "<h3>Related Posts:</h3>"
370
  msgstr "<h3>Related Posts:</h3>"
371
 
372
- #: contextual-related-posts.php:450
373
  msgid "Settings"
374
  msgstr "Impostazioni"
375
 
376
- #: contextual-related-posts.php:452
377
  msgid "Donate"
378
  msgstr "Donazioni"
379
 
 
 
 
 
 
 
 
380
  #~ msgid "plugin page"
381
  #~ msgstr "pagina plugin"
382
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:30-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"
9
+ "Language: it_IT\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.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:80
19
  msgid "Options saved successfully."
20
  msgstr "Le opzioni sono state salvate correttamente."
21
 
22
+ #: admin.inc.php:96
23
  msgid "Options set to Default."
24
  msgstr "Opzioni impostate alle predefinite."
25
 
26
+ #: admin.inc.php:111
27
  msgid "Index recreated"
28
  msgstr "E' stato ricreato l'indice"
29
 
30
+ #: admin.inc.php:124
31
  msgid "Support the development"
32
  msgstr "Sostieni lo sviluppo"
33
 
34
+ #: admin.inc.php:132
35
  msgid "Enter amount in USD: "
36
  msgstr "Inserisci la cifra in USD: "
37
 
38
+ #: admin.inc.php:136
39
  msgid "Send your donation to the author of"
40
  msgstr "Invia la tua donazione all'autore di"
41
 
42
+ #: admin.inc.php:145
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Collegamenti veloci"
46
 
47
+ #: admin.inc.php:147
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Contextual Related Posts "
51
 
52
+ #: admin.inc.php:148
53
  msgid "Other plugins"
54
  msgstr "Altri plugin"
55
 
56
+ #: admin.inc.php:149
57
  msgid "Ajay's blog"
58
  msgstr "Il blog di Ajay"
59
 
60
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
61
  msgid "Support"
62
  msgstr "Supporto"
63
 
64
+ #: admin.inc.php:151
65
+ msgid "Reviews"
66
+ msgstr ""
67
+
68
+ #: admin.inc.php:152
69
  msgid "Follow @ajaydsouza on Twitter"
70
  msgstr "Segui @ajaydsouza su Twitter"
71
 
72
+ #: admin.inc.php:156
73
  msgid "Recent developments"
74
  msgstr "Sviluppi recenti"
75
 
76
+ #: admin.inc.php:168
77
  msgid "General options"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:171
81
  msgid "Number of related posts to display: "
82
  msgstr "numero di articoli correlati da mostrare:"
83
 
84
+ #: admin.inc.php:174
85
+ msgid "Related posts should be newer than:"
86
+ msgstr ""
87
+
88
+ #: admin.inc.php:175
89
+ msgid "days"
90
+ msgstr ""
91
+
92
+ #: admin.inc.php:177
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:188
97
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:191
101
  msgid "Find related posts based on content as well as title"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:192
105
  #, fuzzy
106
+ msgid ""
107
+ "If unchecked, only posts titles are used. (I recommend using a caching "
108
+ "plugin if you enable this)"
109
+ msgstr ""
110
+ "Ricerca degli articoli correlati in relazione al contenuto ed al titolo. Se "
111
+ "disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
112
+ "preferibile attivare un plugin per la cache)"
113
 
114
+ #: admin.inc.php:194
115
  msgid "List of post or page IDs to exclude from the results: "
116
  msgstr ""
117
 
118
+ #: admin.inc.php:197
119
+ msgid "Categories to exclude from the results: "
 
 
 
 
120
  msgstr ""
121
 
122
+ #: admin.inc.php:215
 
123
  #, fuzzy
124
+ msgid "Add related posts to:"
 
 
 
 
 
125
  msgstr "aggiungi gli articoli correlati al feed"
126
 
127
+ #: admin.inc.php:217
128
+ msgid "Posts"
129
+ msgstr ""
130
+
131
+ #: admin.inc.php:218
132
+ msgid "Pages"
133
+ msgstr ""
134
+
135
+ #: admin.inc.php:219
136
+ msgid "Home page"
137
+ msgstr ""
138
+
139
+ #: admin.inc.php:220
140
+ msgid "Feeds"
141
+ msgstr ""
142
+
143
+ #: admin.inc.php:221
144
+ msgid "Category archives"
145
+ msgstr ""
146
+
147
+ #: admin.inc.php:222
148
+ msgid "Tag archives"
149
+ msgstr ""
150
+
151
+ #: admin.inc.php:223
152
+ msgid "Other archives"
153
+ msgstr ""
154
+
155
+ #: admin.inc.php:224
156
+ #, fuzzy
157
+ msgid ""
158
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
159
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
160
+ "you want it displayed"
161
+ msgstr ""
162
+ "aggiungi gli articoli correlati alle pagine. <br />oppure disattiva ed "
163
+ "inserisci <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp"
164
+ "(); ?&gt;</code> nel tuo template laddove desideri che siano visualizzati"
165
 
166
+ #: admin.inc.php:227
167
  msgid "Add a link to the plugin page as a final item in the list"
168
  msgstr ""
169
 
170
+ #: admin.inc.php:228
171
  msgid " <em>Optional</em>"
172
  msgstr ""
173
 
174
+ #: admin.inc.php:236
175
  #, fuzzy
176
  msgid "Output Options"
177
  msgstr "Opzioni output:"
178
 
179
+ #: admin.inc.php:239
180
  msgid "Title of related posts: "
181
  msgstr "titolo per gli articoli correlati:"
182
 
183
+ #: admin.inc.php:242
184
  msgid "When there are no posts, what should be shown?"
185
  msgstr "Cosa desideri mostrare in assenza di articoli?"
186
 
187
+ #: admin.inc.php:246
188
  msgid "Blank Output"
189
  msgstr "nulla"
190
 
191
+ #: admin.inc.php:250
192
  msgid "Display \"No Related Posts\""
193
  msgstr "\"Nessun articolo correlato\""
194
 
195
+ #: admin.inc.php:254
196
  msgid "Show post excerpt in list?"
197
  msgstr "Desideri mostrare gli estratti?"
198
 
199
+ #: admin.inc.php:257
200
  msgid "Length of excerpt (in words): "
201
  msgstr "Lunghezza estratto (in parole): "
202
 
203
+ #: admin.inc.php:260
204
+ msgid "Limit post title length (in characters)"
205
+ msgstr ""
206
+
207
+ #: admin.inc.php:263
208
+ msgid ""
209
+ "Exclude display of related posts on these posts / pages (Enter comma "
210
+ "separated list of IDs): "
211
+ msgstr ""
212
+
213
+ #: admin.inc.php:266
214
  msgid "Customize the output:"
215
  msgstr "Personalizzazione output:"
216
 
217
+ #: admin.inc.php:268
218
  msgid "HTML to display before the list of posts: "
219
  msgstr "HTML da mostrare davanti alla lista degli articoli:"
220
 
221
+ #: admin.inc.php:271
222
  msgid "HTML to display before each list item: "
223
  msgstr "HTML da mostrare davanti ad ogni singola lista:"
224
 
225
+ #: admin.inc.php:274
226
  msgid "HTML to display after each list item: "
227
  msgstr "HTML da mostrare dopo ogni lista:"
228
 
229
+ #: admin.inc.php:277
230
  msgid "HTML to display after the list of posts: "
231
  msgstr "HTML da mostrare dopo la lista degli articoli:"
232
 
233
+ #: admin.inc.php:280
234
  msgid "Post thumbnail options:"
235
  msgstr "Opzioni miniature articolo:"
236
 
237
+ #: admin.inc.php:282
238
  msgid "Location of post thumbnail:"
239
  msgstr ""
240
 
241
+ #: admin.inc.php:286
242
  #, fuzzy
243
  msgid "Display thumbnails inline with posts, before title"
244
  msgstr "Mostra gli articoli con le miniature inline"
245
 
246
+ #: admin.inc.php:290
247
  #, fuzzy
248
  msgid "Display thumbnails inline with posts, after title"
249
  msgstr "Mostra gli articoli con le miniature inline"
250
 
251
+ #: admin.inc.php:294
252
  msgid "Display only thumbnails, no text"
253
  msgstr "Mostra le sole miniature, nessun testo"
254
 
255
+ #: admin.inc.php:298
256
  msgid "Do not display thumbnails, only text."
257
  msgstr "Non mostrare le miniature, solo testo."
258
 
259
+ #: admin.inc.php:302
260
  msgid "Maximum width of the thumbnail: "
261
  msgstr ""
262
 
263
+ #: admin.inc.php:305
264
  msgid "Maximum height of the thumbnail: "
265
  msgstr ""
266
 
267
+ #: admin.inc.php:308
268
  msgid "Use timthumb to generate thumbnails? "
269
  msgstr ""
270
 
271
+ #: admin.inc.php:309
272
+ msgid ""
273
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
274
+ "\">timthumb</a> will be used to generate thumbnails"
275
  msgstr ""
276
 
277
+ #: admin.inc.php:311
278
  #, fuzzy
279
  msgid "Post thumbnail meta field name: "
280
  msgstr "Opzioni miniature articolo:"
281
 
282
+ #: admin.inc.php:312
283
+ msgid ""
284
+ "The value of this field should contain the image source and is set in the "
285
+ "<em>Add New Post</em> screen"
286
  msgstr ""
287
 
288
+ #: admin.inc.php:314
289
  #, fuzzy
290
+ msgid ""
291
+ "If the postmeta is not set, then should the plugin extract the first image "
292
+ "from the post?"
293
+ msgstr ""
294
+ "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo "
295
+ "la prima immagine. Questa operazione potrebbe rallentare il caricamento del "
296
+ "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
297
+ "dimensioni"
298
 
299
+ #: admin.inc.php:315
300
  #, fuzzy
301
+ msgid ""
302
+ "This can slow down the loading of your page if the first image in the "
303
+ "related posts is large in file-size"
304
+ msgstr ""
305
+ "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo "
306
+ "la prima immagine. Questa operazione potrebbe rallentare il caricamento del "
307
+ "tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
308
+ "dimensioni"
309
 
310
+ #: admin.inc.php:317
311
  msgid "Use default thumbnail? "
312
  msgstr ""
313
 
314
+ #: admin.inc.php:318
315
+ msgid ""
316
+ "If checked, when no thumbnail is found, show a default one from the URL "
317
+ "below. If not checked and no thumbnail is found, no image will be shown."
318
  msgstr ""
319
 
320
+ #: admin.inc.php:320
321
  msgid "Default thumbnail: "
322
  msgstr ""
323
 
324
+ #: admin.inc.php:321
325
  #, fuzzy
326
+ msgid ""
327
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
328
+ "then it will check the meta field. If this is not available, then it will "
329
+ "show the default image as specified above"
330
+ msgstr ""
331
+ "Come prima operazione, il plugin controllerà la presenza di una miniatura "
332
+ "nell'articolo. Nel caso in cui non fosse presente, verificherà il campo "
333
+ "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
334
+ "specificato qui sotto:"
335
 
336
+ #: admin.inc.php:327
337
  msgid "Custom Styles"
338
  msgstr ""
339
 
340
+ #: admin.inc.php:330
341
  msgid "Custom CSS to add to header:"
342
  msgstr ""
343
 
344
+ #: admin.inc.php:333
345
+ msgid ""
346
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
347
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
348
+ "\">FAQ</a> for available CSS classes to style."
349
  msgstr ""
350
 
351
+ #: admin.inc.php:337
352
  #, fuzzy
353
  msgid "Save Options"
354
  msgstr "Opzioni:"
355
 
356
+ #: admin.inc.php:338
357
  #, fuzzy
358
  msgid "Default Options"
359
  msgstr "Opzioni output:"
360
 
361
+ #: admin.inc.php:338
362
  msgid "Do you want to set options to Default?"
363
  msgstr "Sei certo di volere impostare alle opzioni predefinite?"
364
 
365
+ #: admin.inc.php:339
366
  msgid "Recreate Index"
367
  msgstr ""
368
 
369
+ #: admin.inc.php:339
370
  msgid "Are you sure you want to recreate the index?"
371
  msgstr "Sei certo di volere ricreare l'indice?"
372
 
373
+ #: admin.inc.php:369
374
  msgid "Contextual Related Posts"
375
  msgstr "Contextual Related Posts"
376
 
377
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
378
  msgid "Related Posts"
379
  msgstr "Related Posts"
380
 
381
+ #: admin.inc.php:378
382
  #, fuzzy
383
  msgid "plugin settings page"
384
  msgstr "pagina plugin"
385
 
386
+ #: admin.inc.php:383
387
+ msgid ""
388
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
389
+ "visit the "
390
  msgstr ""
391
 
392
+ #: admin.inc.php:383
393
  msgid " to configure."
394
  msgstr ""
395
 
396
+ #: contextual-related-posts.php:152
397
  msgid "Powered by"
398
  msgstr "Powered by"
399
 
400
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
401
  msgid "No related posts found"
402
  msgstr "Non é stato trovato alcun articolo correlato"
403
 
404
+ #: contextual-related-posts.php:221
405
  #, fuzzy
406
  msgid "Display Related Posts"
407
  msgstr "\"Nessun articolo correlato\""
408
 
409
+ #: contextual-related-posts.php:232
410
  msgid "Title"
411
  msgstr ""
412
 
413
+ #: contextual-related-posts.php:237
414
  msgid "No. of posts"
415
  msgstr ""
416
 
417
+ #: contextual-related-posts.php:241
418
  #, fuzzy
419
  msgid "Thumbnail options"
420
  msgstr "Opzioni miniature articolo:"
421
 
422
+ #: contextual-related-posts.php:243
423
  #, fuzzy
424
  msgid "Thumbnails inline, before title"
425
  msgstr "Mostra gli articoli con le miniature inline"
426
 
427
+ #: contextual-related-posts.php:244
428
  #, fuzzy
429
  msgid "Thumbnails inline, after title"
430
  msgstr "Mostra gli articoli con le miniature inline"
431
 
432
+ #: contextual-related-posts.php:245
433
  #, fuzzy
434
  msgid "Only thumbnails, no text"
435
  msgstr "Mostra le sole miniature, nessun testo"
436
 
437
+ #: contextual-related-posts.php:246
438
  #, fuzzy
439
  msgid "No thumbnails, only text."
440
  msgstr "Non mostrare le miniature, solo testo."
441
 
442
+ #: contextual-related-posts.php:251
443
  #, fuzzy
444
  msgid " Show excerpt?"
445
  msgstr "Desideri mostrare gli estratti?"
446
 
447
+ #: contextual-related-posts.php:301
448
  msgid "<h3>Related Posts:</h3>"
449
  msgstr "<h3>Related Posts:</h3>"
450
 
451
+ #: contextual-related-posts.php:520
452
  msgid "Settings"
453
  msgstr "Impostazioni"
454
 
455
+ #: contextual-related-posts.php:522
456
  msgid "Donate"
457
  msgstr "Donazioni"
458
 
459
+ #~ msgid "Exclude Categories: "
460
+ #~ msgstr "escludi le categorie:"
461
+
462
+ #, fuzzy
463
+ #~ msgid "Add related posts to pages"
464
+ #~ msgstr "aggiungi gli articoli correlati al feed"
465
+
466
  #~ msgid "plugin page"
467
  #~ msgstr "pagina plugin"
468
 
languages/crp-nl_NL.mo CHANGED
Binary file
languages/crp-nl_NL.po CHANGED
@@ -2,383 +2,468 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:20-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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
13
  "X-Poedit-Basepath: ../\n"
14
- "Plural-Forms: nplurals=2; plural=(n != 1)\n"
15
- "X-Poedit-Language: Dutch\n"
16
- "X-Poedit-Country: NETHERLANDS\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:70
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
- #: admin.inc.php:86
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
- #: admin.inc.php:101
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
- #: admin.inc.php:114
33
  msgid "Support the development"
34
  msgstr "Ondersteun de ontwikkeling"
35
 
36
- #: admin.inc.php:122
37
  msgid "Enter amount in USD: "
38
  msgstr "Voer het bedrag in USD in:"
39
 
40
- #: admin.inc.php:126
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
- #: admin.inc.php:135
45
  #, fuzzy
46
  msgid "Quick Links"
47
  msgstr "Quick links"
48
 
49
- #: admin.inc.php:137
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Contextual Related Posts "
53
 
54
- #: admin.inc.php:138
55
  msgid "Other plugins"
56
  msgstr "Andere plugins"
57
 
58
- #: admin.inc.php:139
59
  msgid "Ajay's blog"
60
  msgstr "Ajay's blog"
61
 
62
- #: admin.inc.php:140
63
- #: contextual-related-posts.php:451
64
  msgid "Support"
65
  msgstr "Ondersteuning"
66
 
67
- #: admin.inc.php:141
 
 
 
 
68
  msgid "Follow @ajaydsouza on Twitter"
69
  msgstr "Volg @ajaydsouza via Twitter"
70
 
71
- #: admin.inc.php:145
72
  msgid "Recent developments"
73
  msgstr "Recente ontwikkelingen"
74
 
75
- #: admin.inc.php:157
76
  msgid "General options"
77
  msgstr ""
78
 
79
- #: admin.inc.php:160
80
  msgid "Number of related posts to display: "
81
  msgstr "Aantal weer te geven gerelateerde berichten:"
82
 
83
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
84
  msgid "Post types to include in results (including custom post types)"
85
  msgstr ""
86
 
87
- #: admin.inc.php:174
88
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
89
  msgstr ""
90
 
91
- #: admin.inc.php:177
92
  msgid "Find related posts based on content as well as title"
93
  msgstr ""
94
 
95
- #: admin.inc.php:178
96
  #, fuzzy
97
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
98
- msgstr "Vind gerelateerde berichten gebaseerd op zowel content als titel. Indien niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het gebruik van een caching plugin aan wanneer je dit inschakelt)"
 
 
 
 
 
99
 
100
- #: admin.inc.php:180
101
  msgid "List of post or page IDs to exclude from the results: "
102
  msgstr ""
103
 
104
- #: admin.inc.php:183
105
- msgid "Exclude Categories: "
106
- msgstr "Uitsluiten Categorieën"
107
-
108
- #: admin.inc.php:201
109
- msgid "Add related posts to the post content on single posts"
110
  msgstr ""
111
 
112
- #: admin.inc.php:202
113
- #: admin.inc.php:205
114
  #, fuzzy
115
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
116
- msgstr "Voeg gerelateerde berichten toe aan pagina's. <br />Wanneer je ervoor kiest om dit uit te zetten moet je de code <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon bestand waar je het wilt laten weergeven"
117
-
118
- #: admin.inc.php:204
119
- #, fuzzy
120
- msgid "Add related posts to pages"
121
  msgstr "Voeg gerelateerde berichten toe aan feed"
122
 
123
- #: admin.inc.php:207
124
- msgid "Add related posts to feed"
125
- msgstr "Voeg gerelateerde berichten toe aan feed"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
- #: admin.inc.php:210
128
  msgid "Add a link to the plugin page as a final item in the list"
129
  msgstr ""
130
 
131
- #: admin.inc.php:211
132
  msgid " <em>Optional</em>"
133
  msgstr ""
134
 
135
- #: admin.inc.php:219
136
  #, fuzzy
137
  msgid "Output Options"
138
  msgstr "Output Opties:"
139
 
140
- #: admin.inc.php:222
141
  msgid "Title of related posts: "
142
  msgstr "Titel van gerelateerde berichten:"
143
 
144
- #: admin.inc.php:225
145
  msgid "When there are no posts, what should be shown?"
146
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
147
 
148
- #: admin.inc.php:229
149
  msgid "Blank Output"
150
  msgstr "Lege Output"
151
 
152
- #: admin.inc.php:233
153
  msgid "Display \"No Related Posts\""
154
  msgstr "Weergave \"Geen Gerelateerde Berichten\""
155
 
156
- #: admin.inc.php:237
157
  msgid "Show post excerpt in list?"
158
  msgstr "Laat bericht uittreksel zien in lijst?"
159
 
160
- #: admin.inc.php:240
161
  msgid "Length of excerpt (in words): "
162
  msgstr "Lengte van uittreksel (in woorden):"
163
 
164
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
165
  msgid "Customize the output:"
166
  msgstr "Aanpassen van de output:"
167
 
168
- #: admin.inc.php:245
169
  msgid "HTML to display before the list of posts: "
170
  msgstr "Weer te geven HTML voor de berichtenlijst:"
171
 
172
- #: admin.inc.php:248
173
  msgid "HTML to display before each list item: "
174
  msgstr "Weer te geven HTML voor elk item in de lijst:"
175
 
176
- #: admin.inc.php:251
177
  msgid "HTML to display after each list item: "
178
  msgstr "Weer te geven HTML na elk item in de lijst:"
179
 
180
- #: admin.inc.php:254
181
  msgid "HTML to display after the list of posts: "
182
  msgstr "Weer te geven HTML na de berichtenlijst:"
183
 
184
- #: admin.inc.php:257
185
  msgid "Post thumbnail options:"
186
  msgstr "Berichtopties miniatuurafbeelding:"
187
 
188
- #: admin.inc.php:259
189
  msgid "Location of post thumbnail:"
190
  msgstr ""
191
 
192
- #: admin.inc.php:263
193
  #, fuzzy
194
  msgid "Display thumbnails inline with posts, before title"
195
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
196
 
197
- #: admin.inc.php:267
198
  #, fuzzy
199
  msgid "Display thumbnails inline with posts, after title"
200
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
201
 
202
- #: admin.inc.php:271
203
  msgid "Display only thumbnails, no text"
204
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
205
 
206
- #: admin.inc.php:275
207
  msgid "Do not display thumbnails, only text."
208
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
209
 
210
- #: admin.inc.php:279
211
  msgid "Maximum width of the thumbnail: "
212
  msgstr ""
213
 
214
- #: admin.inc.php:282
215
  msgid "Maximum height of the thumbnail: "
216
  msgstr ""
217
 
218
- #: admin.inc.php:285
219
  msgid "Use timthumb to generate thumbnails? "
220
  msgstr ""
221
 
222
- #: admin.inc.php:286
223
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
 
 
224
  msgstr ""
225
 
226
- #: admin.inc.php:288
227
  #, fuzzy
228
  msgid "Post thumbnail meta field name: "
229
  msgstr "Berichtopties miniatuurafbeelding:"
230
 
231
- #: admin.inc.php:289
232
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
233
  msgstr ""
234
 
235
- #: admin.inc.php:291
236
  #, fuzzy
237
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
238
- msgstr "Als de postmeta niet is ingesteld moet de plugin de eerste afbeelding van het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
 
 
 
 
 
239
 
240
- #: admin.inc.php:292
241
  #, fuzzy
242
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
243
- msgstr "Als de postmeta niet is ingesteld moet de plugin de eerste afbeelding van het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
 
 
 
 
 
244
 
245
- #: admin.inc.php:294
246
  msgid "Use default thumbnail? "
247
  msgstr ""
248
 
249
- #: admin.inc.php:295
250
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
 
 
251
  msgstr ""
252
 
253
- #: admin.inc.php:297
254
  msgid "Default thumbnail: "
255
  msgstr ""
256
 
257
- #: admin.inc.php:298
258
  #, fuzzy
259
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
260
- msgstr "De plugin zal eerst controleren of het bericht een miniatuurafbeelding bevat, zoniet dan zal de plugin het metaveld controleren. Wanneer het geen miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals hieronder aangegeven:"
 
 
 
 
 
 
 
261
 
262
- #: admin.inc.php:304
263
  msgid "Custom Styles"
264
  msgstr ""
265
 
266
- #: admin.inc.php:307
267
  msgid "Custom CSS to add to header:"
268
  msgstr ""
269
 
270
- #: admin.inc.php:310
271
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
 
 
 
272
  msgstr ""
273
 
274
- #: admin.inc.php:314
275
  #, fuzzy
276
  msgid "Save Options"
277
  msgstr "Opties:"
278
 
279
- #: admin.inc.php:315
280
  #, fuzzy
281
  msgid "Default Options"
282
  msgstr "Output Opties:"
283
 
284
- #: admin.inc.php:315
285
  msgid "Do you want to set options to Default?"
286
  msgstr "Wil je opties terug naar standaard instellen?"
287
 
288
- #: admin.inc.php:316
289
  msgid "Recreate Index"
290
  msgstr ""
291
 
292
- #: admin.inc.php:316
293
  msgid "Are you sure you want to recreate the index?"
294
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
295
 
296
- #: admin.inc.php:346
297
  msgid "Contextual Related Posts"
298
  msgstr "Contextual Related Posts"
299
 
300
- #: admin.inc.php:346
301
- #: contextual-related-posts.php:190
302
  msgid "Related Posts"
303
  msgstr "Gerelateerde Berichten"
304
 
305
- #: admin.inc.php:355
306
  #, fuzzy
307
  msgid "plugin settings page"
308
  msgstr "plugin pagina"
309
 
310
- #: admin.inc.php:360
311
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
312
  msgstr ""
313
 
314
- #: admin.inc.php:360
315
  msgid " to configure."
316
  msgstr ""
317
 
318
- #: contextual-related-posts.php:146
319
  msgid "Powered by"
320
  msgstr "Powered by"
321
 
322
- #: contextual-related-posts.php:151
323
- #: contextual-related-posts.php:156
324
  msgid "No related posts found"
325
  msgstr "Geen gerelateerde berichten gevonden"
326
 
327
- #: contextual-related-posts.php:189
328
  #, fuzzy
329
  msgid "Display Related Posts"
330
  msgstr "Weergave \"Geen Gerelateerde Berichten\""
331
 
332
- #: contextual-related-posts.php:200
333
  msgid "Title"
334
  msgstr ""
335
 
336
- #: contextual-related-posts.php:205
337
  msgid "No. of posts"
338
  msgstr ""
339
 
340
- #: contextual-related-posts.php:209
341
  #, fuzzy
342
  msgid "Thumbnail options"
343
  msgstr "Berichtopties miniatuurafbeelding:"
344
 
345
- #: contextual-related-posts.php:211
346
  #, fuzzy
347
  msgid "Thumbnails inline, before title"
348
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
349
 
350
- #: contextual-related-posts.php:212
351
  #, fuzzy
352
  msgid "Thumbnails inline, after title"
353
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
354
 
355
- #: contextual-related-posts.php:213
356
  #, fuzzy
357
  msgid "Only thumbnails, no text"
358
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
359
 
360
- #: contextual-related-posts.php:214
361
  #, fuzzy
362
  msgid "No thumbnails, only text."
363
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
364
 
365
- #: contextual-related-posts.php:219
366
  #, fuzzy
367
  msgid " Show excerpt?"
368
  msgstr "Laat bericht uittreksel zien in lijst?"
369
 
370
- #: contextual-related-posts.php:271
371
  msgid "<h3>Related Posts:</h3>"
372
  msgstr "<h3>Gerelateerde Berichten:</h3>"
373
 
374
- #: contextual-related-posts.php:450
375
  msgid "Settings"
376
  msgstr "Instellingen"
377
 
378
- #: contextual-related-posts.php:452
379
  msgid "Donate"
380
  msgstr "Doneren"
381
 
 
 
 
 
 
 
 
382
  #~ msgid "plugin page"
383
  #~ msgstr "plugin pagina"
384
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:30-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"
9
+ "Language: nl_NL\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
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: admin.inc.php:80
21
  msgid "Options saved successfully."
22
  msgstr "Opties succesvol opgeslagen."
23
 
24
+ #: admin.inc.php:96
25
  msgid "Options set to Default."
26
  msgstr "Opties ingesteld op standaard."
27
 
28
+ #: admin.inc.php:111
29
  msgid "Index recreated"
30
  msgstr "Index opnieuw gemaakt"
31
 
32
+ #: admin.inc.php:124
33
  msgid "Support the development"
34
  msgstr "Ondersteun de ontwikkeling"
35
 
36
+ #: admin.inc.php:132
37
  msgid "Enter amount in USD: "
38
  msgstr "Voer het bedrag in USD in:"
39
 
40
+ #: admin.inc.php:136
41
  msgid "Send your donation to the author of"
42
  msgstr "Stuur je donatie aan de auteur van"
43
 
44
+ #: admin.inc.php:145
45
  #, fuzzy
46
  msgid "Quick Links"
47
  msgstr "Quick links"
48
 
49
+ #: admin.inc.php:147
50
  #, fuzzy
51
  msgid "Contextual Related Posts plugin page"
52
  msgstr "Contextual Related Posts "
53
 
54
+ #: admin.inc.php:148
55
  msgid "Other plugins"
56
  msgstr "Andere plugins"
57
 
58
+ #: admin.inc.php:149
59
  msgid "Ajay's blog"
60
  msgstr "Ajay's blog"
61
 
62
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
63
  msgid "Support"
64
  msgstr "Ondersteuning"
65
 
66
+ #: admin.inc.php:151
67
+ msgid "Reviews"
68
+ msgstr ""
69
+
70
+ #: admin.inc.php:152
71
  msgid "Follow @ajaydsouza on Twitter"
72
  msgstr "Volg @ajaydsouza via Twitter"
73
 
74
+ #: admin.inc.php:156
75
  msgid "Recent developments"
76
  msgstr "Recente ontwikkelingen"
77
 
78
+ #: admin.inc.php:168
79
  msgid "General options"
80
  msgstr ""
81
 
82
+ #: admin.inc.php:171
83
  msgid "Number of related posts to display: "
84
  msgstr "Aantal weer te geven gerelateerde berichten:"
85
 
86
+ #: admin.inc.php:174
87
+ msgid "Related posts should be newer than:"
88
+ msgstr ""
89
+
90
+ #: admin.inc.php:175
91
+ msgid "days"
92
+ msgstr ""
93
+
94
+ #: admin.inc.php:177
95
  msgid "Post types to include in results (including custom post types)"
96
  msgstr ""
97
 
98
+ #: admin.inc.php:188
99
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
100
  msgstr ""
101
 
102
+ #: admin.inc.php:191
103
  msgid "Find related posts based on content as well as title"
104
  msgstr ""
105
 
106
+ #: admin.inc.php:192
107
  #, fuzzy
108
+ msgid ""
109
+ "If unchecked, only posts titles are used. (I recommend using a caching "
110
+ "plugin if you enable this)"
111
+ msgstr ""
112
+ "Vind gerelateerde berichten gebaseerd op zowel content als titel. Indien "
113
+ "niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
114
+ "gebruik van een caching plugin aan wanneer je dit inschakelt)"
115
 
116
+ #: admin.inc.php:194
117
  msgid "List of post or page IDs to exclude from the results: "
118
  msgstr ""
119
 
120
+ #: admin.inc.php:197
121
+ msgid "Categories to exclude from the results: "
 
 
 
 
122
  msgstr ""
123
 
124
+ #: admin.inc.php:215
 
125
  #, fuzzy
126
+ msgid "Add related posts to:"
 
 
 
 
 
127
  msgstr "Voeg gerelateerde berichten toe aan feed"
128
 
129
+ #: admin.inc.php:217
130
+ msgid "Posts"
131
+ msgstr ""
132
+
133
+ #: admin.inc.php:218
134
+ msgid "Pages"
135
+ msgstr ""
136
+
137
+ #: admin.inc.php:219
138
+ msgid "Home page"
139
+ msgstr ""
140
+
141
+ #: admin.inc.php:220
142
+ msgid "Feeds"
143
+ msgstr ""
144
+
145
+ #: admin.inc.php:221
146
+ msgid "Category archives"
147
+ msgstr ""
148
+
149
+ #: admin.inc.php:222
150
+ msgid "Tag archives"
151
+ msgstr ""
152
+
153
+ #: admin.inc.php:223
154
+ msgid "Other archives"
155
+ msgstr ""
156
+
157
+ #: admin.inc.php:224
158
+ #, fuzzy
159
+ msgid ""
160
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
161
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
162
+ "you want it displayed"
163
+ msgstr ""
164
+ "Voeg gerelateerde berichten toe aan pagina's. <br />Wanneer je ervoor kiest "
165
+ "om dit uit te zetten moet je de code <code>&lt;?php if(function_exists"
166
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> toevoegen aan je sjabloon "
167
+ "bestand waar je het wilt laten weergeven"
168
 
169
+ #: admin.inc.php:227
170
  msgid "Add a link to the plugin page as a final item in the list"
171
  msgstr ""
172
 
173
+ #: admin.inc.php:228
174
  msgid " <em>Optional</em>"
175
  msgstr ""
176
 
177
+ #: admin.inc.php:236
178
  #, fuzzy
179
  msgid "Output Options"
180
  msgstr "Output Opties:"
181
 
182
+ #: admin.inc.php:239
183
  msgid "Title of related posts: "
184
  msgstr "Titel van gerelateerde berichten:"
185
 
186
+ #: admin.inc.php:242
187
  msgid "When there are no posts, what should be shown?"
188
  msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
189
 
190
+ #: admin.inc.php:246
191
  msgid "Blank Output"
192
  msgstr "Lege Output"
193
 
194
+ #: admin.inc.php:250
195
  msgid "Display \"No Related Posts\""
196
  msgstr "Weergave \"Geen Gerelateerde Berichten\""
197
 
198
+ #: admin.inc.php:254
199
  msgid "Show post excerpt in list?"
200
  msgstr "Laat bericht uittreksel zien in lijst?"
201
 
202
+ #: admin.inc.php:257
203
  msgid "Length of excerpt (in words): "
204
  msgstr "Lengte van uittreksel (in woorden):"
205
 
206
+ #: admin.inc.php:260
207
+ msgid "Limit post title length (in characters)"
208
+ msgstr ""
209
+
210
+ #: admin.inc.php:263
211
+ msgid ""
212
+ "Exclude display of related posts on these posts / pages (Enter comma "
213
+ "separated list of IDs): "
214
+ msgstr ""
215
+
216
+ #: admin.inc.php:266
217
  msgid "Customize the output:"
218
  msgstr "Aanpassen van de output:"
219
 
220
+ #: admin.inc.php:268
221
  msgid "HTML to display before the list of posts: "
222
  msgstr "Weer te geven HTML voor de berichtenlijst:"
223
 
224
+ #: admin.inc.php:271
225
  msgid "HTML to display before each list item: "
226
  msgstr "Weer te geven HTML voor elk item in de lijst:"
227
 
228
+ #: admin.inc.php:274
229
  msgid "HTML to display after each list item: "
230
  msgstr "Weer te geven HTML na elk item in de lijst:"
231
 
232
+ #: admin.inc.php:277
233
  msgid "HTML to display after the list of posts: "
234
  msgstr "Weer te geven HTML na de berichtenlijst:"
235
 
236
+ #: admin.inc.php:280
237
  msgid "Post thumbnail options:"
238
  msgstr "Berichtopties miniatuurafbeelding:"
239
 
240
+ #: admin.inc.php:282
241
  msgid "Location of post thumbnail:"
242
  msgstr ""
243
 
244
+ #: admin.inc.php:286
245
  #, fuzzy
246
  msgid "Display thumbnails inline with posts, before title"
247
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
248
 
249
+ #: admin.inc.php:290
250
  #, fuzzy
251
  msgid "Display thumbnails inline with posts, after title"
252
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
253
 
254
+ #: admin.inc.php:294
255
  msgid "Display only thumbnails, no text"
256
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
257
 
258
+ #: admin.inc.php:298
259
  msgid "Do not display thumbnails, only text."
260
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
261
 
262
+ #: admin.inc.php:302
263
  msgid "Maximum width of the thumbnail: "
264
  msgstr ""
265
 
266
+ #: admin.inc.php:305
267
  msgid "Maximum height of the thumbnail: "
268
  msgstr ""
269
 
270
+ #: admin.inc.php:308
271
  msgid "Use timthumb to generate thumbnails? "
272
  msgstr ""
273
 
274
+ #: admin.inc.php:309
275
+ msgid ""
276
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
277
+ "\">timthumb</a> will be used to generate thumbnails"
278
  msgstr ""
279
 
280
+ #: admin.inc.php:311
281
  #, fuzzy
282
  msgid "Post thumbnail meta field name: "
283
  msgstr "Berichtopties miniatuurafbeelding:"
284
 
285
+ #: admin.inc.php:312
286
+ msgid ""
287
+ "The value of this field should contain the image source and is set in the "
288
+ "<em>Add New Post</em> screen"
289
  msgstr ""
290
 
291
+ #: admin.inc.php:314
292
  #, fuzzy
293
+ msgid ""
294
+ "If the postmeta is not set, then should the plugin extract the first image "
295
+ "from the post?"
296
+ msgstr ""
297
+ "Als de postmeta niet is ingesteld moet de plugin de eerste afbeelding van "
298
+ "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
299
+ "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
300
 
301
+ #: admin.inc.php:315
302
  #, fuzzy
303
+ msgid ""
304
+ "This can slow down the loading of your page if the first image in the "
305
+ "related posts is large in file-size"
306
+ msgstr ""
307
+ "Als de postmeta niet is ingesteld moet de plugin de eerste afbeelding van "
308
+ "het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
309
+ "het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
310
 
311
+ #: admin.inc.php:317
312
  msgid "Use default thumbnail? "
313
  msgstr ""
314
 
315
+ #: admin.inc.php:318
316
+ msgid ""
317
+ "If checked, when no thumbnail is found, show a default one from the URL "
318
+ "below. If not checked and no thumbnail is found, no image will be shown."
319
  msgstr ""
320
 
321
+ #: admin.inc.php:320
322
  msgid "Default thumbnail: "
323
  msgstr ""
324
 
325
+ #: admin.inc.php:321
326
  #, fuzzy
327
+ msgid ""
328
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
329
+ "then it will check the meta field. If this is not available, then it will "
330
+ "show the default image as specified above"
331
+ msgstr ""
332
+ "De plugin zal eerst controleren of het bericht een miniatuurafbeelding "
333
+ "bevat, zoniet dan zal de plugin het metaveld controleren. Wanneer het geen "
334
+ "miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
335
+ "hieronder aangegeven:"
336
 
337
+ #: admin.inc.php:327
338
  msgid "Custom Styles"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:330
342
  msgid "Custom CSS to add to header:"
343
  msgstr ""
344
 
345
+ #: admin.inc.php:333
346
+ msgid ""
347
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
348
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
349
+ "\">FAQ</a> for available CSS classes to style."
350
  msgstr ""
351
 
352
+ #: admin.inc.php:337
353
  #, fuzzy
354
  msgid "Save Options"
355
  msgstr "Opties:"
356
 
357
+ #: admin.inc.php:338
358
  #, fuzzy
359
  msgid "Default Options"
360
  msgstr "Output Opties:"
361
 
362
+ #: admin.inc.php:338
363
  msgid "Do you want to set options to Default?"
364
  msgstr "Wil je opties terug naar standaard instellen?"
365
 
366
+ #: admin.inc.php:339
367
  msgid "Recreate Index"
368
  msgstr ""
369
 
370
+ #: admin.inc.php:339
371
  msgid "Are you sure you want to recreate the index?"
372
  msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
373
 
374
+ #: admin.inc.php:369
375
  msgid "Contextual Related Posts"
376
  msgstr "Contextual Related Posts"
377
 
378
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
379
  msgid "Related Posts"
380
  msgstr "Gerelateerde Berichten"
381
 
382
+ #: admin.inc.php:378
383
  #, fuzzy
384
  msgid "plugin settings page"
385
  msgstr "plugin pagina"
386
 
387
+ #: admin.inc.php:383
388
+ msgid ""
389
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
390
+ "visit the "
391
  msgstr ""
392
 
393
+ #: admin.inc.php:383
394
  msgid " to configure."
395
  msgstr ""
396
 
397
+ #: contextual-related-posts.php:152
398
  msgid "Powered by"
399
  msgstr "Powered by"
400
 
401
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
402
  msgid "No related posts found"
403
  msgstr "Geen gerelateerde berichten gevonden"
404
 
405
+ #: contextual-related-posts.php:221
406
  #, fuzzy
407
  msgid "Display Related Posts"
408
  msgstr "Weergave \"Geen Gerelateerde Berichten\""
409
 
410
+ #: contextual-related-posts.php:232
411
  msgid "Title"
412
  msgstr ""
413
 
414
+ #: contextual-related-posts.php:237
415
  msgid "No. of posts"
416
  msgstr ""
417
 
418
+ #: contextual-related-posts.php:241
419
  #, fuzzy
420
  msgid "Thumbnail options"
421
  msgstr "Berichtopties miniatuurafbeelding:"
422
 
423
+ #: contextual-related-posts.php:243
424
  #, fuzzy
425
  msgid "Thumbnails inline, before title"
426
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
427
 
428
+ #: contextual-related-posts.php:244
429
  #, fuzzy
430
  msgid "Thumbnails inline, after title"
431
  msgstr "Toon miniatuurafbeeldingen inline met berichten"
432
 
433
+ #: contextual-related-posts.php:245
434
  #, fuzzy
435
  msgid "Only thumbnails, no text"
436
  msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
437
 
438
+ #: contextual-related-posts.php:246
439
  #, fuzzy
440
  msgid "No thumbnails, only text."
441
  msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
442
 
443
+ #: contextual-related-posts.php:251
444
  #, fuzzy
445
  msgid " Show excerpt?"
446
  msgstr "Laat bericht uittreksel zien in lijst?"
447
 
448
+ #: contextual-related-posts.php:301
449
  msgid "<h3>Related Posts:</h3>"
450
  msgstr "<h3>Gerelateerde Berichten:</h3>"
451
 
452
+ #: contextual-related-posts.php:520
453
  msgid "Settings"
454
  msgstr "Instellingen"
455
 
456
+ #: contextual-related-posts.php:522
457
  msgid "Donate"
458
  msgstr "Doneren"
459
 
460
+ #~ msgid "Exclude Categories: "
461
+ #~ msgstr "Uitsluiten Categorieën"
462
+
463
+ #, fuzzy
464
+ #~ msgid "Add related posts to pages"
465
+ #~ msgstr "Voeg gerelateerde berichten toe aan feed"
466
+
467
  #~ msgid "plugin page"
468
  #~ msgstr "plugin pagina"
469
 
languages/crp-ru_RU.mo CHANGED
Binary file
languages/crp-ru_RU.po CHANGED
@@ -2,381 +2,464 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:19-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
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Russian\n"
13
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
14
  "X-Poedit-Basepath: ../\n"
15
- "X-Poedit-Country: RUSSIAN FEDERATION\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:70
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
- #: admin.inc.php:86
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
- #: admin.inc.php:101
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
- #: admin.inc.php:114
31
  msgid "Support the development"
32
  msgstr "Поддержка развития проекта"
33
 
34
- #: admin.inc.php:122
35
  msgid "Enter amount in USD: "
36
  msgstr "Введите сумму в долларах США:"
37
 
38
- #: admin.inc.php:126
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
- #: admin.inc.php:135
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Быстрые ссылки"
46
 
47
- #: admin.inc.php:137
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Контекстные похожие посты"
51
 
52
- #: admin.inc.php:138
53
  msgid "Other plugins"
54
  msgstr "Другие плагины"
55
 
56
- #: admin.inc.php:139
57
  msgid "Ajay's blog"
58
  msgstr "Блог автора (Ajay, английский язык)"
59
 
60
- #: admin.inc.php:140
61
- #: contextual-related-posts.php:451
62
  msgid "Support"
63
  msgstr "Поддержка"
64
 
65
- #: admin.inc.php:141
 
 
 
 
66
  msgid "Follow @ajaydsouza on Twitter"
67
  msgstr "Следовать @ajaydsouza на Твиттере"
68
 
69
- #: admin.inc.php:145
70
  msgid "Recent developments"
71
  msgstr "Последние разработки"
72
 
73
- #: admin.inc.php:157
74
  msgid "General options"
75
  msgstr ""
76
 
77
- #: admin.inc.php:160
78
  msgid "Number of related posts to display: "
79
  msgstr "Количество отображаемых похожих постов:"
80
 
81
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
82
  msgid "Post types to include in results (including custom post types)"
83
  msgstr ""
84
 
85
- #: admin.inc.php:174
86
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
87
  msgstr ""
88
 
89
- #: admin.inc.php:177
90
  msgid "Find related posts based on content as well as title"
91
  msgstr ""
92
 
93
- #: admin.inc.php:178
94
  #, fuzzy
95
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
96
- msgstr "Найти связанные сообщения в зависимости от содержания и заголовка. Если вы не выберете эту опцию, то для поиска будут использоваться только заголовки сообщений. (Я рекомендую использовать плагин кэширования, если вы включите опцию)"
 
 
 
 
 
 
97
 
98
- #: admin.inc.php:180
99
  msgid "List of post or page IDs to exclude from the results: "
100
  msgstr ""
101
 
102
- #: admin.inc.php:183
103
- msgid "Exclude Categories: "
104
- msgstr "Исключить категории:"
105
-
106
- #: admin.inc.php:201
107
- msgid "Add related posts to the post content on single posts"
108
  msgstr ""
109
 
110
- #: admin.inc.php:202
111
- #: admin.inc.php:205
112
  #, fuzzy
113
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
114
- msgstr "Показывать связанные посты на страницах. <br />Если вы захотите отключить эту опцию, пожалуйста, добавьте код: <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на вашем сайте"
115
-
116
- #: admin.inc.php:204
117
- #, fuzzy
118
- msgid "Add related posts to pages"
119
  msgstr "Добавить похожие посты в фид"
120
 
121
- #: admin.inc.php:207
122
- msgid "Add related posts to feed"
123
- msgstr "Добавить похожие посты в фид"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
124
 
125
- #: admin.inc.php:210
126
  msgid "Add a link to the plugin page as a final item in the list"
127
  msgstr ""
128
 
129
- #: admin.inc.php:211
130
  msgid " <em>Optional</em>"
131
  msgstr ""
132
 
133
- #: admin.inc.php:219
134
  #, fuzzy
135
  msgid "Output Options"
136
  msgstr "Опции вывода:"
137
 
138
- #: admin.inc.php:222
139
  msgid "Title of related posts: "
140
  msgstr "Названия связанных постов:"
141
 
142
- #: admin.inc.php:225
143
  msgid "When there are no posts, what should be shown?"
144
  msgstr "Когда нет сообщений, что должно быть показано?"
145
 
146
- #: admin.inc.php:229
147
  msgid "Blank Output"
148
  msgstr "Пустой выход"
149
 
150
- #: admin.inc.php:233
151
  msgid "Display \"No Related Posts\""
152
  msgstr "Показывать \"Нет похожих постов\""
153
 
154
- #: admin.inc.php:237
155
  msgid "Show post excerpt in list?"
156
  msgstr "Показать выдержки из поста в списке?"
157
 
158
- #: admin.inc.php:240
159
  msgid "Length of excerpt (in words): "
160
  msgstr "Длина выдержки (в словах):"
161
 
162
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
163
  msgid "Customize the output:"
164
  msgstr "Настройки выхода:"
165
 
166
- #: admin.inc.php:245
167
  msgid "HTML to display before the list of posts: "
168
  msgstr "HTML для показа перед списком сообщений: "
169
 
170
- #: admin.inc.php:248
171
  msgid "HTML to display before each list item: "
172
  msgstr "HTML для показа перед каждым элементом списка: "
173
 
174
- #: admin.inc.php:251
175
  msgid "HTML to display after each list item: "
176
  msgstr "HTML для отображения после каждого элемента списка: "
177
 
178
- #: admin.inc.php:254
179
  msgid "HTML to display after the list of posts: "
180
  msgstr "HTML для отображения после списка сообщений: "
181
 
182
- #: admin.inc.php:257
183
  msgid "Post thumbnail options:"
184
  msgstr "Опции изображения поста:"
185
 
186
- #: admin.inc.php:259
187
  msgid "Location of post thumbnail:"
188
  msgstr ""
189
 
190
- #: admin.inc.php:263
191
  #, fuzzy
192
  msgid "Display thumbnails inline with posts, before title"
193
  msgstr "Показать эскизы в соответствии с сообщениями"
194
 
195
- #: admin.inc.php:267
196
  #, fuzzy
197
  msgid "Display thumbnails inline with posts, after title"
198
  msgstr "Показать эскизы в соответствии с сообщениями"
199
 
200
- #: admin.inc.php:271
201
  msgid "Display only thumbnails, no text"
202
  msgstr "Показывать только изображения, без текста"
203
 
204
- #: admin.inc.php:275
205
  msgid "Do not display thumbnails, only text."
206
  msgstr "Не показывать изображения, только текст"
207
 
208
- #: admin.inc.php:279
209
  msgid "Maximum width of the thumbnail: "
210
  msgstr ""
211
 
212
- #: admin.inc.php:282
213
  msgid "Maximum height of the thumbnail: "
214
  msgstr ""
215
 
216
- #: admin.inc.php:285
217
  msgid "Use timthumb to generate thumbnails? "
218
  msgstr ""
219
 
220
- #: admin.inc.php:286
221
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
 
 
222
  msgstr ""
223
 
224
- #: admin.inc.php:288
225
  #, fuzzy
226
  msgid "Post thumbnail meta field name: "
227
  msgstr "Опции изображения поста:"
228
 
229
- #: admin.inc.php:289
230
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
231
  msgstr ""
232
 
233
- #: admin.inc.php:291
234
  #, fuzzy
235
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
236
- msgstr "Если postmeta не установлен, то плагин скачает первое изображение поста. Это может замедлить загрузку сообщения (если изображение слишком велико)"
 
 
 
 
237
 
238
- #: admin.inc.php:292
239
  #, fuzzy
240
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
241
- msgstr "Если postmeta не установлен, то плагин скачает первое изображение поста. Это может замедлить загрузку сообщения (если изображение слишком велико)"
 
 
 
 
242
 
243
- #: admin.inc.php:294
244
  msgid "Use default thumbnail? "
245
  msgstr ""
246
 
247
- #: admin.inc.php:295
248
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
 
 
249
  msgstr ""
250
 
251
- #: admin.inc.php:297
252
  msgid "Default thumbnail: "
253
  msgstr ""
254
 
255
- #: admin.inc.php:298
256
  #, fuzzy
257
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
258
- msgstr "Плагин сначала проверит, содержит ли пост миниатюры. Если они не обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то плагин будет показывать изображение по умолчанию, как указано ниже:"
 
 
 
 
 
 
259
 
260
- #: admin.inc.php:304
261
  msgid "Custom Styles"
262
  msgstr ""
263
 
264
- #: admin.inc.php:307
265
  msgid "Custom CSS to add to header:"
266
  msgstr ""
267
 
268
- #: admin.inc.php:310
269
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
 
 
 
270
  msgstr ""
271
 
272
- #: admin.inc.php:314
273
  #, fuzzy
274
  msgid "Save Options"
275
  msgstr "Опции:"
276
 
277
- #: admin.inc.php:315
278
  #, fuzzy
279
  msgid "Default Options"
280
  msgstr "Опции вывода:"
281
 
282
- #: admin.inc.php:315
283
  msgid "Do you want to set options to Default?"
284
  msgstr "Вы хотите задать параметры по умолчанию?"
285
 
286
- #: admin.inc.php:316
287
  msgid "Recreate Index"
288
  msgstr ""
289
 
290
- #: admin.inc.php:316
291
  msgid "Are you sure you want to recreate the index?"
292
  msgstr "Вы уверены, что хотите воссоздать индекс?"
293
 
294
- #: admin.inc.php:346
295
  msgid "Contextual Related Posts"
296
  msgstr "Контекстные похожие посты"
297
 
298
- #: admin.inc.php:346
299
- #: contextual-related-posts.php:190
300
  msgid "Related Posts"
301
  msgstr "Похожие посты"
302
 
303
- #: admin.inc.php:355
304
  #, fuzzy
305
  msgid "plugin settings page"
306
  msgstr "Страница плагина"
307
 
308
- #: admin.inc.php:360
309
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
310
  msgstr ""
311
 
312
- #: admin.inc.php:360
313
  msgid " to configure."
314
  msgstr ""
315
 
316
- #: contextual-related-posts.php:146
317
  msgid "Powered by"
318
  msgstr "Автор:"
319
 
320
- #: contextual-related-posts.php:151
321
- #: contextual-related-posts.php:156
322
  msgid "No related posts found"
323
  msgstr "Не найдены похожие посты"
324
 
325
- #: contextual-related-posts.php:189
326
  #, fuzzy
327
  msgid "Display Related Posts"
328
  msgstr "Показывать \"Нет похожих постов\""
329
 
330
- #: contextual-related-posts.php:200
331
  msgid "Title"
332
  msgstr ""
333
 
334
- #: contextual-related-posts.php:205
335
  msgid "No. of posts"
336
  msgstr ""
337
 
338
- #: contextual-related-posts.php:209
339
  #, fuzzy
340
  msgid "Thumbnail options"
341
  msgstr "Опции изображения поста:"
342
 
343
- #: contextual-related-posts.php:211
344
  #, fuzzy
345
  msgid "Thumbnails inline, before title"
346
  msgstr "Показать эскизы в соответствии с сообщениями"
347
 
348
- #: contextual-related-posts.php:212
349
  #, fuzzy
350
  msgid "Thumbnails inline, after title"
351
  msgstr "Показать эскизы в соответствии с сообщениями"
352
 
353
- #: contextual-related-posts.php:213
354
  #, fuzzy
355
  msgid "Only thumbnails, no text"
356
  msgstr "Показывать только изображения, без текста"
357
 
358
- #: contextual-related-posts.php:214
359
  #, fuzzy
360
  msgid "No thumbnails, only text."
361
  msgstr "Не показывать изображения, только текст"
362
 
363
- #: contextual-related-posts.php:219
364
  #, fuzzy
365
  msgid " Show excerpt?"
366
  msgstr "Показать выдержки из поста в списке?"
367
 
368
- #: contextual-related-posts.php:271
369
  msgid "<h3>Related Posts:</h3>"
370
  msgstr "<h3>Похожие посты:</h3>"
371
 
372
- #: contextual-related-posts.php:450
373
  msgid "Settings"
374
  msgstr "Настройки"
375
 
376
- #: contextual-related-posts.php:452
377
  msgid "Donate"
378
  msgstr "Пожертвование"
379
 
 
 
 
 
 
 
 
380
  #~ msgid "plugin page"
381
  #~ msgstr "Страница плагина"
382
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:30-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.4\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:80
19
  msgid "Options saved successfully."
20
  msgstr "Настройки сохранены успешно."
21
 
22
+ #: admin.inc.php:96
23
  msgid "Options set to Default."
24
  msgstr "Опции возвращены к стандартным"
25
 
26
+ #: admin.inc.php:111
27
  msgid "Index recreated"
28
  msgstr "Индекс воссоздан"
29
 
30
+ #: admin.inc.php:124
31
  msgid "Support the development"
32
  msgstr "Поддержка развития проекта"
33
 
34
+ #: admin.inc.php:132
35
  msgid "Enter amount in USD: "
36
  msgstr "Введите сумму в долларах США:"
37
 
38
+ #: admin.inc.php:136
39
  msgid "Send your donation to the author of"
40
  msgstr "Отправить пожертвование автору"
41
 
42
+ #: admin.inc.php:145
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "Быстрые ссылки"
46
 
47
+ #: admin.inc.php:147
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "Контекстные похожие посты"
51
 
52
+ #: admin.inc.php:148
53
  msgid "Other plugins"
54
  msgstr "Другие плагины"
55
 
56
+ #: admin.inc.php:149
57
  msgid "Ajay's blog"
58
  msgstr "Блог автора (Ajay, английский язык)"
59
 
60
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
61
  msgid "Support"
62
  msgstr "Поддержка"
63
 
64
+ #: admin.inc.php:151
65
+ msgid "Reviews"
66
+ msgstr ""
67
+
68
+ #: admin.inc.php:152
69
  msgid "Follow @ajaydsouza on Twitter"
70
  msgstr "Следовать @ajaydsouza на Твиттере"
71
 
72
+ #: admin.inc.php:156
73
  msgid "Recent developments"
74
  msgstr "Последние разработки"
75
 
76
+ #: admin.inc.php:168
77
  msgid "General options"
78
  msgstr ""
79
 
80
+ #: admin.inc.php:171
81
  msgid "Number of related posts to display: "
82
  msgstr "Количество отображаемых похожих постов:"
83
 
84
+ #: admin.inc.php:174
85
+ msgid "Related posts should be newer than:"
86
+ msgstr ""
87
+
88
+ #: admin.inc.php:175
89
+ msgid "days"
90
+ msgstr ""
91
+
92
+ #: admin.inc.php:177
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr ""
95
 
96
+ #: admin.inc.php:188
97
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
98
  msgstr ""
99
 
100
+ #: admin.inc.php:191
101
  msgid "Find related posts based on content as well as title"
102
  msgstr ""
103
 
104
+ #: admin.inc.php:192
105
  #, fuzzy
106
+ msgid ""
107
+ "If unchecked, only posts titles are used. (I recommend using a caching "
108
+ "plugin if you enable this)"
109
+ msgstr ""
110
+ "Найти связанные сообщения в зависимости от содержания и заголовка. Если вы "
111
+ "не выберете эту опцию, то для поиска будут использоваться только заголовки "
112
+ "сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
113
+ "опцию)"
114
 
115
+ #: admin.inc.php:194
116
  msgid "List of post or page IDs to exclude from the results: "
117
  msgstr ""
118
 
119
+ #: admin.inc.php:197
120
+ msgid "Categories to exclude from the results: "
 
 
 
 
121
  msgstr ""
122
 
123
+ #: admin.inc.php:215
 
124
  #, fuzzy
125
+ msgid "Add related posts to:"
 
 
 
 
 
126
  msgstr "Добавить похожие посты в фид"
127
 
128
+ #: admin.inc.php:217
129
+ msgid "Posts"
130
+ msgstr ""
131
+
132
+ #: admin.inc.php:218
133
+ msgid "Pages"
134
+ msgstr ""
135
+
136
+ #: admin.inc.php:219
137
+ msgid "Home page"
138
+ msgstr ""
139
+
140
+ #: admin.inc.php:220
141
+ msgid "Feeds"
142
+ msgstr ""
143
+
144
+ #: admin.inc.php:221
145
+ msgid "Category archives"
146
+ msgstr ""
147
+
148
+ #: admin.inc.php:222
149
+ msgid "Tag archives"
150
+ msgstr ""
151
+
152
+ #: admin.inc.php:223
153
+ msgid "Other archives"
154
+ msgstr ""
155
+
156
+ #: admin.inc.php:224
157
+ #, fuzzy
158
+ msgid ""
159
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
160
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
161
+ "you want it displayed"
162
+ msgstr ""
163
+ "Показывать связанные посты на страницах. <br />Если вы захотите отключить "
164
+ "эту опцию, пожалуйста, добавьте код: <code>&lt;?php if(function_exists"
165
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>, в отображаемый шаблон на "
166
+ "вашем сайте"
167
 
168
+ #: admin.inc.php:227
169
  msgid "Add a link to the plugin page as a final item in the list"
170
  msgstr ""
171
 
172
+ #: admin.inc.php:228
173
  msgid " <em>Optional</em>"
174
  msgstr ""
175
 
176
+ #: admin.inc.php:236
177
  #, fuzzy
178
  msgid "Output Options"
179
  msgstr "Опции вывода:"
180
 
181
+ #: admin.inc.php:239
182
  msgid "Title of related posts: "
183
  msgstr "Названия связанных постов:"
184
 
185
+ #: admin.inc.php:242
186
  msgid "When there are no posts, what should be shown?"
187
  msgstr "Когда нет сообщений, что должно быть показано?"
188
 
189
+ #: admin.inc.php:246
190
  msgid "Blank Output"
191
  msgstr "Пустой выход"
192
 
193
+ #: admin.inc.php:250
194
  msgid "Display \"No Related Posts\""
195
  msgstr "Показывать \"Нет похожих постов\""
196
 
197
+ #: admin.inc.php:254
198
  msgid "Show post excerpt in list?"
199
  msgstr "Показать выдержки из поста в списке?"
200
 
201
+ #: admin.inc.php:257
202
  msgid "Length of excerpt (in words): "
203
  msgstr "Длина выдержки (в словах):"
204
 
205
+ #: admin.inc.php:260
206
+ msgid "Limit post title length (in characters)"
207
+ msgstr ""
208
+
209
+ #: admin.inc.php:263
210
+ msgid ""
211
+ "Exclude display of related posts on these posts / pages (Enter comma "
212
+ "separated list of IDs): "
213
+ msgstr ""
214
+
215
+ #: admin.inc.php:266
216
  msgid "Customize the output:"
217
  msgstr "Настройки выхода:"
218
 
219
+ #: admin.inc.php:268
220
  msgid "HTML to display before the list of posts: "
221
  msgstr "HTML для показа перед списком сообщений: "
222
 
223
+ #: admin.inc.php:271
224
  msgid "HTML to display before each list item: "
225
  msgstr "HTML для показа перед каждым элементом списка: "
226
 
227
+ #: admin.inc.php:274
228
  msgid "HTML to display after each list item: "
229
  msgstr "HTML для отображения после каждого элемента списка: "
230
 
231
+ #: admin.inc.php:277
232
  msgid "HTML to display after the list of posts: "
233
  msgstr "HTML для отображения после списка сообщений: "
234
 
235
+ #: admin.inc.php:280
236
  msgid "Post thumbnail options:"
237
  msgstr "Опции изображения поста:"
238
 
239
+ #: admin.inc.php:282
240
  msgid "Location of post thumbnail:"
241
  msgstr ""
242
 
243
+ #: admin.inc.php:286
244
  #, fuzzy
245
  msgid "Display thumbnails inline with posts, before title"
246
  msgstr "Показать эскизы в соответствии с сообщениями"
247
 
248
+ #: admin.inc.php:290
249
  #, fuzzy
250
  msgid "Display thumbnails inline with posts, after title"
251
  msgstr "Показать эскизы в соответствии с сообщениями"
252
 
253
+ #: admin.inc.php:294
254
  msgid "Display only thumbnails, no text"
255
  msgstr "Показывать только изображения, без текста"
256
 
257
+ #: admin.inc.php:298
258
  msgid "Do not display thumbnails, only text."
259
  msgstr "Не показывать изображения, только текст"
260
 
261
+ #: admin.inc.php:302
262
  msgid "Maximum width of the thumbnail: "
263
  msgstr ""
264
 
265
+ #: admin.inc.php:305
266
  msgid "Maximum height of the thumbnail: "
267
  msgstr ""
268
 
269
+ #: admin.inc.php:308
270
  msgid "Use timthumb to generate thumbnails? "
271
  msgstr ""
272
 
273
+ #: admin.inc.php:309
274
+ msgid ""
275
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
276
+ "\">timthumb</a> will be used to generate thumbnails"
277
  msgstr ""
278
 
279
+ #: admin.inc.php:311
280
  #, fuzzy
281
  msgid "Post thumbnail meta field name: "
282
  msgstr "Опции изображения поста:"
283
 
284
+ #: admin.inc.php:312
285
+ msgid ""
286
+ "The value of this field should contain the image source and is set in the "
287
+ "<em>Add New Post</em> screen"
288
  msgstr ""
289
 
290
+ #: admin.inc.php:314
291
  #, fuzzy
292
+ msgid ""
293
+ "If the postmeta is not set, then should the plugin extract the first image "
294
+ "from the post?"
295
+ msgstr ""
296
+ "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
297
+ "может замедлить загрузку сообщения (если изображение слишком велико)"
298
 
299
+ #: admin.inc.php:315
300
  #, fuzzy
301
+ msgid ""
302
+ "This can slow down the loading of your page if the first image in the "
303
+ "related posts is large in file-size"
304
+ msgstr ""
305
+ "Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
306
+ "может замедлить загрузку сообщения (если изображение слишком велико)"
307
 
308
+ #: admin.inc.php:317
309
  msgid "Use default thumbnail? "
310
  msgstr ""
311
 
312
+ #: admin.inc.php:318
313
+ msgid ""
314
+ "If checked, when no thumbnail is found, show a default one from the URL "
315
+ "below. If not checked and no thumbnail is found, no image will be shown."
316
  msgstr ""
317
 
318
+ #: admin.inc.php:320
319
  msgid "Default thumbnail: "
320
  msgstr ""
321
 
322
+ #: admin.inc.php:321
323
  #, fuzzy
324
+ msgid ""
325
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
326
+ "then it will check the meta field. If this is not available, then it will "
327
+ "show the default image as specified above"
328
+ msgstr ""
329
+ "Плагин сначала проверит, содержит ли пост миниатюры. Если они не "
330
+ "обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
331
+ "плагин будет показывать изображение по умолчанию, как указано ниже:"
332
 
333
+ #: admin.inc.php:327
334
  msgid "Custom Styles"
335
  msgstr ""
336
 
337
+ #: admin.inc.php:330
338
  msgid "Custom CSS to add to header:"
339
  msgstr ""
340
 
341
+ #: admin.inc.php:333
342
+ msgid ""
343
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
344
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
345
+ "\">FAQ</a> for available CSS classes to style."
346
  msgstr ""
347
 
348
+ #: admin.inc.php:337
349
  #, fuzzy
350
  msgid "Save Options"
351
  msgstr "Опции:"
352
 
353
+ #: admin.inc.php:338
354
  #, fuzzy
355
  msgid "Default Options"
356
  msgstr "Опции вывода:"
357
 
358
+ #: admin.inc.php:338
359
  msgid "Do you want to set options to Default?"
360
  msgstr "Вы хотите задать параметры по умолчанию?"
361
 
362
+ #: admin.inc.php:339
363
  msgid "Recreate Index"
364
  msgstr ""
365
 
366
+ #: admin.inc.php:339
367
  msgid "Are you sure you want to recreate the index?"
368
  msgstr "Вы уверены, что хотите воссоздать индекс?"
369
 
370
+ #: admin.inc.php:369
371
  msgid "Contextual Related Posts"
372
  msgstr "Контекстные похожие посты"
373
 
374
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
375
  msgid "Related Posts"
376
  msgstr "Похожие посты"
377
 
378
+ #: admin.inc.php:378
379
  #, fuzzy
380
  msgid "plugin settings page"
381
  msgstr "Страница плагина"
382
 
383
+ #: admin.inc.php:383
384
+ msgid ""
385
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
386
+ "visit the "
387
  msgstr ""
388
 
389
+ #: admin.inc.php:383
390
  msgid " to configure."
391
  msgstr ""
392
 
393
+ #: contextual-related-posts.php:152
394
  msgid "Powered by"
395
  msgstr "Автор:"
396
 
397
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
398
  msgid "No related posts found"
399
  msgstr "Не найдены похожие посты"
400
 
401
+ #: contextual-related-posts.php:221
402
  #, fuzzy
403
  msgid "Display Related Posts"
404
  msgstr "Показывать \"Нет похожих постов\""
405
 
406
+ #: contextual-related-posts.php:232
407
  msgid "Title"
408
  msgstr ""
409
 
410
+ #: contextual-related-posts.php:237
411
  msgid "No. of posts"
412
  msgstr ""
413
 
414
+ #: contextual-related-posts.php:241
415
  #, fuzzy
416
  msgid "Thumbnail options"
417
  msgstr "Опции изображения поста:"
418
 
419
+ #: contextual-related-posts.php:243
420
  #, fuzzy
421
  msgid "Thumbnails inline, before title"
422
  msgstr "Показать эскизы в соответствии с сообщениями"
423
 
424
+ #: contextual-related-posts.php:244
425
  #, fuzzy
426
  msgid "Thumbnails inline, after title"
427
  msgstr "Показать эскизы в соответствии с сообщениями"
428
 
429
+ #: contextual-related-posts.php:245
430
  #, fuzzy
431
  msgid "Only thumbnails, no text"
432
  msgstr "Показывать только изображения, без текста"
433
 
434
+ #: contextual-related-posts.php:246
435
  #, fuzzy
436
  msgid "No thumbnails, only text."
437
  msgstr "Не показывать изображения, только текст"
438
 
439
+ #: contextual-related-posts.php:251
440
  #, fuzzy
441
  msgid " Show excerpt?"
442
  msgstr "Показать выдержки из поста в списке?"
443
 
444
+ #: contextual-related-posts.php:301
445
  msgid "<h3>Related Posts:</h3>"
446
  msgstr "<h3>Похожие посты:</h3>"
447
 
448
+ #: contextual-related-posts.php:520
449
  msgid "Settings"
450
  msgstr "Настройки"
451
 
452
+ #: contextual-related-posts.php:522
453
  msgid "Donate"
454
  msgstr "Пожертвование"
455
 
456
+ #~ msgid "Exclude Categories: "
457
+ #~ msgstr "Исключить категории:"
458
+
459
+ #, fuzzy
460
+ #~ msgid "Add related posts to pages"
461
+ #~ msgstr "Добавить похожие посты в фид"
462
+
463
  #~ msgid "plugin page"
464
  #~ msgstr "Страница плагина"
465
 
languages/crp-zh_CN.mo CHANGED
Binary file
languages/crp-zh_CN.po CHANGED
@@ -2,361 +2,443 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-17 09:18-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
13
  "X-Poedit-Basepath: ../\n"
14
- "X-Poedit-Language: Chinese\n"
15
- "X-Poedit-Country: CHINA\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #: admin.inc.php:70
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
- #: admin.inc.php:86
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
- #: admin.inc.php:101
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
- #: admin.inc.php:114
31
  msgid "Support the development"
32
  msgstr "支持开发"
33
 
34
- #: admin.inc.php:122
35
  msgid "Enter amount in USD: "
36
  msgstr "输入美元金额:"
37
 
38
- #: admin.inc.php:126
39
  msgid "Send your donation to the author of"
40
  msgstr "捐赠给作者"
41
 
42
- #: admin.inc.php:135
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "快捷链接"
46
 
47
- #: admin.inc.php:137
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "相关日志"
51
 
52
- #: admin.inc.php:138
53
  msgid "Other plugins"
54
  msgstr "其他插件"
55
 
56
- #: admin.inc.php:139
57
  msgid "Ajay's blog"
58
  msgstr "Ajay 的博客"
59
 
60
- #: admin.inc.php:140
61
- #: contextual-related-posts.php:451
62
  msgid "Support"
63
  msgstr "技术支持"
64
 
65
- #: admin.inc.php:141
 
 
 
 
66
  msgid "Follow @ajaydsouza on Twitter"
67
  msgstr "在推特上关注 @ajaydsouza"
68
 
69
- #: admin.inc.php:145
70
  msgid "Recent developments"
71
  msgstr "最新开发"
72
 
73
- #: admin.inc.php:157
74
  msgid "General options"
75
  msgstr "一般设置"
76
 
77
- #: admin.inc.php:160
78
  msgid "Number of related posts to display: "
79
  msgstr "相关日志数量:"
80
 
81
- #: admin.inc.php:163
 
 
 
 
 
 
 
 
82
  msgid "Post types to include in results (including custom post types)"
83
  msgstr "被索引的日志类型(包含自定义日志类型)"
84
 
85
- #: admin.inc.php:174
86
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
87
  msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
88
 
89
- #: admin.inc.php:177
90
  msgid "Find related posts based on content as well as title"
91
  msgstr "根据标题和正文内容索引"
92
 
93
- #: admin.inc.php:178
94
- msgid "If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
 
 
95
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
96
 
97
- #: admin.inc.php:180
98
  msgid "List of post or page IDs to exclude from the results: "
99
  msgstr "排除的文章或页面 ID:"
100
 
101
- #: admin.inc.php:183
102
- msgid "Exclude Categories: "
103
- msgstr "排除的分类 ID:"
 
104
 
105
- #: admin.inc.php:201
106
- msgid "Add related posts to the post content on single posts"
107
- msgstr "添加相关日志到文章里"
 
108
 
109
- #: admin.inc.php:202
110
- #: admin.inc.php:205
111
- msgid "If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
112
- msgstr "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
113
 
114
- #: admin.inc.php:204
115
- msgid "Add related posts to pages"
116
- msgstr "添加相关日志到页面里"
117
 
118
- #: admin.inc.php:207
119
- msgid "Add related posts to feed"
120
- msgstr "添加相关日志到 feed 里"
 
 
 
 
 
 
 
 
121
 
122
- #: admin.inc.php:210
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  msgid "Add a link to the plugin page as a final item in the list"
124
  msgstr "在相关日志后添加插件页面的链接"
125
 
126
- #: admin.inc.php:211
127
  msgid " <em>Optional</em>"
128
  msgstr " <em>可选</em>"
129
 
130
- #: admin.inc.php:219
131
  msgid "Output Options"
132
  msgstr "显示设置"
133
 
134
- #: admin.inc.php:222
135
  msgid "Title of related posts: "
136
  msgstr "相关日志的标题:"
137
 
138
- #: admin.inc.php:225
139
  msgid "When there are no posts, what should be shown?"
140
  msgstr "当不存在相关日志时,显示什么?"
141
 
142
- #: admin.inc.php:229
143
  msgid "Blank Output"
144
  msgstr "不显示"
145
 
146
- #: admin.inc.php:233
147
  msgid "Display \"No Related Posts\""
148
  msgstr "显示 \"没有相关日志\""
149
 
150
- #: admin.inc.php:237
151
  msgid "Show post excerpt in list?"
152
  msgstr "是否显示日志摘要?"
153
 
154
- #: admin.inc.php:240
155
  msgid "Length of excerpt (in words): "
156
  msgstr "摘要长度(词数):"
157
 
158
- #: admin.inc.php:243
 
 
 
 
 
 
 
 
 
 
159
  msgid "Customize the output:"
160
  msgstr "自定义显示:"
161
 
162
- #: admin.inc.php:245
163
  msgid "HTML to display before the list of posts: "
164
  msgstr "显示在每篇日志后面的 HTML 标签:"
165
 
166
- #: admin.inc.php:248
167
  msgid "HTML to display before each list item: "
168
  msgstr "显示在每篇日志后面的 HTML 标签:"
169
 
170
- #: admin.inc.php:251
171
  msgid "HTML to display after each list item: "
172
  msgstr "显示在日志列表前面的 HTML 标签:"
173
 
174
- #: admin.inc.php:254
175
  msgid "HTML to display after the list of posts: "
176
  msgstr "显示在日志列表后面的 HTML 标签:"
177
 
178
- #: admin.inc.php:257
179
  msgid "Post thumbnail options:"
180
  msgstr "日志缩略图设置:"
181
 
182
- #: admin.inc.php:259
183
  msgid "Location of post thumbnail:"
184
  msgstr "日志缩略图位置:"
185
 
186
- #: admin.inc.php:263
187
  msgid "Display thumbnails inline with posts, before title"
188
  msgstr "在标题前显示缩略图"
189
 
190
- #: admin.inc.php:267
191
  msgid "Display thumbnails inline with posts, after title"
192
  msgstr "在标题后显示缩略图"
193
 
194
- #: admin.inc.php:271
195
  msgid "Display only thumbnails, no text"
196
  msgstr "不显示文本,只显示缩略图"
197
 
198
- #: admin.inc.php:275
199
  msgid "Do not display thumbnails, only text."
200
  msgstr "不显示缩略图,只显示文本"
201
 
202
- #: admin.inc.php:279
203
  msgid "Maximum width of the thumbnail: "
204
  msgstr "缩略图最大宽度"
205
 
206
- #: admin.inc.php:282
207
  msgid "Maximum height of the thumbnail: "
208
  msgstr "缩略图最大高度"
209
 
210
- #: admin.inc.php:285
211
  msgid "Use timthumb to generate thumbnails? "
212
  msgstr "是否使用 timthumb 生成缩略图?"
213
 
214
- #: admin.inc.php:286
215
- msgid "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> will be used to generate thumbnails"
216
- msgstr "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/\">timthumb</a> 生成缩略图"
 
 
 
 
217
 
218
- #: admin.inc.php:288
219
  msgid "Post thumbnail meta field name: "
220
  msgstr "日志缩略图自定义栏目的名称:"
221
 
222
- #: admin.inc.php:289
223
- msgid "The value of this field should contain the image source and is set in the <em>Add New Post</em> screen"
 
 
224
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
225
 
226
- #: admin.inc.php:291
227
- msgid "If the postmeta is not set, then should the plugin extract the first image from the post?"
 
 
228
  msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
229
 
230
- #: admin.inc.php:292
231
- msgid "This can slow down the loading of your page if the first image in the related posts is large in file-size"
 
 
232
  msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
233
 
234
- #: admin.inc.php:294
235
  msgid "Use default thumbnail? "
236
  msgstr "是否使用默认缩略图?"
237
 
238
- #: admin.inc.php:295
239
- msgid "If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown."
240
- msgstr "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
 
 
 
241
 
242
- #: admin.inc.php:297
243
  msgid "Default thumbnail: "
244
  msgstr "默认缩略图:"
245
 
246
- #: admin.inc.php:298
247
- msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified above"
248
- msgstr "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显示上面默认图像"
 
 
 
 
 
249
 
250
- #: admin.inc.php:304
251
  msgid "Custom Styles"
252
  msgstr "自定义样式"
253
 
254
- #: admin.inc.php:307
255
  msgid "Custom CSS to add to header:"
256
  msgstr "添加自定义 CSS 到 header:"
257
 
258
- #: admin.inc.php:310
259
- msgid "Do not include <code>style</code> tags. Check out the <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> for available CSS classes to style."
260
- msgstr "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
 
 
 
 
 
 
261
 
262
- #: admin.inc.php:314
263
  msgid "Save Options"
264
  msgstr "保存设置"
265
 
266
- #: admin.inc.php:315
267
  msgid "Default Options"
268
  msgstr "默认设置"
269
 
270
- #: admin.inc.php:315
271
  msgid "Do you want to set options to Default?"
272
  msgstr "是否要重置设置?"
273
 
274
- #: admin.inc.php:316
275
  msgid "Recreate Index"
276
  msgstr "重建索引"
277
 
278
- #: admin.inc.php:316
279
  msgid "Are you sure you want to recreate the index?"
280
  msgstr "是否要重建索引?"
281
 
282
- #: admin.inc.php:346
283
  msgid "Contextual Related Posts"
284
  msgstr "Contextual Related Posts"
285
 
286
- #: admin.inc.php:346
287
- #: contextual-related-posts.php:190
288
  msgid "Related Posts"
289
  msgstr "相关日志"
290
 
291
- #: admin.inc.php:355
292
  msgid "plugin settings page"
293
  msgstr "插件设置页面"
294
 
295
- #: admin.inc.php:360
296
- msgid "Contextual Related Posts plugin has just been installed / upgraded. Please visit the "
 
 
297
  msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
298
 
299
- #: admin.inc.php:360
300
  msgid " to configure."
301
  msgstr "设置插件。"
302
 
303
- #: contextual-related-posts.php:146
304
  msgid "Powered by"
305
  msgstr "插件作者:"
306
 
307
- #: contextual-related-posts.php:151
308
- #: contextual-related-posts.php:156
309
  msgid "No related posts found"
310
  msgstr "没有发现相关日志"
311
 
312
- #: contextual-related-posts.php:189
313
  msgid "Display Related Posts"
314
  msgstr "显示相关日志"
315
 
316
- #: contextual-related-posts.php:200
317
  msgid "Title"
318
  msgstr "标题"
319
 
320
- #: contextual-related-posts.php:205
321
  msgid "No. of posts"
322
  msgstr "日志数量"
323
 
324
- #: contextual-related-posts.php:209
325
  msgid "Thumbnail options"
326
  msgstr "缩略图设置:"
327
 
328
- #: contextual-related-posts.php:211
329
  msgid "Thumbnails inline, before title"
330
  msgstr "在标题前显示缩略图"
331
 
332
- #: contextual-related-posts.php:212
333
  msgid "Thumbnails inline, after title"
334
  msgstr "在标题后显示缩略图"
335
 
336
- #: contextual-related-posts.php:213
337
  msgid "Only thumbnails, no text"
338
  msgstr "不显示文本,只显示缩略图"
339
 
340
- #: contextual-related-posts.php:214
341
  msgid "No thumbnails, only text."
342
  msgstr "不显示缩略图,只显示文本"
343
 
344
- #: contextual-related-posts.php:219
345
  msgid " Show excerpt?"
346
  msgstr "是否显示日志摘要?"
347
 
348
- #: contextual-related-posts.php:271
349
  msgid "<h3>Related Posts:</h3>"
350
  msgstr "<h3>相关日志:</h3>"
351
 
352
- #: contextual-related-posts.php:450
353
  msgid "Settings"
354
  msgstr "设置"
355
 
356
- #: contextual-related-posts.php:452
357
  msgid "Donate"
358
  msgstr "捐赠"
359
 
 
 
 
 
 
 
 
 
 
360
  #~ msgid "plugin page"
361
  #~ msgstr "插件页面"
362
 
2
  msgstr ""
3
  "Project-Id-Version: Contextual Related Posts\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-16 16:30-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
8
  "Language-Team: \n"
9
+ "Language: zh_CN\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.4\n"
 
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: admin.inc.php:80
19
  msgid "Options saved successfully."
20
  msgstr "成功保存设置。"
21
 
22
+ #: admin.inc.php:96
23
  msgid "Options set to Default."
24
  msgstr "已重置设置。"
25
 
26
+ #: admin.inc.php:111
27
  msgid "Index recreated"
28
  msgstr "已重新创建索引"
29
 
30
+ #: admin.inc.php:124
31
  msgid "Support the development"
32
  msgstr "支持开发"
33
 
34
+ #: admin.inc.php:132
35
  msgid "Enter amount in USD: "
36
  msgstr "输入美元金额:"
37
 
38
+ #: admin.inc.php:136
39
  msgid "Send your donation to the author of"
40
  msgstr "捐赠给作者"
41
 
42
+ #: admin.inc.php:145
43
  #, fuzzy
44
  msgid "Quick Links"
45
  msgstr "快捷链接"
46
 
47
+ #: admin.inc.php:147
48
  #, fuzzy
49
  msgid "Contextual Related Posts plugin page"
50
  msgstr "相关日志"
51
 
52
+ #: admin.inc.php:148
53
  msgid "Other plugins"
54
  msgstr "其他插件"
55
 
56
+ #: admin.inc.php:149
57
  msgid "Ajay's blog"
58
  msgstr "Ajay 的博客"
59
 
60
+ #: admin.inc.php:150 contextual-related-posts.php:521
 
61
  msgid "Support"
62
  msgstr "技术支持"
63
 
64
+ #: admin.inc.php:151
65
+ msgid "Reviews"
66
+ msgstr ""
67
+
68
+ #: admin.inc.php:152
69
  msgid "Follow @ajaydsouza on Twitter"
70
  msgstr "在推特上关注 @ajaydsouza"
71
 
72
+ #: admin.inc.php:156
73
  msgid "Recent developments"
74
  msgstr "最新开发"
75
 
76
+ #: admin.inc.php:168
77
  msgid "General options"
78
  msgstr "一般设置"
79
 
80
+ #: admin.inc.php:171
81
  msgid "Number of related posts to display: "
82
  msgstr "相关日志数量:"
83
 
84
+ #: admin.inc.php:174
85
+ msgid "Related posts should be newer than:"
86
+ msgstr ""
87
+
88
+ #: admin.inc.php:175
89
+ msgid "days"
90
+ msgstr ""
91
+
92
+ #: admin.inc.php:177
93
  msgid "Post types to include in results (including custom post types)"
94
  msgstr "被索引的日志类型(包含自定义日志类型)"
95
 
96
+ #: admin.inc.php:188
97
  msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
98
  msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
99
 
100
+ #: admin.inc.php:191
101
  msgid "Find related posts based on content as well as title"
102
  msgstr "根据标题和正文内容索引"
103
 
104
+ #: admin.inc.php:192
105
+ msgid ""
106
+ "If unchecked, only posts titles are used. (I recommend using a caching "
107
+ "plugin if you enable this)"
108
  msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
109
 
110
+ #: admin.inc.php:194
111
  msgid "List of post or page IDs to exclude from the results: "
112
  msgstr "排除的文章或页面 ID:"
113
 
114
+ #: admin.inc.php:197
115
+ #, fuzzy
116
+ msgid "Categories to exclude from the results: "
117
+ msgstr "排除的文章或页面 ID:"
118
 
119
+ #: admin.inc.php:215
120
+ #, fuzzy
121
+ msgid "Add related posts to:"
122
+ msgstr "添加相关日志到 feed 里"
123
 
124
+ #: admin.inc.php:217
125
+ msgid "Posts"
126
+ msgstr ""
 
127
 
128
+ #: admin.inc.php:218
129
+ msgid "Pages"
130
+ msgstr ""
131
 
132
+ #: admin.inc.php:219
133
+ msgid "Home page"
134
+ msgstr ""
135
+
136
+ #: admin.inc.php:220
137
+ msgid "Feeds"
138
+ msgstr ""
139
+
140
+ #: admin.inc.php:221
141
+ msgid "Category archives"
142
+ msgstr ""
143
 
144
+ #: admin.inc.php:222
145
+ msgid "Tag archives"
146
+ msgstr ""
147
+
148
+ #: admin.inc.php:223
149
+ msgid "Other archives"
150
+ msgstr ""
151
+
152
+ #: admin.inc.php:224
153
+ msgid ""
154
+ "If you choose to disable this, please add <code>&lt;?php if(function_exists"
155
+ "('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where "
156
+ "you want it displayed"
157
+ msgstr ""
158
+ "假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code>&lt;?php "
159
+ "if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code>"
160
+
161
+ #: admin.inc.php:227
162
  msgid "Add a link to the plugin page as a final item in the list"
163
  msgstr "在相关日志后添加插件页面的链接"
164
 
165
+ #: admin.inc.php:228
166
  msgid " <em>Optional</em>"
167
  msgstr " <em>可选</em>"
168
 
169
+ #: admin.inc.php:236
170
  msgid "Output Options"
171
  msgstr "显示设置"
172
 
173
+ #: admin.inc.php:239
174
  msgid "Title of related posts: "
175
  msgstr "相关日志的标题:"
176
 
177
+ #: admin.inc.php:242
178
  msgid "When there are no posts, what should be shown?"
179
  msgstr "当不存在相关日志时,显示什么?"
180
 
181
+ #: admin.inc.php:246
182
  msgid "Blank Output"
183
  msgstr "不显示"
184
 
185
+ #: admin.inc.php:250
186
  msgid "Display \"No Related Posts\""
187
  msgstr "显示 \"没有相关日志\""
188
 
189
+ #: admin.inc.php:254
190
  msgid "Show post excerpt in list?"
191
  msgstr "是否显示日志摘要?"
192
 
193
+ #: admin.inc.php:257
194
  msgid "Length of excerpt (in words): "
195
  msgstr "摘要长度(词数):"
196
 
197
+ #: admin.inc.php:260
198
+ msgid "Limit post title length (in characters)"
199
+ msgstr ""
200
+
201
+ #: admin.inc.php:263
202
+ msgid ""
203
+ "Exclude display of related posts on these posts / pages (Enter comma "
204
+ "separated list of IDs): "
205
+ msgstr ""
206
+
207
+ #: admin.inc.php:266
208
  msgid "Customize the output:"
209
  msgstr "自定义显示:"
210
 
211
+ #: admin.inc.php:268
212
  msgid "HTML to display before the list of posts: "
213
  msgstr "显示在每篇日志后面的 HTML 标签:"
214
 
215
+ #: admin.inc.php:271
216
  msgid "HTML to display before each list item: "
217
  msgstr "显示在每篇日志后面的 HTML 标签:"
218
 
219
+ #: admin.inc.php:274
220
  msgid "HTML to display after each list item: "
221
  msgstr "显示在日志列表前面的 HTML 标签:"
222
 
223
+ #: admin.inc.php:277
224
  msgid "HTML to display after the list of posts: "
225
  msgstr "显示在日志列表后面的 HTML 标签:"
226
 
227
+ #: admin.inc.php:280
228
  msgid "Post thumbnail options:"
229
  msgstr "日志缩略图设置:"
230
 
231
+ #: admin.inc.php:282
232
  msgid "Location of post thumbnail:"
233
  msgstr "日志缩略图位置:"
234
 
235
+ #: admin.inc.php:286
236
  msgid "Display thumbnails inline with posts, before title"
237
  msgstr "在标题前显示缩略图"
238
 
239
+ #: admin.inc.php:290
240
  msgid "Display thumbnails inline with posts, after title"
241
  msgstr "在标题后显示缩略图"
242
 
243
+ #: admin.inc.php:294
244
  msgid "Display only thumbnails, no text"
245
  msgstr "不显示文本,只显示缩略图"
246
 
247
+ #: admin.inc.php:298
248
  msgid "Do not display thumbnails, only text."
249
  msgstr "不显示缩略图,只显示文本"
250
 
251
+ #: admin.inc.php:302
252
  msgid "Maximum width of the thumbnail: "
253
  msgstr "缩略图最大宽度"
254
 
255
+ #: admin.inc.php:305
256
  msgid "Maximum height of the thumbnail: "
257
  msgstr "缩略图最大高度"
258
 
259
+ #: admin.inc.php:308
260
  msgid "Use timthumb to generate thumbnails? "
261
  msgstr "是否使用 timthumb 生成缩略图?"
262
 
263
+ #: admin.inc.php:309
264
+ msgid ""
265
+ "If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
266
+ "\">timthumb</a> will be used to generate thumbnails"
267
+ msgstr ""
268
+ "勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
269
+ "\">timthumb</a> 生成缩略图"
270
 
271
+ #: admin.inc.php:311
272
  msgid "Post thumbnail meta field name: "
273
  msgstr "日志缩略图自定义栏目的名称:"
274
 
275
+ #: admin.inc.php:312
276
+ msgid ""
277
+ "The value of this field should contain the image source and is set in the "
278
+ "<em>Add New Post</em> screen"
279
  msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
280
 
281
+ #: admin.inc.php:314
282
+ msgid ""
283
+ "If the postmeta is not set, then should the plugin extract the first image "
284
+ "from the post?"
285
  msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
286
 
287
+ #: admin.inc.php:315
288
+ msgid ""
289
+ "This can slow down the loading of your page if the first image in the "
290
+ "related posts is large in file-size"
291
  msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
292
 
293
+ #: admin.inc.php:317
294
  msgid "Use default thumbnail? "
295
  msgstr "是否使用默认缩略图?"
296
 
297
+ #: admin.inc.php:318
298
+ msgid ""
299
+ "If checked, when no thumbnail is found, show a default one from the URL "
300
+ "below. If not checked and no thumbnail is found, no image will be shown."
301
+ msgstr ""
302
+ "勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
303
 
304
+ #: admin.inc.php:320
305
  msgid "Default thumbnail: "
306
  msgstr "默认缩略图:"
307
 
308
+ #: admin.inc.php:321
309
+ msgid ""
310
+ "The plugin will first check if the post contains a thumbnail. If it doesn't "
311
+ "then it will check the meta field. If this is not available, then it will "
312
+ "show the default image as specified above"
313
+ msgstr ""
314
+ "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
315
+ "示上面默认图像"
316
 
317
+ #: admin.inc.php:327
318
  msgid "Custom Styles"
319
  msgstr "自定义样式"
320
 
321
+ #: admin.inc.php:330
322
  msgid "Custom CSS to add to header:"
323
  msgstr "添加自定义 CSS 到 header:"
324
 
325
+ #: admin.inc.php:333
326
+ #, fuzzy
327
+ msgid ""
328
+ "Do not include <code>style</code> tags. Check out the <a href=\"http://"
329
+ "wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
330
+ "\">FAQ</a> for available CSS classes to style."
331
+ msgstr ""
332
+ "不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
333
+ "extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
334
 
335
+ #: admin.inc.php:337
336
  msgid "Save Options"
337
  msgstr "保存设置"
338
 
339
+ #: admin.inc.php:338
340
  msgid "Default Options"
341
  msgstr "默认设置"
342
 
343
+ #: admin.inc.php:338
344
  msgid "Do you want to set options to Default?"
345
  msgstr "是否要重置设置?"
346
 
347
+ #: admin.inc.php:339
348
  msgid "Recreate Index"
349
  msgstr "重建索引"
350
 
351
+ #: admin.inc.php:339
352
  msgid "Are you sure you want to recreate the index?"
353
  msgstr "是否要重建索引?"
354
 
355
+ #: admin.inc.php:369
356
  msgid "Contextual Related Posts"
357
  msgstr "Contextual Related Posts"
358
 
359
+ #: admin.inc.php:369 contextual-related-posts.php:222
 
360
  msgid "Related Posts"
361
  msgstr "相关日志"
362
 
363
+ #: admin.inc.php:378
364
  msgid "plugin settings page"
365
  msgstr "插件设置页面"
366
 
367
+ #: admin.inc.php:383
368
+ msgid ""
369
+ "Contextual Related Posts plugin has just been installed / upgraded. Please "
370
+ "visit the "
371
  msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
372
 
373
+ #: admin.inc.php:383
374
  msgid " to configure."
375
  msgstr "设置插件。"
376
 
377
+ #: contextual-related-posts.php:152
378
  msgid "Powered by"
379
  msgstr "插件作者:"
380
 
381
+ #: contextual-related-posts.php:157 contextual-related-posts.php:162
 
382
  msgid "No related posts found"
383
  msgstr "没有发现相关日志"
384
 
385
+ #: contextual-related-posts.php:221
386
  msgid "Display Related Posts"
387
  msgstr "显示相关日志"
388
 
389
+ #: contextual-related-posts.php:232
390
  msgid "Title"
391
  msgstr "标题"
392
 
393
+ #: contextual-related-posts.php:237
394
  msgid "No. of posts"
395
  msgstr "日志数量"
396
 
397
+ #: contextual-related-posts.php:241
398
  msgid "Thumbnail options"
399
  msgstr "缩略图设置:"
400
 
401
+ #: contextual-related-posts.php:243
402
  msgid "Thumbnails inline, before title"
403
  msgstr "在标题前显示缩略图"
404
 
405
+ #: contextual-related-posts.php:244
406
  msgid "Thumbnails inline, after title"
407
  msgstr "在标题后显示缩略图"
408
 
409
+ #: contextual-related-posts.php:245
410
  msgid "Only thumbnails, no text"
411
  msgstr "不显示文本,只显示缩略图"
412
 
413
+ #: contextual-related-posts.php:246
414
  msgid "No thumbnails, only text."
415
  msgstr "不显示缩略图,只显示文本"
416
 
417
+ #: contextual-related-posts.php:251
418
  msgid " Show excerpt?"
419
  msgstr "是否显示日志摘要?"
420
 
421
+ #: contextual-related-posts.php:301
422
  msgid "<h3>Related Posts:</h3>"
423
  msgstr "<h3>相关日志:</h3>"
424
 
425
+ #: contextual-related-posts.php:520
426
  msgid "Settings"
427
  msgstr "设置"
428
 
429
+ #: contextual-related-posts.php:522
430
  msgid "Donate"
431
  msgstr "捐赠"
432
 
433
+ #~ msgid "Exclude Categories: "
434
+ #~ msgstr "排除的分类 ID:"
435
+
436
+ #~ msgid "Add related posts to the post content on single posts"
437
+ #~ msgstr "添加相关日志到文章里"
438
+
439
+ #~ msgid "Add related posts to pages"
440
+ #~ msgstr "添加相关日志到页面里"
441
+
442
  #~ msgid "plugin page"
443
  #~ msgstr "插件页面"
444
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: Ajay
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.0
7
- Tested up to: 3.5
8
  License: GPLv2 or later
9
 
10
  Increase reader retention and reduce bounce rates by displaying a set of related posts on your website or in your feed
@@ -35,12 +35,26 @@ The list is based on the content of the title and/or content of the posts which
35
 
36
  == Upgrade Notice ==
37
 
38
- = 1.8.3 =
39
- * New widget support; performance improvements; use the excerpt; exclude posts / pages by page id.
 
40
 
41
 
42
  == Changelog ==
43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  = 1.8.3 =
45
  * Fixed: PHP warning errors on manual code for sites with PHP error reporting turn on in strict mode
46
  * Modified: Fixed some language related issues. If you would like to translate the plugin or update a translation, please <a href="http://ajaydsouza.com/contact/">contact me</a>.
@@ -231,13 +245,15 @@ Below are a few features that I plan on implementing in future versions of the p
231
  * Select random posts if there are no similar posts
232
  * Shortcode support
233
  * Exclude display on select categories and tags
234
- * Exclude display on select posts
235
  * Caching related posts
236
  * Better relevance tweaking
 
237
  * Improved Custom post support
238
- * Multi-side support
239
  * Ready-made styles
240
  * Upload your own default thumbnail
 
241
 
242
- If you would like a feature to be added, or if you already have the code for the feature, you can let us know by <a href="http://wordpress.org/support/plugin/contextual-related-posts">posting in this forum</a>.
243
 
4
  Donate link: http://ajaydsouza.com/donate/
5
  Stable tag: trunk
6
  Requires at least: 3.0
7
+ Tested up to: 3.6
8
  License: GPLv2 or later
9
 
10
  Increase reader retention and reduce bounce rates by displaying a set of related posts on your website or in your feed
35
 
36
  == Upgrade Notice ==
37
 
38
+ = 1.8.4 =
39
+ * Exclude related posts on certain posts/pages, include related posts on home page and other archive pages, new timthumb version, miscellaneous fixes.
40
+ Refer to Changelog for more information
41
 
42
 
43
  == Changelog ==
44
 
45
+ = 1.8.4 =
46
+ * Added: Option to exclude display of related posts on certain posts/pages. This option is available under "Output Options"
47
+ * Added: Options to display related posts on home page, category archives, tag archives and other archives
48
+ * Added: Option to set how recent the related posts should be
49
+ * Added: Option to limit post title length
50
+ * Modified: Filter (<code>crp_postimage</code>) added for WordPress Post Thumbnails to allow you to modify your image with your own script. Plugin comes inbuilt with thumbnail resizing using timthumb
51
+ * Modified: If the option to scan for the first image in the post is set to ON, then only images from the same domain as your blog are used as thumbnails. External images are ignored.
52
+ * Modified: Updated to latest version of timthumb
53
+ * Fixed: Widget now displays on posts and page correctly. Previously displaying the widget resulted in duplicate display of related posts
54
+ * Fixed: Related Posts now display correctly in feeds when feed content is set to "Summary"
55
+ * Fixed: Fixed PHP Notices: "Use of undefined constant"
56
+ * Fixed: Custom CSS styles will be included in the header of all posts and pages. On archives it will be included depending on the settings
57
+
58
  = 1.8.3 =
59
  * Fixed: PHP warning errors on manual code for sites with PHP error reporting turn on in strict mode
60
  * Modified: Fixed some language related issues. If you would like to translate the plugin or update a translation, please <a href="http://ajaydsouza.com/contact/">contact me</a>.
245
  * Select random posts if there are no similar posts
246
  * Shortcode support
247
  * Exclude display on select categories and tags
248
+ * Restrict related posts to same category
249
  * Caching related posts
250
  * Better relevance tweaking
251
+ * Limit characters in content that is compared
252
  * Improved Custom post support
253
+ * Multi-site support
254
  * Ready-made styles
255
  * Upload your own default thumbnail
256
+
257
 
258
+ If you would like a feature to be added, or if you already have the code for the feature, you can let me know by <a href="http://wordpress.org/support/plugin/contextual-related-posts">posting in this forum</a>.
259
 
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
screenshot-3.png CHANGED
Binary file
tabber/example-ajax-0.html DELETED
@@ -1 +0,0 @@
1
- <p>This is <em>ajax-0.html</em></p>
 
tabber/example-ajax-1.html DELETED
@@ -1 +0,0 @@
1
- <p>This is <em>ajax-1.html</em></p>
 
tabber/example-ajax-2.html DELETED
@@ -1 +0,0 @@
1
- <p>This is <em>ajax-2.html</em></p>
 
tabber/example-ajax.html DELETED
@@ -1,86 +0,0 @@
1
- <!-- $Id: example-ajax.html,v 1.2 2006/04/27 21:00:38 pat Exp $ -->
2
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
- <html lang="en">
4
- <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6
- <title>Ajax Tabber Example</title>
7
-
8
- <link rel="stylesheet" href="example.css" TYPE="text/css" MEDIA="screen">
9
- <link rel="stylesheet" href="example-print.css" TYPE="text/css" MEDIA="print">
10
-
11
-
12
- <!--
13
- Load prototype.js
14
- You can get it at http://prototype.conio.net/
15
- -->
16
- <script src="http://www.barelyfitz.com/projects/tabber/effects/prototype.js" type="text/javascript"></script>
17
-
18
- <script type="text/javascript">
19
-
20
- /* Optional: Temporarily hide the "tabber" class so it does not "flash"
21
- on the page as plain HTML. After tabber runs, the class is changed
22
- to "tabberlive" and it will appear. */
23
-
24
- document.write('<style type="text/css">.tabber{display:none;}<\/style>');
25
-
26
- var tabberOptions = {
27
-
28
- 'onClick': function(argsObj) {
29
-
30
- var t = argsObj.tabber; /* Tabber object */
31
- var i = argsObj.index; /* Which tab was clicked (0..n) */
32
- var div = this.tabs[i].div; /* The tab content div */
33
-
34
- /* Display a loading message */
35
- div.innerHTML = "<p>Loading...<\/p>";
36
-
37
- /* Fetch some html depending on which tab was clicked */
38
- var url = 'example-ajax-' + i + '.html';
39
- var pars = 'foo=bar&foo2=bar2'; /* just for example */
40
- var myAjax = new Ajax.Updater(div, url, {method:'get',parameters:pars});
41
- },
42
-
43
- 'onLoad': function(argsObj) {
44
- /* Load the first tab */
45
- argsObj.index = 0;
46
- this.onClick(argsObj);
47
- },
48
-
49
-
50
- }
51
- </script>
52
-
53
- <script type="text/javascript" src="tabber.js"></script>
54
-
55
- <style type="text/css">
56
- .tabberlive .tabbertab {
57
- height:200px;
58
- }
59
- </style>
60
- </head>
61
- <body>
62
-
63
- <h1>Ajax Tabber Example</h1>
64
-
65
- <p>&larr; <a href="http://www.barelyfitz.com/projects/tabber/">Tabber Home</a></p>
66
-
67
- <div class="tabber">
68
-
69
- <div class="tabbertab">
70
- <h2>Tab 1</h2>
71
- </div>
72
-
73
-
74
- <div class="tabbertab">
75
- <h2>Tab 2</h2>
76
- </div>
77
-
78
-
79
- <div class="tabbertab">
80
- <h2>Tab 3</h2>
81
- </div>
82
-
83
- </div>
84
-
85
- </body>
86
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tabber/example-cookies.html DELETED
@@ -1,129 +0,0 @@
1
- <!-- $Id: example-cookies.html,v 1.2 2006/04/07 05:01:55 pat Exp $ -->
2
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
- <html lang="en">
4
- <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6
- <title>Cookies Tabber Example</title>
7
-
8
- <link rel="stylesheet" href="example.css" TYPE="text/css" MEDIA="screen">
9
- <link rel="stylesheet" href="example-print.css" TYPE="text/css" MEDIA="print">
10
-
11
- <script type="text/javascript">
12
-
13
- /* Optional: Temporarily hide the "tabber" class so it does not "flash"
14
- on the page as plain HTML. After tabber runs, the class is changed
15
- to "tabberlive" and it will appear. */
16
-
17
- document.write('<style type="text/css">.tabber{display:none;}<\/style>');
18
-
19
- /*==================================================
20
- Set the tabber options (must do this before including tabber.js)
21
- ==================================================*/
22
- var tabberOptions = {
23
-
24
- 'cookie':"tabber", /* Name to use for the cookie */
25
-
26
- 'onLoad': function(argsObj)
27
- {
28
- var t = argsObj.tabber;
29
- var i;
30
-
31
- /* Optional: Add the id of the tabber to the cookie name to allow
32
- for multiple tabber interfaces on the site. If you have
33
- multiple tabber interfaces (even on different pages) I suggest
34
- setting a unique id on each one, to avoid having the cookie set
35
- the wrong tab.
36
- */
37
- if (t.id) {
38
- t.cookie = t.id + t.cookie;
39
- }
40
-
41
- /* If a cookie was previously set, restore the active tab */
42
- i = parseInt(getCookie(t.cookie));
43
- if (isNaN(i)) { return; }
44
- t.tabShow(i);
45
- alert('getCookie(' + t.cookie + ') = ' + i);
46
- },
47
-
48
- 'onClick':function(argsObj)
49
- {
50
- var c = argsObj.tabber.cookie;
51
- var i = argsObj.index;
52
- alert('setCookie(' + c + ',' + i + ')');
53
- setCookie(c, i);
54
- }
55
- };
56
-
57
- /*==================================================
58
- Cookie functions
59
- ==================================================*/
60
- function setCookie(name, value, expires, path, domain, secure) {
61
- document.cookie= name + "=" + escape(value) +
62
- ((expires) ? "; expires=" + expires.toGMTString() : "") +
63
- ((path) ? "; path=" + path : "") +
64
- ((domain) ? "; domain=" + domain : "") +
65
- ((secure) ? "; secure" : "");
66
- }
67
-
68
- function getCookie(name) {
69
- var dc = document.cookie;
70
- var prefix = name + "=";
71
- var begin = dc.indexOf("; " + prefix);
72
- if (begin == -1) {
73
- begin = dc.indexOf(prefix);
74
- if (begin != 0) return null;
75
- } else {
76
- begin += 2;
77
- }
78
- var end = document.cookie.indexOf(";", begin);
79
- if (end == -1) {
80
- end = dc.length;
81
- }
82
- return unescape(dc.substring(begin + prefix.length, end));
83
- }
84
- function deleteCookie(name, path, domain) {
85
- if (getCookie(name)) {
86
- document.cookie = name + "=" +
87
- ((path) ? "; path=" + path : "") +
88
- ((domain) ? "; domain=" + domain : "") +
89
- "; expires=Thu, 01-Jan-70 00:00:01 GMT";
90
- }
91
- }
92
-
93
- </script>
94
-
95
- <!-- Include the tabber code -->
96
- <script type="text/javascript" src="tabber.js"></script>
97
-
98
- </head>
99
- <body>
100
-
101
- <h1>Tabber Example</h1>
102
-
103
- <p>&larr; <a href="http://www.barelyfitz.com/projects/tabber/">Tabber Home</a></p>
104
-
105
- <p>This example sets a cookie whenever the you click the tab, so if you leave the page and return the same tab remains selected. For purposes of example, this page displays an alert to indicate when a cookie is set or retrieved.</p>
106
-
107
- <div class="tabber" id="mytabber1">
108
-
109
- <div class="tabbertab">
110
- <h2>Tab 1</h2>
111
- <p>Tab 1 content.</p>
112
- </div>
113
-
114
-
115
- <div class="tabbertab">
116
- <h2>Tab 2</h2>
117
- <p>Tab 2 content.</p>
118
- </div>
119
-
120
-
121
- <div class="tabbertab">
122
- <h2>Tab 3</h2>
123
- <p>Tab 3 content.</p>
124
- </div>
125
-
126
- </div>
127
-
128
- </body>
129
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tabber/example.css DELETED
@@ -1,109 +0,0 @@
1
- /* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */
2
-
3
- /*--------------------------------------------------
4
- REQUIRED to hide the non-active tab content.
5
- But do not hide them in the print stylesheet!
6
- --------------------------------------------------*/
7
- .tabberlive .tabbertabhide {
8
- display:none;
9
- }
10
-
11
- /*--------------------------------------------------
12
- .tabber = before the tabber interface is set up
13
- .tabberlive = after the tabber interface is set up
14
- --------------------------------------------------*/
15
- .tabber {
16
- }
17
- .tabberlive {
18
- margin-top:1em;
19
- }
20
-
21
- /*--------------------------------------------------
22
- ul.tabbernav = the tab navigation list
23
- li.tabberactive = the active tab
24
- --------------------------------------------------*/
25
- ul.tabbernav
26
- {
27
- margin:0;
28
- padding: 3px 0;
29
- border-bottom: 1px solid #778;
30
- font: bold 12px Verdana, sans-serif;
31
- }
32
-
33
- ul.tabbernav li
34
- {
35
- list-style: none;
36
- margin: 0;
37
- display: inline;
38
- }
39
-
40
- ul.tabbernav li a
41
- {
42
- padding: 3px 0.5em;
43
- margin-left: 3px;
44
- border: 1px solid #778;
45
- border-bottom: none;
46
- background: #DDE;
47
- text-decoration: none;
48
- }
49
-
50
- ul.tabbernav li a:link { color: #448; }
51
- ul.tabbernav li a:visited { color: #667; }
52
-
53
- ul.tabbernav li a:hover
54
- {
55
- color: #000;
56
- background: #AAE;
57
- border-color: #227;
58
- }
59
-
60
- ul.tabbernav li.tabberactive a
61
- {
62
- background-color: #fff;
63
- border-bottom: 1px solid #fff;
64
- }
65
-
66
- ul.tabbernav li.tabberactive a:hover
67
- {
68
- color: #000;
69
- background: white;
70
- border-bottom: 1px solid white;
71
- }
72
-
73
- /*--------------------------------------------------
74
- .tabbertab = the tab content
75
- Add style only after the tabber interface is set up (.tabberlive)
76
- --------------------------------------------------*/
77
- .tabberlive .tabbertab {
78
- padding:5px;
79
- border:1px solid #aaa;
80
- border-top:0;
81
-
82
- /* If you don't want the tab size changing whenever a tab is changed
83
- you can set a fixed height */
84
-
85
- /* height:200px; */
86
-
87
- /* If you set a fix height set overflow to auto and you will get a
88
- scrollbar when necessary */
89
-
90
- /* overflow:auto; */
91
- }
92
-
93
- /* If desired, hide the heading since a heading is provided by the tab */
94
- .tabberlive .tabbertab h2 {
95
- display:none;
96
- }
97
- .tabberlive .tabbertab h3 {
98
- display:none;
99
- }
100
-
101
- /* Example of using an ID to set different styles for the tabs on the page */
102
- .tabberlive#tab1 {
103
- }
104
- .tabberlive#tab2 {
105
- }
106
- .tabberlive#tab2 .tabbertab {
107
- height:200px;
108
- overflow:auto;
109
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tabber/example.html DELETED
@@ -1,50 +0,0 @@
1
- <!-- $Id: example.html,v 1.4 2006/03/27 02:44:36 pat Exp $ -->
2
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
- <html lang="en">
4
- <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6
- <title>Simple Tabber Example</title>
7
-
8
- <script type="text/javascript" src="tabber.js"></script>
9
- <link rel="stylesheet" href="example.css" TYPE="text/css" MEDIA="screen">
10
- <link rel="stylesheet" href="example-print.css" TYPE="text/css" MEDIA="print">
11
-
12
- <script type="text/javascript">
13
-
14
- /* Optional: Temporarily hide the "tabber" class so it does not "flash"
15
- on the page as plain HTML. After tabber runs, the class is changed
16
- to "tabberlive" and it will appear. */
17
-
18
- document.write('<style type="text/css">.tabber{display:none;}<\/style>');
19
- </script>
20
-
21
- </head>
22
- <body>
23
-
24
- <h1>Tabber Example</h1>
25
-
26
- <p>&larr; <a href="http://www.barelyfitz.com/projects/tabber/">Tabber Home</a></p>
27
-
28
- <div class="tabber">
29
-
30
- <div class="tabbertab">
31
- <h2>Tab 1</h2>
32
- <p>Tab 1 content.</p>
33
- </div>
34
-
35
-
36
- <div class="tabbertab">
37
- <h2>Tab 2</h2>
38
- <p>Tab 2 content.</p>
39
- </div>
40
-
41
-
42
- <div class="tabbertab">
43
- <h2>Tab 3</h2>
44
- <p>Tab 3 content.</p>
45
- </div>
46
-
47
- </div>
48
-
49
- </body>
50
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
tabber/example2.html DELETED
@@ -1,153 +0,0 @@
1
- <!-- $Id: example2.html,v 1.8 2006/04/10 05:05:28 pat Exp $ -->
2
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3
- <html lang="en">
4
- <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6
- <title>Advanced Tabber Example</title>
7
-
8
- <link rel="stylesheet" href="example.css" TYPE="text/css" MEDIA="screen">
9
- <link rel="stylesheet" href="example-print.css" TYPE="text/css" MEDIA="print">
10
-
11
- <script type="text/javascript">
12
-
13
- /* Optional: Temporarily hide the "tabber" class so it does not "flash"
14
- on the page as plain HTML. After tabber runs, the class is changed
15
- to "tabberlive" and it will appear.
16
- */
17
- document.write('<style type="text/css">.tabber{display:none;}<\/style>');
18
-
19
- var tabberOptions = {
20
-
21
- /* Optional: instead of letting tabber run during the onload event,
22
- we'll start it up manually. This can be useful because the onload
23
- even runs after all the images have finished loading, and we can
24
- run tabber at the bottom of our page to start it up faster. See the
25
- bottom of this page for more info. Note: this variable must be set
26
- BEFORE you include tabber.js.
27
- */
28
- 'manualStartup':true,
29
-
30
- /* Optional: code to run after each tabber object has initialized */
31
-
32
- 'onLoad': function(argsObj) {
33
- /* Display an alert only after tab2 */
34
- if (argsObj.tabber.id == 'tab2') {
35
- alert('Finished loading tab2!');
36
- }
37
- },
38
-
39
- /* Optional: code to run when the user clicks a tab. If this
40
- function returns boolean false then the tab will not be changed
41
- (the click is canceled). If you do not return a value or return
42
- something that is not boolean false, */
43
-
44
- 'onClick': function(argsObj) {
45
-
46
- var t = argsObj.tabber; /* Tabber object */
47
- var id = t.id; /* ID of the main tabber DIV */
48
- var i = argsObj.index; /* Which tab was clicked (0 is the first tab) */
49
- var e = argsObj.event; /* Event object */
50
-
51
- if (id == 'tab2') {
52
- return confirm('Swtich to '+t.tabs[i].headingText+'?\nEvent type: '+e.type);
53
- }
54
- },
55
-
56
- /* Optional: set an ID for each tab navigation link */
57
- 'addLinkId': true
58
-
59
- };
60
-
61
- </script>
62
-
63
- <!-- Load the tabber code -->
64
- <script type="text/javascript" src="tabber.js"></script>
65
-
66
- </head>
67
- <body>
68
-
69
- <h1>Advanced Tabber Example</h1>
70
-
71
- <p>&larr; <a href="http://www.barelyfitz.com/projects/tabber/">Tabber Home</a></p>
72
-
73
- <p>In the following example, the height is not constrained, so the page jumps around when a new tab is selected. "Tab 2" contains a nested tabber.</p>
74
-
75
- <div class="tabber" id="tab1">
76
-
77
- <div class="tabbertab">
78
- <h2><a name="tab1">Tab <em>1</em></a></h2>
79
- <p>Tab 1 content.</p>
80
- </div>
81
-
82
- <div class="tabbertab">
83
- <h2>Tab 2</h2>
84
- <p>Tab 2 content. A nested tabber:</p>
85
-
86
- <div class="tabber" id="tab1-1">
87
-
88
- <div class="tabbertab">
89
- <h3>Tab 2-1</h3>
90
- <p>Tab 2-1 content.</p>
91
- </div>
92
-
93
- <div class="tabbertab">
94
- <h3>Tab 2-2</h3>
95
- <p>Tab 2-2 content.</p>
96
- </div>
97
-
98
- <div class="tabbertab">
99
- <h3>Tab 2-3</h3>
100
- <p>Tab 2-3 content.</p>
101
- </div>
102
- </div>
103
- </div>
104
-
105
- <div class="tabbertab">
106
- <h2>Tab 3</h2>
107
- <p>Tab 3 content.</p>
108
- </div>
109
- </div>
110
-
111
- <p>In the following example, "Tab 2" should be selected automatically. In addition, there is an onclick function attached to the tabs so you can confirm each click.</p>
112
-
113
-
114
- <div class="tabber" id="tab2">
115
-
116
- <div class="tabbertab">
117
- <h2>Tab 1</h2>
118
- <p>Tab 1 content.</p>
119
- </div>
120
-
121
- <div class="tabbertab tabbertabdefault">
122
- <h2>Tab 2</h2>
123
- <p>Long content to show the scrollbar to the right.</p>
124
- <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Cras nonummy lorem quis neque. Etiam molestie auctor ante. Fusce in enim. Suspendisse at ipsum. Praesent eget odio vitae lorem consectetuer euismod. Mauris vel risus eget arcu congue sodales. Mauris adipiscing viverra ante. Cras pharetra augue sit amet enim. Pellentesque ac sem. Nullam pulvinar convallis orci. In tristique accumsan enim. Nam venenatis suscipit lorem. Nam ut dui sit amet libero egestas facilisis. Aliquam elementum lectus sed ipsum tincidunt aliquet. Pellentesque nec nunc at metus malesuada hendrerit. Suspendisse magna. Aliquam odio augue, eleifend non, euismod nec, molestie quis, pede. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae;</p>
125
-
126
- <p>In hac habitasse platea dictumst. Aenean suscipit nisl. In mollis consequat purus. Integer scelerisque. Nullam imperdiet sapien nec lectus. Praesent in orci. Donec magna magna, posuere at, auctor in, sagittis nec, mi. Morbi volutpat, magna pharetra scelerisque lacinia, est erat ultricies neque, nec convallis lorem lorem ut dolor. Proin ac nunc eget nibh pulvinar gravida. Sed pretium, sem ac suscipit imperdiet, mauris ligula dictum nulla, pulvinar interdum pede urna vel magna. In lectus. In sed odio. Quisque eros ligula, placerat nec, tincidunt in, ullamcorper sed, lectus. Nam aliquet orci eget ante. Aliquam aliquet mattis pede. Mauris eleifend nibh vel nunc.</p>
127
-
128
- <p>Sed mi lacus, sodales ac, lacinia nec, rutrum sodales, dolor. Morbi convallis molestie enim. Aenean tristique justo. Nullam erat ante, tempor a, suscipit ut, luctus vitae, erat. Proin fermentum. Etiam id erat ut est scelerisque volutpat. Praesent gravida libero vitae sapien. Donec vel elit. In non enim nec quam rutrum sollicitudin. Suspendisse tincidunt adipiscing ligula. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Etiam vel nulla non augue varius pretium. Integer vestibulum enim vel tortor.</p>
129
-
130
- <p>Nulla at massa. Vivamus turpis urna, ultrices eget, auctor ullamcorper, ultricies quis, urna. Proin lobortis tincidunt orci. Duis quam neque, mattis vel, rutrum vitae, porttitor id, libero. Vestibulum sagittis lorem eget pede. Curabitur dignissim, nisi sit amet porttitor dignissim, quam felis condimentum arcu, eget facilisis metus lacus in quam. Nulla semper. In hac habitasse platea dictumst. Aenean luctus diam. Aenean consequat massa quis nisi.</p>
131
-
132
- <p>Curabitur quam odio, ornare vel, hendrerit ac, sagittis mattis, ipsum. Fusce accumsan, dolor ac suscipit gravida, tortor nibh cursus ligula, at posuere orci arcu euismod ipsum. Nunc iaculis, turpis quis mattis imperdiet, nibh sapien venenatis nulla, id ornare tortor nunc in risus. Morbi lacinia mollis nulla. Donec tempus vestibulum diam. Praesent aliquet metus non orci. Nulla dictum pulvinar sem. Proin mi. Maecenas pharetra enim eget elit. Ut interdum libero ac est. Phasellus accumsan. Praesent vulputate vehicula elit. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla pretium diam non felis. Aenean at nisl. Proin rutrum tempus mauris. In metus ante, congue eu, vestibulum in, tincidunt sit amet, tortor. Suspendisse non enim eget elit imperdiet fringilla. Pellentesque odio erat, consequat vitae, euismod nec, congue sed, lectus. Praesent tempor urna.</p>
133
- </div>
134
-
135
- <div class="tabbertab" title="Tab 3 Title Override">
136
- <h2>Tab 3</h2>
137
- <p>The name of this tab is taken from the TITLE attribute instead of from the H2 element, then the TITLE attribute is erased so it does not cause a mouseover tooltip over the content area.</p>
138
- </div>
139
- </div>
140
-
141
- <script type="text/javascript">
142
-
143
- /* Since we specified manualStartup=true, tabber will not run after
144
- the onload event. Instead let's run it now, to prevent any delay
145
- while images load.
146
- */
147
-
148
- tabberAutomatic(tabberOptions);
149
-
150
- </script>
151
-
152
- </body>
153
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
timthumb/timthumb.php CHANGED
@@ -20,7 +20,7 @@
20
  * loaded by timthumb. This will save you having to re-edit these variables
21
  * everytime you download a new version
22
  */
23
- define ('VERSION', '2.8.10'); // Version of this script
24
  //Load a config file if it exists. Otherwise, use the values below
25
  if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
  if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
@@ -40,7 +40,7 @@ if(! defined('FILE_CACHE_PREFIX') ) define ('FILE_CACHE_PREFIX', 'timthumb');
40
  if(! defined('FILE_CACHE_DIRECTORY') ) define ('FILE_CACHE_DIRECTORY', './cache'); // Directory where images are cached. Left blank it will use the system temporary directory (which is better for security)
41
  if(! defined('MAX_FILE_SIZE') ) define ('MAX_FILE_SIZE', 10485760); // 10 Megs is 10485760. This is the max internal or external file size that we'll process.
42
  if(! defined('CURL_TIMEOUT') ) define ('CURL_TIMEOUT', 20); // Timeout duration for Curl. This only applies if you have Curl installed and aren't using PHP's default URL fetching mechanism.
43
- if(! defined('WAIT_BETWEEN_FETCH_ERRORS') ) define ('WAIT_BETWEEN_FETCH_ERRORS', 3600); //Time to wait between errors fetching remote file
44
 
45
  //Browser caching
46
  if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000); // Time to cache in the browser
@@ -51,7 +51,7 @@ if(! defined('MAX_WIDTH') ) define ('MAX_WIDTH', 1500); // Maximum im
51
  if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
  if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
  if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
- if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); //42 Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
  if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
  if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
  if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
@@ -992,7 +992,7 @@ class timthumb {
992
  $this->debug(3, "Remote file has invalid mime type: $mimeType");
993
  @unlink($this->cachefile);
994
  touch($this->cachefile);
995
- $this->error("The remote file is not a valid image.");
996
  return false;
997
  }
998
  if($this->processImageAndWriteToCache($tempfile)){
@@ -1087,6 +1087,8 @@ class timthumb {
1087
 
1088
  case 'image/png':
1089
  $image = imagecreatefrompng ($src);
 
 
1090
  break;
1091
 
1092
  case 'image/gif':
@@ -1155,6 +1157,7 @@ class timthumb {
1155
  default: return $size_str;
1156
  }
1157
  }
 
1158
  protected function getURL($url, $tempfile){
1159
  $this->lastURLError = false;
1160
  $url = preg_replace('/ /', '%20', $url);
@@ -1183,6 +1186,10 @@ class timthumb {
1183
  if($httpStatus == 404){
1184
  $this->set404();
1185
  }
 
 
 
 
1186
  if($curlResult){
1187
  curl_close($curl);
1188
  return true;
20
  * loaded by timthumb. This will save you having to re-edit these variables
21
  * everytime you download a new version
22
  */
23
+ define ('VERSION', '2.8.11'); // Version of this script
24
  //Load a config file if it exists. Otherwise, use the values below
25
  if( file_exists(dirname(__FILE__) . '/timthumb-config.php')) require_once('timthumb-config.php');
26
  if(! defined('DEBUG_ON') ) define ('DEBUG_ON', false); // Enable debug logging to web server error log (STDERR)
40
  if(! defined('FILE_CACHE_DIRECTORY') ) define ('FILE_CACHE_DIRECTORY', './cache'); // Directory where images are cached. Left blank it will use the system temporary directory (which is better for security)
41
  if(! defined('MAX_FILE_SIZE') ) define ('MAX_FILE_SIZE', 10485760); // 10 Megs is 10485760. This is the max internal or external file size that we'll process.
42
  if(! defined('CURL_TIMEOUT') ) define ('CURL_TIMEOUT', 20); // Timeout duration for Curl. This only applies if you have Curl installed and aren't using PHP's default URL fetching mechanism.
43
+ if(! defined('WAIT_BETWEEN_FETCH_ERRORS') ) define ('WAIT_BETWEEN_FETCH_ERRORS', 3600); // Time to wait between errors fetching remote file
44
 
45
  //Browser caching
46
  if(! defined('BROWSER_CACHE_MAX_AGE') ) define ('BROWSER_CACHE_MAX_AGE', 864000); // Time to cache in the browser
51
  if(! defined('MAX_HEIGHT') ) define ('MAX_HEIGHT', 1500); // Maximum image height
52
  if(! defined('NOT_FOUND_IMAGE') ) define ('NOT_FOUND_IMAGE', ''); // Image to serve if any 404 occurs
53
  if(! defined('ERROR_IMAGE') ) define ('ERROR_IMAGE', ''); // Image to serve if an error occurs instead of showing error message
54
+ if(! defined('PNG_IS_TRANSPARENT') ) define ('PNG_IS_TRANSPARENT', FALSE); // Define if a png image should have a transparent background color. Use False value if you want to display a custom coloured canvas_colour
55
  if(! defined('DEFAULT_Q') ) define ('DEFAULT_Q', 90); // Default image quality. Allows overrid in timthumb-config.php
56
  if(! defined('DEFAULT_ZC') ) define ('DEFAULT_ZC', 1); // Default zoom/crop setting. Allows overrid in timthumb-config.php
57
  if(! defined('DEFAULT_F') ) define ('DEFAULT_F', ''); // Default image filters. Allows overrid in timthumb-config.php
992
  $this->debug(3, "Remote file has invalid mime type: $mimeType");
993
  @unlink($this->cachefile);
994
  touch($this->cachefile);
995
+ $this->error("The remote file is not a valid image. Mimetype = '" . $mimeType . "'" . $tempfile);
996
  return false;
997
  }
998
  if($this->processImageAndWriteToCache($tempfile)){
1087
 
1088
  case 'image/png':
1089
  $image = imagecreatefrompng ($src);
1090
+ imagealphablending( $image, true );
1091
+ imagesavealpha( $image, true );
1092
  break;
1093
 
1094
  case 'image/gif':
1157
  default: return $size_str;
1158
  }
1159
  }
1160
+
1161
  protected function getURL($url, $tempfile){
1162
  $this->lastURLError = false;
1163
  $url = preg_replace('/ /', '%20', $url);
1186
  if($httpStatus == 404){
1187
  $this->set404();
1188
  }
1189
+ if($httpStatus == 302){
1190
+ $this->error("External Image is Redirecting. Try alternate image url");
1191
+ return false;
1192
+ }
1193
  if($curlResult){
1194
  curl_close($curl);
1195
  return true;