Version Description
- New: Select between CSS or HTML attributes for thumbnail width and height; Add author to posts; More options in the widget; More cache control; Check the Changelog for more information
=
Download this release
Release Info
Developer | Ajay |
Plugin | Contextual Related Posts |
Version | 1.8.9 |
Comparing to | |
See all releases |
Code changes from version 1.8.8 to 1.8.9
- admin.inc.php +150 -127
- contextual-related-posts.php +95 -29
- languages/crp-da_DK.mo +0 -0
- languages/crp-da_DK.po +143 -112
- languages/crp-de_DE.mo +0 -0
- languages/crp-de_DE.po +146 -112
- languages/crp-en_US.mo +0 -0
- languages/crp-en_US.po +143 -112
- languages/crp-en_US.pot +143 -112
- languages/crp-es_ES.mo +0 -0
- languages/crp-es_ES.po +146 -112
- languages/crp-fr_FR.mo +0 -0
- languages/crp-fr_FR.po +561 -0
- languages/crp-it_IT.mo +0 -0
- languages/crp-it_IT.po +146 -112
- languages/crp-lt_LT.mo +0 -0
- languages/crp-lt_LT.po +147 -112
- languages/crp-nl_NL.mo +0 -0
- languages/crp-nl_NL.po +146 -112
- languages/crp-ru_RU.mo +0 -0
- languages/crp-ru_RU.po +146 -112
- languages/crp-zh_CN.mo +0 -0
- languages/crp-zh_CN.po +147 -112
- readme.txt +39 -8
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- uninstall.php +8 -0
admin.inc.php
CHANGED
@@ -54,6 +54,7 @@ function crp_options() {
|
|
54 |
$crp_settings['thumb_height'] = intval($_POST['thumb_height']);
|
55 |
$crp_settings['thumb_width'] = intval($_POST['thumb_width']);
|
56 |
$crp_settings['thumb_default_show'] = (isset($_POST['thumb_default_show']) ? true : false);
|
|
|
57 |
|
58 |
$crp_settings['thumb_timthumb'] = (isset($_POST['thumb_timthumb']) ? true : false);
|
59 |
$crp_settings['thumb_timthumb_q'] = intval($_POST['thumb_timthumb_q']);
|
@@ -62,6 +63,7 @@ function crp_options() {
|
|
62 |
$crp_settings['show_excerpt'] = (isset($_POST['show_excerpt']) ? true : false);
|
63 |
$crp_settings['excerpt_length'] = intval($_POST['excerpt_length']);
|
64 |
$crp_settings['show_date'] = (isset($_POST['show_date']) ? true : false);
|
|
|
65 |
$crp_settings['show_credit'] = (isset($_POST['show_credit']) ? true : false);
|
66 |
$crp_settings['custom_CSS'] = wp_kses_post($_POST['custom_CSS']);
|
67 |
|
@@ -99,6 +101,7 @@ function crp_options() {
|
|
99 |
$posts_types_inc = array_intersect($wp_post_types, $post_types);
|
100 |
|
101 |
delete_post_meta_by_key('crp_related_posts'); // Delete the cache
|
|
|
102 |
|
103 |
$str = '<div id="message" class="updated fade"><p>'. __('Options saved successfully.',CRP_LOCAL_NAME) .'</p></div>';
|
104 |
echo $str;
|
@@ -191,16 +194,16 @@ function crp_options() {
|
|
191 |
<h3><?php _e('General options',CRP_LOCAL_NAME); ?></h3>
|
192 |
<table class="form-table">
|
193 |
<tr><th scope="row"><label for="cache"><?php _e('Cache output?',CRP_LOCAL_NAME); ?></label></th>
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
</tr>
|
199 |
<tr><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
|
200 |
-
|
201 |
</tr>
|
202 |
<tr><th scope="row"><label for="daily_range"><?php _e('Related posts should be newer than:',CRP_LOCAL_NAME); ?></label></th>
|
203 |
-
|
204 |
</tr>
|
205 |
<tr><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
|
206 |
<td>
|
@@ -214,46 +217,46 @@ function crp_options() {
|
|
214 |
</td>
|
215 |
</tr>
|
216 |
<tr><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
</tr>
|
221 |
<tr><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
|
222 |
-
|
223 |
</tr>
|
224 |
<tr><th scope="row"><label for="exclude_cat_slugs"><?php _e('Categories to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
</tr>
|
243 |
<tr><th scope="row"><?php _e('Add related posts to:',CRP_LOCAL_NAME); ?></th>
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
</tr>
|
255 |
<tr><th scope="row"><label for="show_credit"><?php _e('Add a link to the plugin page as a final item in the list',CRP_LOCAL_NAME); ?></label></th>
|
256 |
-
|
257 |
</tr>
|
258 |
|
259 |
</table>
|
@@ -263,116 +266,131 @@ function crp_options() {
|
|
263 |
<h3><?php _e('Output options',CRP_LOCAL_NAME); ?></h3>
|
264 |
<table class="form-table">
|
265 |
<tr><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
|
266 |
-
|
267 |
</tr>
|
268 |
<tr><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?></label></th>
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
</tr>
|
280 |
<tr><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
|
281 |
-
|
282 |
</tr>
|
283 |
<tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',CRP_LOCAL_NAME); ?></label></th>
|
284 |
-
|
|
|
|
|
|
|
285 |
</tr>
|
286 |
<tr><th scope="row"><label for="show_date"><?php _e('Show post date in list?',CRP_LOCAL_NAME); ?></label></th>
|
287 |
-
|
288 |
</tr>
|
289 |
<tr><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',CRP_LOCAL_NAME); ?></label></th>
|
290 |
-
|
291 |
</tr>
|
292 |
<tr><th scope="row"><label for="link_new_window"><?php _e('Open links in new window',CRP_LOCAL_NAME); ?></label></th>
|
293 |
-
|
294 |
</tr>
|
295 |
<tr><th scope="row"><label for="link_nofollow"><?php _e('Add nofollow attribute to links in the list',CRP_LOCAL_NAME); ?></label></th>
|
296 |
-
|
297 |
</tr>
|
298 |
<tr><th scope="row"><label for="exclude_on_post_ids"><?php _e('Exclude display of related posts on these posts / pages',CRP_LOCAL_NAME); ?></label></th>
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
</tr>
|
304 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
|
305 |
</tr>
|
306 |
<tr><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
|
307 |
-
|
308 |
</tr>
|
309 |
<tr><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',CRP_LOCAL_NAME); ?></label></th>
|
310 |
-
|
311 |
</tr>
|
312 |
<tr><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',CRP_LOCAL_NAME); ?></label></th>
|
313 |
-
|
314 |
</tr>
|
315 |
<tr><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
|
316 |
-
|
317 |
</tr>
|
318 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',CRP_LOCAL_NAME); ?></th>
|
319 |
</tr>
|
320 |
<tr><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
</tr>
|
340 |
<tr><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
341 |
-
|
342 |
</tr>
|
343 |
<tr><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
344 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
</tr>
|
346 |
<tr><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',CRP_LOCAL_NAME); ?></label></th>
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
</tr>
|
351 |
<tr><th scope="row"><label for="thumb_timthumb_q"><?php _e('Quality of thumbnails generated by timthumb',CRP_LOCAL_NAME); ?></label></th>
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
</tr>
|
357 |
<tr><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',CRP_LOCAL_NAME); ?></label></th>
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
</tr>
|
362 |
<tr><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',CRP_LOCAL_NAME); ?></label></th>
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
</tr>
|
367 |
<tr><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',CRP_LOCAL_NAME); ?></label></th>
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
</tr>
|
372 |
<tr><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
</tr>
|
377 |
</table>
|
378 |
</div>
|
@@ -382,36 +400,36 @@ function crp_options() {
|
|
382 |
<tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Below options override the related posts settings for your blog feed. These only apply if you have selected to add related posts to Feeds in the General Options tab.',CRP_LOCAL_NAME); ?></th>
|
383 |
</tr>
|
384 |
<tr><th scope="row"><label for="limit_feed"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
|
385 |
-
|
386 |
</tr>
|
387 |
<tr><th scope="row"><label for="show_excerpt_feed"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
|
388 |
-
|
389 |
</tr>
|
390 |
<tr><th scope="row"><label for="post_thumb_op_feed"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
</tr>
|
410 |
<tr><th scope="row"><label for="thumb_width_feed"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
411 |
-
|
412 |
</tr>
|
413 |
<tr><th scope="row"><label for="thumb_height_feed"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
414 |
-
|
415 |
</tr>
|
416 |
</table>
|
417 |
</div>
|
@@ -421,7 +439,7 @@ function crp_options() {
|
|
421 |
<tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
|
422 |
</tr>
|
423 |
<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>
|
424 |
-
|
425 |
</td></tr>
|
426 |
</table>
|
427 |
</div>
|
@@ -525,8 +543,13 @@ function crp_ajax_clearcache() {
|
|
525 |
WHERE meta_key='crp_related_posts'
|
526 |
");
|
527 |
|
|
|
|
|
|
|
|
|
|
|
528 |
// Did an error occur?
|
529 |
-
if ( $rows === false )
|
530 |
exit(json_encode(array(
|
531 |
'success' => 0,
|
532 |
'message' => __('An error occurred clearing the cache. Please contact your site administrator.\n\nError message:\n', CRP_LOCAL_NAME) . $wpdb->print_error(),
|
@@ -535,7 +558,7 @@ function crp_ajax_clearcache() {
|
|
535 |
else
|
536 |
exit(json_encode(array(
|
537 |
'success' => 1,
|
538 |
-
'message' => $rows . __(' cached row(s) cleared', CRP_LOCAL_NAME),
|
539 |
)));
|
540 |
}
|
541 |
add_action('wp_ajax_crp_clear_cache', 'crp_ajax_clearcache');
|
54 |
$crp_settings['thumb_height'] = intval($_POST['thumb_height']);
|
55 |
$crp_settings['thumb_width'] = intval($_POST['thumb_width']);
|
56 |
$crp_settings['thumb_default_show'] = (isset($_POST['thumb_default_show']) ? true : false);
|
57 |
+
$crp_settings['thumb_html'] = $_POST['thumb_html'];
|
58 |
|
59 |
$crp_settings['thumb_timthumb'] = (isset($_POST['thumb_timthumb']) ? true : false);
|
60 |
$crp_settings['thumb_timthumb_q'] = intval($_POST['thumb_timthumb_q']);
|
63 |
$crp_settings['show_excerpt'] = (isset($_POST['show_excerpt']) ? true : false);
|
64 |
$crp_settings['excerpt_length'] = intval($_POST['excerpt_length']);
|
65 |
$crp_settings['show_date'] = (isset($_POST['show_date']) ? true : false);
|
66 |
+
$crp_settings['show_author'] = (isset($_POST['show_author']) ? true : false);
|
67 |
$crp_settings['show_credit'] = (isset($_POST['show_credit']) ? true : false);
|
68 |
$crp_settings['custom_CSS'] = wp_kses_post($_POST['custom_CSS']);
|
69 |
|
101 |
$posts_types_inc = array_intersect($wp_post_types, $post_types);
|
102 |
|
103 |
delete_post_meta_by_key('crp_related_posts'); // Delete the cache
|
104 |
+
delete_post_meta_by_key('crp_related_posts_widget'); // Delete the cache
|
105 |
|
106 |
$str = '<div id="message" class="updated fade"><p>'. __('Options saved successfully.',CRP_LOCAL_NAME) .'</p></div>';
|
107 |
echo $str;
|
194 |
<h3><?php _e('General options',CRP_LOCAL_NAME); ?></h3>
|
195 |
<table class="form-table">
|
196 |
<tr><th scope="row"><label for="cache"><?php _e('Cache output?',CRP_LOCAL_NAME); ?></label></th>
|
197 |
+
<td><input type="checkbox" name="cache" id="cache" <?php if ($crp_settings['cache']) echo 'checked="checked"' ?> />
|
198 |
+
<p class="description"><?php _e('Enabling this option will cache the related posts output when the post is visited the first time. The cache is cleaned when you save this page.',CRP_LOCAL_NAME); ?></p>
|
199 |
+
<p><input type="button" value="<?php _e('Clear cache',CRP_LOCAL_NAME) ?>" onclick="return clearCache();" class="button-secondary" /></p>
|
200 |
+
</td>
|
201 |
</tr>
|
202 |
<tr><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
|
203 |
+
<td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>"></td>
|
204 |
</tr>
|
205 |
<tr><th scope="row"><label for="daily_range"><?php _e('Related posts should be newer than:',CRP_LOCAL_NAME); ?></label></th>
|
206 |
+
<td><input type="textbox" name="daily_range" id="daily_range" value="<?php echo esc_attr(stripslashes($crp_settings['daily_range'])); ?>"><?php _e('days',CRP_LOCAL_NAME); ?></td>
|
207 |
</tr>
|
208 |
<tr><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
|
209 |
<td>
|
217 |
</td>
|
218 |
</tr>
|
219 |
<tr><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
|
220 |
+
<td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings['match_content']) echo 'checked="checked"' ?> />
|
221 |
+
<p class="description"><?php _e('If unchecked, only posts titles are used. I recommend using a caching plugin or enabling "Cache output" above if you enable this.',CRP_LOCAL_NAME); ?></p>
|
222 |
+
</td>
|
223 |
</tr>
|
224 |
<tr><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
|
225 |
+
<td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_post_ids'])); ?>" style="width:250px"></td>
|
226 |
</tr>
|
227 |
<tr><th scope="row"><label for="exclude_cat_slugs"><?php _e('Categories to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
|
228 |
+
<td>
|
229 |
+
<div style="position:relative;text-align:left">
|
230 |
+
<table id="MYCUSTOMFLOATER" class="myCustomFloater" style="position:absolute;top:50px;left:0;background-color:#cecece;display:none;visibility:hidden">
|
231 |
+
<tr><td><!--
|
232 |
+
please see: http://chrisholland.blogspot.com/2004/09/geekstuff-css-display-inline-block.html
|
233 |
+
to explain why i'm using a table here.
|
234 |
+
You could replace the table/tr/td with a DIV, but you'd have to specify it's width and height
|
235 |
+
-->
|
236 |
+
<div class="myCustomFloaterContent">
|
237 |
+
you should never be seeing this
|
238 |
+
</div>
|
239 |
+
</td></tr>
|
240 |
+
</table>
|
241 |
+
<textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo (stripslashes($crp_settings['exclude_cat_slugs'])); ?></textarea>
|
242 |
+
</div>
|
243 |
+
<p class="description"><?php _e('Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the starting letters and it will prompt you with options',CRP_LOCAL_NAME); ?></p>
|
244 |
+
</td>
|
245 |
</tr>
|
246 |
<tr><th scope="row"><?php _e('Add related posts to:',CRP_LOCAL_NAME); ?></th>
|
247 |
+
<td>
|
248 |
+
<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 />
|
249 |
+
<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 />
|
250 |
+
<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 />
|
251 |
+
<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 />
|
252 |
+
<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 />
|
253 |
+
<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 />
|
254 |
+
<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>
|
255 |
+
<p class="description"><?php _e('If you choose to disable this, please add <code><?php if(function_exists(\'echo_ald_crp\')) echo_ald_crp(); ?></code> to your template file where you want it displayed',CRP_LOCAL_NAME); ?></p>
|
256 |
+
</td>
|
257 |
</tr>
|
258 |
<tr><th scope="row"><label for="show_credit"><?php _e('Add a link to the plugin page as a final item in the list',CRP_LOCAL_NAME); ?></label></th>
|
259 |
+
<td><input type="checkbox" name="show_credit" id="show_credit" <?php if ($crp_settings['show_credit']) echo 'checked="checked"' ?> /> <?php _e(' <em>Optional</em>',CRP_LOCAL_NAME); ?></td>
|
260 |
</tr>
|
261 |
|
262 |
</table>
|
266 |
<h3><?php _e('Output options',CRP_LOCAL_NAME); ?></h3>
|
267 |
<table class="form-table">
|
268 |
<tr><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
|
269 |
+
<td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($crp_settings['title'])); ?>" style="width:250px" /></td>
|
270 |
</tr>
|
271 |
<tr><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?></label></th>
|
272 |
+
<td>
|
273 |
+
<label>
|
274 |
+
<input type="radio" name="blank_output" value="blank" id="blank_output_0" <?php if ($crp_settings['blank_output']) echo 'checked="checked"' ?> />
|
275 |
+
<?php _e('Blank Output',CRP_LOCAL_NAME); ?></label>
|
276 |
+
<br />
|
277 |
+
<label>
|
278 |
+
<input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if (!$crp_settings['blank_output']) echo 'checked="checked"' ?> />
|
279 |
+
<?php _e('Display:',CRP_LOCAL_NAME); ?></label>
|
280 |
+
<input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr(stripslashes($crp_settings['blank_output_text'])); ?>" style="width:250px" />
|
281 |
+
</td>
|
282 |
</tr>
|
283 |
<tr><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
|
284 |
+
<td><input type="checkbox" name="show_excerpt" id="show_excerpt" <?php if ($crp_settings['show_excerpt']) echo 'checked="checked"' ?> /></td>
|
285 |
</tr>
|
286 |
<tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',CRP_LOCAL_NAME); ?></label></th>
|
287 |
+
<td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($crp_settings['excerpt_length']); ?>" /></td>
|
288 |
+
</tr>
|
289 |
+
<tr><th scope="row"><label for="show_author"><?php _e('Show post author in list?',CRP_LOCAL_NAME); ?></label></th>
|
290 |
+
<td><input type="checkbox" name="show_author" id="show_author" <?php if ($crp_settings['show_author']) echo 'checked="checked"' ?> /></td>
|
291 |
</tr>
|
292 |
<tr><th scope="row"><label for="show_date"><?php _e('Show post date in list?',CRP_LOCAL_NAME); ?></label></th>
|
293 |
+
<td><input type="checkbox" name="show_date" id="show_date" <?php if ($crp_settings['show_date']) echo 'checked="checked"' ?> /></td>
|
294 |
</tr>
|
295 |
<tr><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',CRP_LOCAL_NAME); ?></label></th>
|
296 |
+
<td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($crp_settings['title_length']); ?>" /></td>
|
297 |
</tr>
|
298 |
<tr><th scope="row"><label for="link_new_window"><?php _e('Open links in new window',CRP_LOCAL_NAME); ?></label></th>
|
299 |
+
<td><input type="checkbox" name="link_new_window" id="link_new_window" <?php if ($crp_settings['link_new_window']) echo 'checked="checked"' ?> /></td>
|
300 |
</tr>
|
301 |
<tr><th scope="row"><label for="link_nofollow"><?php _e('Add nofollow attribute to links in the list',CRP_LOCAL_NAME); ?></label></th>
|
302 |
+
<td><input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ($crp_settings['link_nofollow']) echo 'checked="checked"' ?> /></td>
|
303 |
</tr>
|
304 |
<tr><th scope="row"><label for="exclude_on_post_ids"><?php _e('Exclude display of related posts on these posts / pages',CRP_LOCAL_NAME); ?></label></th>
|
305 |
+
<td>
|
306 |
+
<input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_on_post_ids'])); ?>" style="width:250px">
|
307 |
+
<p class="description"><?php _e('Enter comma separated list of IDs. e.g. 188,320,500',CRP_LOCAL_NAME); ?></p>
|
308 |
+
</td>
|
309 |
</tr>
|
310 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
|
311 |
</tr>
|
312 |
<tr><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
|
313 |
+
<td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($crp_settings['before_list'])); ?>" style="width:250px" /></td>
|
314 |
</tr>
|
315 |
<tr><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',CRP_LOCAL_NAME); ?></label></th>
|
316 |
+
<td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr(stripslashes($crp_settings['before_list_item'])); ?>" style="width:250px" /></td>
|
317 |
</tr>
|
318 |
<tr><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',CRP_LOCAL_NAME); ?></label></th>
|
319 |
+
<td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr(stripslashes($crp_settings['after_list_item'])); ?>" style="width:250px" /></td>
|
320 |
</tr>
|
321 |
<tr><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
|
322 |
+
<td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($crp_settings['after_list'])); ?>" style="width:250px" /></td>
|
323 |
</tr>
|
324 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',CRP_LOCAL_NAME); ?></th>
|
325 |
</tr>
|
326 |
<tr><th scope="row"><label for="post_thumb_op"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
|
327 |
+
<td>
|
328 |
+
<label>
|
329 |
+
<input type="radio" name="post_thumb_op" value="inline" id="post_thumb_op_0" <?php if ($crp_settings['post_thumb_op']=='inline') echo 'checked="checked"' ?> />
|
330 |
+
<?php _e('Display thumbnails inline with posts, before title',CRP_LOCAL_NAME); ?></label>
|
331 |
+
<br />
|
332 |
+
<label>
|
333 |
+
<input type="radio" name="post_thumb_op" value="after" id="post_thumb_op_1" <?php if ($crp_settings['post_thumb_op']=='after') echo 'checked="checked"' ?> />
|
334 |
+
<?php _e('Display thumbnails inline with posts, after title',CRP_LOCAL_NAME); ?></label>
|
335 |
+
<br />
|
336 |
+
<label>
|
337 |
+
<input type="radio" name="post_thumb_op" value="thumbs_only" id="post_thumb_op_2" <?php if ($crp_settings['post_thumb_op']=='thumbs_only') echo 'checked="checked"' ?> />
|
338 |
+
<?php _e('Display only thumbnails, no text',CRP_LOCAL_NAME); ?></label>
|
339 |
+
<br />
|
340 |
+
<label>
|
341 |
+
<input type="radio" name="post_thumb_op" value="text_only" id="post_thumb_op_3" <?php if ($crp_settings['post_thumb_op']=='text_only') echo 'checked="checked"' ?> />
|
342 |
+
<?php _e('Do not display thumbnails, only text.',CRP_LOCAL_NAME); ?></label>
|
343 |
+
<br />
|
344 |
+
</td>
|
345 |
</tr>
|
346 |
<tr><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
347 |
+
<td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_width'])); ?>" style="width:30px" />px</td>
|
348 |
</tr>
|
349 |
<tr><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
350 |
+
<td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_height'])); ?>" style="width:30px" />px</td>
|
351 |
+
</tr>
|
352 |
+
<tr><th scope="row"><label for="thumb_html"><?php _e('Style attributes / Width and Height HTML attributes:',CRP_LOCAL_NAME); ?></label></th>
|
353 |
+
<td>
|
354 |
+
<label>
|
355 |
+
<input type="radio" name="thumb_html" value="css" id="thumb_html_0" <?php if ($crp_settings['thumb_html']=='css') echo 'checked="checked"' ?> />
|
356 |
+
<?php _e('Style attributes are used for width and height. <code>style="max-width:'.$crp_settings['thumb_width'].'px;max-height:'.$crp_settings['thumb_height'].'px;"</code>',CRP_LOCAL_NAME); ?></label>
|
357 |
+
<br />
|
358 |
+
<label>
|
359 |
+
<input type="radio" name="thumb_html" value="html" id="thumb_html_1" <?php if ($crp_settings['thumb_html']=='html') echo 'checked="checked"' ?> />
|
360 |
+
<?php _e('HTML width and height attributes are used for width and height. <code>width="'.$crp_settings['thumb_width'].'" height="'.$crp_settings['thumb_height'].'"</code>',CRP_LOCAL_NAME); ?></label>
|
361 |
+
<br />
|
362 |
+
</td>
|
363 |
</tr>
|
364 |
<tr><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',CRP_LOCAL_NAME); ?></label></th>
|
365 |
+
<td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($crp_settings['thumb_timthumb']) echo 'checked="checked"' ?> />
|
366 |
+
<p class="description"><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',CRP_LOCAL_NAME); ?></p>
|
367 |
+
</td>
|
368 |
</tr>
|
369 |
<tr><th scope="row"><label for="thumb_timthumb_q"><?php _e('Quality of thumbnails generated by timthumb',CRP_LOCAL_NAME); ?></label></th>
|
370 |
+
<td>
|
371 |
+
<input type="textbox" name="thumb_timthumb_q" id="thumb_timthumb_q" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_timthumb_q'])); ?>" style="width:30px" />
|
372 |
+
<p class="description"><?php _e('Enter values between 0 and 100 only. 100 is highest quality, however, it is also the highest file size. Suggested maximum value is 95. CRP default is 75.',CRP_LOCAL_NAME); ?></p>
|
373 |
+
</td>
|
374 |
</tr>
|
375 |
<tr><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',CRP_LOCAL_NAME); ?></label></th>
|
376 |
+
<td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_meta'])); ?>">
|
377 |
+
<p class="description"><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',CRP_LOCAL_NAME); ?></p>
|
378 |
+
</td>
|
379 |
</tr>
|
380 |
<tr><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',CRP_LOCAL_NAME); ?></label></th>
|
381 |
+
<td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($crp_settings['scan_images']) echo 'checked="checked"' ?> />
|
382 |
+
<p class="description"><?php _e('This can slow down the loading of your page if the first image in the related posts is large in file-size',CRP_LOCAL_NAME); ?></p>
|
383 |
+
</td>
|
384 |
</tr>
|
385 |
<tr><th scope="row"><label for="thumb_default_show"><?php _e('Use default thumbnail? ',CRP_LOCAL_NAME); ?></label></th>
|
386 |
+
<td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($crp_settings['thumb_default_show']) echo 'checked="checked"' ?> />
|
387 |
+
<p class="description"><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',CRP_LOCAL_NAME); ?></p>
|
388 |
+
</td>
|
389 |
</tr>
|
390 |
<tr><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
391 |
+
<td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_default'])); ?>" style="width:500px">
|
392 |
+
<p class="description"><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',CRP_LOCAL_NAME); ?></p>
|
393 |
+
</td>
|
394 |
</tr>
|
395 |
</table>
|
396 |
</div>
|
400 |
<tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Below options override the related posts settings for your blog feed. These only apply if you have selected to add related posts to Feeds in the General Options tab.',CRP_LOCAL_NAME); ?></th>
|
401 |
</tr>
|
402 |
<tr><th scope="row"><label for="limit_feed"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
|
403 |
+
<td><input type="textbox" name="limit_feed" id="limit_feed" value="<?php echo esc_attr(stripslashes($crp_settings['limit_feed'])); ?>"></td>
|
404 |
</tr>
|
405 |
<tr><th scope="row"><label for="show_excerpt_feed"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
|
406 |
+
<td><input type="checkbox" name="show_excerpt_feed" id="show_excerpt_feed" <?php if ($crp_settings['show_excerpt_feed']) echo 'checked="checked"' ?> /></td>
|
407 |
</tr>
|
408 |
<tr><th scope="row"><label for="post_thumb_op_feed"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
|
409 |
+
<td>
|
410 |
+
<label>
|
411 |
+
<input type="radio" name="post_thumb_op_feed" value="inline" id="post_thumb_op_feed_0" <?php if ($crp_settings['post_thumb_op_feed']=='inline') echo 'checked="checked"' ?> />
|
412 |
+
<?php _e('Display thumbnails inline with posts, before title',CRP_LOCAL_NAME); ?></label>
|
413 |
+
<br />
|
414 |
+
<label>
|
415 |
+
<input type="radio" name="post_thumb_op_feed" value="after" id="post_thumb_op_feed_1" <?php if ($crp_settings['post_thumb_op_feed']=='after') echo 'checked="checked"' ?> />
|
416 |
+
<?php _e('Display thumbnails inline with posts, after title',CRP_LOCAL_NAME); ?></label>
|
417 |
+
<br />
|
418 |
+
<label>
|
419 |
+
<input type="radio" name="post_thumb_op_feed" value="thumbs_only" id="post_thumb_op_feed_2" <?php if ($crp_settings['post_thumb_op_feed']=='thumbs_only') echo 'checked="checked"' ?> />
|
420 |
+
<?php _e('Display only thumbnails, no text',CRP_LOCAL_NAME); ?></label>
|
421 |
+
<br />
|
422 |
+
<label>
|
423 |
+
<input type="radio" name="post_thumb_op_feed" value="text_only" id="post_thumb_op_feed_3" <?php if ($crp_settings['post_thumb_op_feed']=='text_only') echo 'checked="checked"' ?> />
|
424 |
+
<?php _e('Do not display thumbnails, only text.',CRP_LOCAL_NAME); ?></label>
|
425 |
+
<br />
|
426 |
+
</td>
|
427 |
</tr>
|
428 |
<tr><th scope="row"><label for="thumb_width_feed"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
429 |
+
<td><input type="textbox" name="thumb_width_feed" id="thumb_width_feed" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_width_feed'])); ?>" style="width:30px" />px</td>
|
430 |
</tr>
|
431 |
<tr><th scope="row"><label for="thumb_height_feed"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
432 |
+
<td><input type="textbox" name="thumb_height_feed" id="thumb_height_feed" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_height_feed'])); ?>" style="width:30px" />px</td>
|
433 |
</tr>
|
434 |
</table>
|
435 |
</div>
|
439 |
<tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
|
440 |
</tr>
|
441 |
<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>
|
442 |
+
<p class="description"><?php _e('Do not include <code>style</code> tags. Check out the <a href="http://wordpress.org/extend/plugins/contextual-related-posts/faq/" target="_blank">FAQ</a> for available CSS classes to style.',CRP_LOCAL_NAME); ?></p>
|
443 |
</td></tr>
|
444 |
</table>
|
445 |
</div>
|
543 |
WHERE meta_key='crp_related_posts'
|
544 |
");
|
545 |
|
546 |
+
$rows2 = $wpdb->query("
|
547 |
+
DELETE FROM " . $wpdb->postmeta . "
|
548 |
+
WHERE meta_key='crp_related_posts_widget'
|
549 |
+
");
|
550 |
+
|
551 |
// Did an error occur?
|
552 |
+
if (( $rows === false ) && ( $rows2 === false ))
|
553 |
exit(json_encode(array(
|
554 |
'success' => 0,
|
555 |
'message' => __('An error occurred clearing the cache. Please contact your site administrator.\n\nError message:\n', CRP_LOCAL_NAME) . $wpdb->print_error(),
|
558 |
else
|
559 |
exit(json_encode(array(
|
560 |
'success' => 1,
|
561 |
+
'message' => ($rows+$rows2) . __(' cached row(s) cleared', CRP_LOCAL_NAME),
|
562 |
)));
|
563 |
}
|
564 |
add_action('wp_ajax_crp_clear_cache', 'crp_ajax_clearcache');
|
contextual-related-posts.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Contextual Related Posts
|
4 |
-
Version: 1.8.
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
|
6 |
Description: Displaying a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
|
7 |
Author: Ajay D'Souza
|
@@ -69,8 +69,8 @@ function ald_crp( $args ) {
|
|
69 |
extract( $args, EXTR_SKIP );
|
70 |
|
71 |
//Support caching to speed up retrieval
|
72 |
-
if ( !empty($
|
73 |
-
$output = get_post_meta($post->ID, 'crp_related_posts', true);
|
74 |
if ( $output ) return $output;
|
75 |
}
|
76 |
|
@@ -81,20 +81,20 @@ function ald_crp( $args ) {
|
|
81 |
|
82 |
// Retrieve the list of posts
|
83 |
$results = get_crp_posts($post->ID, $limit, TRUE);
|
84 |
-
|
85 |
$output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
|
86 |
|
87 |
if($results){
|
88 |
$loop_counter = 0;
|
89 |
|
90 |
-
if(!$is_widget) $output .= (
|
91 |
$output .= $crp_settings['before_list'];
|
92 |
|
93 |
foreach($results as $result) {
|
94 |
$result = get_post($result->ID); // Let's get the Post using the ID
|
95 |
$categorys = get_the_category($result->ID); //Fetch categories of the plugin
|
96 |
$p_in_c = false; // Variable to check if post exists in a particular category
|
97 |
-
$title = crp_max_formatted_content(get_the_title($result->ID),$
|
98 |
foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
|
99 |
$p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
|
100 |
if ($p_in_c) break; // End loop if post found in category
|
@@ -109,12 +109,19 @@ function ald_crp( $args ) {
|
|
109 |
}
|
110 |
if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
|
111 |
$output .= '<a href="'.get_permalink($result->ID).'" '.$rel_attribute.' '.$target_attribute.'>';
|
112 |
-
$output .= crp_get_the_post_thumbnail('postid='.$result->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$crp_settings['thumb_meta'].'&thumb_default='.$crp_settings['thumb_default'].'&thumb_default_show='.$crp_settings['thumb_default_show'].'&thumb_timthumb='.$crp_settings['thumb_timthumb'].'&thumb_timthumb_q='.$crp_settings['thumb_timthumb_q'].'&scan_images='.$crp_settings['scan_images'].'&class=crp_thumb&filter=crp_postimage');
|
113 |
$output .= '</a>';
|
114 |
}
|
115 |
if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
|
116 |
$output .= '<a href="'.get_permalink($result->ID).'" '.$rel_attribute.' '.$target_attribute.' class="crp_title">'.$title.'</a>'; // Add title when required by settings
|
117 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
if ($show_date) {
|
119 |
$output .= '<span class="crp_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
|
120 |
}
|
@@ -143,9 +150,12 @@ function ald_crp( $args ) {
|
|
143 |
|
144 |
|
145 |
//Support caching to speed up retrieval
|
146 |
-
if ( !empty($
|
147 |
-
|
148 |
-
|
|
|
|
|
|
|
149 |
return $output;
|
150 |
}
|
151 |
|
@@ -284,8 +294,8 @@ add_filter('the_content_feed', 'ald_crp_rss');
|
|
284 |
* @access public
|
285 |
* @return string echoed output of related posts
|
286 |
*/
|
287 |
-
function echo_ald_crp() {
|
288 |
-
echo ald_crp('is_widget=0');
|
289 |
}
|
290 |
|
291 |
/*********************************************************************
|
@@ -304,12 +314,14 @@ class WidgetCRP extends WP_Widget
|
|
304 |
$this->WP_Widget('widget_crp',__('Related Posts',CRP_LOCAL_NAME), $widget_ops);
|
305 |
}
|
306 |
function form($instance) {
|
307 |
-
$title = esc_attr($instance['title']);
|
308 |
-
$limit = esc_attr($instance['limit']);
|
309 |
-
$show_excerpt = esc_attr($instance['show_excerpt']);
|
310 |
-
$
|
311 |
-
$
|
312 |
-
$
|
|
|
|
|
313 |
?>
|
314 |
<p>
|
315 |
<label for="<?php echo $this->get_field_id('title'); ?>">
|
@@ -326,6 +338,16 @@ class WidgetCRP extends WP_Widget
|
|
326 |
<input id="<?php echo $this->get_field_id('show_excerpt'); ?>" name="<?php echo $this->get_field_name('show_excerpt'); ?>" type="checkbox" <?php if ($show_excerpt) echo 'checked="checked"' ?> /> <?php _e(' Show excerpt?', CRP_LOCAL_NAME); ?>
|
327 |
</label>
|
328 |
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
<p>
|
330 |
<?php _e('Thumbnail options', CRP_LOCAL_NAME); ?>: <br />
|
331 |
<select class="widefat" id="<?php echo $this->get_field_id('post_thumb_op'); ?>" name="<?php echo $this->get_field_name('post_thumb_op'); ?>">
|
@@ -352,9 +374,12 @@ class WidgetCRP extends WP_Widget
|
|
352 |
$instance['title'] = strip_tags($new_instance['title']);
|
353 |
$instance['limit'] = ($new_instance['limit']);
|
354 |
$instance['show_excerpt'] = ($new_instance['show_excerpt']);
|
|
|
|
|
355 |
$instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
|
356 |
$instance['thumb_height'] = ($new_instance['thumb_height']);
|
357 |
$instance['thumb_width'] = ($new_instance['thumb_width']);
|
|
|
358 |
return $instance;
|
359 |
} //ending update
|
360 |
function widget($args, $instance) {
|
@@ -372,14 +397,19 @@ class WidgetCRP extends WP_Widget
|
|
372 |
$limit = $instance['limit'];
|
373 |
if (empty($limit)) $limit = $crp_settings['limit'];
|
374 |
|
375 |
-
$show_excerpt = $instance['show_excerpt'];
|
376 |
-
$post_thumb_op = $instance['post_thumb_op'];
|
377 |
-
$thumb_height = $instance['thumb_height'];
|
378 |
-
$thumb_width = $instance['thumb_width'];
|
379 |
-
|
380 |
$output = $before_widget;
|
381 |
$output .= $before_title . $title . $after_title;
|
382 |
-
$output .= ald_crp(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
383 |
$output .= $after_widget;
|
384 |
|
385 |
echo $output;
|
@@ -399,7 +429,7 @@ add_action('init', 'init_ald_crp', 1);
|
|
399 |
* Shortcode functions *
|
400 |
********************************************************************/
|
401 |
/**
|
402 |
-
* Creates a shortcode [crp limit="5" heading="1"].
|
403 |
*
|
404 |
* @access public
|
405 |
* @param array $atts
|
@@ -410,10 +440,11 @@ function crp_shortcode( $atts, $content = null ) {
|
|
410 |
extract( shortcode_atts( array(
|
411 |
'limit' => '5',
|
412 |
'heading' => '1',
|
|
|
413 |
), $atts ) );
|
414 |
|
415 |
$heading = 1 - $heading;
|
416 |
-
return ald_crp('is_widget='.$heading.'&limit='.$limit);
|
417 |
}
|
418 |
add_shortcode( 'crp', 'crp_shortcode' );
|
419 |
|
@@ -466,6 +497,7 @@ function crp_default_options() {
|
|
466 |
'post_thumb_op' => 'text_only', // Default option to display text and no thumbnails in posts
|
467 |
'thumb_height' => '50', // Height of thumbnails
|
468 |
'thumb_width' => '50', // Width of thumbnails
|
|
|
469 |
'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
|
470 |
'thumb_default' => $thumb_default, // Default thumbnail image
|
471 |
'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
|
@@ -474,6 +506,7 @@ function crp_default_options() {
|
|
474 |
'scan_images' => false, // Scan post for images
|
475 |
'show_excerpt' => false, // Show post excerpt in list item
|
476 |
'show_date' => false, // Show date in list item
|
|
|
477 |
'excerpt_length' => '10', // Length of characters
|
478 |
'title_length' => '60', // Limit length of post title
|
479 |
'post_types' => $post_types, // WordPress custom post types
|
@@ -616,6 +649,7 @@ function crp_get_the_post_thumbnail($args = array()) {
|
|
616 |
'thumb_height' => '50', // Max height of thumbnails
|
617 |
'thumb_width' => '50', // Max width of thumbnails
|
618 |
'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
|
|
|
619 |
'thumb_default' => '', // Default thumbnail image
|
620 |
'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
|
621 |
'thumb_timthumb' => true, // Use timthumb
|
@@ -635,13 +669,14 @@ function crp_get_the_post_thumbnail($args = array()) {
|
|
635 |
|
636 |
$output = '';
|
637 |
$title = get_the_title($postid);
|
|
|
638 |
|
639 |
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) ) ) {
|
640 |
$postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
|
641 |
|
642 |
if ( ($postimage[1] < $thumb_width) || ($postimage[2] < $thumb_height) ) $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) , 'full' );
|
643 |
$postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q );
|
644 |
-
$output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'"
|
645 |
} else {
|
646 |
$postimage = get_post_meta($result->ID, $thumb_meta, true); // Check the post meta first
|
647 |
if (!$postimage && $scan_images) {
|
@@ -653,11 +688,12 @@ function crp_get_the_post_thumbnail($args = array()) {
|
|
653 |
}
|
654 |
}
|
655 |
}
|
|
|
656 |
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
|
657 |
if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
|
658 |
if ($postimage) {
|
659 |
$postimage = apply_filters( $filter, $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q );
|
660 |
-
$output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'"
|
661 |
}
|
662 |
}
|
663 |
|
@@ -665,6 +701,36 @@ function crp_get_the_post_thumbnail($args = array()) {
|
|
665 |
}
|
666 |
|
667 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
668 |
/**
|
669 |
* Function to create an excerpt for the post.
|
670 |
*
|
@@ -676,7 +742,7 @@ function crp_get_the_post_thumbnail($args = array()) {
|
|
676 |
function crp_excerpt($id,$excerpt_length){
|
677 |
$content = get_post($id)->post_excerpt;
|
678 |
if ($content=='') $content = get_post($id)->post_content;
|
679 |
-
$out = strip_tags($content);
|
680 |
$blah = explode(' ',$out);
|
681 |
if (!$excerpt_length) $excerpt_length = 10;
|
682 |
if(count($blah) > $excerpt_length){
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Contextual Related Posts
|
4 |
+
Version: 1.8.9
|
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
|
69 |
extract( $args, EXTR_SKIP );
|
70 |
|
71 |
//Support caching to speed up retrieval
|
72 |
+
if ( !empty($cache) ) {
|
73 |
+
$output = ($is_widget) ? get_post_meta($post->ID, 'crp_related_posts_widget', true) : get_post_meta($post->ID, 'crp_related_posts', true);
|
74 |
if ( $output ) return $output;
|
75 |
}
|
76 |
|
81 |
|
82 |
// Retrieve the list of posts
|
83 |
$results = get_crp_posts($post->ID, $limit, TRUE);
|
84 |
+
|
85 |
$output = (is_singular()) ? '<div id="crp_related" class="crp_related">' : '<div class="crp_related">';
|
86 |
|
87 |
if($results){
|
88 |
$loop_counter = 0;
|
89 |
|
90 |
+
if(!$is_widget) $output .= apply_filters('crp_heading_title',$title);
|
91 |
$output .= $crp_settings['before_list'];
|
92 |
|
93 |
foreach($results as $result) {
|
94 |
$result = get_post($result->ID); // Let's get the Post using the ID
|
95 |
$categorys = get_the_category($result->ID); //Fetch categories of the plugin
|
96 |
$p_in_c = false; // Variable to check if post exists in a particular category
|
97 |
+
$title = apply_filters('crp_title', crp_max_formatted_content(get_the_title($result->ID),$title_length) );
|
98 |
foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
|
99 |
$p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
|
100 |
if ($p_in_c) break; // End loop if post found in category
|
109 |
}
|
110 |
if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
|
111 |
$output .= '<a href="'.get_permalink($result->ID).'" '.$rel_attribute.' '.$target_attribute.'>';
|
112 |
+
$output .= crp_get_the_post_thumbnail('postid='.$result->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$crp_settings['thumb_meta'].'&thumb_html='.$crp_settings['thumb_html'].'&thumb_default='.$crp_settings['thumb_default'].'&thumb_default_show='.$crp_settings['thumb_default_show'].'&thumb_timthumb='.$crp_settings['thumb_timthumb'].'&thumb_timthumb_q='.$crp_settings['thumb_timthumb_q'].'&scan_images='.$crp_settings['scan_images'].'&class=crp_thumb&filter=crp_postimage');
|
113 |
$output .= '</a>';
|
114 |
}
|
115 |
if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
|
116 |
$output .= '<a href="'.get_permalink($result->ID).'" '.$rel_attribute.' '.$target_attribute.' class="crp_title">'.$title.'</a>'; // Add title when required by settings
|
117 |
}
|
118 |
+
if ($show_author) {
|
119 |
+
$author_info = get_userdata($result->post_author);
|
120 |
+
$author_name = ucwords(trim(stripslashes($author_info->user_nicename)));
|
121 |
+
$author_link = get_author_posts_url( $author_info->ID );
|
122 |
+
|
123 |
+
$output .= '<span class="crp_author"> '.__(' Posted by ', CRP_LOCAL_NAME ).'<a href="'.$author_link.'">'.$author_name.'</a></span> ';
|
124 |
+
}
|
125 |
if ($show_date) {
|
126 |
$output .= '<span class="crp_date"> '.mysql2date(get_option('date_format','d/m/y'), $result->post_date).'</span> ';
|
127 |
}
|
150 |
|
151 |
|
152 |
//Support caching to speed up retrieval
|
153 |
+
if ( !empty($cache) ) {
|
154 |
+
if ($is_widget)
|
155 |
+
update_post_meta($post->ID, 'crp_related_posts_widget', $output, '');
|
156 |
+
else
|
157 |
+
update_post_meta($post->ID, 'crp_related_posts', $output, '');
|
158 |
+
}
|
159 |
return $output;
|
160 |
}
|
161 |
|
294 |
* @access public
|
295 |
* @return string echoed output of related posts
|
296 |
*/
|
297 |
+
function echo_ald_crp($cache = 0) {
|
298 |
+
echo ald_crp('is_widget=0&cache='.$cache);
|
299 |
}
|
300 |
|
301 |
/*********************************************************************
|
314 |
$this->WP_Widget('widget_crp',__('Related Posts',CRP_LOCAL_NAME), $widget_ops);
|
315 |
}
|
316 |
function form($instance) {
|
317 |
+
$title = isset($instance['title']) ? esc_attr($instance['title']) : '';
|
318 |
+
$limit = isset($instance['limit']) ? esc_attr($instance['limit']) : '';
|
319 |
+
$show_excerpt = isset($instance['show_excerpt']) ? esc_attr($instance['show_excerpt']) : '';
|
320 |
+
$show_author = isset($instance['show_author']) ? esc_attr($instance['show_author']) : '';
|
321 |
+
$show_date = isset($instance['show_date']) ? esc_attr($instance['show_date']) : '';
|
322 |
+
$post_thumb_op = isset($instance['post_thumb_op']) ? esc_attr($instance['post_thumb_op']) : '';
|
323 |
+
$thumb_height = isset($instance['thumb_height']) ? esc_attr($instance['thumb_height']) : '';
|
324 |
+
$thumb_width = isset($instance['thumb_width']) ? esc_attr($instance['thumb_width']) : '';
|
325 |
?>
|
326 |
<p>
|
327 |
<label for="<?php echo $this->get_field_id('title'); ?>">
|
338 |
<input id="<?php echo $this->get_field_id('show_excerpt'); ?>" name="<?php echo $this->get_field_name('show_excerpt'); ?>" type="checkbox" <?php if ($show_excerpt) echo 'checked="checked"' ?> /> <?php _e(' Show excerpt?', CRP_LOCAL_NAME); ?>
|
339 |
</label>
|
340 |
</p>
|
341 |
+
<p>
|
342 |
+
<label for="<?php echo $this->get_field_id('show_author'); ?>">
|
343 |
+
<input id="<?php echo $this->get_field_id('show_author'); ?>" name="<?php echo $this->get_field_name('show_author'); ?>" type="checkbox" <?php if ($show_author) echo 'checked="checked"' ?> /> <?php _e(' Show author?', CRP_LOCAL_NAME); ?>
|
344 |
+
</label>
|
345 |
+
</p>
|
346 |
+
<p>
|
347 |
+
<label for="<?php echo $this->get_field_id('show_date'); ?>">
|
348 |
+
<input id="<?php echo $this->get_field_id('show_date'); ?>" name="<?php echo $this->get_field_name('show_date'); ?>" type="checkbox" <?php if ($show_date) echo 'checked="checked"' ?> /> <?php _e(' Show date?', CRP_LOCAL_NAME); ?>
|
349 |
+
</label>
|
350 |
+
</p>
|
351 |
<p>
|
352 |
<?php _e('Thumbnail options', CRP_LOCAL_NAME); ?>: <br />
|
353 |
<select class="widefat" id="<?php echo $this->get_field_id('post_thumb_op'); ?>" name="<?php echo $this->get_field_name('post_thumb_op'); ?>">
|
374 |
$instance['title'] = strip_tags($new_instance['title']);
|
375 |
$instance['limit'] = ($new_instance['limit']);
|
376 |
$instance['show_excerpt'] = ($new_instance['show_excerpt']);
|
377 |
+
$instance['show_author'] = ($new_instance['show_author']);
|
378 |
+
$instance['show_date'] = ($new_instance['show_date']);
|
379 |
$instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
|
380 |
$instance['thumb_height'] = ($new_instance['thumb_height']);
|
381 |
$instance['thumb_width'] = ($new_instance['thumb_width']);
|
382 |
+
delete_post_meta_by_key('crp_related_posts_widget'); // Delete the cache
|
383 |
return $instance;
|
384 |
} //ending update
|
385 |
function widget($args, $instance) {
|
397 |
$limit = $instance['limit'];
|
398 |
if (empty($limit)) $limit = $crp_settings['limit'];
|
399 |
|
|
|
|
|
|
|
|
|
|
|
400 |
$output = $before_widget;
|
401 |
$output .= $before_title . $title . $after_title;
|
402 |
+
$output .= ald_crp( array(
|
403 |
+
'is_widget' => 1,
|
404 |
+
'limit' => $limit,
|
405 |
+
'show_excerpt' => $instance['show_excerpt'],
|
406 |
+
'show_author' => $instance['show_author'],
|
407 |
+
'show_date' => $instance['show_date'],
|
408 |
+
'post_thumb_op' => $instance['post_thumb_op'],
|
409 |
+
'thumb_height' => $instance['thumb_height'],
|
410 |
+
'thumb_width' => $instance['thumb_width'],
|
411 |
+
) );
|
412 |
+
|
413 |
$output .= $after_widget;
|
414 |
|
415 |
echo $output;
|
429 |
* Shortcode functions *
|
430 |
********************************************************************/
|
431 |
/**
|
432 |
+
* Creates a shortcode [crp limit="5" heading="1" cache="1"].
|
433 |
*
|
434 |
* @access public
|
435 |
* @param array $atts
|
440 |
extract( shortcode_atts( array(
|
441 |
'limit' => '5',
|
442 |
'heading' => '1',
|
443 |
+
'cache' => '1',
|
444 |
), $atts ) );
|
445 |
|
446 |
$heading = 1 - $heading;
|
447 |
+
return ald_crp('is_widget='.$heading.'&limit='.$limit.'&cache='.$cache);
|
448 |
}
|
449 |
add_shortcode( 'crp', 'crp_shortcode' );
|
450 |
|
497 |
'post_thumb_op' => 'text_only', // Default option to display text and no thumbnails in posts
|
498 |
'thumb_height' => '50', // Height of thumbnails
|
499 |
'thumb_width' => '50', // Width of thumbnails
|
500 |
+
'thumb_html' => 'html', // Use HTML or CSS for width and height of the thumbnail?
|
501 |
'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
|
502 |
'thumb_default' => $thumb_default, // Default thumbnail image
|
503 |
'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
|
506 |
'scan_images' => false, // Scan post for images
|
507 |
'show_excerpt' => false, // Show post excerpt in list item
|
508 |
'show_date' => false, // Show date in list item
|
509 |
+
'show_author' => false, // Show author in list item
|
510 |
'excerpt_length' => '10', // Length of characters
|
511 |
'title_length' => '60', // Limit length of post title
|
512 |
'post_types' => $post_types, // WordPress custom post types
|
649 |
'thumb_height' => '50', // Max height of thumbnails
|
650 |
'thumb_width' => '50', // Max width of thumbnails
|
651 |
'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
|
652 |
+
'thumb_html' => 'html', // HTML / CSS for width and height attributes
|
653 |
'thumb_default' => '', // Default thumbnail image
|
654 |
'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
|
655 |
'thumb_timthumb' => true, // Use timthumb
|
669 |
|
670 |
$output = '';
|
671 |
$title = get_the_title($postid);
|
672 |
+
$thumb_html = ($thumb_html=='css') ? 'style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;"' : 'width="'.$thumb_width.'" height="'.$thumb_height.'"';
|
673 |
|
674 |
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) ) ) {
|
675 |
$postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
|
676 |
|
677 |
if ( ($postimage[1] < $thumb_width) || ($postimage[2] < $thumb_height) ) $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) , 'full' );
|
678 |
$postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q );
|
679 |
+
$output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' border="0" class="'.$class.'" />';
|
680 |
} else {
|
681 |
$postimage = get_post_meta($result->ID, $thumb_meta, true); // Check the post meta first
|
682 |
if (!$postimage && $scan_images) {
|
688 |
}
|
689 |
}
|
690 |
}
|
691 |
+
if (!$postimage) $postimage = tptn_get_first_image($result->ID); // Get the first image
|
692 |
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
|
693 |
if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
|
694 |
if ($postimage) {
|
695 |
$postimage = apply_filters( $filter, $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q );
|
696 |
+
$output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" '.$thumb_html.' border="0" class="'.$class.'" />';
|
697 |
}
|
698 |
}
|
699 |
|
701 |
}
|
702 |
|
703 |
|
704 |
+
/**
|
705 |
+
* Get the first image in the post.
|
706 |
+
*
|
707 |
+
* @access public
|
708 |
+
* @param mixed $postID Post ID
|
709 |
+
* @return string
|
710 |
+
*/
|
711 |
+
function crp_get_first_image( $postID ) {
|
712 |
+
$args = array(
|
713 |
+
'numberposts' => 1,
|
714 |
+
'order' => 'ASC',
|
715 |
+
'post_mime_type' => 'image',
|
716 |
+
'post_parent' => $postID,
|
717 |
+
'post_status' => null,
|
718 |
+
'post_type' => 'attachment',
|
719 |
+
);
|
720 |
+
|
721 |
+
$attachments = get_children( $args );
|
722 |
+
|
723 |
+
if ( $attachments ) {
|
724 |
+
foreach ( $attachments as $attachment ) {
|
725 |
+
$image_attributes = wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) ? wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) : wp_get_attachment_image_src( $attachment->ID, 'full' );
|
726 |
+
|
727 |
+
return $image_attributes[0];
|
728 |
+
}
|
729 |
+
} else {
|
730 |
+
return false;
|
731 |
+
}
|
732 |
+
}
|
733 |
+
|
734 |
/**
|
735 |
* Function to create an excerpt for the post.
|
736 |
*
|
742 |
function crp_excerpt($id,$excerpt_length){
|
743 |
$content = get_post($id)->post_excerpt;
|
744 |
if ($content=='') $content = get_post($id)->post_content;
|
745 |
+
$out = strip_tags(strip_shortcodes($content));
|
746 |
$blah = explode(' ',$out);
|
747 |
if (!$excerpt_length) $excerpt_length = 10;
|
748 |
if(count($blah) > $excerpt_length){
|
languages/crp-da_DK.mo
CHANGED
Binary file
|
languages/crp-da_DK.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts 1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
@@ -15,160 +15,160 @@ msgstr ""
|
|
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.
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: admin.inc.php:
|
22 |
msgid "Options saved successfully."
|
23 |
msgstr "Indstillingerne blev gemt."
|
24 |
|
25 |
-
#: admin.inc.php:
|
26 |
msgid "Options set to Default."
|
27 |
msgstr "Indstillingerne sat til standardværdier."
|
28 |
|
29 |
-
#: admin.inc.php:
|
30 |
msgid "Index recreated"
|
31 |
msgstr "Indeks blev gendannet"
|
32 |
|
33 |
-
#: admin.inc.php:
|
34 |
#, fuzzy
|
35 |
msgid "Support the development"
|
36 |
msgstr "Støt udviklingen"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Enter amount in USD: "
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Send your donation to the author of"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "Quick Links"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
#, fuzzy
|
52 |
msgid "Contextual Related Posts plugin page"
|
53 |
msgstr "Related Posts (Lignende indlæg)"
|
54 |
|
55 |
-
#: admin.inc.php:
|
56 |
msgid "Other plugins"
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: admin.inc.php:
|
60 |
msgid "Ajay's blog"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: admin.inc.php:
|
64 |
msgid "Support"
|
65 |
msgstr "Support"
|
66 |
|
67 |
-
#: admin.inc.php:
|
68 |
msgid "Reviews"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: admin.inc.php:
|
72 |
msgid "Recent developments"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: admin.inc.php:
|
76 |
msgid "General options"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: admin.inc.php:
|
80 |
msgid "Cache output?"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin.inc.php:
|
84 |
msgid ""
|
85 |
"Enabling this option will cache the related posts output when the post is "
|
86 |
"visited the first time. The cache is cleaned when you save this page."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: admin.inc.php:
|
90 |
msgid "Clear cache"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin.inc.php:
|
94 |
msgid "Number of related posts to display: "
|
95 |
msgstr "Antal Lignende indlæg, der skal vises: "
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
msgid "Related posts should be newer than:"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin.inc.php:
|
102 |
msgid "days"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: admin.inc.php:
|
106 |
msgid "Post types to include in results (including custom post types)"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin.inc.php:
|
110 |
msgid "Find related posts based on content as well as title"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin.inc.php:
|
114 |
#, fuzzy
|
115 |
msgid ""
|
116 |
-
"If unchecked, only posts titles are used.
|
117 |
-
"
|
118 |
msgstr ""
|
119 |
"Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges "
|
120 |
"kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
|
121 |
"dette)"
|
122 |
|
123 |
-
#: admin.inc.php:
|
124 |
msgid "List of post or page IDs to exclude from the results: "
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Categories to exclude from the results: "
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid ""
|
133 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
134 |
"so simply start typing in the starting letters and it will prompt you with "
|
135 |
"options"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
#, fuzzy
|
140 |
msgid "Add related posts to:"
|
141 |
msgstr "Tilføj Lignende indlæg til feeds"
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid "Posts"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin.inc.php:
|
148 |
msgid "Pages"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: admin.inc.php:
|
152 |
msgid "Home page"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin.inc.php:
|
156 |
msgid "Feeds"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: admin.inc.php:
|
160 |
msgid "Category archives"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: admin.inc.php:
|
164 |
msgid "Tag archives"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin.inc.php:
|
168 |
msgid "Other archives"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: admin.inc.php:
|
172 |
#, fuzzy
|
173 |
msgid ""
|
174 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -180,180 +180,199 @@ msgstr ""
|
|
180 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> til din skabelonfil, hvor du "
|
181 |
"ønsker de lignende indlæg vist"
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
msgid "Add a link to the plugin page as a final item in the list"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
msgid " <em>Optional</em>"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
#, fuzzy
|
193 |
msgid "Output options"
|
194 |
msgstr "Indstillinger for output:"
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
msgid "Title of related posts: "
|
198 |
msgstr "Titel på Lignende indlæg: "
|
199 |
|
200 |
-
#: admin.inc.php:
|
201 |
msgid "When there are no posts, what should be shown?"
|
202 |
msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
|
203 |
|
204 |
-
#: admin.inc.php:
|
205 |
msgid "Blank Output"
|
206 |
msgstr "Intet"
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Display:"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Show post excerpt in list?"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "Length of excerpt (in words): "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
221 |
msgid "Show post date in list?"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Limit post title length (in characters)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Open links in new window"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "Add nofollow attribute to links in the list"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
#, fuzzy
|
238 |
msgid "Exclude display of related posts on these posts / pages"
|
239 |
msgstr "Tilføj Lignende indlæg til feeds"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Customize the output:"
|
247 |
msgstr "Tilpas outputtet:"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "HTML to display before the list of posts: "
|
251 |
msgstr "HTML, der skal vises før listen med indlæg: "
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "HTML to display before each list item: "
|
255 |
msgstr "HTML, der skal vises før hvert punkt på listen: "
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "HTML to display after each list item: "
|
259 |
msgstr "HTML, der skal vises efter hvert punkt på listen: "
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "HTML to display after the list of posts: "
|
263 |
msgstr "HTML, der skal vises efter listen med indlæg: "
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Post thumbnail options:"
|
267 |
msgstr "Indstillinger for indlægsminiaturer:"
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
msgid "Location of post thumbnail:"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
#, fuzzy
|
275 |
msgid "Display thumbnails inline with posts, before title"
|
276 |
msgstr "Vis miniaturer inline med indlæg"
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
#, fuzzy
|
280 |
msgid "Display thumbnails inline with posts, after title"
|
281 |
msgstr "Vis miniaturer inline med indlæg"
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "Display only thumbnails, no text"
|
285 |
msgstr "Vis kun miniaturer, ingen tekst"
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Do not display thumbnails, only text."
|
289 |
msgstr "Vis ikke miniaturer, kun tekst."
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Maximum width of the thumbnail: "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Maximum height of the thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
msgid "Use timthumb to generate thumbnails? "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: admin.inc.php:
|
304 |
msgid ""
|
305 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
306 |
"\">timthumb</a> will be used to generate thumbnails"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid "Quality of thumbnails generated by timthumb"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: admin.inc.php:
|
314 |
msgid ""
|
315 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
316 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin.inc.php:
|
320 |
#, fuzzy
|
321 |
msgid "Post thumbnail meta field name: "
|
322 |
msgstr "Indstillinger for indlægsminiaturer:"
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
msgid ""
|
326 |
"The value of this field should contain the image source and is set in the "
|
327 |
"<em>Add New Post</em> screen"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin.inc.php:
|
331 |
msgid ""
|
332 |
"If the postmeta is not set, then should the plugin extract the first image "
|
333 |
"from the post?"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin.inc.php:
|
337 |
msgid ""
|
338 |
"This can slow down the loading of your page if the first image in the "
|
339 |
"related posts is large in file-size"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: admin.inc.php:
|
343 |
msgid "Use default thumbnail? "
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: admin.inc.php:
|
347 |
msgid ""
|
348 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
349 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin.inc.php:
|
353 |
msgid "Default thumbnail: "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin.inc.php:
|
357 |
#, fuzzy
|
358 |
msgid ""
|
359 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -364,158 +383,170 @@ msgstr ""
|
|
364 |
"indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
|
365 |
"findes, vil det vise standardbilledet specificeret nedenfor:"
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
#, fuzzy
|
369 |
msgid "Feed options"
|
370 |
msgstr "Indstillinger:"
|
371 |
|
372 |
-
#: admin.inc.php:
|
373 |
msgid ""
|
374 |
"Below options override the related posts settings for your blog feed. These "
|
375 |
"only apply if you have selected to add related posts to Feeds in the General "
|
376 |
"Options tab."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin.inc.php:
|
380 |
msgid "Custom Styles"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin.inc.php:
|
384 |
msgid "Custom CSS to add to header:"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid ""
|
389 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
390 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
391 |
"\">FAQ</a> for available CSS classes to style."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: admin.inc.php:
|
395 |
#, fuzzy
|
396 |
msgid "Save Options"
|
397 |
msgstr "Indstillinger:"
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
#, fuzzy
|
401 |
msgid "Default Options"
|
402 |
msgstr "Indstillinger for output:"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
msgid "Do you want to set options to Default?"
|
406 |
msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
|
407 |
|
408 |
-
#: admin.inc.php:
|
409 |
msgid "Recreate Index"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "Are you sure you want to recreate the index?"
|
414 |
msgstr "Er du sikker på, du ønsker at gendanne indekset?"
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
#, fuzzy
|
418 |
msgid "Contextual Related Posts"
|
419 |
msgstr "Related Posts (Lignende indlæg)"
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Related Posts"
|
423 |
msgstr "Related Posts (Lignende indlæg)"
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "plugin settings page"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid ""
|
431 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
432 |
"visit the "
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin.inc.php:
|
436 |
msgid " to configure."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin.inc.php:
|
440 |
msgid ""
|
441 |
"An error occurred clearing the cache. Please contact your site administrator."
|
442 |
"\\n\\nError message:\\n"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin.inc.php:
|
446 |
msgid " cached row(s) cleared"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
450 |
msgid "Powered by"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: contextual-related-posts.php:
|
454 |
#, fuzzy
|
455 |
msgid "Display Related Posts"
|
456 |
msgstr "Vis \"Ingen lignende indlæg\""
|
457 |
|
458 |
-
#: contextual-related-posts.php:
|
459 |
msgid "Title"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: contextual-related-posts.php:
|
463 |
msgid "No. of posts"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: contextual-related-posts.php:
|
467 |
msgid " Show excerpt?"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
471 |
#, fuzzy
|
472 |
msgid "Thumbnail options"
|
473 |
msgstr "Indstillinger for indlægsminiaturer:"
|
474 |
|
475 |
-
#: contextual-related-posts.php:
|
476 |
#, fuzzy
|
477 |
msgid "Thumbnails inline, before title"
|
478 |
msgstr "Vis miniaturer inline med indlæg"
|
479 |
|
480 |
-
#: contextual-related-posts.php:
|
481 |
#, fuzzy
|
482 |
msgid "Thumbnails inline, after title"
|
483 |
msgstr "Vis miniaturer inline med indlæg"
|
484 |
|
485 |
-
#: contextual-related-posts.php:
|
486 |
#, fuzzy
|
487 |
msgid "Only thumbnails, no text"
|
488 |
msgstr "Vis kun miniaturer, ingen tekst"
|
489 |
|
490 |
-
#: contextual-related-posts.php:
|
491 |
#, fuzzy
|
492 |
msgid "No thumbnails, only text."
|
493 |
msgstr "Vis ikke miniaturer, kun tekst."
|
494 |
|
495 |
-
#: contextual-related-posts.php:
|
496 |
#, fuzzy
|
497 |
msgid "Thumbnail height"
|
498 |
msgstr "Indstillinger for indlægsminiaturer:"
|
499 |
|
500 |
-
#: contextual-related-posts.php:
|
501 |
#, fuzzy
|
502 |
msgid "Thumbnail width"
|
503 |
msgstr "Indstillinger for indlægsminiaturer:"
|
504 |
|
505 |
-
#: contextual-related-posts.php:
|
506 |
msgid "<h3>Related Posts:</h3>"
|
507 |
msgstr "<h3>Lignende indlæg:</h3>"
|
508 |
|
509 |
-
#: contextual-related-posts.php:
|
510 |
#, fuzzy
|
511 |
msgid "No related posts found"
|
512 |
msgstr "Ingen lignende indlæg fundet"
|
513 |
|
514 |
-
#: contextual-related-posts.php:
|
515 |
msgid "Settings"
|
516 |
msgstr "Opsætning"
|
517 |
|
518 |
-
#: contextual-related-posts.php:
|
519 |
msgid "Donate"
|
520 |
msgstr "Donation"
|
521 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts 1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:28-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
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.7\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: admin.inc.php:106
|
22 |
msgid "Options saved successfully."
|
23 |
msgstr "Indstillingerne blev gemt."
|
24 |
|
25 |
+
#: admin.inc.php:122
|
26 |
msgid "Options set to Default."
|
27 |
msgstr "Indstillingerne sat til standardværdier."
|
28 |
|
29 |
+
#: admin.inc.php:138
|
30 |
msgid "Index recreated"
|
31 |
msgstr "Indeks blev gendannet"
|
32 |
|
33 |
+
#: admin.inc.php:151
|
34 |
#, fuzzy
|
35 |
msgid "Support the development"
|
36 |
msgstr "Støt udviklingen"
|
37 |
|
38 |
+
#: admin.inc.php:159
|
39 |
msgid "Enter amount in USD: "
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:163
|
43 |
msgid "Send your donation to the author of"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:174
|
47 |
msgid "Quick Links"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:176
|
51 |
#, fuzzy
|
52 |
msgid "Contextual Related Posts plugin page"
|
53 |
msgstr "Related Posts (Lignende indlæg)"
|
54 |
|
55 |
+
#: admin.inc.php:177
|
56 |
msgid "Other plugins"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: admin.inc.php:178
|
60 |
msgid "Ajay's blog"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
64 |
msgid "Support"
|
65 |
msgstr "Support"
|
66 |
|
67 |
+
#: admin.inc.php:180
|
68 |
msgid "Reviews"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin.inc.php:184
|
72 |
msgid "Recent developments"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: admin.inc.php:194
|
76 |
msgid "General options"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: admin.inc.php:196
|
80 |
msgid "Cache output?"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: admin.inc.php:198
|
84 |
msgid ""
|
85 |
"Enabling this option will cache the related posts output when the post is "
|
86 |
"visited the first time. The cache is cleaned when you save this page."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin.inc.php:199
|
90 |
msgid "Clear cache"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin.inc.php:202 admin.inc.php:402
|
94 |
msgid "Number of related posts to display: "
|
95 |
msgstr "Antal Lignende indlæg, der skal vises: "
|
96 |
|
97 |
+
#: admin.inc.php:205
|
98 |
msgid "Related posts should be newer than:"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin.inc.php:206
|
102 |
msgid "days"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin.inc.php:208
|
106 |
msgid "Post types to include in results (including custom post types)"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: admin.inc.php:219
|
110 |
msgid "Find related posts based on content as well as title"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: admin.inc.php:221
|
114 |
#, fuzzy
|
115 |
msgid ""
|
116 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
117 |
+
"or enabling \"Cache output\" above if you enable this."
|
118 |
msgstr ""
|
119 |
"Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges "
|
120 |
"kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
|
121 |
"dette)"
|
122 |
|
123 |
+
#: admin.inc.php:224
|
124 |
msgid "List of post or page IDs to exclude from the results: "
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:227
|
128 |
msgid "Categories to exclude from the results: "
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:243
|
132 |
msgid ""
|
133 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
134 |
"so simply start typing in the starting letters and it will prompt you with "
|
135 |
"options"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: admin.inc.php:246
|
139 |
#, fuzzy
|
140 |
msgid "Add related posts to:"
|
141 |
msgstr "Tilføj Lignende indlæg til feeds"
|
142 |
|
143 |
+
#: admin.inc.php:248
|
144 |
msgid "Posts"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin.inc.php:249
|
148 |
msgid "Pages"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:250
|
152 |
msgid "Home page"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:251
|
156 |
msgid "Feeds"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin.inc.php:252
|
160 |
msgid "Category archives"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin.inc.php:253
|
164 |
msgid "Tag archives"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin.inc.php:254
|
168 |
msgid "Other archives"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin.inc.php:255
|
172 |
#, fuzzy
|
173 |
msgid ""
|
174 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
180 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> til din skabelonfil, hvor du "
|
181 |
"ønsker de lignende indlæg vist"
|
182 |
|
183 |
+
#: admin.inc.php:258
|
184 |
msgid "Add a link to the plugin page as a final item in the list"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.inc.php:259
|
188 |
msgid " <em>Optional</em>"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin.inc.php:266
|
192 |
#, fuzzy
|
193 |
msgid "Output options"
|
194 |
msgstr "Indstillinger for output:"
|
195 |
|
196 |
+
#: admin.inc.php:268
|
197 |
msgid "Title of related posts: "
|
198 |
msgstr "Titel på Lignende indlæg: "
|
199 |
|
200 |
+
#: admin.inc.php:271
|
201 |
msgid "When there are no posts, what should be shown?"
|
202 |
msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
|
203 |
|
204 |
+
#: admin.inc.php:275
|
205 |
msgid "Blank Output"
|
206 |
msgstr "Intet"
|
207 |
|
208 |
+
#: admin.inc.php:279
|
209 |
msgid "Display:"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin.inc.php:283 admin.inc.php:405
|
213 |
msgid "Show post excerpt in list?"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin.inc.php:286
|
217 |
msgid "Length of excerpt (in words): "
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:289
|
221 |
+
msgid "Show post author in list?"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: admin.inc.php:292
|
225 |
msgid "Show post date in list?"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:295
|
229 |
msgid "Limit post title length (in characters)"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:298
|
233 |
msgid "Open links in new window"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:301
|
237 |
msgid "Add nofollow attribute to links in the list"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin.inc.php:304
|
241 |
#, fuzzy
|
242 |
msgid "Exclude display of related posts on these posts / pages"
|
243 |
msgstr "Tilføj Lignende indlæg til feeds"
|
244 |
|
245 |
+
#: admin.inc.php:307
|
246 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: admin.inc.php:310
|
250 |
msgid "Customize the output:"
|
251 |
msgstr "Tilpas outputtet:"
|
252 |
|
253 |
+
#: admin.inc.php:312
|
254 |
msgid "HTML to display before the list of posts: "
|
255 |
msgstr "HTML, der skal vises før listen med indlæg: "
|
256 |
|
257 |
+
#: admin.inc.php:315
|
258 |
msgid "HTML to display before each list item: "
|
259 |
msgstr "HTML, der skal vises før hvert punkt på listen: "
|
260 |
|
261 |
+
#: admin.inc.php:318
|
262 |
msgid "HTML to display after each list item: "
|
263 |
msgstr "HTML, der skal vises efter hvert punkt på listen: "
|
264 |
|
265 |
+
#: admin.inc.php:321
|
266 |
msgid "HTML to display after the list of posts: "
|
267 |
msgstr "HTML, der skal vises efter listen med indlæg: "
|
268 |
|
269 |
+
#: admin.inc.php:324
|
270 |
msgid "Post thumbnail options:"
|
271 |
msgstr "Indstillinger for indlægsminiaturer:"
|
272 |
|
273 |
+
#: admin.inc.php:326 admin.inc.php:408
|
274 |
msgid "Location of post thumbnail:"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin.inc.php:330 admin.inc.php:412
|
278 |
#, fuzzy
|
279 |
msgid "Display thumbnails inline with posts, before title"
|
280 |
msgstr "Vis miniaturer inline med indlæg"
|
281 |
|
282 |
+
#: admin.inc.php:334 admin.inc.php:416
|
283 |
#, fuzzy
|
284 |
msgid "Display thumbnails inline with posts, after title"
|
285 |
msgstr "Vis miniaturer inline med indlæg"
|
286 |
|
287 |
+
#: admin.inc.php:338 admin.inc.php:420
|
288 |
msgid "Display only thumbnails, no text"
|
289 |
msgstr "Vis kun miniaturer, ingen tekst"
|
290 |
|
291 |
+
#: admin.inc.php:342 admin.inc.php:424
|
292 |
msgid "Do not display thumbnails, only text."
|
293 |
msgstr "Vis ikke miniaturer, kun tekst."
|
294 |
|
295 |
+
#: admin.inc.php:346 admin.inc.php:428
|
296 |
msgid "Maximum width of the thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: admin.inc.php:349 admin.inc.php:431
|
300 |
msgid "Maximum height of the thumbnail: "
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin.inc.php:352
|
304 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: admin.inc.php:356
|
308 |
+
msgid ""
|
309 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: admin.inc.php:360
|
313 |
+
msgid ""
|
314 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
315 |
+
"\""
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: admin.inc.php:364
|
319 |
msgid "Use timthumb to generate thumbnails? "
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin.inc.php:366
|
323 |
msgid ""
|
324 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
325 |
"\">timthumb</a> will be used to generate thumbnails"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: admin.inc.php:369
|
329 |
msgid "Quality of thumbnails generated by timthumb"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: admin.inc.php:372
|
333 |
msgid ""
|
334 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
335 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin.inc.php:375
|
339 |
#, fuzzy
|
340 |
msgid "Post thumbnail meta field name: "
|
341 |
msgstr "Indstillinger for indlægsminiaturer:"
|
342 |
|
343 |
+
#: admin.inc.php:377
|
344 |
msgid ""
|
345 |
"The value of this field should contain the image source and is set in the "
|
346 |
"<em>Add New Post</em> screen"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin.inc.php:380
|
350 |
msgid ""
|
351 |
"If the postmeta is not set, then should the plugin extract the first image "
|
352 |
"from the post?"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: admin.inc.php:382
|
356 |
msgid ""
|
357 |
"This can slow down the loading of your page if the first image in the "
|
358 |
"related posts is large in file-size"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin.inc.php:385
|
362 |
msgid "Use default thumbnail? "
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: admin.inc.php:387
|
366 |
msgid ""
|
367 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
368 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin.inc.php:390
|
372 |
msgid "Default thumbnail: "
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: admin.inc.php:392
|
376 |
#, fuzzy
|
377 |
msgid ""
|
378 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
383 |
"indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
|
384 |
"findes, vil det vise standardbilledet specificeret nedenfor:"
|
385 |
|
386 |
+
#: admin.inc.php:398
|
387 |
#, fuzzy
|
388 |
msgid "Feed options"
|
389 |
msgstr "Indstillinger:"
|
390 |
|
391 |
+
#: admin.inc.php:400
|
392 |
msgid ""
|
393 |
"Below options override the related posts settings for your blog feed. These "
|
394 |
"only apply if you have selected to add related posts to Feeds in the General "
|
395 |
"Options tab."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin.inc.php:437
|
399 |
msgid "Custom Styles"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: admin.inc.php:439
|
403 |
msgid "Custom CSS to add to header:"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin.inc.php:442
|
407 |
msgid ""
|
408 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
409 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
410 |
"\">FAQ</a> for available CSS classes to style."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin.inc.php:447
|
414 |
#, fuzzy
|
415 |
msgid "Save Options"
|
416 |
msgstr "Indstillinger:"
|
417 |
|
418 |
+
#: admin.inc.php:448
|
419 |
#, fuzzy
|
420 |
msgid "Default Options"
|
421 |
msgstr "Indstillinger for output:"
|
422 |
|
423 |
+
#: admin.inc.php:448
|
424 |
msgid "Do you want to set options to Default?"
|
425 |
msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
|
426 |
|
427 |
+
#: admin.inc.php:449
|
428 |
msgid "Recreate Index"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin.inc.php:449
|
432 |
msgid "Are you sure you want to recreate the index?"
|
433 |
msgstr "Er du sikker på, du ønsker at gendanne indekset?"
|
434 |
|
435 |
+
#: admin.inc.php:473
|
436 |
#, fuzzy
|
437 |
msgid "Contextual Related Posts"
|
438 |
msgstr "Related Posts (Lignende indlæg)"
|
439 |
|
440 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
441 |
msgid "Related Posts"
|
442 |
msgstr "Related Posts (Lignende indlæg)"
|
443 |
|
444 |
+
#: admin.inc.php:486
|
445 |
msgid "plugin settings page"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin.inc.php:491
|
449 |
msgid ""
|
450 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
451 |
"visit the "
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin.inc.php:491
|
455 |
msgid " to configure."
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: admin.inc.php:555
|
459 |
msgid ""
|
460 |
"An error occurred clearing the cache. Please contact your site administrator."
|
461 |
"\\n\\nError message:\\n"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin.inc.php:561
|
465 |
msgid " cached row(s) cleared"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: contextual-related-posts.php:123
|
469 |
+
msgid " Posted by "
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: contextual-related-posts.php:138
|
473 |
msgid "Powered by"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: contextual-related-posts.php:313
|
477 |
#, fuzzy
|
478 |
msgid "Display Related Posts"
|
479 |
msgstr "Vis \"Ingen lignende indlæg\""
|
480 |
|
481 |
+
#: contextual-related-posts.php:328
|
482 |
msgid "Title"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: contextual-related-posts.php:333
|
486 |
msgid "No. of posts"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: contextual-related-posts.php:338
|
490 |
msgid " Show excerpt?"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: contextual-related-posts.php:343
|
494 |
+
msgid " Show author?"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: contextual-related-posts.php:348
|
498 |
+
msgid " Show date?"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: contextual-related-posts.php:352
|
502 |
#, fuzzy
|
503 |
msgid "Thumbnail options"
|
504 |
msgstr "Indstillinger for indlægsminiaturer:"
|
505 |
|
506 |
+
#: contextual-related-posts.php:354
|
507 |
#, fuzzy
|
508 |
msgid "Thumbnails inline, before title"
|
509 |
msgstr "Vis miniaturer inline med indlæg"
|
510 |
|
511 |
+
#: contextual-related-posts.php:355
|
512 |
#, fuzzy
|
513 |
msgid "Thumbnails inline, after title"
|
514 |
msgstr "Vis miniaturer inline med indlæg"
|
515 |
|
516 |
+
#: contextual-related-posts.php:356
|
517 |
#, fuzzy
|
518 |
msgid "Only thumbnails, no text"
|
519 |
msgstr "Vis kun miniaturer, ingen tekst"
|
520 |
|
521 |
+
#: contextual-related-posts.php:357
|
522 |
#, fuzzy
|
523 |
msgid "No thumbnails, only text."
|
524 |
msgstr "Vis ikke miniaturer, kun tekst."
|
525 |
|
526 |
+
#: contextual-related-posts.php:362
|
527 |
#, fuzzy
|
528 |
msgid "Thumbnail height"
|
529 |
msgstr "Indstillinger for indlægsminiaturer:"
|
530 |
|
531 |
+
#: contextual-related-posts.php:367
|
532 |
#, fuzzy
|
533 |
msgid "Thumbnail width"
|
534 |
msgstr "Indstillinger for indlægsminiaturer:"
|
535 |
|
536 |
+
#: contextual-related-posts.php:463
|
537 |
msgid "<h3>Related Posts:</h3>"
|
538 |
msgstr "<h3>Lignende indlæg:</h3>"
|
539 |
|
540 |
+
#: contextual-related-posts.php:464
|
541 |
#, fuzzy
|
542 |
msgid "No related posts found"
|
543 |
msgstr "Ingen lignende indlæg fundet"
|
544 |
|
545 |
+
#: contextual-related-posts.php:807
|
546 |
msgid "Settings"
|
547 |
msgstr "Opsætning"
|
548 |
|
549 |
+
#: contextual-related-posts.php:830
|
550 |
msgid "Donate"
|
551 |
msgstr "Donation"
|
552 |
|
languages/crp-de_DE.mo
CHANGED
Binary file
|
languages/crp-de_DE.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -12,160 +12,160 @@ msgstr ""
|
|
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.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Optionen gespeichert."
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Index aufgefrischt"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Support the development"
|
32 |
msgstr "Unterstützen Sie die Entwicklung"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Den Betrag in USD eingeben: "
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Schicken Sie eine Spende an den Autor von"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Links"
|
46 |
|
47 |
-
#: admin.inc.php:
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Contextual Related Posts "
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Weitere Plugins"
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Ajay's Blog"
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
msgid "Support"
|
62 |
msgstr "Support"
|
63 |
|
64 |
-
#: admin.inc.php:
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: admin.inc.php:
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Neueste Entwicklungen"
|
71 |
|
72 |
-
#: admin.inc.php:
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
-
"If unchecked, only posts titles are used.
|
114 |
-
"
|
115 |
msgstr ""
|
116 |
"Ähnliche Beiträge sowohl im Beitragstitel als auch im Beitragsinhalt suchen. "
|
117 |
"Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
|
118 |
"Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid ""
|
130 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
131 |
"so simply start typing in the starting letters and it will prompt you with "
|
132 |
"options"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
139 |
|
140 |
-
#: admin.inc.php:
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin.inc.php:
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: admin.inc.php:
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: admin.inc.php:
|
169 |
#, fuzzy
|
170 |
msgid ""
|
171 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -177,157 +177,177 @@ msgstr ""
|
|
177 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> in das Template ein, in dem "
|
178 |
"die ähnlichen Beiträge aufgeliistet werden sollen"
|
179 |
|
180 |
-
#: admin.inc.php:
|
181 |
msgid "Add a link to the plugin page as a final item in the list"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: admin.inc.php:
|
185 |
msgid " <em>Optional</em>"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: admin.inc.php:
|
189 |
#, fuzzy
|
190 |
msgid "Output options"
|
191 |
msgstr "Ausgabeotionen:"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Title of related posts: "
|
195 |
msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
msgid "When there are no posts, what should be shown?"
|
199 |
msgstr ""
|
200 |
"Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
|
201 |
"werden?"
|
202 |
|
203 |
-
#: admin.inc.php:
|
204 |
msgid "Blank Output"
|
205 |
msgstr "Nichts"
|
206 |
|
207 |
-
#: admin.inc.php:
|
208 |
msgid "Display:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: admin.inc.php:
|
212 |
msgid "Show post excerpt in list?"
|
213 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
214 |
|
215 |
-
#: admin.inc.php:
|
216 |
msgid "Length of excerpt (in words): "
|
217 |
msgstr "Länge des Auszugs (in Worten): "
|
218 |
|
219 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
220 |
#, fuzzy
|
221 |
msgid "Show post date in list?"
|
222 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Limit post title length (in characters)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Open links in new window"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "Add nofollow attribute to links in the list"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
#, fuzzy
|
238 |
msgid "Exclude display of related posts on these posts / pages"
|
239 |
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Customize the output:"
|
247 |
msgstr "Die Ausgabe anpassen:"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "HTML to display before the list of posts: "
|
251 |
msgstr "HTML vor der Beitragsliste: "
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "HTML to display before each list item: "
|
255 |
msgstr "HTML vor jedem Listenelement: "
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "HTML to display after each list item: "
|
259 |
msgstr "HTML nach jedem Listenelement: "
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "HTML to display after the list of posts: "
|
263 |
msgstr "HTML nach der Beitragsliste: "
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Post thumbnail options:"
|
267 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
msgid "Location of post thumbnail:"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
#, fuzzy
|
275 |
msgid "Display thumbnails inline with posts, before title"
|
276 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
#, fuzzy
|
280 |
msgid "Display thumbnails inline with posts, after title"
|
281 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "Display only thumbnails, no text"
|
285 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Do not display thumbnails, only text."
|
289 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Maximum width of the thumbnail: "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Maximum height of the thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
msgid "Use timthumb to generate thumbnails? "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: admin.inc.php:
|
304 |
msgid ""
|
305 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
306 |
"\">timthumb</a> will be used to generate thumbnails"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid "Quality of thumbnails generated by timthumb"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: admin.inc.php:
|
314 |
msgid ""
|
315 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
316 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin.inc.php:
|
320 |
#, fuzzy
|
321 |
msgid "Post thumbnail meta field name: "
|
322 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
msgid ""
|
326 |
"The value of this field should contain the image source and is set in the "
|
327 |
"<em>Add New Post</em> screen"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin.inc.php:
|
331 |
#, fuzzy
|
332 |
msgid ""
|
333 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -337,7 +357,7 @@ msgstr ""
|
|
337 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
338 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
339 |
|
340 |
-
#: admin.inc.php:
|
341 |
#, fuzzy
|
342 |
msgid ""
|
343 |
"This can slow down the loading of your page if the first image in the "
|
@@ -347,21 +367,21 @@ msgstr ""
|
|
347 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
348 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
349 |
|
350 |
-
#: admin.inc.php:
|
351 |
msgid "Use default thumbnail? "
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid ""
|
356 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
357 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin.inc.php:
|
361 |
msgid "Default thumbnail: "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin.inc.php:
|
365 |
#, fuzzy
|
366 |
msgid ""
|
367 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -372,159 +392,173 @@ msgstr ""
|
|
372 |
"nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
|
373 |
"wird das unten spezifizierte Default-Thumbnail angezeigt:"
|
374 |
|
375 |
-
#: admin.inc.php:
|
376 |
#, fuzzy
|
377 |
msgid "Feed options"
|
378 |
msgstr "Optionen:"
|
379 |
|
380 |
-
#: admin.inc.php:
|
381 |
msgid ""
|
382 |
"Below options override the related posts settings for your blog feed. These "
|
383 |
"only apply if you have selected to add related posts to Feeds in the General "
|
384 |
"Options tab."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid "Custom Styles"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: admin.inc.php:
|
392 |
msgid "Custom CSS to add to header:"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin.inc.php:
|
396 |
msgid ""
|
397 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
398 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
399 |
"\">FAQ</a> for available CSS classes to style."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
#, fuzzy
|
404 |
msgid "Save Options"
|
405 |
msgstr "Optionen:"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
#, fuzzy
|
409 |
msgid "Default Options"
|
410 |
msgstr "Ausgabeotionen:"
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "Do you want to set options to Default?"
|
414 |
msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
msgid "Recreate Index"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid "Are you sure you want to recreate the index?"
|
422 |
msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
|
423 |
|
424 |
-
#: admin.inc.php:
|
425 |
msgid "Contextual Related Posts"
|
426 |
msgstr "Contextual Related Posts"
|
427 |
|
428 |
-
#: admin.inc.php:
|
429 |
msgid "Related Posts"
|
430 |
msgstr "Related Posts"
|
431 |
|
432 |
-
#: admin.inc.php:
|
433 |
#, fuzzy
|
434 |
msgid "plugin settings page"
|
435 |
msgstr "Plugin-Seite"
|
436 |
|
437 |
-
#: admin.inc.php:
|
438 |
msgid ""
|
439 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
440 |
"visit the "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin.inc.php:
|
444 |
msgid " to configure."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin.inc.php:
|
448 |
msgid ""
|
449 |
"An error occurred clearing the cache. Please contact your site administrator."
|
450 |
"\\n\\nError message:\\n"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin.inc.php:
|
454 |
msgid " cached row(s) cleared"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
458 |
msgid "Powered by"
|
459 |
msgstr "Powered by"
|
460 |
|
461 |
-
#: contextual-related-posts.php:
|
462 |
#, fuzzy
|
463 |
msgid "Display Related Posts"
|
464 |
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
465 |
|
466 |
-
#: contextual-related-posts.php:
|
467 |
msgid "Title"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: contextual-related-posts.php:
|
471 |
msgid "No. of posts"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: contextual-related-posts.php:
|
475 |
#, fuzzy
|
476 |
msgid " Show excerpt?"
|
477 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
478 |
|
479 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
#, fuzzy
|
481 |
msgid "Thumbnail options"
|
482 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
483 |
|
484 |
-
#: contextual-related-posts.php:
|
485 |
#, fuzzy
|
486 |
msgid "Thumbnails inline, before title"
|
487 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
488 |
|
489 |
-
#: contextual-related-posts.php:
|
490 |
#, fuzzy
|
491 |
msgid "Thumbnails inline, after title"
|
492 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
493 |
|
494 |
-
#: contextual-related-posts.php:
|
495 |
#, fuzzy
|
496 |
msgid "Only thumbnails, no text"
|
497 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
498 |
|
499 |
-
#: contextual-related-posts.php:
|
500 |
#, fuzzy
|
501 |
msgid "No thumbnails, only text."
|
502 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
503 |
|
504 |
-
#: contextual-related-posts.php:
|
505 |
#, fuzzy
|
506 |
msgid "Thumbnail height"
|
507 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
508 |
|
509 |
-
#: contextual-related-posts.php:
|
510 |
#, fuzzy
|
511 |
msgid "Thumbnail width"
|
512 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
513 |
|
514 |
-
#: contextual-related-posts.php:
|
515 |
msgid "<h3>Related Posts:</h3>"
|
516 |
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
517 |
|
518 |
-
#: contextual-related-posts.php:
|
519 |
#, fuzzy
|
520 |
msgid "No related posts found"
|
521 |
msgstr "Keine ähnlichen Beiträge gefunden"
|
522 |
|
523 |
-
#: contextual-related-posts.php:
|
524 |
msgid "Settings"
|
525 |
msgstr "Einstellungen"
|
526 |
|
527 |
-
#: contextual-related-posts.php:
|
528 |
msgid "Donate"
|
529 |
msgstr "Spenden"
|
530 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:28-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
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.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:106
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Optionen gespeichert."
|
21 |
|
22 |
+
#: admin.inc.php:122
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
|
25 |
|
26 |
+
#: admin.inc.php:138
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Index aufgefrischt"
|
29 |
|
30 |
+
#: admin.inc.php:151
|
31 |
msgid "Support the development"
|
32 |
msgstr "Unterstützen Sie die Entwicklung"
|
33 |
|
34 |
+
#: admin.inc.php:159
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Den Betrag in USD eingeben: "
|
37 |
|
38 |
+
#: admin.inc.php:163
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Schicken Sie eine Spende an den Autor von"
|
41 |
|
42 |
+
#: admin.inc.php:174
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Links"
|
46 |
|
47 |
+
#: admin.inc.php:176
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Contextual Related Posts "
|
51 |
|
52 |
+
#: admin.inc.php:177
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Weitere Plugins"
|
55 |
|
56 |
+
#: admin.inc.php:178
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Ajay's Blog"
|
59 |
|
60 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
61 |
msgid "Support"
|
62 |
msgstr "Support"
|
63 |
|
64 |
+
#: admin.inc.php:180
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:184
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Neueste Entwicklungen"
|
71 |
|
72 |
+
#: admin.inc.php:194
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:196
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:198
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:199
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:202 admin.inc.php:402
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
|
93 |
|
94 |
+
#: admin.inc.php:205
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:206
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:208
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:219
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin.inc.php:221
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
114 |
+
"or enabling \"Cache output\" above if you enable this."
|
115 |
msgstr ""
|
116 |
"Ähnliche Beiträge sowohl im Beitragstitel als auch im Beitragsinhalt suchen. "
|
117 |
"Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
|
118 |
"Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
|
119 |
|
120 |
+
#: admin.inc.php:224
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:227
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:243
|
129 |
msgid ""
|
130 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
131 |
"so simply start typing in the starting letters and it will prompt you with "
|
132 |
"options"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin.inc.php:246
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
139 |
|
140 |
+
#: admin.inc.php:248
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:249
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:250
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:251
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin.inc.php:252
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin.inc.php:253
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin.inc.php:254
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:255
|
169 |
#, fuzzy
|
170 |
msgid ""
|
171 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
177 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> in das Template ein, in dem "
|
178 |
"die ähnlichen Beiträge aufgeliistet werden sollen"
|
179 |
|
180 |
+
#: admin.inc.php:258
|
181 |
msgid "Add a link to the plugin page as a final item in the list"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: admin.inc.php:259
|
185 |
msgid " <em>Optional</em>"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin.inc.php:266
|
189 |
#, fuzzy
|
190 |
msgid "Output options"
|
191 |
msgstr "Ausgabeotionen:"
|
192 |
|
193 |
+
#: admin.inc.php:268
|
194 |
msgid "Title of related posts: "
|
195 |
msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
|
196 |
|
197 |
+
#: admin.inc.php:271
|
198 |
msgid "When there are no posts, what should be shown?"
|
199 |
msgstr ""
|
200 |
"Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
|
201 |
"werden?"
|
202 |
|
203 |
+
#: admin.inc.php:275
|
204 |
msgid "Blank Output"
|
205 |
msgstr "Nichts"
|
206 |
|
207 |
+
#: admin.inc.php:279
|
208 |
msgid "Display:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin.inc.php:283 admin.inc.php:405
|
212 |
msgid "Show post excerpt in list?"
|
213 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
214 |
|
215 |
+
#: admin.inc.php:286
|
216 |
msgid "Length of excerpt (in words): "
|
217 |
msgstr "Länge des Auszugs (in Worten): "
|
218 |
|
219 |
+
#: admin.inc.php:289
|
220 |
+
#, fuzzy
|
221 |
+
msgid "Show post author in list?"
|
222 |
+
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
223 |
+
|
224 |
+
#: admin.inc.php:292
|
225 |
#, fuzzy
|
226 |
msgid "Show post date in list?"
|
227 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
228 |
|
229 |
+
#: admin.inc.php:295
|
230 |
msgid "Limit post title length (in characters)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin.inc.php:298
|
234 |
msgid "Open links in new window"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin.inc.php:301
|
238 |
msgid "Add nofollow attribute to links in the list"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: admin.inc.php:304
|
242 |
#, fuzzy
|
243 |
msgid "Exclude display of related posts on these posts / pages"
|
244 |
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
245 |
|
246 |
+
#: admin.inc.php:307
|
247 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin.inc.php:310
|
251 |
msgid "Customize the output:"
|
252 |
msgstr "Die Ausgabe anpassen:"
|
253 |
|
254 |
+
#: admin.inc.php:312
|
255 |
msgid "HTML to display before the list of posts: "
|
256 |
msgstr "HTML vor der Beitragsliste: "
|
257 |
|
258 |
+
#: admin.inc.php:315
|
259 |
msgid "HTML to display before each list item: "
|
260 |
msgstr "HTML vor jedem Listenelement: "
|
261 |
|
262 |
+
#: admin.inc.php:318
|
263 |
msgid "HTML to display after each list item: "
|
264 |
msgstr "HTML nach jedem Listenelement: "
|
265 |
|
266 |
+
#: admin.inc.php:321
|
267 |
msgid "HTML to display after the list of posts: "
|
268 |
msgstr "HTML nach der Beitragsliste: "
|
269 |
|
270 |
+
#: admin.inc.php:324
|
271 |
msgid "Post thumbnail options:"
|
272 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
273 |
|
274 |
+
#: admin.inc.php:326 admin.inc.php:408
|
275 |
msgid "Location of post thumbnail:"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin.inc.php:330 admin.inc.php:412
|
279 |
#, fuzzy
|
280 |
msgid "Display thumbnails inline with posts, before title"
|
281 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
282 |
|
283 |
+
#: admin.inc.php:334 admin.inc.php:416
|
284 |
#, fuzzy
|
285 |
msgid "Display thumbnails inline with posts, after title"
|
286 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
287 |
|
288 |
+
#: admin.inc.php:338 admin.inc.php:420
|
289 |
msgid "Display only thumbnails, no text"
|
290 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
291 |
|
292 |
+
#: admin.inc.php:342 admin.inc.php:424
|
293 |
msgid "Do not display thumbnails, only text."
|
294 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
295 |
|
296 |
+
#: admin.inc.php:346 admin.inc.php:428
|
297 |
msgid "Maximum width of the thumbnail: "
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:349 admin.inc.php:431
|
301 |
msgid "Maximum height of the thumbnail: "
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: admin.inc.php:352
|
305 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: admin.inc.php:356
|
309 |
+
msgid ""
|
310 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: admin.inc.php:360
|
314 |
+
msgid ""
|
315 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
316 |
+
"\""
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: admin.inc.php:364
|
320 |
msgid "Use timthumb to generate thumbnails? "
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: admin.inc.php:366
|
324 |
msgid ""
|
325 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
326 |
"\">timthumb</a> will be used to generate thumbnails"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:369
|
330 |
msgid "Quality of thumbnails generated by timthumb"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin.inc.php:372
|
334 |
msgid ""
|
335 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
336 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin.inc.php:375
|
340 |
#, fuzzy
|
341 |
msgid "Post thumbnail meta field name: "
|
342 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
343 |
|
344 |
+
#: admin.inc.php:377
|
345 |
msgid ""
|
346 |
"The value of this field should contain the image source and is set in the "
|
347 |
"<em>Add New Post</em> screen"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin.inc.php:380
|
351 |
#, fuzzy
|
352 |
msgid ""
|
353 |
"If the postmeta is not set, then should the plugin extract the first image "
|
357 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
358 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
359 |
|
360 |
+
#: admin.inc.php:382
|
361 |
#, fuzzy
|
362 |
msgid ""
|
363 |
"This can slow down the loading of your page if the first image in the "
|
367 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
368 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
369 |
|
370 |
+
#: admin.inc.php:385
|
371 |
msgid "Use default thumbnail? "
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin.inc.php:387
|
375 |
msgid ""
|
376 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
377 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin.inc.php:390
|
381 |
msgid "Default thumbnail: "
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin.inc.php:392
|
385 |
#, fuzzy
|
386 |
msgid ""
|
387 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
392 |
"nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
|
393 |
"wird das unten spezifizierte Default-Thumbnail angezeigt:"
|
394 |
|
395 |
+
#: admin.inc.php:398
|
396 |
#, fuzzy
|
397 |
msgid "Feed options"
|
398 |
msgstr "Optionen:"
|
399 |
|
400 |
+
#: admin.inc.php:400
|
401 |
msgid ""
|
402 |
"Below options override the related posts settings for your blog feed. These "
|
403 |
"only apply if you have selected to add related posts to Feeds in the General "
|
404 |
"Options tab."
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin.inc.php:437
|
408 |
msgid "Custom Styles"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin.inc.php:439
|
412 |
msgid "Custom CSS to add to header:"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: admin.inc.php:442
|
416 |
msgid ""
|
417 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
418 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
419 |
"\">FAQ</a> for available CSS classes to style."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:447
|
423 |
#, fuzzy
|
424 |
msgid "Save Options"
|
425 |
msgstr "Optionen:"
|
426 |
|
427 |
+
#: admin.inc.php:448
|
428 |
#, fuzzy
|
429 |
msgid "Default Options"
|
430 |
msgstr "Ausgabeotionen:"
|
431 |
|
432 |
+
#: admin.inc.php:448
|
433 |
msgid "Do you want to set options to Default?"
|
434 |
msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
|
435 |
|
436 |
+
#: admin.inc.php:449
|
437 |
msgid "Recreate Index"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin.inc.php:449
|
441 |
msgid "Are you sure you want to recreate the index?"
|
442 |
msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
|
443 |
|
444 |
+
#: admin.inc.php:473
|
445 |
msgid "Contextual Related Posts"
|
446 |
msgstr "Contextual Related Posts"
|
447 |
|
448 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
449 |
msgid "Related Posts"
|
450 |
msgstr "Related Posts"
|
451 |
|
452 |
+
#: admin.inc.php:486
|
453 |
#, fuzzy
|
454 |
msgid "plugin settings page"
|
455 |
msgstr "Plugin-Seite"
|
456 |
|
457 |
+
#: admin.inc.php:491
|
458 |
msgid ""
|
459 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
460 |
"visit the "
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin.inc.php:491
|
464 |
msgid " to configure."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin.inc.php:555
|
468 |
msgid ""
|
469 |
"An error occurred clearing the cache. Please contact your site administrator."
|
470 |
"\\n\\nError message:\\n"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin.inc.php:561
|
474 |
msgid " cached row(s) cleared"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: contextual-related-posts.php:123
|
478 |
+
#, fuzzy
|
479 |
+
msgid " Posted by "
|
480 |
+
msgstr "Powered by"
|
481 |
+
|
482 |
+
#: contextual-related-posts.php:138
|
483 |
msgid "Powered by"
|
484 |
msgstr "Powered by"
|
485 |
|
486 |
+
#: contextual-related-posts.php:313
|
487 |
#, fuzzy
|
488 |
msgid "Display Related Posts"
|
489 |
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
490 |
|
491 |
+
#: contextual-related-posts.php:328
|
492 |
msgid "Title"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: contextual-related-posts.php:333
|
496 |
msgid "No. of posts"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: contextual-related-posts.php:338
|
500 |
#, fuzzy
|
501 |
msgid " Show excerpt?"
|
502 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
503 |
|
504 |
+
#: contextual-related-posts.php:343
|
505 |
+
msgid " Show author?"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: contextual-related-posts.php:348
|
509 |
+
#, fuzzy
|
510 |
+
msgid " Show date?"
|
511 |
+
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
512 |
+
|
513 |
+
#: contextual-related-posts.php:352
|
514 |
#, fuzzy
|
515 |
msgid "Thumbnail options"
|
516 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
517 |
|
518 |
+
#: contextual-related-posts.php:354
|
519 |
#, fuzzy
|
520 |
msgid "Thumbnails inline, before title"
|
521 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
522 |
|
523 |
+
#: contextual-related-posts.php:355
|
524 |
#, fuzzy
|
525 |
msgid "Thumbnails inline, after title"
|
526 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
527 |
|
528 |
+
#: contextual-related-posts.php:356
|
529 |
#, fuzzy
|
530 |
msgid "Only thumbnails, no text"
|
531 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
532 |
|
533 |
+
#: contextual-related-posts.php:357
|
534 |
#, fuzzy
|
535 |
msgid "No thumbnails, only text."
|
536 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
537 |
|
538 |
+
#: contextual-related-posts.php:362
|
539 |
#, fuzzy
|
540 |
msgid "Thumbnail height"
|
541 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
542 |
|
543 |
+
#: contextual-related-posts.php:367
|
544 |
#, fuzzy
|
545 |
msgid "Thumbnail width"
|
546 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
547 |
|
548 |
+
#: contextual-related-posts.php:463
|
549 |
msgid "<h3>Related Posts:</h3>"
|
550 |
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
551 |
|
552 |
+
#: contextual-related-posts.php:464
|
553 |
#, fuzzy
|
554 |
msgid "No related posts found"
|
555 |
msgstr "Keine ähnlichen Beiträge gefunden"
|
556 |
|
557 |
+
#: contextual-related-posts.php:807
|
558 |
msgid "Settings"
|
559 |
msgstr "Einstellungen"
|
560 |
|
561 |
+
#: contextual-related-posts.php:830
|
562 |
msgid "Donate"
|
563 |
msgstr "Spenden"
|
564 |
|
languages/crp-en_US.mo
CHANGED
Binary file
|
languages/crp-en_US.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -12,472 +12,503 @@ msgstr ""
|
|
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.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Index recreated"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Support the development"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Quick Links"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Other plugins"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: admin.inc.php:
|
67 |
msgid "Recent developments"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: admin.inc.php:
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin.inc.php:
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid ""
|
80 |
"Enabling this option will cache the related posts output when the post is "
|
81 |
"visited the first time. The cache is cleaned when you save this page."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Clear cache"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid ""
|
110 |
-
"If unchecked, only posts titles are used.
|
111 |
-
"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin.inc.php:
|
115 |
msgid "List of post or page IDs to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: admin.inc.php:
|
119 |
msgid "Categories to exclude from the results: "
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: admin.inc.php:
|
123 |
msgid ""
|
124 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
125 |
"so simply start typing in the starting letters and it will prompt you with "
|
126 |
"options"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
msgid "Add related posts to:"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin.inc.php:
|
134 |
msgid "Posts"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
msgid "Pages"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid "Home page"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin.inc.php:
|
146 |
msgid "Feeds"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Category archives"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
msgid "Tag archives"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin.inc.php:
|
158 |
msgid "Other archives"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid ""
|
163 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
164 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
165 |
"you want it displayed"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: admin.inc.php:
|
169 |
msgid "Add a link to the plugin page as a final item in the list"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: admin.inc.php:
|
173 |
msgid " <em>Optional</em>"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: admin.inc.php:
|
177 |
msgid "Output options"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: admin.inc.php:
|
181 |
msgid "Title of related posts: "
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: admin.inc.php:
|
185 |
msgid "When there are no posts, what should be shown?"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: admin.inc.php:
|
189 |
msgid "Blank Output"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Display:"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
msgid "Show post excerpt in list?"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: admin.inc.php:
|
201 |
msgid "Length of excerpt (in words): "
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
205 |
msgid "Show post date in list?"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Limit post title length (in characters)"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Open links in new window"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "Add nofollow attribute to links in the list"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "Exclude display of related posts on these posts / pages"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Customize the output:"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "HTML to display before the list of posts: "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "HTML to display before each list item: "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "HTML to display after each list item: "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "HTML to display after the list of posts: "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Post thumbnail options:"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Location of post thumbnail:"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "Display thumbnails inline with posts, before title"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Display thumbnails inline with posts, after title"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Display only thumbnails, no text"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Do not display thumbnails, only text."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Maximum width of the thumbnail: "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Maximum height of the thumbnail: "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
msgid "Use timthumb to generate thumbnails? "
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid ""
|
286 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
287 |
"\">timthumb</a> will be used to generate thumbnails"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Quality of thumbnails generated by timthumb"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid ""
|
296 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
297 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid "Post thumbnail meta field name: "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid ""
|
306 |
"The value of this field should contain the image source and is set in the "
|
307 |
"<em>Add New Post</em> screen"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid ""
|
312 |
"If the postmeta is not set, then should the plugin extract the first image "
|
313 |
"from the post?"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid ""
|
318 |
"This can slow down the loading of your page if the first image in the "
|
319 |
"related posts is large in file-size"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid "Use default thumbnail? "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin.inc.php:
|
327 |
msgid ""
|
328 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
329 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: admin.inc.php:
|
333 |
msgid "Default thumbnail: "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin.inc.php:
|
337 |
msgid ""
|
338 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
339 |
"then it will check the meta field. If this is not available, then it will "
|
340 |
"show the default image as specified above"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin.inc.php:
|
344 |
msgid "Feed options"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: admin.inc.php:
|
348 |
msgid ""
|
349 |
"Below options override the related posts settings for your blog feed. These "
|
350 |
"only apply if you have selected to add related posts to Feeds in the General "
|
351 |
"Options tab."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid "Custom Styles"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin.inc.php:
|
359 |
msgid "Custom CSS to add to header:"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid ""
|
364 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
365 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
366 |
"\">FAQ</a> for available CSS classes to style."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin.inc.php:
|
370 |
msgid "Save Options"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid "Default Options"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Do you want to set options to Default?"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid "Recreate Index"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: admin.inc.php:
|
386 |
msgid "Are you sure you want to recreate the index?"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin.inc.php:
|
390 |
msgid "Contextual Related Posts"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin.inc.php:
|
394 |
msgid "Related Posts"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin.inc.php:
|
398 |
msgid "plugin settings page"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin.inc.php:
|
402 |
msgid ""
|
403 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
404 |
"visit the "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid " to configure."
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
msgid ""
|
413 |
"An error occurred clearing the cache. Please contact your site administrator."
|
414 |
"\\n\\nError message:\\n"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid " cached row(s) cleared"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
422 |
msgid "Powered by"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: contextual-related-posts.php:
|
426 |
msgid "Display Related Posts"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: contextual-related-posts.php:
|
430 |
msgid "Title"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: contextual-related-posts.php:
|
434 |
msgid "No. of posts"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: contextual-related-posts.php:
|
438 |
msgid " Show excerpt?"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
442 |
msgid "Thumbnail options"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: contextual-related-posts.php:
|
446 |
msgid "Thumbnails inline, before title"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: contextual-related-posts.php:
|
450 |
msgid "Thumbnails inline, after title"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: contextual-related-posts.php:
|
454 |
msgid "Only thumbnails, no text"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: contextual-related-posts.php:
|
458 |
msgid "No thumbnails, only text."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: contextual-related-posts.php:
|
462 |
msgid "Thumbnail height"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: contextual-related-posts.php:
|
466 |
msgid "Thumbnail width"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: contextual-related-posts.php:
|
470 |
msgid "<h3>Related Posts:</h3>"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: contextual-related-posts.php:
|
474 |
msgid "No related posts found"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: contextual-related-posts.php:
|
478 |
msgid "Settings"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: contextual-related-posts.php:
|
482 |
msgid "Donate"
|
483 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:27-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
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.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:106
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:122
|
23 |
msgid "Options set to Default."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:138
|
27 |
msgid "Index recreated"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin.inc.php:151
|
31 |
msgid "Support the development"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin.inc.php:159
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.inc.php:163
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:174
|
43 |
msgid "Quick Links"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:176
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Other plugins"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:178
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:180
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:184
|
67 |
msgid "Recent developments"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:194
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin.inc.php:196
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:198
|
79 |
msgid ""
|
80 |
"Enabling this option will cache the related posts output when the post is "
|
81 |
"visited the first time. The cache is cleaned when you save this page."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:199
|
85 |
msgid "Clear cache"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:202 admin.inc.php:402
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:205
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:206
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:208
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:219
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:221
|
109 |
msgid ""
|
110 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
111 |
+
"or enabling \"Cache output\" above if you enable this."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin.inc.php:224
|
115 |
msgid "List of post or page IDs to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin.inc.php:227
|
119 |
msgid "Categories to exclude from the results: "
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: admin.inc.php:243
|
123 |
msgid ""
|
124 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
125 |
"so simply start typing in the starting letters and it will prompt you with "
|
126 |
"options"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin.inc.php:246
|
130 |
msgid "Add related posts to:"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin.inc.php:248
|
134 |
msgid "Posts"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin.inc.php:249
|
138 |
msgid "Pages"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: admin.inc.php:250
|
142 |
msgid "Home page"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.inc.php:251
|
146 |
msgid "Feeds"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:252
|
150 |
msgid "Category archives"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:253
|
154 |
msgid "Tag archives"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin.inc.php:254
|
158 |
msgid "Other archives"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: admin.inc.php:255
|
162 |
msgid ""
|
163 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
164 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
165 |
"you want it displayed"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:258
|
169 |
msgid "Add a link to the plugin page as a final item in the list"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: admin.inc.php:259
|
173 |
msgid " <em>Optional</em>"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: admin.inc.php:266
|
177 |
msgid "Output options"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin.inc.php:268
|
181 |
msgid "Title of related posts: "
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: admin.inc.php:271
|
185 |
msgid "When there are no posts, what should be shown?"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin.inc.php:275
|
189 |
msgid "Blank Output"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: admin.inc.php:279
|
193 |
msgid "Display:"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: admin.inc.php:283 admin.inc.php:405
|
197 |
msgid "Show post excerpt in list?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: admin.inc.php:286
|
201 |
msgid "Length of excerpt (in words): "
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin.inc.php:289
|
205 |
+
msgid "Show post author in list?"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: admin.inc.php:292
|
209 |
msgid "Show post date in list?"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin.inc.php:295
|
213 |
msgid "Limit post title length (in characters)"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin.inc.php:298
|
217 |
msgid "Open links in new window"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:301
|
221 |
msgid "Add nofollow attribute to links in the list"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin.inc.php:304
|
225 |
msgid "Exclude display of related posts on these posts / pages"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:307
|
229 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:310
|
233 |
msgid "Customize the output:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:312
|
237 |
msgid "HTML to display before the list of posts: "
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin.inc.php:315
|
241 |
msgid "HTML to display before each list item: "
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: admin.inc.php:318
|
245 |
msgid "HTML to display after each list item: "
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin.inc.php:321
|
249 |
msgid "HTML to display after the list of posts: "
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin.inc.php:324
|
253 |
msgid "Post thumbnail options:"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin.inc.php:326 admin.inc.php:408
|
257 |
msgid "Location of post thumbnail:"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin.inc.php:330 admin.inc.php:412
|
261 |
msgid "Display thumbnails inline with posts, before title"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin.inc.php:334 admin.inc.php:416
|
265 |
msgid "Display thumbnails inline with posts, after title"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin.inc.php:338 admin.inc.php:420
|
269 |
msgid "Display only thumbnails, no text"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:342 admin.inc.php:424
|
273 |
msgid "Do not display thumbnails, only text."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin.inc.php:346 admin.inc.php:428
|
277 |
msgid "Maximum width of the thumbnail: "
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin.inc.php:349 admin.inc.php:431
|
281 |
msgid "Maximum height of the thumbnail: "
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin.inc.php:352
|
285 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: admin.inc.php:356
|
289 |
+
msgid ""
|
290 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: admin.inc.php:360
|
294 |
+
msgid ""
|
295 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
296 |
+
"\""
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: admin.inc.php:364
|
300 |
msgid "Use timthumb to generate thumbnails? "
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin.inc.php:366
|
304 |
msgid ""
|
305 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
306 |
"\">timthumb</a> will be used to generate thumbnails"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin.inc.php:369
|
310 |
msgid "Quality of thumbnails generated by timthumb"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin.inc.php:372
|
314 |
msgid ""
|
315 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
316 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin.inc.php:375
|
320 |
msgid "Post thumbnail meta field name: "
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: admin.inc.php:377
|
324 |
msgid ""
|
325 |
"The value of this field should contain the image source and is set in the "
|
326 |
"<em>Add New Post</em> screen"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:380
|
330 |
msgid ""
|
331 |
"If the postmeta is not set, then should the plugin extract the first image "
|
332 |
"from the post?"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:382
|
336 |
msgid ""
|
337 |
"This can slow down the loading of your page if the first image in the "
|
338 |
"related posts is large in file-size"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:385
|
342 |
msgid "Use default thumbnail? "
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin.inc.php:387
|
346 |
msgid ""
|
347 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
348 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin.inc.php:390
|
352 |
msgid "Default thumbnail: "
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: admin.inc.php:392
|
356 |
msgid ""
|
357 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
358 |
"then it will check the meta field. If this is not available, then it will "
|
359 |
"show the default image as specified above"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:398
|
363 |
msgid "Feed options"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:400
|
367 |
msgid ""
|
368 |
"Below options override the related posts settings for your blog feed. These "
|
369 |
"only apply if you have selected to add related posts to Feeds in the General "
|
370 |
"Options tab."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:437
|
374 |
msgid "Custom Styles"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:439
|
378 |
msgid "Custom CSS to add to header:"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin.inc.php:442
|
382 |
msgid ""
|
383 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
384 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
385 |
"\">FAQ</a> for available CSS classes to style."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:447
|
389 |
msgid "Save Options"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin.inc.php:448
|
393 |
msgid "Default Options"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin.inc.php:448
|
397 |
msgid "Do you want to set options to Default?"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin.inc.php:449
|
401 |
msgid "Recreate Index"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:449
|
405 |
msgid "Are you sure you want to recreate the index?"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:473
|
409 |
msgid "Contextual Related Posts"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
413 |
msgid "Related Posts"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin.inc.php:486
|
417 |
msgid "plugin settings page"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: admin.inc.php:491
|
421 |
msgid ""
|
422 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
423 |
"visit the "
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:491
|
427 |
msgid " to configure."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:555
|
431 |
msgid ""
|
432 |
"An error occurred clearing the cache. Please contact your site administrator."
|
433 |
"\\n\\nError message:\\n"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin.inc.php:561
|
437 |
msgid " cached row(s) cleared"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: contextual-related-posts.php:123
|
441 |
+
msgid " Posted by "
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: contextual-related-posts.php:138
|
445 |
msgid "Powered by"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: contextual-related-posts.php:313
|
449 |
msgid "Display Related Posts"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: contextual-related-posts.php:328
|
453 |
msgid "Title"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: contextual-related-posts.php:333
|
457 |
msgid "No. of posts"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: contextual-related-posts.php:338
|
461 |
msgid " Show excerpt?"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: contextual-related-posts.php:343
|
465 |
+
msgid " Show author?"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: contextual-related-posts.php:348
|
469 |
+
msgid " Show date?"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: contextual-related-posts.php:352
|
473 |
msgid "Thumbnail options"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: contextual-related-posts.php:354
|
477 |
msgid "Thumbnails inline, before title"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: contextual-related-posts.php:355
|
481 |
msgid "Thumbnails inline, after title"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: contextual-related-posts.php:356
|
485 |
msgid "Only thumbnails, no text"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: contextual-related-posts.php:357
|
489 |
msgid "No thumbnails, only text."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: contextual-related-posts.php:362
|
493 |
msgid "Thumbnail height"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: contextual-related-posts.php:367
|
497 |
msgid "Thumbnail width"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: contextual-related-posts.php:463
|
501 |
msgid "<h3>Related Posts:</h3>"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: contextual-related-posts.php:464
|
505 |
msgid "No related posts found"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: contextual-related-posts.php:807
|
509 |
msgid "Settings"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: contextual-related-posts.php:830
|
513 |
msgid "Donate"
|
514 |
msgstr ""
|
languages/crp-en_US.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -12,472 +12,503 @@ msgstr ""
|
|
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.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Index recreated"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Support the development"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Quick Links"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Other plugins"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: admin.inc.php:
|
67 |
msgid "Recent developments"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: admin.inc.php:
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin.inc.php:
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid ""
|
80 |
"Enabling this option will cache the related posts output when the post is "
|
81 |
"visited the first time. The cache is cleaned when you save this page."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Clear cache"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid ""
|
110 |
-
"If unchecked, only posts titles are used.
|
111 |
-
"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin.inc.php:
|
115 |
msgid "List of post or page IDs to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: admin.inc.php:
|
119 |
msgid "Categories to exclude from the results: "
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: admin.inc.php:
|
123 |
msgid ""
|
124 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
125 |
"so simply start typing in the starting letters and it will prompt you with "
|
126 |
"options"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
msgid "Add related posts to:"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin.inc.php:
|
134 |
msgid "Posts"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
msgid "Pages"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid "Home page"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin.inc.php:
|
146 |
msgid "Feeds"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Category archives"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
msgid "Tag archives"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin.inc.php:
|
158 |
msgid "Other archives"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid ""
|
163 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
164 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
165 |
"you want it displayed"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: admin.inc.php:
|
169 |
msgid "Add a link to the plugin page as a final item in the list"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: admin.inc.php:
|
173 |
msgid " <em>Optional</em>"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: admin.inc.php:
|
177 |
msgid "Output options"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: admin.inc.php:
|
181 |
msgid "Title of related posts: "
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: admin.inc.php:
|
185 |
msgid "When there are no posts, what should be shown?"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: admin.inc.php:
|
189 |
msgid "Blank Output"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Display:"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
msgid "Show post excerpt in list?"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: admin.inc.php:
|
201 |
msgid "Length of excerpt (in words): "
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
205 |
msgid "Show post date in list?"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Limit post title length (in characters)"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Open links in new window"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "Add nofollow attribute to links in the list"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "Exclude display of related posts on these posts / pages"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Customize the output:"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "HTML to display before the list of posts: "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "HTML to display before each list item: "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "HTML to display after each list item: "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "HTML to display after the list of posts: "
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Post thumbnail options:"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Location of post thumbnail:"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "Display thumbnails inline with posts, before title"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Display thumbnails inline with posts, after title"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Display only thumbnails, no text"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Do not display thumbnails, only text."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Maximum width of the thumbnail: "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Maximum height of the thumbnail: "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
msgid "Use timthumb to generate thumbnails? "
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid ""
|
286 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
287 |
"\">timthumb</a> will be used to generate thumbnails"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Quality of thumbnails generated by timthumb"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid ""
|
296 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
297 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid "Post thumbnail meta field name: "
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid ""
|
306 |
"The value of this field should contain the image source and is set in the "
|
307 |
"<em>Add New Post</em> screen"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid ""
|
312 |
"If the postmeta is not set, then should the plugin extract the first image "
|
313 |
"from the post?"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid ""
|
318 |
"This can slow down the loading of your page if the first image in the "
|
319 |
"related posts is large in file-size"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid "Use default thumbnail? "
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin.inc.php:
|
327 |
msgid ""
|
328 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
329 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: admin.inc.php:
|
333 |
msgid "Default thumbnail: "
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin.inc.php:
|
337 |
msgid ""
|
338 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
339 |
"then it will check the meta field. If this is not available, then it will "
|
340 |
"show the default image as specified above"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin.inc.php:
|
344 |
msgid "Feed options"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: admin.inc.php:
|
348 |
msgid ""
|
349 |
"Below options override the related posts settings for your blog feed. These "
|
350 |
"only apply if you have selected to add related posts to Feeds in the General "
|
351 |
"Options tab."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid "Custom Styles"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin.inc.php:
|
359 |
msgid "Custom CSS to add to header:"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid ""
|
364 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
365 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
366 |
"\">FAQ</a> for available CSS classes to style."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin.inc.php:
|
370 |
msgid "Save Options"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid "Default Options"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Do you want to set options to Default?"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid "Recreate Index"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: admin.inc.php:
|
386 |
msgid "Are you sure you want to recreate the index?"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin.inc.php:
|
390 |
msgid "Contextual Related Posts"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin.inc.php:
|
394 |
msgid "Related Posts"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin.inc.php:
|
398 |
msgid "plugin settings page"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin.inc.php:
|
402 |
msgid ""
|
403 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
404 |
"visit the "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid " to configure."
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
msgid ""
|
413 |
"An error occurred clearing the cache. Please contact your site administrator."
|
414 |
"\\n\\nError message:\\n"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid " cached row(s) cleared"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
422 |
msgid "Powered by"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: contextual-related-posts.php:
|
426 |
msgid "Display Related Posts"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: contextual-related-posts.php:
|
430 |
msgid "Title"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: contextual-related-posts.php:
|
434 |
msgid "No. of posts"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: contextual-related-posts.php:
|
438 |
msgid " Show excerpt?"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
442 |
msgid "Thumbnail options"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: contextual-related-posts.php:
|
446 |
msgid "Thumbnails inline, before title"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: contextual-related-posts.php:
|
450 |
msgid "Thumbnails inline, after title"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: contextual-related-posts.php:
|
454 |
msgid "Only thumbnails, no text"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: contextual-related-posts.php:
|
458 |
msgid "No thumbnails, only text."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: contextual-related-posts.php:
|
462 |
msgid "Thumbnail height"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: contextual-related-posts.php:
|
466 |
msgid "Thumbnail width"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: contextual-related-posts.php:
|
470 |
msgid "<h3>Related Posts:</h3>"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: contextual-related-posts.php:
|
474 |
msgid "No related posts found"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: contextual-related-posts.php:
|
478 |
msgid "Settings"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: contextual-related-posts.php:
|
482 |
msgid "Donate"
|
483 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:27-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
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.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:106
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:122
|
23 |
msgid "Options set to Default."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:138
|
27 |
msgid "Index recreated"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin.inc.php:151
|
31 |
msgid "Support the development"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin.inc.php:159
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.inc.php:163
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:174
|
43 |
msgid "Quick Links"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:176
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Other plugins"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:178
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:180
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:184
|
67 |
msgid "Recent developments"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:194
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin.inc.php:196
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:198
|
79 |
msgid ""
|
80 |
"Enabling this option will cache the related posts output when the post is "
|
81 |
"visited the first time. The cache is cleaned when you save this page."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:199
|
85 |
msgid "Clear cache"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:202 admin.inc.php:402
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:205
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:206
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:208
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:219
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:221
|
109 |
msgid ""
|
110 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
111 |
+
"or enabling \"Cache output\" above if you enable this."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin.inc.php:224
|
115 |
msgid "List of post or page IDs to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin.inc.php:227
|
119 |
msgid "Categories to exclude from the results: "
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: admin.inc.php:243
|
123 |
msgid ""
|
124 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
125 |
"so simply start typing in the starting letters and it will prompt you with "
|
126 |
"options"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin.inc.php:246
|
130 |
msgid "Add related posts to:"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin.inc.php:248
|
134 |
msgid "Posts"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin.inc.php:249
|
138 |
msgid "Pages"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: admin.inc.php:250
|
142 |
msgid "Home page"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.inc.php:251
|
146 |
msgid "Feeds"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:252
|
150 |
msgid "Category archives"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:253
|
154 |
msgid "Tag archives"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin.inc.php:254
|
158 |
msgid "Other archives"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: admin.inc.php:255
|
162 |
msgid ""
|
163 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
164 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
165 |
"you want it displayed"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:258
|
169 |
msgid "Add a link to the plugin page as a final item in the list"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: admin.inc.php:259
|
173 |
msgid " <em>Optional</em>"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: admin.inc.php:266
|
177 |
msgid "Output options"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin.inc.php:268
|
181 |
msgid "Title of related posts: "
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: admin.inc.php:271
|
185 |
msgid "When there are no posts, what should be shown?"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin.inc.php:275
|
189 |
msgid "Blank Output"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: admin.inc.php:279
|
193 |
msgid "Display:"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: admin.inc.php:283 admin.inc.php:405
|
197 |
msgid "Show post excerpt in list?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: admin.inc.php:286
|
201 |
msgid "Length of excerpt (in words): "
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin.inc.php:289
|
205 |
+
msgid "Show post author in list?"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: admin.inc.php:292
|
209 |
msgid "Show post date in list?"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin.inc.php:295
|
213 |
msgid "Limit post title length (in characters)"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin.inc.php:298
|
217 |
msgid "Open links in new window"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:301
|
221 |
msgid "Add nofollow attribute to links in the list"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin.inc.php:304
|
225 |
msgid "Exclude display of related posts on these posts / pages"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:307
|
229 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:310
|
233 |
msgid "Customize the output:"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:312
|
237 |
msgid "HTML to display before the list of posts: "
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin.inc.php:315
|
241 |
msgid "HTML to display before each list item: "
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: admin.inc.php:318
|
245 |
msgid "HTML to display after each list item: "
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin.inc.php:321
|
249 |
msgid "HTML to display after the list of posts: "
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin.inc.php:324
|
253 |
msgid "Post thumbnail options:"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin.inc.php:326 admin.inc.php:408
|
257 |
msgid "Location of post thumbnail:"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin.inc.php:330 admin.inc.php:412
|
261 |
msgid "Display thumbnails inline with posts, before title"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin.inc.php:334 admin.inc.php:416
|
265 |
msgid "Display thumbnails inline with posts, after title"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin.inc.php:338 admin.inc.php:420
|
269 |
msgid "Display only thumbnails, no text"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:342 admin.inc.php:424
|
273 |
msgid "Do not display thumbnails, only text."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin.inc.php:346 admin.inc.php:428
|
277 |
msgid "Maximum width of the thumbnail: "
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin.inc.php:349 admin.inc.php:431
|
281 |
msgid "Maximum height of the thumbnail: "
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin.inc.php:352
|
285 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: admin.inc.php:356
|
289 |
+
msgid ""
|
290 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: admin.inc.php:360
|
294 |
+
msgid ""
|
295 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
296 |
+
"\""
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: admin.inc.php:364
|
300 |
msgid "Use timthumb to generate thumbnails? "
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin.inc.php:366
|
304 |
msgid ""
|
305 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
306 |
"\">timthumb</a> will be used to generate thumbnails"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin.inc.php:369
|
310 |
msgid "Quality of thumbnails generated by timthumb"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin.inc.php:372
|
314 |
msgid ""
|
315 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
316 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin.inc.php:375
|
320 |
msgid "Post thumbnail meta field name: "
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: admin.inc.php:377
|
324 |
msgid ""
|
325 |
"The value of this field should contain the image source and is set in the "
|
326 |
"<em>Add New Post</em> screen"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:380
|
330 |
msgid ""
|
331 |
"If the postmeta is not set, then should the plugin extract the first image "
|
332 |
"from the post?"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:382
|
336 |
msgid ""
|
337 |
"This can slow down the loading of your page if the first image in the "
|
338 |
"related posts is large in file-size"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:385
|
342 |
msgid "Use default thumbnail? "
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin.inc.php:387
|
346 |
msgid ""
|
347 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
348 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin.inc.php:390
|
352 |
msgid "Default thumbnail: "
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: admin.inc.php:392
|
356 |
msgid ""
|
357 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
358 |
"then it will check the meta field. If this is not available, then it will "
|
359 |
"show the default image as specified above"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:398
|
363 |
msgid "Feed options"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:400
|
367 |
msgid ""
|
368 |
"Below options override the related posts settings for your blog feed. These "
|
369 |
"only apply if you have selected to add related posts to Feeds in the General "
|
370 |
"Options tab."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:437
|
374 |
msgid "Custom Styles"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:439
|
378 |
msgid "Custom CSS to add to header:"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin.inc.php:442
|
382 |
msgid ""
|
383 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
384 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
385 |
"\">FAQ</a> for available CSS classes to style."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:447
|
389 |
msgid "Save Options"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin.inc.php:448
|
393 |
msgid "Default Options"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin.inc.php:448
|
397 |
msgid "Do you want to set options to Default?"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin.inc.php:449
|
401 |
msgid "Recreate Index"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:449
|
405 |
msgid "Are you sure you want to recreate the index?"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:473
|
409 |
msgid "Contextual Related Posts"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
413 |
msgid "Related Posts"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin.inc.php:486
|
417 |
msgid "plugin settings page"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: admin.inc.php:491
|
421 |
msgid ""
|
422 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
423 |
"visit the "
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin.inc.php:491
|
427 |
msgid " to configure."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin.inc.php:555
|
431 |
msgid ""
|
432 |
"An error occurred clearing the cache. Please contact your site administrator."
|
433 |
"\\n\\nError message:\\n"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: admin.inc.php:561
|
437 |
msgid " cached row(s) cleared"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: contextual-related-posts.php:123
|
441 |
+
msgid " Posted by "
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: contextual-related-posts.php:138
|
445 |
msgid "Powered by"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: contextual-related-posts.php:313
|
449 |
msgid "Display Related Posts"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: contextual-related-posts.php:328
|
453 |
msgid "Title"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: contextual-related-posts.php:333
|
457 |
msgid "No. of posts"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: contextual-related-posts.php:338
|
461 |
msgid " Show excerpt?"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: contextual-related-posts.php:343
|
465 |
+
msgid " Show author?"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
#: contextual-related-posts.php:348
|
469 |
+
msgid " Show date?"
|
470 |
+
msgstr ""
|
471 |
+
|
472 |
+
#: contextual-related-posts.php:352
|
473 |
msgid "Thumbnail options"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: contextual-related-posts.php:354
|
477 |
msgid "Thumbnails inline, before title"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: contextual-related-posts.php:355
|
481 |
msgid "Thumbnails inline, after title"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: contextual-related-posts.php:356
|
485 |
msgid "Only thumbnails, no text"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: contextual-related-posts.php:357
|
489 |
msgid "No thumbnails, only text."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: contextual-related-posts.php:362
|
493 |
msgid "Thumbnail height"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: contextual-related-posts.php:367
|
497 |
msgid "Thumbnail width"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: contextual-related-posts.php:463
|
501 |
msgid "<h3>Related Posts:</h3>"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: contextual-related-posts.php:464
|
505 |
msgid "No related posts found"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: contextual-related-posts.php:807
|
509 |
msgid "Settings"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: contextual-related-posts.php:830
|
513 |
msgid "Donate"
|
514 |
msgstr ""
|
languages/crp-es_ES.mo
CHANGED
Binary file
|
languages/crp-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -12,160 +12,160 @@ msgstr ""
|
|
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.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Opciones guardadas correctament."
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Restablecer opciones originales"
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Recrear el Index"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Support the development"
|
32 |
msgstr "Apoya el desarrollo"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Ingresa monto en USD:"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Enviar tu donación al autor de"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Links rápidos"
|
46 |
|
47 |
-
#: admin.inc.php:
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Posts relacionados contextualmente"
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Otros plugins"
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
msgid "Support"
|
62 |
msgstr "Soporte"
|
63 |
|
64 |
-
#: admin.inc.php:
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: admin.inc.php:
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Desarrollos recientes"
|
71 |
|
72 |
-
#: admin.inc.php:
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Número de posts relacionados a mostrar:"
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
-
"If unchecked, only posts titles are used.
|
114 |
-
"
|
115 |
msgstr ""
|
116 |
"Encuentra posts relacionados basados en el contexto y el título. Si es "
|
117 |
"deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
|
118 |
"caché si activas esto)"
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid ""
|
130 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
131 |
"so simply start typing in the starting letters and it will prompt you with "
|
132 |
"options"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "Agregar posts relacionados al feed"
|
139 |
|
140 |
-
#: admin.inc.php:
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin.inc.php:
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: admin.inc.php:
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: admin.inc.php:
|
169 |
#, fuzzy
|
170 |
msgid ""
|
171 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -176,155 +176,175 @@ msgstr ""
|
|
176 |
"favor agrega <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp"
|
177 |
"(); ?></code> a tu archivo de template donde quieras q se muestre"
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
msgid "Add a link to the plugin page as a final item in the list"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
msgid " <em>Optional</em>"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
#, fuzzy
|
189 |
msgid "Output options"
|
190 |
msgstr "Opciones de Salida:"
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Title of related posts: "
|
194 |
msgstr "Título de posts relacionados:"
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
msgid "When there are no posts, what should be shown?"
|
198 |
msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
|
199 |
|
200 |
-
#: admin.inc.php:
|
201 |
msgid "Blank Output"
|
202 |
msgstr "Salida vacía"
|
203 |
|
204 |
-
#: admin.inc.php:
|
205 |
msgid "Display:"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Show post excerpt in list?"
|
210 |
msgstr "¿Mostrar extracto con los items?"
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Length of excerpt (in words): "
|
214 |
msgstr "Tamaño del extracto (en palabras):"
|
215 |
|
216 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
217 |
#, fuzzy
|
218 |
msgid "Show post date in list?"
|
219 |
msgstr "¿Mostrar extracto con los items?"
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Limit post title length (in characters)"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Open links in new window"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Add nofollow attribute to links in the list"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
#, fuzzy
|
235 |
msgid "Exclude display of related posts on these posts / pages"
|
236 |
msgstr "Agregar posts relacionados al feed"
|
237 |
|
238 |
-
#: admin.inc.php:
|
239 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
msgid "Customize the output:"
|
244 |
msgstr "Personalizar la salida:"
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "HTML to display before the list of posts: "
|
248 |
msgstr "HTML a mostrar antes de todos los items:"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "HTML to display before each list item: "
|
252 |
msgstr "HTML a mostrar antes de cada item:"
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "HTML to display after each list item: "
|
256 |
msgstr "HTML a mostrar despues de cada item:"
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "HTML to display after the list of posts: "
|
260 |
msgstr "HTML a mostrar despues de todos los items:"
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Post thumbnail options:"
|
264 |
msgstr "Opciones de miniaturas en el post:"
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Location of post thumbnail:"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
#, fuzzy
|
272 |
msgid "Display thumbnails inline with posts, before title"
|
273 |
msgstr "Miniaturas en línea con los posts"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
#, fuzzy
|
277 |
msgid "Display thumbnails inline with posts, after title"
|
278 |
msgstr "Miniaturas en línea con los posts"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "Display only thumbnails, no text"
|
282 |
msgstr "Solo miniaturas, sin texto"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Do not display thumbnails, only text."
|
286 |
msgstr "No mostrar miniaturas, solo texto."
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Maximum width of the thumbnail: "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid "Maximum height of the thumbnail: "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
msgid "Use timthumb to generate thumbnails? "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid ""
|
302 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
303 |
"\">timthumb</a> will be used to generate thumbnails"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Quality of thumbnails generated by timthumb"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid ""
|
312 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
313 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
#, fuzzy
|
318 |
msgid "Post thumbnail meta field name: "
|
319 |
msgstr "Opciones de miniaturas en el post:"
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid ""
|
323 |
"The value of this field should contain the image source and is set in the "
|
324 |
"<em>Add New Post</em> screen"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: admin.inc.php:
|
328 |
#, fuzzy
|
329 |
msgid ""
|
330 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -334,7 +354,7 @@ msgstr ""
|
|
334 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
335 |
"tamaño"
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
#, fuzzy
|
339 |
msgid ""
|
340 |
"This can slow down the loading of your page if the first image in the "
|
@@ -344,21 +364,21 @@ msgstr ""
|
|
344 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
345 |
"tamaño"
|
346 |
|
347 |
-
#: admin.inc.php:
|
348 |
msgid "Use default thumbnail? "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
msgid ""
|
353 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
354 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin.inc.php:
|
358 |
msgid "Default thumbnail: "
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
#, fuzzy
|
363 |
msgid ""
|
364 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -369,159 +389,173 @@ msgstr ""
|
|
369 |
"ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
|
370 |
"la imágen padrón especificada a continuación:"
|
371 |
|
372 |
-
#: admin.inc.php:
|
373 |
#, fuzzy
|
374 |
msgid "Feed options"
|
375 |
msgstr "Opciones:"
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid ""
|
379 |
"Below options override the related posts settings for your blog feed. These "
|
380 |
"only apply if you have selected to add related posts to Feeds in the General "
|
381 |
"Options tab."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin.inc.php:
|
385 |
msgid "Custom Styles"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid "Custom CSS to add to header:"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
msgid ""
|
394 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
395 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
396 |
"\">FAQ</a> for available CSS classes to style."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
#, fuzzy
|
401 |
msgid "Save Options"
|
402 |
msgstr "Opciones:"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
#, fuzzy
|
406 |
msgid "Default Options"
|
407 |
msgstr "Opciones de Salida:"
|
408 |
|
409 |
-
#: admin.inc.php:
|
410 |
msgid "Do you want to set options to Default?"
|
411 |
msgstr "¿Quieres resetear las opciones?"
|
412 |
|
413 |
-
#: admin.inc.php:
|
414 |
msgid "Recreate Index"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Are you sure you want to recreate the index?"
|
419 |
msgstr "¿Está seguro que quiere recrear el index?"
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Contextual Related Posts"
|
423 |
msgstr "Posts Relacionados Contextualmente"
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "Related Posts"
|
427 |
msgstr "Post Relacionados"
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
#, fuzzy
|
431 |
msgid "plugin settings page"
|
432 |
msgstr "sitio del plugin"
|
433 |
|
434 |
-
#: admin.inc.php:
|
435 |
msgid ""
|
436 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
437 |
"visit the "
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin.inc.php:
|
441 |
msgid " to configure."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin.inc.php:
|
445 |
msgid ""
|
446 |
"An error occurred clearing the cache. Please contact your site administrator."
|
447 |
"\\n\\nError message:\\n"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin.inc.php:
|
451 |
msgid " cached row(s) cleared"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
455 |
msgid "Powered by"
|
456 |
msgstr "Creado por"
|
457 |
|
458 |
-
#: contextual-related-posts.php:
|
459 |
#, fuzzy
|
460 |
msgid "Display Related Posts"
|
461 |
msgstr "Mostrar \"Posts No Relacionados\""
|
462 |
|
463 |
-
#: contextual-related-posts.php:
|
464 |
msgid "Title"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: contextual-related-posts.php:
|
468 |
msgid "No. of posts"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: contextual-related-posts.php:
|
472 |
#, fuzzy
|
473 |
msgid " Show excerpt?"
|
474 |
msgstr "¿Mostrar extracto con los items?"
|
475 |
|
476 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
#, fuzzy
|
478 |
msgid "Thumbnail options"
|
479 |
msgstr "Opciones de miniaturas en el post:"
|
480 |
|
481 |
-
#: contextual-related-posts.php:
|
482 |
#, fuzzy
|
483 |
msgid "Thumbnails inline, before title"
|
484 |
msgstr "Miniaturas en línea con los posts"
|
485 |
|
486 |
-
#: contextual-related-posts.php:
|
487 |
#, fuzzy
|
488 |
msgid "Thumbnails inline, after title"
|
489 |
msgstr "Miniaturas en línea con los posts"
|
490 |
|
491 |
-
#: contextual-related-posts.php:
|
492 |
#, fuzzy
|
493 |
msgid "Only thumbnails, no text"
|
494 |
msgstr "Solo miniaturas, sin texto"
|
495 |
|
496 |
-
#: contextual-related-posts.php:
|
497 |
#, fuzzy
|
498 |
msgid "No thumbnails, only text."
|
499 |
msgstr "No mostrar miniaturas, solo texto."
|
500 |
|
501 |
-
#: contextual-related-posts.php:
|
502 |
#, fuzzy
|
503 |
msgid "Thumbnail height"
|
504 |
msgstr "Opciones de miniaturas en el post:"
|
505 |
|
506 |
-
#: contextual-related-posts.php:
|
507 |
#, fuzzy
|
508 |
msgid "Thumbnail width"
|
509 |
msgstr "Opciones de miniaturas en el post:"
|
510 |
|
511 |
-
#: contextual-related-posts.php:
|
512 |
msgid "<h3>Related Posts:</h3>"
|
513 |
msgstr "<h3>Post Relacionados:</h3>"
|
514 |
|
515 |
-
#: contextual-related-posts.php:
|
516 |
#, fuzzy
|
517 |
msgid "No related posts found"
|
518 |
msgstr "No hay posts relacionados"
|
519 |
|
520 |
-
#: contextual-related-posts.php:
|
521 |
msgid "Settings"
|
522 |
msgstr "Opciones"
|
523 |
|
524 |
-
#: contextual-related-posts.php:
|
525 |
msgid "Donate"
|
526 |
msgstr "Donar"
|
527 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:28-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
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.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:106
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Opciones guardadas correctament."
|
21 |
|
22 |
+
#: admin.inc.php:122
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Restablecer opciones originales"
|
25 |
|
26 |
+
#: admin.inc.php:138
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Recrear el Index"
|
29 |
|
30 |
+
#: admin.inc.php:151
|
31 |
msgid "Support the development"
|
32 |
msgstr "Apoya el desarrollo"
|
33 |
|
34 |
+
#: admin.inc.php:159
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Ingresa monto en USD:"
|
37 |
|
38 |
+
#: admin.inc.php:163
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Enviar tu donación al autor de"
|
41 |
|
42 |
+
#: admin.inc.php:174
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Links rápidos"
|
46 |
|
47 |
+
#: admin.inc.php:176
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Posts relacionados contextualmente"
|
51 |
|
52 |
+
#: admin.inc.php:177
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Otros plugins"
|
55 |
|
56 |
+
#: admin.inc.php:178
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
61 |
msgid "Support"
|
62 |
msgstr "Soporte"
|
63 |
|
64 |
+
#: admin.inc.php:180
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:184
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Desarrollos recientes"
|
71 |
|
72 |
+
#: admin.inc.php:194
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:196
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:198
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:199
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:202 admin.inc.php:402
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Número de posts relacionados a mostrar:"
|
93 |
|
94 |
+
#: admin.inc.php:205
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:206
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:208
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:219
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin.inc.php:221
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
114 |
+
"or enabling \"Cache output\" above if you enable this."
|
115 |
msgstr ""
|
116 |
"Encuentra posts relacionados basados en el contexto y el título. Si es "
|
117 |
"deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
|
118 |
"caché si activas esto)"
|
119 |
|
120 |
+
#: admin.inc.php:224
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:227
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:243
|
129 |
msgid ""
|
130 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
131 |
"so simply start typing in the starting letters and it will prompt you with "
|
132 |
"options"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin.inc.php:246
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "Agregar posts relacionados al feed"
|
139 |
|
140 |
+
#: admin.inc.php:248
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:249
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:250
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:251
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin.inc.php:252
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin.inc.php:253
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin.inc.php:254
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:255
|
169 |
#, fuzzy
|
170 |
msgid ""
|
171 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
176 |
"favor agrega <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp"
|
177 |
"(); ?></code> a tu archivo de template donde quieras q se muestre"
|
178 |
|
179 |
+
#: admin.inc.php:258
|
180 |
msgid "Add a link to the plugin page as a final item in the list"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin.inc.php:259
|
184 |
msgid " <em>Optional</em>"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.inc.php:266
|
188 |
#, fuzzy
|
189 |
msgid "Output options"
|
190 |
msgstr "Opciones de Salida:"
|
191 |
|
192 |
+
#: admin.inc.php:268
|
193 |
msgid "Title of related posts: "
|
194 |
msgstr "Título de posts relacionados:"
|
195 |
|
196 |
+
#: admin.inc.php:271
|
197 |
msgid "When there are no posts, what should be shown?"
|
198 |
msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
|
199 |
|
200 |
+
#: admin.inc.php:275
|
201 |
msgid "Blank Output"
|
202 |
msgstr "Salida vacía"
|
203 |
|
204 |
+
#: admin.inc.php:279
|
205 |
msgid "Display:"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: admin.inc.php:283 admin.inc.php:405
|
209 |
msgid "Show post excerpt in list?"
|
210 |
msgstr "¿Mostrar extracto con los items?"
|
211 |
|
212 |
+
#: admin.inc.php:286
|
213 |
msgid "Length of excerpt (in words): "
|
214 |
msgstr "Tamaño del extracto (en palabras):"
|
215 |
|
216 |
+
#: admin.inc.php:289
|
217 |
+
#, fuzzy
|
218 |
+
msgid "Show post author in list?"
|
219 |
+
msgstr "¿Mostrar extracto con los items?"
|
220 |
+
|
221 |
+
#: admin.inc.php:292
|
222 |
#, fuzzy
|
223 |
msgid "Show post date in list?"
|
224 |
msgstr "¿Mostrar extracto con los items?"
|
225 |
|
226 |
+
#: admin.inc.php:295
|
227 |
msgid "Limit post title length (in characters)"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin.inc.php:298
|
231 |
msgid "Open links in new window"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: admin.inc.php:301
|
235 |
msgid "Add nofollow attribute to links in the list"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: admin.inc.php:304
|
239 |
#, fuzzy
|
240 |
msgid "Exclude display of related posts on these posts / pages"
|
241 |
msgstr "Agregar posts relacionados al feed"
|
242 |
|
243 |
+
#: admin.inc.php:307
|
244 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: admin.inc.php:310
|
248 |
msgid "Customize the output:"
|
249 |
msgstr "Personalizar la salida:"
|
250 |
|
251 |
+
#: admin.inc.php:312
|
252 |
msgid "HTML to display before the list of posts: "
|
253 |
msgstr "HTML a mostrar antes de todos los items:"
|
254 |
|
255 |
+
#: admin.inc.php:315
|
256 |
msgid "HTML to display before each list item: "
|
257 |
msgstr "HTML a mostrar antes de cada item:"
|
258 |
|
259 |
+
#: admin.inc.php:318
|
260 |
msgid "HTML to display after each list item: "
|
261 |
msgstr "HTML a mostrar despues de cada item:"
|
262 |
|
263 |
+
#: admin.inc.php:321
|
264 |
msgid "HTML to display after the list of posts: "
|
265 |
msgstr "HTML a mostrar despues de todos los items:"
|
266 |
|
267 |
+
#: admin.inc.php:324
|
268 |
msgid "Post thumbnail options:"
|
269 |
msgstr "Opciones de miniaturas en el post:"
|
270 |
|
271 |
+
#: admin.inc.php:326 admin.inc.php:408
|
272 |
msgid "Location of post thumbnail:"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: admin.inc.php:330 admin.inc.php:412
|
276 |
#, fuzzy
|
277 |
msgid "Display thumbnails inline with posts, before title"
|
278 |
msgstr "Miniaturas en línea con los posts"
|
279 |
|
280 |
+
#: admin.inc.php:334 admin.inc.php:416
|
281 |
#, fuzzy
|
282 |
msgid "Display thumbnails inline with posts, after title"
|
283 |
msgstr "Miniaturas en línea con los posts"
|
284 |
|
285 |
+
#: admin.inc.php:338 admin.inc.php:420
|
286 |
msgid "Display only thumbnails, no text"
|
287 |
msgstr "Solo miniaturas, sin texto"
|
288 |
|
289 |
+
#: admin.inc.php:342 admin.inc.php:424
|
290 |
msgid "Do not display thumbnails, only text."
|
291 |
msgstr "No mostrar miniaturas, solo texto."
|
292 |
|
293 |
+
#: admin.inc.php:346 admin.inc.php:428
|
294 |
msgid "Maximum width of the thumbnail: "
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin.inc.php:349 admin.inc.php:431
|
298 |
msgid "Maximum height of the thumbnail: "
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:352
|
302 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: admin.inc.php:356
|
306 |
+
msgid ""
|
307 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: admin.inc.php:360
|
311 |
+
msgid ""
|
312 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
313 |
+
"\""
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: admin.inc.php:364
|
317 |
msgid "Use timthumb to generate thumbnails? "
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin.inc.php:366
|
321 |
msgid ""
|
322 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
323 |
"\">timthumb</a> will be used to generate thumbnails"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin.inc.php:369
|
327 |
msgid "Quality of thumbnails generated by timthumb"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin.inc.php:372
|
331 |
msgid ""
|
332 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
333 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: admin.inc.php:375
|
337 |
#, fuzzy
|
338 |
msgid "Post thumbnail meta field name: "
|
339 |
msgstr "Opciones de miniaturas en el post:"
|
340 |
|
341 |
+
#: admin.inc.php:377
|
342 |
msgid ""
|
343 |
"The value of this field should contain the image source and is set in the "
|
344 |
"<em>Add New Post</em> screen"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin.inc.php:380
|
348 |
#, fuzzy
|
349 |
msgid ""
|
350 |
"If the postmeta is not set, then should the plugin extract the first image "
|
354 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
355 |
"tamaño"
|
356 |
|
357 |
+
#: admin.inc.php:382
|
358 |
#, fuzzy
|
359 |
msgid ""
|
360 |
"This can slow down the loading of your page if the first image in the "
|
364 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
365 |
"tamaño"
|
366 |
|
367 |
+
#: admin.inc.php:385
|
368 |
msgid "Use default thumbnail? "
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin.inc.php:387
|
372 |
msgid ""
|
373 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
374 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:390
|
378 |
msgid "Default thumbnail: "
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin.inc.php:392
|
382 |
#, fuzzy
|
383 |
msgid ""
|
384 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
389 |
"ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
|
390 |
"la imágen padrón especificada a continuación:"
|
391 |
|
392 |
+
#: admin.inc.php:398
|
393 |
#, fuzzy
|
394 |
msgid "Feed options"
|
395 |
msgstr "Opciones:"
|
396 |
|
397 |
+
#: admin.inc.php:400
|
398 |
msgid ""
|
399 |
"Below options override the related posts settings for your blog feed. These "
|
400 |
"only apply if you have selected to add related posts to Feeds in the General "
|
401 |
"Options tab."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:437
|
405 |
msgid "Custom Styles"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:439
|
409 |
msgid "Custom CSS to add to header:"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:442
|
413 |
msgid ""
|
414 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
415 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
416 |
"\">FAQ</a> for available CSS classes to style."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin.inc.php:447
|
420 |
#, fuzzy
|
421 |
msgid "Save Options"
|
422 |
msgstr "Opciones:"
|
423 |
|
424 |
+
#: admin.inc.php:448
|
425 |
#, fuzzy
|
426 |
msgid "Default Options"
|
427 |
msgstr "Opciones de Salida:"
|
428 |
|
429 |
+
#: admin.inc.php:448
|
430 |
msgid "Do you want to set options to Default?"
|
431 |
msgstr "¿Quieres resetear las opciones?"
|
432 |
|
433 |
+
#: admin.inc.php:449
|
434 |
msgid "Recreate Index"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin.inc.php:449
|
438 |
msgid "Are you sure you want to recreate the index?"
|
439 |
msgstr "¿Está seguro que quiere recrear el index?"
|
440 |
|
441 |
+
#: admin.inc.php:473
|
442 |
msgid "Contextual Related Posts"
|
443 |
msgstr "Posts Relacionados Contextualmente"
|
444 |
|
445 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
446 |
msgid "Related Posts"
|
447 |
msgstr "Post Relacionados"
|
448 |
|
449 |
+
#: admin.inc.php:486
|
450 |
#, fuzzy
|
451 |
msgid "plugin settings page"
|
452 |
msgstr "sitio del plugin"
|
453 |
|
454 |
+
#: admin.inc.php:491
|
455 |
msgid ""
|
456 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
457 |
"visit the "
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin.inc.php:491
|
461 |
msgid " to configure."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin.inc.php:555
|
465 |
msgid ""
|
466 |
"An error occurred clearing the cache. Please contact your site administrator."
|
467 |
"\\n\\nError message:\\n"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin.inc.php:561
|
471 |
msgid " cached row(s) cleared"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: contextual-related-posts.php:123
|
475 |
+
#, fuzzy
|
476 |
+
msgid " Posted by "
|
477 |
+
msgstr "Creado por"
|
478 |
+
|
479 |
+
#: contextual-related-posts.php:138
|
480 |
msgid "Powered by"
|
481 |
msgstr "Creado por"
|
482 |
|
483 |
+
#: contextual-related-posts.php:313
|
484 |
#, fuzzy
|
485 |
msgid "Display Related Posts"
|
486 |
msgstr "Mostrar \"Posts No Relacionados\""
|
487 |
|
488 |
+
#: contextual-related-posts.php:328
|
489 |
msgid "Title"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: contextual-related-posts.php:333
|
493 |
msgid "No. of posts"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: contextual-related-posts.php:338
|
497 |
#, fuzzy
|
498 |
msgid " Show excerpt?"
|
499 |
msgstr "¿Mostrar extracto con los items?"
|
500 |
|
501 |
+
#: contextual-related-posts.php:343
|
502 |
+
msgid " Show author?"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: contextual-related-posts.php:348
|
506 |
+
#, fuzzy
|
507 |
+
msgid " Show date?"
|
508 |
+
msgstr "¿Mostrar extracto con los items?"
|
509 |
+
|
510 |
+
#: contextual-related-posts.php:352
|
511 |
#, fuzzy
|
512 |
msgid "Thumbnail options"
|
513 |
msgstr "Opciones de miniaturas en el post:"
|
514 |
|
515 |
+
#: contextual-related-posts.php:354
|
516 |
#, fuzzy
|
517 |
msgid "Thumbnails inline, before title"
|
518 |
msgstr "Miniaturas en línea con los posts"
|
519 |
|
520 |
+
#: contextual-related-posts.php:355
|
521 |
#, fuzzy
|
522 |
msgid "Thumbnails inline, after title"
|
523 |
msgstr "Miniaturas en línea con los posts"
|
524 |
|
525 |
+
#: contextual-related-posts.php:356
|
526 |
#, fuzzy
|
527 |
msgid "Only thumbnails, no text"
|
528 |
msgstr "Solo miniaturas, sin texto"
|
529 |
|
530 |
+
#: contextual-related-posts.php:357
|
531 |
#, fuzzy
|
532 |
msgid "No thumbnails, only text."
|
533 |
msgstr "No mostrar miniaturas, solo texto."
|
534 |
|
535 |
+
#: contextual-related-posts.php:362
|
536 |
#, fuzzy
|
537 |
msgid "Thumbnail height"
|
538 |
msgstr "Opciones de miniaturas en el post:"
|
539 |
|
540 |
+
#: contextual-related-posts.php:367
|
541 |
#, fuzzy
|
542 |
msgid "Thumbnail width"
|
543 |
msgstr "Opciones de miniaturas en el post:"
|
544 |
|
545 |
+
#: contextual-related-posts.php:463
|
546 |
msgid "<h3>Related Posts:</h3>"
|
547 |
msgstr "<h3>Post Relacionados:</h3>"
|
548 |
|
549 |
+
#: contextual-related-posts.php:464
|
550 |
#, fuzzy
|
551 |
msgid "No related posts found"
|
552 |
msgstr "No hay posts relacionados"
|
553 |
|
554 |
+
#: contextual-related-posts.php:807
|
555 |
msgid "Settings"
|
556 |
msgstr "Opciones"
|
557 |
|
558 |
+
#: contextual-related-posts.php:830
|
559 |
msgid "Donate"
|
560 |
msgstr "Donar"
|
561 |
|
languages/crp-fr_FR.mo
ADDED
Binary file
|
languages/crp-fr_FR.po
ADDED
@@ -0,0 +1,561 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:28-0000\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
+
"Language-Team: Olivier Copetto <olivier@copetto.com>\n"
|
9 |
+
"Language: fr\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.7\n"
|
16 |
+
"X-Poedit-SearchPath-0: .\n"
|
17 |
+
|
18 |
+
#: admin.inc.php:106
|
19 |
+
msgid "Options saved successfully."
|
20 |
+
msgstr "Options enregistrées avec succès."
|
21 |
+
|
22 |
+
#: admin.inc.php:122
|
23 |
+
msgid "Options set to Default."
|
24 |
+
msgstr "Options définies par défaut."
|
25 |
+
|
26 |
+
#: admin.inc.php:138
|
27 |
+
msgid "Index recreated"
|
28 |
+
msgstr "L'index a été recréé."
|
29 |
+
|
30 |
+
#: admin.inc.php:151
|
31 |
+
msgid "Support the development"
|
32 |
+
msgstr "Soutenir le développement"
|
33 |
+
|
34 |
+
#: admin.inc.php:159
|
35 |
+
msgid "Enter amount in USD: "
|
36 |
+
msgstr "Entrer le montant en USD :"
|
37 |
+
|
38 |
+
#: admin.inc.php:163
|
39 |
+
msgid "Send your donation to the author of"
|
40 |
+
msgstr "Envoyer votre don à l'auteur de"
|
41 |
+
|
42 |
+
#: admin.inc.php:174
|
43 |
+
msgid "Quick Links"
|
44 |
+
msgstr "Liens rapides"
|
45 |
+
|
46 |
+
#: admin.inc.php:176
|
47 |
+
msgid "Contextual Related Posts plugin page"
|
48 |
+
msgstr "Page du plugin Contextual Related Posts"
|
49 |
+
|
50 |
+
#: admin.inc.php:177
|
51 |
+
msgid "Other plugins"
|
52 |
+
msgstr "Autres plugins"
|
53 |
+
|
54 |
+
#: admin.inc.php:178
|
55 |
+
msgid "Ajay's blog"
|
56 |
+
msgstr "Blog d'Ajay"
|
57 |
+
|
58 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
59 |
+
msgid "Support"
|
60 |
+
msgstr "Support"
|
61 |
+
|
62 |
+
#: admin.inc.php:180
|
63 |
+
msgid "Reviews"
|
64 |
+
msgstr "Commentaires"
|
65 |
+
|
66 |
+
#: admin.inc.php:184
|
67 |
+
msgid "Recent developments"
|
68 |
+
msgstr "Développements récents"
|
69 |
+
|
70 |
+
#: admin.inc.php:194
|
71 |
+
msgid "General options"
|
72 |
+
msgstr "Options générales"
|
73 |
+
|
74 |
+
#: admin.inc.php:196
|
75 |
+
msgid "Cache output?"
|
76 |
+
msgstr "Cache de l'affichage ?"
|
77 |
+
|
78 |
+
#: admin.inc.php:198
|
79 |
+
msgid ""
|
80 |
+
"Enabling this option will cache the related posts output when the post is "
|
81 |
+
"visited the first time. The cache is cleaned when you save this page."
|
82 |
+
msgstr ""
|
83 |
+
"L'activation de cette option met en cache l'affichage des articles "
|
84 |
+
"similaires lorsque l'article est visité pour la première fois. Le cache est "
|
85 |
+
"nettoyé lorsque vous enregistrez cette page."
|
86 |
+
|
87 |
+
#: admin.inc.php:199
|
88 |
+
msgid "Clear cache"
|
89 |
+
msgstr "Effacer le cache"
|
90 |
+
|
91 |
+
#: admin.inc.php:202 admin.inc.php:402
|
92 |
+
msgid "Number of related posts to display: "
|
93 |
+
msgstr "Nombre d'articles similaires<br>à afficher :"
|
94 |
+
|
95 |
+
#: admin.inc.php:205
|
96 |
+
msgid "Related posts should be newer than:"
|
97 |
+
msgstr "Les articles similaires devront être plus récent de :"
|
98 |
+
|
99 |
+
#: admin.inc.php:206
|
100 |
+
msgid "days"
|
101 |
+
msgstr "jours"
|
102 |
+
|
103 |
+
#: admin.inc.php:208
|
104 |
+
msgid "Post types to include in results (including custom post types)"
|
105 |
+
msgstr ""
|
106 |
+
"Type d'article à inclure dans les résultats (y compris les types "
|
107 |
+
"personnalisés)"
|
108 |
+
|
109 |
+
#: admin.inc.php:219
|
110 |
+
msgid "Find related posts based on content as well as title"
|
111 |
+
msgstr ""
|
112 |
+
"Trouver les articles similaires en se basant sur le contenu ainsi que le "
|
113 |
+
"titre"
|
114 |
+
|
115 |
+
#: admin.inc.php:221
|
116 |
+
#, fuzzy
|
117 |
+
msgid ""
|
118 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
119 |
+
"or enabling \"Cache output\" above if you enable this."
|
120 |
+
msgstr ""
|
121 |
+
"Si non cochée, les titres des articles seront uniquement utilisés. (Nous "
|
122 |
+
"recommandons d'utiliser un plugin de mise en cache si vous l'activez)"
|
123 |
+
|
124 |
+
#: admin.inc.php:224
|
125 |
+
msgid "List of post or page IDs to exclude from the results: "
|
126 |
+
msgstr "Liste des ID d'article ou de page à exclure des résultats :"
|
127 |
+
|
128 |
+
#: admin.inc.php:227
|
129 |
+
msgid "Categories to exclude from the results: "
|
130 |
+
msgstr "Catégories à exclure des résultats :"
|
131 |
+
|
132 |
+
#: admin.inc.php:243
|
133 |
+
msgid ""
|
134 |
+
"Comma separated list of category slugs. The field above has an autocomplete "
|
135 |
+
"so simply start typing in the starting letters and it will prompt you with "
|
136 |
+
"options"
|
137 |
+
msgstr ""
|
138 |
+
"Liste de catégorie séparée par une virgule. Le champ ci-dessus a un "
|
139 |
+
"remplissage automatique, tapez simplement les premières lettres et il vous "
|
140 |
+
"proposera des options."
|
141 |
+
|
142 |
+
#: admin.inc.php:246
|
143 |
+
msgid "Add related posts to:"
|
144 |
+
msgstr "Ajouter des articles similaires à :"
|
145 |
+
|
146 |
+
#: admin.inc.php:248
|
147 |
+
msgid "Posts"
|
148 |
+
msgstr "Articles"
|
149 |
+
|
150 |
+
#: admin.inc.php:249
|
151 |
+
msgid "Pages"
|
152 |
+
msgstr "Pages"
|
153 |
+
|
154 |
+
#: admin.inc.php:250
|
155 |
+
msgid "Home page"
|
156 |
+
msgstr "Page d'accueil"
|
157 |
+
|
158 |
+
#: admin.inc.php:251
|
159 |
+
msgid "Feeds"
|
160 |
+
msgstr "RSS"
|
161 |
+
|
162 |
+
#: admin.inc.php:252
|
163 |
+
msgid "Category archives"
|
164 |
+
msgstr "Archives Catégorie"
|
165 |
+
|
166 |
+
#: admin.inc.php:253
|
167 |
+
msgid "Tag archives"
|
168 |
+
msgstr "Archives Etiquette"
|
169 |
+
|
170 |
+
#: admin.inc.php:254
|
171 |
+
msgid "Other archives"
|
172 |
+
msgstr "Autres archives"
|
173 |
+
|
174 |
+
#: admin.inc.php:255
|
175 |
+
msgid ""
|
176 |
+
"If you choose to disable this, please add <code><?php if(function_exists"
|
177 |
+
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
178 |
+
"you want it displayed"
|
179 |
+
msgstr ""
|
180 |
+
"Si vous choisissez de désactiver ceci, ajouter <code><?php if"
|
181 |
+
"(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code> à votre "
|
182 |
+
"fichier de modèle où vous souhaitez qu'il s'affiche."
|
183 |
+
|
184 |
+
#: admin.inc.php:258
|
185 |
+
msgid "Add a link to the plugin page as a final item in the list"
|
186 |
+
msgstr "Ajouter un lien vers la page du plugin comme dernier élément de liste"
|
187 |
+
|
188 |
+
#: admin.inc.php:259
|
189 |
+
msgid " <em>Optional</em>"
|
190 |
+
msgstr " <em>Optionnel</em>"
|
191 |
+
|
192 |
+
#: admin.inc.php:266
|
193 |
+
msgid "Output options"
|
194 |
+
msgstr "Options d'affichage"
|
195 |
+
|
196 |
+
#: admin.inc.php:268
|
197 |
+
msgid "Title of related posts: "
|
198 |
+
msgstr "Titre des articles similaires :"
|
199 |
+
|
200 |
+
#: admin.inc.php:271
|
201 |
+
msgid "When there are no posts, what should be shown?"
|
202 |
+
msgstr "Lorsqu'il n'y a pas d'articles, que doit-on afficher ?"
|
203 |
+
|
204 |
+
#: admin.inc.php:275
|
205 |
+
msgid "Blank Output"
|
206 |
+
msgstr "Aucun affichage"
|
207 |
+
|
208 |
+
#: admin.inc.php:279
|
209 |
+
msgid "Display:"
|
210 |
+
msgstr "Affichage :"
|
211 |
+
|
212 |
+
#: admin.inc.php:283 admin.inc.php:405
|
213 |
+
msgid "Show post excerpt in list?"
|
214 |
+
msgstr "Afficher l'extrait de l'article dans la liste ?"
|
215 |
+
|
216 |
+
#: admin.inc.php:286
|
217 |
+
msgid "Length of excerpt (in words): "
|
218 |
+
msgstr "Longueur de l'extrait (en mots) :"
|
219 |
+
|
220 |
+
#: admin.inc.php:289
|
221 |
+
#, fuzzy
|
222 |
+
msgid "Show post author in list?"
|
223 |
+
msgstr "Afficher la date de l'article dans la liste ?"
|
224 |
+
|
225 |
+
#: admin.inc.php:292
|
226 |
+
msgid "Show post date in list?"
|
227 |
+
msgstr "Afficher la date de l'article dans la liste ?"
|
228 |
+
|
229 |
+
#: admin.inc.php:295
|
230 |
+
msgid "Limit post title length (in characters)"
|
231 |
+
msgstr "Taille limite du titre (en caractères)"
|
232 |
+
|
233 |
+
#: admin.inc.php:298
|
234 |
+
msgid "Open links in new window"
|
235 |
+
msgstr "Ouvrir les liens dans une nouvelle fenêtre"
|
236 |
+
|
237 |
+
#: admin.inc.php:301
|
238 |
+
msgid "Add nofollow attribute to links in the list"
|
239 |
+
msgstr "Ajouter l'attribut nofollow aux liens de la liste"
|
240 |
+
|
241 |
+
#: admin.inc.php:304
|
242 |
+
msgid "Exclude display of related posts on these posts / pages"
|
243 |
+
msgstr ""
|
244 |
+
"Exclure l'affichage des articles similaires liés à ces articles / pages"
|
245 |
+
|
246 |
+
#: admin.inc.php:307
|
247 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
248 |
+
msgstr "Entrer une liste d'ID (ex : 188, 320, 500) séparé par une virgule."
|
249 |
+
|
250 |
+
#: admin.inc.php:310
|
251 |
+
msgid "Customize the output:"
|
252 |
+
msgstr "Configurer l'affichage :"
|
253 |
+
|
254 |
+
#: admin.inc.php:312
|
255 |
+
msgid "HTML to display before the list of posts: "
|
256 |
+
msgstr "HTML à afficher avant la liste des articles :"
|
257 |
+
|
258 |
+
#: admin.inc.php:315
|
259 |
+
msgid "HTML to display before each list item: "
|
260 |
+
msgstr "HTML à afficher avant chaque élément de la liste :"
|
261 |
+
|
262 |
+
#: admin.inc.php:318
|
263 |
+
msgid "HTML to display after each list item: "
|
264 |
+
msgstr "HTML à afficher après chaque élément de la liste :"
|
265 |
+
|
266 |
+
#: admin.inc.php:321
|
267 |
+
msgid "HTML to display after the list of posts: "
|
268 |
+
msgstr "HTML à afficher après la liste des articles :"
|
269 |
+
|
270 |
+
#: admin.inc.php:324
|
271 |
+
msgid "Post thumbnail options:"
|
272 |
+
msgstr "Options de la vignette :"
|
273 |
+
|
274 |
+
#: admin.inc.php:326 admin.inc.php:408
|
275 |
+
msgid "Location of post thumbnail:"
|
276 |
+
msgstr "Lieu de la vignette :"
|
277 |
+
|
278 |
+
#: admin.inc.php:330 admin.inc.php:412
|
279 |
+
msgid "Display thumbnails inline with posts, before title"
|
280 |
+
msgstr "Afficher les vignettes en ligne avec les articles, avant le titre"
|
281 |
+
|
282 |
+
#: admin.inc.php:334 admin.inc.php:416
|
283 |
+
msgid "Display thumbnails inline with posts, after title"
|
284 |
+
msgstr "Afficher les vignettes en ligne avec les articles, après le titre"
|
285 |
+
|
286 |
+
#: admin.inc.php:338 admin.inc.php:420
|
287 |
+
msgid "Display only thumbnails, no text"
|
288 |
+
msgstr "Afficher seulement les vignettes, aucun texte"
|
289 |
+
|
290 |
+
#: admin.inc.php:342 admin.inc.php:424
|
291 |
+
msgid "Do not display thumbnails, only text."
|
292 |
+
msgstr "Ne pas afficher les vignettes, seulement le texte."
|
293 |
+
|
294 |
+
#: admin.inc.php:346 admin.inc.php:428
|
295 |
+
msgid "Maximum width of the thumbnail: "
|
296 |
+
msgstr "Largeur maximale de la vignette :"
|
297 |
+
|
298 |
+
#: admin.inc.php:349 admin.inc.php:431
|
299 |
+
msgid "Maximum height of the thumbnail: "
|
300 |
+
msgstr "Hauteur maximale de la vignette :"
|
301 |
+
|
302 |
+
#: admin.inc.php:352
|
303 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: admin.inc.php:356
|
307 |
+
msgid ""
|
308 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: admin.inc.php:360
|
312 |
+
msgid ""
|
313 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
314 |
+
"\""
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: admin.inc.php:364
|
318 |
+
msgid "Use timthumb to generate thumbnails? "
|
319 |
+
msgstr "Utiliser TimThumb pour générer les vignettes ?"
|
320 |
+
|
321 |
+
#: admin.inc.php:366
|
322 |
+
msgid ""
|
323 |
+
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
324 |
+
"\">timthumb</a> will be used to generate thumbnails"
|
325 |
+
msgstr ""
|
326 |
+
"Si cochée, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
327 |
+
"\">TimThumb</a> sera utilisé pour générer les vignettes."
|
328 |
+
|
329 |
+
#: admin.inc.php:369
|
330 |
+
msgid "Quality of thumbnails generated by timthumb"
|
331 |
+
msgstr "Qualité des vignettes généré par TimThumb"
|
332 |
+
|
333 |
+
#: admin.inc.php:372
|
334 |
+
msgid ""
|
335 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
336 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
337 |
+
msgstr ""
|
338 |
+
"Entrer une valeur entre 0 et 100. 100 étant la qualité la plus haute, c'est "
|
339 |
+
"également la taille du fichier la plus élevé. La valeur maximale suggérée "
|
340 |
+
"est 95. La valeur par défaut est 75."
|
341 |
+
|
342 |
+
#: admin.inc.php:375
|
343 |
+
msgid "Post thumbnail meta field name: "
|
344 |
+
msgstr "Nom du champ meta de la vignette :"
|
345 |
+
|
346 |
+
#: admin.inc.php:377
|
347 |
+
msgid ""
|
348 |
+
"The value of this field should contain the image source and is set in the "
|
349 |
+
"<em>Add New Post</em> screen"
|
350 |
+
msgstr ""
|
351 |
+
"La valeur de ce champ doit contenir la source de l'image et est situé dans "
|
352 |
+
"l'écran <em>Ajouter un nouvel article</em>"
|
353 |
+
|
354 |
+
#: admin.inc.php:380
|
355 |
+
msgid ""
|
356 |
+
"If the postmeta is not set, then should the plugin extract the first image "
|
357 |
+
"from the post?"
|
358 |
+
msgstr ""
|
359 |
+
"Si le meta n'est pas défini, alors le plugin doit-il extraire la première "
|
360 |
+
"image de l'article ?"
|
361 |
+
|
362 |
+
#: admin.inc.php:382
|
363 |
+
msgid ""
|
364 |
+
"This can slow down the loading of your page if the first image in the "
|
365 |
+
"related posts is large in file-size"
|
366 |
+
msgstr ""
|
367 |
+
"Cela peut ralentir le chargement de votre page, si la première image dans "
|
368 |
+
"les articles similaires est un fichier de grande taille."
|
369 |
+
|
370 |
+
#: admin.inc.php:385
|
371 |
+
msgid "Use default thumbnail? "
|
372 |
+
msgstr "Utiliser la vignette par défaut ?"
|
373 |
+
|
374 |
+
#: admin.inc.php:387
|
375 |
+
msgid ""
|
376 |
+
"If checked, when no thumbnail is found, show a default one from the URL "
|
377 |
+
"below. If not checked and no thumbnail is found, no image will be shown."
|
378 |
+
msgstr ""
|
379 |
+
"Si cochée, en l'absence de vignette, afficher une par défaut à partir de "
|
380 |
+
"l'adresse URL ci-dessous. Si elle n'est pas cochée et aucune vignette n'est "
|
381 |
+
"trouvée, aucune image ne sera affichée."
|
382 |
+
|
383 |
+
#: admin.inc.php:390
|
384 |
+
msgid "Default thumbnail: "
|
385 |
+
msgstr "Vignette par défaut :"
|
386 |
+
|
387 |
+
#: admin.inc.php:392
|
388 |
+
msgid ""
|
389 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
390 |
+
"then it will check the meta field. If this is not available, then it will "
|
391 |
+
"show the default image as specified above"
|
392 |
+
msgstr ""
|
393 |
+
"Le plugin va d'abord vérifier si l'article contient une vignette. Si ce "
|
394 |
+
"n'est pas le cas, il vérifiera le champ meta. S'il n'est pas disponible, "
|
395 |
+
"alors il affichera l'image par défaut comme indiqué ci-dessus."
|
396 |
+
|
397 |
+
#: admin.inc.php:398
|
398 |
+
msgid "Feed options"
|
399 |
+
msgstr "Options RSS"
|
400 |
+
|
401 |
+
#: admin.inc.php:400
|
402 |
+
msgid ""
|
403 |
+
"Below options override the related posts settings for your blog feed. These "
|
404 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
405 |
+
"Options tab."
|
406 |
+
msgstr ""
|
407 |
+
"Les options ci-dessous remplacent les paramètres articles similaires pour "
|
408 |
+
"les RSS. Ceux-ci s'appliquent uniquement si vous avez choisi d'ajouter les "
|
409 |
+
"articles similaires aux RSS dans l'onglet Options générales."
|
410 |
+
|
411 |
+
#: admin.inc.php:437
|
412 |
+
msgid "Custom Styles"
|
413 |
+
msgstr "Styles personnalisés"
|
414 |
+
|
415 |
+
#: admin.inc.php:439
|
416 |
+
msgid "Custom CSS to add to header:"
|
417 |
+
msgstr "CSS personnalisé à ajouter à l'entête :"
|
418 |
+
|
419 |
+
#: admin.inc.php:442
|
420 |
+
msgid ""
|
421 |
+
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
422 |
+
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
423 |
+
"\">FAQ</a> for available CSS classes to style."
|
424 |
+
msgstr ""
|
425 |
+
"Ne pas inclure les balises de <code>style</code>. Consultez la <a href="
|
426 |
+
"\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
|
427 |
+
"\"_blank\">FAQ</a> pour les classes CSS de style disponible."
|
428 |
+
|
429 |
+
#: admin.inc.php:447
|
430 |
+
msgid "Save Options"
|
431 |
+
msgstr "Enregistrer les options"
|
432 |
+
|
433 |
+
#: admin.inc.php:448
|
434 |
+
msgid "Default Options"
|
435 |
+
msgstr "Options par défaut"
|
436 |
+
|
437 |
+
#: admin.inc.php:448
|
438 |
+
msgid "Do you want to set options to Default?"
|
439 |
+
msgstr "Voulez-vous définir les options par défaut ?"
|
440 |
+
|
441 |
+
#: admin.inc.php:449
|
442 |
+
msgid "Recreate Index"
|
443 |
+
msgstr "Recréer l'index"
|
444 |
+
|
445 |
+
#: admin.inc.php:449
|
446 |
+
msgid "Are you sure you want to recreate the index?"
|
447 |
+
msgstr "Etes vous certain de vouloir recréer l'index ?"
|
448 |
+
|
449 |
+
#: admin.inc.php:473
|
450 |
+
msgid "Contextual Related Posts"
|
451 |
+
msgstr "Contextual Related Posts"
|
452 |
+
|
453 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
454 |
+
msgid "Related Posts"
|
455 |
+
msgstr "Related Posts"
|
456 |
+
|
457 |
+
#: admin.inc.php:486
|
458 |
+
msgid "plugin settings page"
|
459 |
+
msgstr "page des paramètres du plugin"
|
460 |
+
|
461 |
+
#: admin.inc.php:491
|
462 |
+
msgid ""
|
463 |
+
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
464 |
+
"visit the "
|
465 |
+
msgstr ""
|
466 |
+
"Le plugin Contextual Related Posts a été installé / mise à jour. Vous pouvez "
|
467 |
+
"visiter le "
|
468 |
+
|
469 |
+
#: admin.inc.php:491
|
470 |
+
msgid " to configure."
|
471 |
+
msgstr " à configurer."
|
472 |
+
|
473 |
+
#: admin.inc.php:555
|
474 |
+
msgid ""
|
475 |
+
"An error occurred clearing the cache. Please contact your site administrator."
|
476 |
+
"\\n\\nError message:\\n"
|
477 |
+
msgstr ""
|
478 |
+
"Une erreur s'est produite en vidant le cache. Contacter l'administrateur du "
|
479 |
+
"site.\\n\\nMessage d'erreur :\\n"
|
480 |
+
|
481 |
+
#: admin.inc.php:561
|
482 |
+
msgid " cached row(s) cleared"
|
483 |
+
msgstr "Ligne(s) en cache nettoyée(s)."
|
484 |
+
|
485 |
+
#: contextual-related-posts.php:123
|
486 |
+
#, fuzzy
|
487 |
+
msgid " Posted by "
|
488 |
+
msgstr "Propulsé par"
|
489 |
+
|
490 |
+
#: contextual-related-posts.php:138
|
491 |
+
msgid "Powered by"
|
492 |
+
msgstr "Propulsé par"
|
493 |
+
|
494 |
+
#: contextual-related-posts.php:313
|
495 |
+
msgid "Display Related Posts"
|
496 |
+
msgstr "Afficher les articles similaires"
|
497 |
+
|
498 |
+
#: contextual-related-posts.php:328
|
499 |
+
msgid "Title"
|
500 |
+
msgstr "Titre"
|
501 |
+
|
502 |
+
#: contextual-related-posts.php:333
|
503 |
+
msgid "No. of posts"
|
504 |
+
msgstr "Nombre d'articles"
|
505 |
+
|
506 |
+
#: contextual-related-posts.php:338
|
507 |
+
msgid " Show excerpt?"
|
508 |
+
msgstr " Voir l'extrait ?"
|
509 |
+
|
510 |
+
#: contextual-related-posts.php:343
|
511 |
+
msgid " Show author?"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: contextual-related-posts.php:348
|
515 |
+
#, fuzzy
|
516 |
+
msgid " Show date?"
|
517 |
+
msgstr " Voir l'extrait ?"
|
518 |
+
|
519 |
+
#: contextual-related-posts.php:352
|
520 |
+
msgid "Thumbnail options"
|
521 |
+
msgstr "Options des vignettes"
|
522 |
+
|
523 |
+
#: contextual-related-posts.php:354
|
524 |
+
msgid "Thumbnails inline, before title"
|
525 |
+
msgstr "Vignettes en ligne, avant le titre"
|
526 |
+
|
527 |
+
#: contextual-related-posts.php:355
|
528 |
+
msgid "Thumbnails inline, after title"
|
529 |
+
msgstr "Vignettes en ligne, après le titre"
|
530 |
+
|
531 |
+
#: contextual-related-posts.php:356
|
532 |
+
msgid "Only thumbnails, no text"
|
533 |
+
msgstr "Seulement les vignettes, aucun texte."
|
534 |
+
|
535 |
+
#: contextual-related-posts.php:357
|
536 |
+
msgid "No thumbnails, only text."
|
537 |
+
msgstr "Aucunes vignettes, texte seulement."
|
538 |
+
|
539 |
+
#: contextual-related-posts.php:362
|
540 |
+
msgid "Thumbnail height"
|
541 |
+
msgstr "Hauteur de la vignette"
|
542 |
+
|
543 |
+
#: contextual-related-posts.php:367
|
544 |
+
msgid "Thumbnail width"
|
545 |
+
msgstr "Largeur de la vignette"
|
546 |
+
|
547 |
+
#: contextual-related-posts.php:463
|
548 |
+
msgid "<h3>Related Posts:</h3>"
|
549 |
+
msgstr "<h3>Articles similaires :</h3>"
|
550 |
+
|
551 |
+
#: contextual-related-posts.php:464
|
552 |
+
msgid "No related posts found"
|
553 |
+
msgstr "Aucun article similaire trouvé."
|
554 |
+
|
555 |
+
#: contextual-related-posts.php:807
|
556 |
+
msgid "Settings"
|
557 |
+
msgstr "Réglages"
|
558 |
+
|
559 |
+
#: contextual-related-posts.php:830
|
560 |
+
msgid "Donate"
|
561 |
+
msgstr "Faire un don"
|
languages/crp-it_IT.mo
CHANGED
Binary file
|
languages/crp-it_IT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
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"
|
@@ -12,160 +12,160 @@ msgstr ""
|
|
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.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Le opzioni sono state salvate correttamente."
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Opzioni impostate alle predefinite."
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Index recreated"
|
28 |
msgstr "E' stato ricreato l'indice"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Support the development"
|
32 |
msgstr "Sostieni lo sviluppo"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Inserisci la cifra in USD: "
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Invia la tua donazione all'autore di"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Collegamenti veloci"
|
46 |
|
47 |
-
#: admin.inc.php:
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Contextual Related Posts "
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Altri plugin"
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Il blog di Ajay"
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
msgid "Support"
|
62 |
msgstr "Supporto"
|
63 |
|
64 |
-
#: admin.inc.php:
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: admin.inc.php:
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Sviluppi recenti"
|
71 |
|
72 |
-
#: admin.inc.php:
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "numero di articoli correlati da mostrare:"
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
-
"If unchecked, only posts titles are used.
|
114 |
-
"
|
115 |
msgstr ""
|
116 |
"Ricerca degli articoli correlati in relazione al contenuto ed al titolo. Se "
|
117 |
"disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
|
118 |
"preferibile attivare un plugin per la cache)"
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid ""
|
130 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
131 |
"so simply start typing in the starting letters and it will prompt you with "
|
132 |
"options"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "aggiungi gli articoli correlati al feed"
|
139 |
|
140 |
-
#: admin.inc.php:
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin.inc.php:
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: admin.inc.php:
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: admin.inc.php:
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: admin.inc.php:
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: admin.inc.php:
|
169 |
#, fuzzy
|
170 |
msgid ""
|
171 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -176,155 +176,175 @@ msgstr ""
|
|
176 |
"inserisci <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp"
|
177 |
"(); ?></code> nel tuo template laddove desideri che siano visualizzati"
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
msgid "Add a link to the plugin page as a final item in the list"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
msgid " <em>Optional</em>"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
#, fuzzy
|
189 |
msgid "Output options"
|
190 |
msgstr "Opzioni output:"
|
191 |
|
192 |
-
#: admin.inc.php:
|
193 |
msgid "Title of related posts: "
|
194 |
msgstr "titolo per gli articoli correlati:"
|
195 |
|
196 |
-
#: admin.inc.php:
|
197 |
msgid "When there are no posts, what should be shown?"
|
198 |
msgstr "Cosa desideri mostrare in assenza di articoli?"
|
199 |
|
200 |
-
#: admin.inc.php:
|
201 |
msgid "Blank Output"
|
202 |
msgstr "nulla"
|
203 |
|
204 |
-
#: admin.inc.php:
|
205 |
msgid "Display:"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Show post excerpt in list?"
|
210 |
msgstr "Desideri mostrare gli estratti?"
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Length of excerpt (in words): "
|
214 |
msgstr "Lunghezza estratto (in parole): "
|
215 |
|
216 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
217 |
#, fuzzy
|
218 |
msgid "Show post date in list?"
|
219 |
msgstr "Desideri mostrare gli estratti?"
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Limit post title length (in characters)"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Open links in new window"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Add nofollow attribute to links in the list"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
#, fuzzy
|
235 |
msgid "Exclude display of related posts on these posts / pages"
|
236 |
msgstr "aggiungi gli articoli correlati al feed"
|
237 |
|
238 |
-
#: admin.inc.php:
|
239 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
msgid "Customize the output:"
|
244 |
msgstr "Personalizzazione output:"
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "HTML to display before the list of posts: "
|
248 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "HTML to display before each list item: "
|
252 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "HTML to display after each list item: "
|
256 |
msgstr "HTML da mostrare dopo ogni lista:"
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "HTML to display after the list of posts: "
|
260 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Post thumbnail options:"
|
264 |
msgstr "Opzioni miniature articolo:"
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Location of post thumbnail:"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
#, fuzzy
|
272 |
msgid "Display thumbnails inline with posts, before title"
|
273 |
msgstr "Mostra gli articoli con le miniature inline"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
#, fuzzy
|
277 |
msgid "Display thumbnails inline with posts, after title"
|
278 |
msgstr "Mostra gli articoli con le miniature inline"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "Display only thumbnails, no text"
|
282 |
msgstr "Mostra le sole miniature, nessun testo"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Do not display thumbnails, only text."
|
286 |
msgstr "Non mostrare le miniature, solo testo."
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid "Maximum width of the thumbnail: "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid "Maximum height of the thumbnail: "
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
msgid "Use timthumb to generate thumbnails? "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid ""
|
302 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
303 |
"\">timthumb</a> will be used to generate thumbnails"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Quality of thumbnails generated by timthumb"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid ""
|
312 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
313 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
#, fuzzy
|
318 |
msgid "Post thumbnail meta field name: "
|
319 |
msgstr "Opzioni miniature articolo:"
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid ""
|
323 |
"The value of this field should contain the image source and is set in the "
|
324 |
"<em>Add New Post</em> screen"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: admin.inc.php:
|
328 |
#, fuzzy
|
329 |
msgid ""
|
330 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -335,7 +355,7 @@ msgstr ""
|
|
335 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
336 |
"dimensioni"
|
337 |
|
338 |
-
#: admin.inc.php:
|
339 |
#, fuzzy
|
340 |
msgid ""
|
341 |
"This can slow down the loading of your page if the first image in the "
|
@@ -346,21 +366,21 @@ msgstr ""
|
|
346 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
347 |
"dimensioni"
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
msgid "Use default thumbnail? "
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: admin.inc.php:
|
354 |
msgid ""
|
355 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
356 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: admin.inc.php:
|
360 |
msgid "Default thumbnail: "
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: admin.inc.php:
|
364 |
#, fuzzy
|
365 |
msgid ""
|
366 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -372,159 +392,173 @@ msgstr ""
|
|
372 |
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
373 |
"specificato qui sotto:"
|
374 |
|
375 |
-
#: admin.inc.php:
|
376 |
#, fuzzy
|
377 |
msgid "Feed options"
|
378 |
msgstr "Opzioni:"
|
379 |
|
380 |
-
#: admin.inc.php:
|
381 |
msgid ""
|
382 |
"Below options override the related posts settings for your blog feed. These "
|
383 |
"only apply if you have selected to add related posts to Feeds in the General "
|
384 |
"Options tab."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid "Custom Styles"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: admin.inc.php:
|
392 |
msgid "Custom CSS to add to header:"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin.inc.php:
|
396 |
msgid ""
|
397 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
398 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
399 |
"\">FAQ</a> for available CSS classes to style."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
#, fuzzy
|
404 |
msgid "Save Options"
|
405 |
msgstr "Opzioni:"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
#, fuzzy
|
409 |
msgid "Default Options"
|
410 |
msgstr "Opzioni output:"
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "Do you want to set options to Default?"
|
414 |
msgstr "Sei certo di volere impostare alle opzioni predefinite?"
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
msgid "Recreate Index"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid "Are you sure you want to recreate the index?"
|
422 |
msgstr "Sei certo di volere ricreare l'indice?"
|
423 |
|
424 |
-
#: admin.inc.php:
|
425 |
msgid "Contextual Related Posts"
|
426 |
msgstr "Contextual Related Posts"
|
427 |
|
428 |
-
#: admin.inc.php:
|
429 |
msgid "Related Posts"
|
430 |
msgstr "Related Posts"
|
431 |
|
432 |
-
#: admin.inc.php:
|
433 |
#, fuzzy
|
434 |
msgid "plugin settings page"
|
435 |
msgstr "pagina plugin"
|
436 |
|
437 |
-
#: admin.inc.php:
|
438 |
msgid ""
|
439 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
440 |
"visit the "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin.inc.php:
|
444 |
msgid " to configure."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin.inc.php:
|
448 |
msgid ""
|
449 |
"An error occurred clearing the cache. Please contact your site administrator."
|
450 |
"\\n\\nError message:\\n"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin.inc.php:
|
454 |
msgid " cached row(s) cleared"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
458 |
msgid "Powered by"
|
459 |
msgstr "Powered by"
|
460 |
|
461 |
-
#: contextual-related-posts.php:
|
462 |
#, fuzzy
|
463 |
msgid "Display Related Posts"
|
464 |
msgstr "\"Nessun articolo correlato\""
|
465 |
|
466 |
-
#: contextual-related-posts.php:
|
467 |
msgid "Title"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: contextual-related-posts.php:
|
471 |
msgid "No. of posts"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: contextual-related-posts.php:
|
475 |
#, fuzzy
|
476 |
msgid " Show excerpt?"
|
477 |
msgstr "Desideri mostrare gli estratti?"
|
478 |
|
479 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
#, fuzzy
|
481 |
msgid "Thumbnail options"
|
482 |
msgstr "Opzioni miniature articolo:"
|
483 |
|
484 |
-
#: contextual-related-posts.php:
|
485 |
#, fuzzy
|
486 |
msgid "Thumbnails inline, before title"
|
487 |
msgstr "Mostra gli articoli con le miniature inline"
|
488 |
|
489 |
-
#: contextual-related-posts.php:
|
490 |
#, fuzzy
|
491 |
msgid "Thumbnails inline, after title"
|
492 |
msgstr "Mostra gli articoli con le miniature inline"
|
493 |
|
494 |
-
#: contextual-related-posts.php:
|
495 |
#, fuzzy
|
496 |
msgid "Only thumbnails, no text"
|
497 |
msgstr "Mostra le sole miniature, nessun testo"
|
498 |
|
499 |
-
#: contextual-related-posts.php:
|
500 |
#, fuzzy
|
501 |
msgid "No thumbnails, only text."
|
502 |
msgstr "Non mostrare le miniature, solo testo."
|
503 |
|
504 |
-
#: contextual-related-posts.php:
|
505 |
#, fuzzy
|
506 |
msgid "Thumbnail height"
|
507 |
msgstr "Opzioni miniature articolo:"
|
508 |
|
509 |
-
#: contextual-related-posts.php:
|
510 |
#, fuzzy
|
511 |
msgid "Thumbnail width"
|
512 |
msgstr "Opzioni miniature articolo:"
|
513 |
|
514 |
-
#: contextual-related-posts.php:
|
515 |
msgid "<h3>Related Posts:</h3>"
|
516 |
msgstr "<h3>Related Posts:</h3>"
|
517 |
|
518 |
-
#: contextual-related-posts.php:
|
519 |
#, fuzzy
|
520 |
msgid "No related posts found"
|
521 |
msgstr "Non é stato trovato alcun articolo correlato"
|
522 |
|
523 |
-
#: contextual-related-posts.php:
|
524 |
msgid "Settings"
|
525 |
msgstr "Impostazioni"
|
526 |
|
527 |
-
#: contextual-related-posts.php:
|
528 |
msgid "Donate"
|
529 |
msgstr "Donazioni"
|
530 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:28-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
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.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:106
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Le opzioni sono state salvate correttamente."
|
21 |
|
22 |
+
#: admin.inc.php:122
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Opzioni impostate alle predefinite."
|
25 |
|
26 |
+
#: admin.inc.php:138
|
27 |
msgid "Index recreated"
|
28 |
msgstr "E' stato ricreato l'indice"
|
29 |
|
30 |
+
#: admin.inc.php:151
|
31 |
msgid "Support the development"
|
32 |
msgstr "Sostieni lo sviluppo"
|
33 |
|
34 |
+
#: admin.inc.php:159
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Inserisci la cifra in USD: "
|
37 |
|
38 |
+
#: admin.inc.php:163
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Invia la tua donazione all'autore di"
|
41 |
|
42 |
+
#: admin.inc.php:174
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Collegamenti veloci"
|
46 |
|
47 |
+
#: admin.inc.php:176
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Contextual Related Posts "
|
51 |
|
52 |
+
#: admin.inc.php:177
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Altri plugin"
|
55 |
|
56 |
+
#: admin.inc.php:178
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Il blog di Ajay"
|
59 |
|
60 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
61 |
msgid "Support"
|
62 |
msgstr "Supporto"
|
63 |
|
64 |
+
#: admin.inc.php:180
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:184
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Sviluppi recenti"
|
71 |
|
72 |
+
#: admin.inc.php:194
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:196
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:198
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:199
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:202 admin.inc.php:402
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "numero di articoli correlati da mostrare:"
|
93 |
|
94 |
+
#: admin.inc.php:205
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:206
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:208
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:219
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin.inc.php:221
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
114 |
+
"or enabling \"Cache output\" above if you enable this."
|
115 |
msgstr ""
|
116 |
"Ricerca degli articoli correlati in relazione al contenuto ed al titolo. Se "
|
117 |
"disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
|
118 |
"preferibile attivare un plugin per la cache)"
|
119 |
|
120 |
+
#: admin.inc.php:224
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:227
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:243
|
129 |
msgid ""
|
130 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
131 |
"so simply start typing in the starting letters and it will prompt you with "
|
132 |
"options"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin.inc.php:246
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "aggiungi gli articoli correlati al feed"
|
139 |
|
140 |
+
#: admin.inc.php:248
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:249
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:250
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:251
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin.inc.php:252
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin.inc.php:253
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin.inc.php:254
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:255
|
169 |
#, fuzzy
|
170 |
msgid ""
|
171 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
176 |
"inserisci <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp"
|
177 |
"(); ?></code> nel tuo template laddove desideri che siano visualizzati"
|
178 |
|
179 |
+
#: admin.inc.php:258
|
180 |
msgid "Add a link to the plugin page as a final item in the list"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin.inc.php:259
|
184 |
msgid " <em>Optional</em>"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.inc.php:266
|
188 |
#, fuzzy
|
189 |
msgid "Output options"
|
190 |
msgstr "Opzioni output:"
|
191 |
|
192 |
+
#: admin.inc.php:268
|
193 |
msgid "Title of related posts: "
|
194 |
msgstr "titolo per gli articoli correlati:"
|
195 |
|
196 |
+
#: admin.inc.php:271
|
197 |
msgid "When there are no posts, what should be shown?"
|
198 |
msgstr "Cosa desideri mostrare in assenza di articoli?"
|
199 |
|
200 |
+
#: admin.inc.php:275
|
201 |
msgid "Blank Output"
|
202 |
msgstr "nulla"
|
203 |
|
204 |
+
#: admin.inc.php:279
|
205 |
msgid "Display:"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: admin.inc.php:283 admin.inc.php:405
|
209 |
msgid "Show post excerpt in list?"
|
210 |
msgstr "Desideri mostrare gli estratti?"
|
211 |
|
212 |
+
#: admin.inc.php:286
|
213 |
msgid "Length of excerpt (in words): "
|
214 |
msgstr "Lunghezza estratto (in parole): "
|
215 |
|
216 |
+
#: admin.inc.php:289
|
217 |
+
#, fuzzy
|
218 |
+
msgid "Show post author in list?"
|
219 |
+
msgstr "Desideri mostrare gli estratti?"
|
220 |
+
|
221 |
+
#: admin.inc.php:292
|
222 |
#, fuzzy
|
223 |
msgid "Show post date in list?"
|
224 |
msgstr "Desideri mostrare gli estratti?"
|
225 |
|
226 |
+
#: admin.inc.php:295
|
227 |
msgid "Limit post title length (in characters)"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin.inc.php:298
|
231 |
msgid "Open links in new window"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: admin.inc.php:301
|
235 |
msgid "Add nofollow attribute to links in the list"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: admin.inc.php:304
|
239 |
#, fuzzy
|
240 |
msgid "Exclude display of related posts on these posts / pages"
|
241 |
msgstr "aggiungi gli articoli correlati al feed"
|
242 |
|
243 |
+
#: admin.inc.php:307
|
244 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: admin.inc.php:310
|
248 |
msgid "Customize the output:"
|
249 |
msgstr "Personalizzazione output:"
|
250 |
|
251 |
+
#: admin.inc.php:312
|
252 |
msgid "HTML to display before the list of posts: "
|
253 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
254 |
|
255 |
+
#: admin.inc.php:315
|
256 |
msgid "HTML to display before each list item: "
|
257 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
258 |
|
259 |
+
#: admin.inc.php:318
|
260 |
msgid "HTML to display after each list item: "
|
261 |
msgstr "HTML da mostrare dopo ogni lista:"
|
262 |
|
263 |
+
#: admin.inc.php:321
|
264 |
msgid "HTML to display after the list of posts: "
|
265 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
266 |
|
267 |
+
#: admin.inc.php:324
|
268 |
msgid "Post thumbnail options:"
|
269 |
msgstr "Opzioni miniature articolo:"
|
270 |
|
271 |
+
#: admin.inc.php:326 admin.inc.php:408
|
272 |
msgid "Location of post thumbnail:"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: admin.inc.php:330 admin.inc.php:412
|
276 |
#, fuzzy
|
277 |
msgid "Display thumbnails inline with posts, before title"
|
278 |
msgstr "Mostra gli articoli con le miniature inline"
|
279 |
|
280 |
+
#: admin.inc.php:334 admin.inc.php:416
|
281 |
#, fuzzy
|
282 |
msgid "Display thumbnails inline with posts, after title"
|
283 |
msgstr "Mostra gli articoli con le miniature inline"
|
284 |
|
285 |
+
#: admin.inc.php:338 admin.inc.php:420
|
286 |
msgid "Display only thumbnails, no text"
|
287 |
msgstr "Mostra le sole miniature, nessun testo"
|
288 |
|
289 |
+
#: admin.inc.php:342 admin.inc.php:424
|
290 |
msgid "Do not display thumbnails, only text."
|
291 |
msgstr "Non mostrare le miniature, solo testo."
|
292 |
|
293 |
+
#: admin.inc.php:346 admin.inc.php:428
|
294 |
msgid "Maximum width of the thumbnail: "
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin.inc.php:349 admin.inc.php:431
|
298 |
msgid "Maximum height of the thumbnail: "
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:352
|
302 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: admin.inc.php:356
|
306 |
+
msgid ""
|
307 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: admin.inc.php:360
|
311 |
+
msgid ""
|
312 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
313 |
+
"\""
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: admin.inc.php:364
|
317 |
msgid "Use timthumb to generate thumbnails? "
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin.inc.php:366
|
321 |
msgid ""
|
322 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
323 |
"\">timthumb</a> will be used to generate thumbnails"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin.inc.php:369
|
327 |
msgid "Quality of thumbnails generated by timthumb"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin.inc.php:372
|
331 |
msgid ""
|
332 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
333 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: admin.inc.php:375
|
337 |
#, fuzzy
|
338 |
msgid "Post thumbnail meta field name: "
|
339 |
msgstr "Opzioni miniature articolo:"
|
340 |
|
341 |
+
#: admin.inc.php:377
|
342 |
msgid ""
|
343 |
"The value of this field should contain the image source and is set in the "
|
344 |
"<em>Add New Post</em> screen"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin.inc.php:380
|
348 |
#, fuzzy
|
349 |
msgid ""
|
350 |
"If the postmeta is not set, then should the plugin extract the first image "
|
355 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
356 |
"dimensioni"
|
357 |
|
358 |
+
#: admin.inc.php:382
|
359 |
#, fuzzy
|
360 |
msgid ""
|
361 |
"This can slow down the loading of your page if the first image in the "
|
366 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
367 |
"dimensioni"
|
368 |
|
369 |
+
#: admin.inc.php:385
|
370 |
msgid "Use default thumbnail? "
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:387
|
374 |
msgid ""
|
375 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
376 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin.inc.php:390
|
380 |
msgid "Default thumbnail: "
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin.inc.php:392
|
384 |
#, fuzzy
|
385 |
msgid ""
|
386 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
392 |
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
393 |
"specificato qui sotto:"
|
394 |
|
395 |
+
#: admin.inc.php:398
|
396 |
#, fuzzy
|
397 |
msgid "Feed options"
|
398 |
msgstr "Opzioni:"
|
399 |
|
400 |
+
#: admin.inc.php:400
|
401 |
msgid ""
|
402 |
"Below options override the related posts settings for your blog feed. These "
|
403 |
"only apply if you have selected to add related posts to Feeds in the General "
|
404 |
"Options tab."
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin.inc.php:437
|
408 |
msgid "Custom Styles"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin.inc.php:439
|
412 |
msgid "Custom CSS to add to header:"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: admin.inc.php:442
|
416 |
msgid ""
|
417 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
418 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
419 |
"\">FAQ</a> for available CSS classes to style."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:447
|
423 |
#, fuzzy
|
424 |
msgid "Save Options"
|
425 |
msgstr "Opzioni:"
|
426 |
|
427 |
+
#: admin.inc.php:448
|
428 |
#, fuzzy
|
429 |
msgid "Default Options"
|
430 |
msgstr "Opzioni output:"
|
431 |
|
432 |
+
#: admin.inc.php:448
|
433 |
msgid "Do you want to set options to Default?"
|
434 |
msgstr "Sei certo di volere impostare alle opzioni predefinite?"
|
435 |
|
436 |
+
#: admin.inc.php:449
|
437 |
msgid "Recreate Index"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin.inc.php:449
|
441 |
msgid "Are you sure you want to recreate the index?"
|
442 |
msgstr "Sei certo di volere ricreare l'indice?"
|
443 |
|
444 |
+
#: admin.inc.php:473
|
445 |
msgid "Contextual Related Posts"
|
446 |
msgstr "Contextual Related Posts"
|
447 |
|
448 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
449 |
msgid "Related Posts"
|
450 |
msgstr "Related Posts"
|
451 |
|
452 |
+
#: admin.inc.php:486
|
453 |
#, fuzzy
|
454 |
msgid "plugin settings page"
|
455 |
msgstr "pagina plugin"
|
456 |
|
457 |
+
#: admin.inc.php:491
|
458 |
msgid ""
|
459 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
460 |
"visit the "
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin.inc.php:491
|
464 |
msgid " to configure."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin.inc.php:555
|
468 |
msgid ""
|
469 |
"An error occurred clearing the cache. Please contact your site administrator."
|
470 |
"\\n\\nError message:\\n"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin.inc.php:561
|
474 |
msgid " cached row(s) cleared"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: contextual-related-posts.php:123
|
478 |
+
#, fuzzy
|
479 |
+
msgid " Posted by "
|
480 |
+
msgstr "Powered by"
|
481 |
+
|
482 |
+
#: contextual-related-posts.php:138
|
483 |
msgid "Powered by"
|
484 |
msgstr "Powered by"
|
485 |
|
486 |
+
#: contextual-related-posts.php:313
|
487 |
#, fuzzy
|
488 |
msgid "Display Related Posts"
|
489 |
msgstr "\"Nessun articolo correlato\""
|
490 |
|
491 |
+
#: contextual-related-posts.php:328
|
492 |
msgid "Title"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: contextual-related-posts.php:333
|
496 |
msgid "No. of posts"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: contextual-related-posts.php:338
|
500 |
#, fuzzy
|
501 |
msgid " Show excerpt?"
|
502 |
msgstr "Desideri mostrare gli estratti?"
|
503 |
|
504 |
+
#: contextual-related-posts.php:343
|
505 |
+
msgid " Show author?"
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: contextual-related-posts.php:348
|
509 |
+
#, fuzzy
|
510 |
+
msgid " Show date?"
|
511 |
+
msgstr "Desideri mostrare gli estratti?"
|
512 |
+
|
513 |
+
#: contextual-related-posts.php:352
|
514 |
#, fuzzy
|
515 |
msgid "Thumbnail options"
|
516 |
msgstr "Opzioni miniature articolo:"
|
517 |
|
518 |
+
#: contextual-related-posts.php:354
|
519 |
#, fuzzy
|
520 |
msgid "Thumbnails inline, before title"
|
521 |
msgstr "Mostra gli articoli con le miniature inline"
|
522 |
|
523 |
+
#: contextual-related-posts.php:355
|
524 |
#, fuzzy
|
525 |
msgid "Thumbnails inline, after title"
|
526 |
msgstr "Mostra gli articoli con le miniature inline"
|
527 |
|
528 |
+
#: contextual-related-posts.php:356
|
529 |
#, fuzzy
|
530 |
msgid "Only thumbnails, no text"
|
531 |
msgstr "Mostra le sole miniature, nessun testo"
|
532 |
|
533 |
+
#: contextual-related-posts.php:357
|
534 |
#, fuzzy
|
535 |
msgid "No thumbnails, only text."
|
536 |
msgstr "Non mostrare le miniature, solo testo."
|
537 |
|
538 |
+
#: contextual-related-posts.php:362
|
539 |
#, fuzzy
|
540 |
msgid "Thumbnail height"
|
541 |
msgstr "Opzioni miniature articolo:"
|
542 |
|
543 |
+
#: contextual-related-posts.php:367
|
544 |
#, fuzzy
|
545 |
msgid "Thumbnail width"
|
546 |
msgstr "Opzioni miniature articolo:"
|
547 |
|
548 |
+
#: contextual-related-posts.php:463
|
549 |
msgid "<h3>Related Posts:</h3>"
|
550 |
msgstr "<h3>Related Posts:</h3>"
|
551 |
|
552 |
+
#: contextual-related-posts.php:464
|
553 |
#, fuzzy
|
554 |
msgid "No related posts found"
|
555 |
msgstr "Non é stato trovato alcun articolo correlato"
|
556 |
|
557 |
+
#: contextual-related-posts.php:807
|
558 |
msgid "Settings"
|
559 |
msgstr "Impostazioni"
|
560 |
|
561 |
+
#: contextual-related-posts.php:830
|
562 |
msgid "Donate"
|
563 |
msgstr "Donazioni"
|
564 |
|
languages/crp-lt_LT.mo
CHANGED
Binary file
|
languages/crp-lt_LT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -12,155 +12,156 @@ msgstr ""
|
|
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.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Opcijas veiksmīgi saglabāts."
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Opcijas iestatīts uz Default."
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Index recreated"
|
28 |
msgstr "indekss pārbūvēts"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Support the development"
|
32 |
msgstr "Atbalstīt"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Ievadiet summu USD:"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Sūtiet savu ziedojumu autoram"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
msgid "Quick Links"
|
44 |
msgstr "Ātrās saites"
|
45 |
|
46 |
-
#: admin.inc.php:
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr "Konteksta saistītus amatus"
|
49 |
|
50 |
-
#: admin.inc.php:
|
51 |
msgid "Other plugins"
|
52 |
msgstr "citas plugins"
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr "Ajay blogs"
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "Support"
|
60 |
msgstr "atbalstīt"
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: admin.inc.php:
|
67 |
msgid "Recent developments"
|
68 |
msgstr "Nesenie notikumi"
|
69 |
|
70 |
-
#: admin.inc.php:
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin.inc.php:
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid ""
|
80 |
"Enabling this option will cache the related posts output when the post is "
|
81 |
"visited the first time. The cache is cleaned when you save this page."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Clear cache"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr "Skaits saistītus amatus, lai parādītu:"
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
|
|
109 |
msgid ""
|
110 |
-
"If unchecked, only posts titles are used.
|
111 |
-
"
|
112 |
msgstr ""
|
113 |
"Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
|
114 |
"caching spraudnis, ja aktivizēsiet šo)"
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "List of post or page IDs to exclude from the results: "
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Categories to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid ""
|
126 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
127 |
"so simply start typing in the starting letters and it will prompt you with "
|
128 |
"options"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid "Add related posts to:"
|
133 |
msgstr "Pievienot saistītus amatus barībā"
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
msgid "Posts"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid "Pages"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid "Home page"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin.inc.php:
|
148 |
msgid "Feeds"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: admin.inc.php:
|
152 |
msgid "Category archives"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin.inc.php:
|
156 |
msgid "Tag archives"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: admin.inc.php:
|
160 |
msgid "Other archives"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: admin.inc.php:
|
164 |
msgid ""
|
165 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
166 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
@@ -170,157 +171,177 @@ msgstr ""
|
|
170 |
"(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
|
171 |
"vēlaties to parādīt"
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Add a link to the plugin page as a final item in the list"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
msgid " <em>Optional</em>"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: admin.inc.php:
|
182 |
msgid "Output options"
|
183 |
msgstr "Izejas opcijas:"
|
184 |
|
185 |
-
#: admin.inc.php:
|
186 |
msgid "Title of related posts: "
|
187 |
msgstr "Nosaukums saistītus amatus:"
|
188 |
|
189 |
-
#: admin.inc.php:
|
190 |
msgid "When there are no posts, what should be shown?"
|
191 |
msgstr "Ja nav amati, kas būtu redzams?"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Blank Output"
|
195 |
msgstr "tukša izeja"
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
msgid "Display:"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: admin.inc.php:
|
202 |
msgid "Show post excerpt in list?"
|
203 |
msgstr "Rādīt post izvilkumu sarakstā?"
|
204 |
|
205 |
-
#: admin.inc.php:
|
206 |
msgid "Length of excerpt (in words): "
|
207 |
msgstr "Garums izrakstā (vārdiem)"
|
208 |
|
209 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
210 |
#, fuzzy
|
211 |
msgid "Show post date in list?"
|
212 |
msgstr "Rādīt post izvilkumu sarakstā?"
|
213 |
|
214 |
-
#: admin.inc.php:
|
215 |
msgid "Limit post title length (in characters)"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: admin.inc.php:
|
219 |
msgid "Open links in new window"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: admin.inc.php:
|
223 |
msgid "Add nofollow attribute to links in the list"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: admin.inc.php:
|
227 |
msgid "Exclude display of related posts on these posts / pages"
|
228 |
msgstr "Pievienot saistītus amatus barībā"
|
229 |
|
230 |
-
#: admin.inc.php:
|
231 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: admin.inc.php:
|
235 |
msgid "Customize the output:"
|
236 |
msgstr "Pielāgot izejas:"
|
237 |
|
238 |
-
#: admin.inc.php:
|
239 |
msgid "HTML to display before the list of posts: "
|
240 |
msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
|
241 |
|
242 |
-
#: admin.inc.php:
|
243 |
msgid "HTML to display before each list item: "
|
244 |
msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
msgid "HTML to display after each list item: "
|
248 |
msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
msgid "HTML to display after the list of posts: "
|
252 |
msgstr "HTML, lai parādītu pēc amatu sarakstā:"
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Post thumbnail options:"
|
256 |
msgstr "Post sīktēlu iespējas:"
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "Location of post thumbnail:"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Display thumbnails inline with posts, before title"
|
264 |
msgstr "Rādīt skices ar ziņojumiem"
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Display thumbnails inline with posts, after title"
|
268 |
msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
msgid "Display only thumbnails, no text"
|
272 |
msgstr "Attēlotu tikai sīktēlus, teksts"
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
msgid "Do not display thumbnails, only text."
|
276 |
msgstr "Nerādīt sīktēlus, tikai tekstu."
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
msgid "Maximum width of the thumbnail: "
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "Maximum height of the thumbnail: "
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
msgid "Use timthumb to generate thumbnails? "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid ""
|
292 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
293 |
"\">timthumb</a> will be used to generate thumbnails"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
msgid "Quality of thumbnails generated by timthumb"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid ""
|
302 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
303 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid "Post thumbnail meta field name: "
|
308 |
msgstr "Attēlu rīki post:"
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid ""
|
312 |
"The value of this field should contain the image source and is set in the "
|
313 |
"<em>Add New Post</em> screen"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid ""
|
318 |
"If the postmeta is not set, then should the plugin extract the first image "
|
319 |
"from the post?"
|
320 |
msgstr ""
|
321 |
"Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
|
322 |
|
323 |
-
#: admin.inc.php:
|
324 |
msgid ""
|
325 |
"This can slow down the loading of your page if the first image in the "
|
326 |
"related posts is large in file-size"
|
@@ -328,21 +349,21 @@ msgstr ""
|
|
328 |
"Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
|
329 |
"liela faila izmēra"
|
330 |
|
331 |
-
#: admin.inc.php:
|
332 |
msgid "Use default thumbnail? "
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid ""
|
337 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
338 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid "Default thumbnail: "
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid ""
|
347 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
348 |
"then it will check the meta field. If this is not available, then it will "
|
@@ -352,145 +373,159 @@ msgstr ""
|
|
352 |
"būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
|
353 |
"noklusējuma attēlu, kā minēts iepriekš"
|
354 |
|
355 |
-
#: admin.inc.php:
|
356 |
msgid "Feed options"
|
357 |
msgstr "Iespējas:"
|
358 |
|
359 |
-
#: admin.inc.php:
|
360 |
msgid ""
|
361 |
"Below options override the related posts settings for your blog feed. These "
|
362 |
"only apply if you have selected to add related posts to Feeds in the General "
|
363 |
"Options tab."
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin.inc.php:
|
367 |
msgid "Custom Styles"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin.inc.php:
|
371 |
msgid "Custom CSS to add to header:"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin.inc.php:
|
375 |
msgid ""
|
376 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
377 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
378 |
"\">FAQ</a> for available CSS classes to style."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid "Save Options"
|
383 |
msgstr "Saglabāt opcijas"
|
384 |
|
385 |
-
#: admin.inc.php:
|
386 |
msgid "Default Options"
|
387 |
msgstr "noklusējuma opcijas"
|
388 |
|
389 |
-
#: admin.inc.php:
|
390 |
msgid "Do you want to set options to Default?"
|
391 |
msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
|
392 |
|
393 |
-
#: admin.inc.php:
|
394 |
msgid "Recreate Index"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin.inc.php:
|
398 |
msgid "Are you sure you want to recreate the index?"
|
399 |
msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
|
400 |
|
401 |
-
#: admin.inc.php:
|
402 |
msgid "Contextual Related Posts"
|
403 |
msgstr "Konteksta Related Posts"
|
404 |
|
405 |
-
#: admin.inc.php:
|
406 |
msgid "Related Posts"
|
407 |
msgstr "Related Posts"
|
408 |
|
409 |
-
#: admin.inc.php:
|
410 |
msgid "plugin settings page"
|
411 |
msgstr "spraudnis iestatījumu lapa"
|
412 |
|
413 |
-
#: admin.inc.php:
|
414 |
msgid ""
|
415 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
416 |
"visit the "
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: admin.inc.php:
|
420 |
msgid " to configure."
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: admin.inc.php:
|
424 |
msgid ""
|
425 |
"An error occurred clearing the cache. Please contact your site administrator."
|
426 |
"\\n\\nError message:\\n"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid " cached row(s) cleared"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
434 |
msgid "Powered by"
|
435 |
msgstr "Powered by"
|
436 |
|
437 |
-
#: contextual-related-posts.php:
|
438 |
msgid "Display Related Posts"
|
439 |
msgstr "Displeja Related Posts"
|
440 |
|
441 |
-
#: contextual-related-posts.php:
|
442 |
msgid "Title"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: contextual-related-posts.php:
|
446 |
msgid "No. of posts"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: contextual-related-posts.php:
|
450 |
msgid " Show excerpt?"
|
451 |
msgstr "Rādīt izvilkumu?"
|
452 |
|
453 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
454 |
msgid "Thumbnail options"
|
455 |
msgstr "sīktēlu iespējas"
|
456 |
|
457 |
-
#: contextual-related-posts.php:
|
458 |
msgid "Thumbnails inline, before title"
|
459 |
msgstr "Sīktēli inline, pirms virsraksta"
|
460 |
|
461 |
-
#: contextual-related-posts.php:
|
462 |
msgid "Thumbnails inline, after title"
|
463 |
msgstr "Sīktēli inline, pēc nosaukuma"
|
464 |
|
465 |
-
#: contextual-related-posts.php:
|
466 |
msgid "Only thumbnails, no text"
|
467 |
msgstr "Tikai sīktēlus, bez teksta"
|
468 |
|
469 |
-
#: contextual-related-posts.php:
|
470 |
msgid "No thumbnails, only text."
|
471 |
msgstr "Nav sīktēlus, tikai tekstu."
|
472 |
|
473 |
-
#: contextual-related-posts.php:
|
474 |
msgid "Thumbnail height"
|
475 |
msgstr "sīktēls augstums"
|
476 |
|
477 |
-
#: contextual-related-posts.php:
|
478 |
msgid "Thumbnail width"
|
479 |
msgstr "Thumbnail platums"
|
480 |
|
481 |
-
#: contextual-related-posts.php:
|
482 |
msgid "<h3>Related Posts:</h3>"
|
483 |
msgstr "<h3>saistīta posts:</h3>"
|
484 |
|
485 |
-
#: contextual-related-posts.php:
|
486 |
msgid "No related posts found"
|
487 |
msgstr "Nr saistītus amatus atrasts"
|
488 |
|
489 |
-
#: contextual-related-posts.php:
|
490 |
msgid "Settings"
|
491 |
msgstr "iestatījumi"
|
492 |
|
493 |
-
#: contextual-related-posts.php:
|
494 |
msgid "Donate"
|
495 |
msgstr "ziedot"
|
496 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:28-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
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.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:106
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Opcijas veiksmīgi saglabāts."
|
21 |
|
22 |
+
#: admin.inc.php:122
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Opcijas iestatīts uz Default."
|
25 |
|
26 |
+
#: admin.inc.php:138
|
27 |
msgid "Index recreated"
|
28 |
msgstr "indekss pārbūvēts"
|
29 |
|
30 |
+
#: admin.inc.php:151
|
31 |
msgid "Support the development"
|
32 |
msgstr "Atbalstīt"
|
33 |
|
34 |
+
#: admin.inc.php:159
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Ievadiet summu USD:"
|
37 |
|
38 |
+
#: admin.inc.php:163
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Sūtiet savu ziedojumu autoram"
|
41 |
|
42 |
+
#: admin.inc.php:174
|
43 |
msgid "Quick Links"
|
44 |
msgstr "Ātrās saites"
|
45 |
|
46 |
+
#: admin.inc.php:176
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr "Konteksta saistītus amatus"
|
49 |
|
50 |
+
#: admin.inc.php:177
|
51 |
msgid "Other plugins"
|
52 |
msgstr "citas plugins"
|
53 |
|
54 |
+
#: admin.inc.php:178
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr "Ajay blogs"
|
57 |
|
58 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
59 |
msgid "Support"
|
60 |
msgstr "atbalstīt"
|
61 |
|
62 |
+
#: admin.inc.php:180
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:184
|
67 |
msgid "Recent developments"
|
68 |
msgstr "Nesenie notikumi"
|
69 |
|
70 |
+
#: admin.inc.php:194
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin.inc.php:196
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:198
|
79 |
msgid ""
|
80 |
"Enabling this option will cache the related posts output when the post is "
|
81 |
"visited the first time. The cache is cleaned when you save this page."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:199
|
85 |
msgid "Clear cache"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:202 admin.inc.php:402
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr "Skaits saistītus amatus, lai parādītu:"
|
91 |
|
92 |
+
#: admin.inc.php:205
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:206
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:208
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:219
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:221
|
109 |
+
#, fuzzy
|
110 |
msgid ""
|
111 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
112 |
+
"or enabling \"Cache output\" above if you enable this."
|
113 |
msgstr ""
|
114 |
"Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
|
115 |
"caching spraudnis, ja aktivizēsiet šo)"
|
116 |
|
117 |
+
#: admin.inc.php:224
|
118 |
msgid "List of post or page IDs to exclude from the results: "
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin.inc.php:227
|
122 |
msgid "Categories to exclude from the results: "
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: admin.inc.php:243
|
126 |
msgid ""
|
127 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
128 |
"so simply start typing in the starting letters and it will prompt you with "
|
129 |
"options"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:246
|
133 |
msgid "Add related posts to:"
|
134 |
msgstr "Pievienot saistītus amatus barībā"
|
135 |
|
136 |
+
#: admin.inc.php:248
|
137 |
msgid "Posts"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin.inc.php:249
|
141 |
msgid "Pages"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:250
|
145 |
msgid "Home page"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:251
|
149 |
msgid "Feeds"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:252
|
153 |
msgid "Category archives"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin.inc.php:253
|
157 |
msgid "Tag archives"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin.inc.php:254
|
161 |
msgid "Other archives"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin.inc.php:255
|
165 |
msgid ""
|
166 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
167 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
171 |
"(\"echo_ald_crp\")) echo_ald_crp ();?> </ Code>, lai jūsu veidnes failu, kur "
|
172 |
"vēlaties to parādīt"
|
173 |
|
174 |
+
#: admin.inc.php:258
|
175 |
msgid "Add a link to the plugin page as a final item in the list"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: admin.inc.php:259
|
179 |
msgid " <em>Optional</em>"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: admin.inc.php:266
|
183 |
msgid "Output options"
|
184 |
msgstr "Izejas opcijas:"
|
185 |
|
186 |
+
#: admin.inc.php:268
|
187 |
msgid "Title of related posts: "
|
188 |
msgstr "Nosaukums saistītus amatus:"
|
189 |
|
190 |
+
#: admin.inc.php:271
|
191 |
msgid "When there are no posts, what should be shown?"
|
192 |
msgstr "Ja nav amati, kas būtu redzams?"
|
193 |
|
194 |
+
#: admin.inc.php:275
|
195 |
msgid "Blank Output"
|
196 |
msgstr "tukša izeja"
|
197 |
|
198 |
+
#: admin.inc.php:279
|
199 |
msgid "Display:"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: admin.inc.php:283 admin.inc.php:405
|
203 |
msgid "Show post excerpt in list?"
|
204 |
msgstr "Rādīt post izvilkumu sarakstā?"
|
205 |
|
206 |
+
#: admin.inc.php:286
|
207 |
msgid "Length of excerpt (in words): "
|
208 |
msgstr "Garums izrakstā (vārdiem)"
|
209 |
|
210 |
+
#: admin.inc.php:289
|
211 |
+
#, fuzzy
|
212 |
+
msgid "Show post author in list?"
|
213 |
+
msgstr "Rādīt post izvilkumu sarakstā?"
|
214 |
+
|
215 |
+
#: admin.inc.php:292
|
216 |
#, fuzzy
|
217 |
msgid "Show post date in list?"
|
218 |
msgstr "Rādīt post izvilkumu sarakstā?"
|
219 |
|
220 |
+
#: admin.inc.php:295
|
221 |
msgid "Limit post title length (in characters)"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin.inc.php:298
|
225 |
msgid "Open links in new window"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:301
|
229 |
msgid "Add nofollow attribute to links in the list"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:304
|
233 |
msgid "Exclude display of related posts on these posts / pages"
|
234 |
msgstr "Pievienot saistītus amatus barībā"
|
235 |
|
236 |
+
#: admin.inc.php:307
|
237 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin.inc.php:310
|
241 |
msgid "Customize the output:"
|
242 |
msgstr "Pielāgot izejas:"
|
243 |
|
244 |
+
#: admin.inc.php:312
|
245 |
msgid "HTML to display before the list of posts: "
|
246 |
msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
|
247 |
|
248 |
+
#: admin.inc.php:315
|
249 |
msgid "HTML to display before each list item: "
|
250 |
msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
|
251 |
|
252 |
+
#: admin.inc.php:318
|
253 |
msgid "HTML to display after each list item: "
|
254 |
msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
|
255 |
|
256 |
+
#: admin.inc.php:321
|
257 |
msgid "HTML to display after the list of posts: "
|
258 |
msgstr "HTML, lai parādītu pēc amatu sarakstā:"
|
259 |
|
260 |
+
#: admin.inc.php:324
|
261 |
msgid "Post thumbnail options:"
|
262 |
msgstr "Post sīktēlu iespējas:"
|
263 |
|
264 |
+
#: admin.inc.php:326 admin.inc.php:408
|
265 |
msgid "Location of post thumbnail:"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin.inc.php:330 admin.inc.php:412
|
269 |
msgid "Display thumbnails inline with posts, before title"
|
270 |
msgstr "Rādīt skices ar ziņojumiem"
|
271 |
|
272 |
+
#: admin.inc.php:334 admin.inc.php:416
|
273 |
msgid "Display thumbnails inline with posts, after title"
|
274 |
msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
|
275 |
|
276 |
+
#: admin.inc.php:338 admin.inc.php:420
|
277 |
msgid "Display only thumbnails, no text"
|
278 |
msgstr "Attēlotu tikai sīktēlus, teksts"
|
279 |
|
280 |
+
#: admin.inc.php:342 admin.inc.php:424
|
281 |
msgid "Do not display thumbnails, only text."
|
282 |
msgstr "Nerādīt sīktēlus, tikai tekstu."
|
283 |
|
284 |
+
#: admin.inc.php:346 admin.inc.php:428
|
285 |
msgid "Maximum width of the thumbnail: "
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: admin.inc.php:349 admin.inc.php:431
|
289 |
msgid "Maximum height of the thumbnail: "
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin.inc.php:352
|
293 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: admin.inc.php:356
|
297 |
+
msgid ""
|
298 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: admin.inc.php:360
|
302 |
+
msgid ""
|
303 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
304 |
+
"\""
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: admin.inc.php:364
|
308 |
msgid "Use timthumb to generate thumbnails? "
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: admin.inc.php:366
|
312 |
msgid ""
|
313 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
314 |
"\">timthumb</a> will be used to generate thumbnails"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin.inc.php:369
|
318 |
msgid "Quality of thumbnails generated by timthumb"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: admin.inc.php:372
|
322 |
msgid ""
|
323 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
324 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: admin.inc.php:375
|
328 |
msgid "Post thumbnail meta field name: "
|
329 |
msgstr "Attēlu rīki post:"
|
330 |
|
331 |
+
#: admin.inc.php:377
|
332 |
msgid ""
|
333 |
"The value of this field should contain the image source and is set in the "
|
334 |
"<em>Add New Post</em> screen"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: admin.inc.php:380
|
338 |
msgid ""
|
339 |
"If the postmeta is not set, then should the plugin extract the first image "
|
340 |
"from the post?"
|
341 |
msgstr ""
|
342 |
"Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
|
343 |
|
344 |
+
#: admin.inc.php:382
|
345 |
msgid ""
|
346 |
"This can slow down the loading of your page if the first image in the "
|
347 |
"related posts is large in file-size"
|
349 |
"Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
|
350 |
"liela faila izmēra"
|
351 |
|
352 |
+
#: admin.inc.php:385
|
353 |
msgid "Use default thumbnail? "
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin.inc.php:387
|
357 |
msgid ""
|
358 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
359 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:390
|
363 |
msgid "Default thumbnail: "
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:392
|
367 |
msgid ""
|
368 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
369 |
"then it will check the meta field. If this is not available, then it will "
|
373 |
"būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
|
374 |
"noklusējuma attēlu, kā minēts iepriekš"
|
375 |
|
376 |
+
#: admin.inc.php:398
|
377 |
msgid "Feed options"
|
378 |
msgstr "Iespējas:"
|
379 |
|
380 |
+
#: admin.inc.php:400
|
381 |
msgid ""
|
382 |
"Below options override the related posts settings for your blog feed. These "
|
383 |
"only apply if you have selected to add related posts to Feeds in the General "
|
384 |
"Options tab."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: admin.inc.php:437
|
388 |
msgid "Custom Styles"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin.inc.php:439
|
392 |
msgid "Custom CSS to add to header:"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin.inc.php:442
|
396 |
msgid ""
|
397 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
398 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
399 |
"\">FAQ</a> for available CSS classes to style."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: admin.inc.php:447
|
403 |
msgid "Save Options"
|
404 |
msgstr "Saglabāt opcijas"
|
405 |
|
406 |
+
#: admin.inc.php:448
|
407 |
msgid "Default Options"
|
408 |
msgstr "noklusējuma opcijas"
|
409 |
|
410 |
+
#: admin.inc.php:448
|
411 |
msgid "Do you want to set options to Default?"
|
412 |
msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
|
413 |
|
414 |
+
#: admin.inc.php:449
|
415 |
msgid "Recreate Index"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin.inc.php:449
|
419 |
msgid "Are you sure you want to recreate the index?"
|
420 |
msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
|
421 |
|
422 |
+
#: admin.inc.php:473
|
423 |
msgid "Contextual Related Posts"
|
424 |
msgstr "Konteksta Related Posts"
|
425 |
|
426 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
427 |
msgid "Related Posts"
|
428 |
msgstr "Related Posts"
|
429 |
|
430 |
+
#: admin.inc.php:486
|
431 |
msgid "plugin settings page"
|
432 |
msgstr "spraudnis iestatījumu lapa"
|
433 |
|
434 |
+
#: admin.inc.php:491
|
435 |
msgid ""
|
436 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
437 |
"visit the "
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin.inc.php:491
|
441 |
msgid " to configure."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:555
|
445 |
msgid ""
|
446 |
"An error occurred clearing the cache. Please contact your site administrator."
|
447 |
"\\n\\nError message:\\n"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin.inc.php:561
|
451 |
msgid " cached row(s) cleared"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: contextual-related-posts.php:123
|
455 |
+
#, fuzzy
|
456 |
+
msgid " Posted by "
|
457 |
+
msgstr "Powered by"
|
458 |
+
|
459 |
+
#: contextual-related-posts.php:138
|
460 |
msgid "Powered by"
|
461 |
msgstr "Powered by"
|
462 |
|
463 |
+
#: contextual-related-posts.php:313
|
464 |
msgid "Display Related Posts"
|
465 |
msgstr "Displeja Related Posts"
|
466 |
|
467 |
+
#: contextual-related-posts.php:328
|
468 |
msgid "Title"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: contextual-related-posts.php:333
|
472 |
msgid "No. of posts"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: contextual-related-posts.php:338
|
476 |
msgid " Show excerpt?"
|
477 |
msgstr "Rādīt izvilkumu?"
|
478 |
|
479 |
+
#: contextual-related-posts.php:343
|
480 |
+
msgid " Show author?"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: contextual-related-posts.php:348
|
484 |
+
#, fuzzy
|
485 |
+
msgid " Show date?"
|
486 |
+
msgstr "Rādīt izvilkumu?"
|
487 |
+
|
488 |
+
#: contextual-related-posts.php:352
|
489 |
msgid "Thumbnail options"
|
490 |
msgstr "sīktēlu iespējas"
|
491 |
|
492 |
+
#: contextual-related-posts.php:354
|
493 |
msgid "Thumbnails inline, before title"
|
494 |
msgstr "Sīktēli inline, pirms virsraksta"
|
495 |
|
496 |
+
#: contextual-related-posts.php:355
|
497 |
msgid "Thumbnails inline, after title"
|
498 |
msgstr "Sīktēli inline, pēc nosaukuma"
|
499 |
|
500 |
+
#: contextual-related-posts.php:356
|
501 |
msgid "Only thumbnails, no text"
|
502 |
msgstr "Tikai sīktēlus, bez teksta"
|
503 |
|
504 |
+
#: contextual-related-posts.php:357
|
505 |
msgid "No thumbnails, only text."
|
506 |
msgstr "Nav sīktēlus, tikai tekstu."
|
507 |
|
508 |
+
#: contextual-related-posts.php:362
|
509 |
msgid "Thumbnail height"
|
510 |
msgstr "sīktēls augstums"
|
511 |
|
512 |
+
#: contextual-related-posts.php:367
|
513 |
msgid "Thumbnail width"
|
514 |
msgstr "Thumbnail platums"
|
515 |
|
516 |
+
#: contextual-related-posts.php:463
|
517 |
msgid "<h3>Related Posts:</h3>"
|
518 |
msgstr "<h3>saistīta posts:</h3>"
|
519 |
|
520 |
+
#: contextual-related-posts.php:464
|
521 |
msgid "No related posts found"
|
522 |
msgstr "Nr saistītus amatus atrasts"
|
523 |
|
524 |
+
#: contextual-related-posts.php:807
|
525 |
msgid "Settings"
|
526 |
msgstr "iestatījumi"
|
527 |
|
528 |
+
#: contextual-related-posts.php:830
|
529 |
msgid "Donate"
|
530 |
msgstr "ziedot"
|
531 |
|
languages/crp-nl_NL.mo
CHANGED
Binary file
|
languages/crp-nl_NL.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
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"
|
@@ -14,160 +14,160 @@ msgstr ""
|
|
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.
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: admin.inc.php:
|
21 |
msgid "Options saved successfully."
|
22 |
msgstr "Opties succesvol opgeslagen."
|
23 |
|
24 |
-
#: admin.inc.php:
|
25 |
msgid "Options set to Default."
|
26 |
msgstr "Opties ingesteld op standaard."
|
27 |
|
28 |
-
#: admin.inc.php:
|
29 |
msgid "Index recreated"
|
30 |
msgstr "Index opnieuw gemaakt"
|
31 |
|
32 |
-
#: admin.inc.php:
|
33 |
msgid "Support the development"
|
34 |
msgstr "Ondersteun de ontwikkeling"
|
35 |
|
36 |
-
#: admin.inc.php:
|
37 |
msgid "Enter amount in USD: "
|
38 |
msgstr "Voer het bedrag in USD in:"
|
39 |
|
40 |
-
#: admin.inc.php:
|
41 |
msgid "Send your donation to the author of"
|
42 |
msgstr "Stuur je donatie aan de auteur van"
|
43 |
|
44 |
-
#: admin.inc.php:
|
45 |
#, fuzzy
|
46 |
msgid "Quick Links"
|
47 |
msgstr "Quick links"
|
48 |
|
49 |
-
#: admin.inc.php:
|
50 |
#, fuzzy
|
51 |
msgid "Contextual Related Posts plugin page"
|
52 |
msgstr "Contextual Related Posts "
|
53 |
|
54 |
-
#: admin.inc.php:
|
55 |
msgid "Other plugins"
|
56 |
msgstr "Andere plugins"
|
57 |
|
58 |
-
#: admin.inc.php:
|
59 |
msgid "Ajay's blog"
|
60 |
msgstr "Ajay's blog"
|
61 |
|
62 |
-
#: admin.inc.php:
|
63 |
msgid "Support"
|
64 |
msgstr "Ondersteuning"
|
65 |
|
66 |
-
#: admin.inc.php:
|
67 |
msgid "Reviews"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: admin.inc.php:
|
71 |
msgid "Recent developments"
|
72 |
msgstr "Recente ontwikkelingen"
|
73 |
|
74 |
-
#: admin.inc.php:
|
75 |
msgid "General options"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "Cache output?"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid ""
|
84 |
"Enabling this option will cache the related posts output when the post is "
|
85 |
"visited the first time. The cache is cleaned when you save this page."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Clear cache"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Number of related posts to display: "
|
94 |
msgstr "Aantal weer te geven gerelateerde berichten:"
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Related posts should be newer than:"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "days"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
msgid "Post types to include in results (including custom post types)"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid "Find related posts based on content as well as title"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
#, fuzzy
|
114 |
msgid ""
|
115 |
-
"If unchecked, only posts titles are used.
|
116 |
-
"
|
117 |
msgstr ""
|
118 |
"Vind gerelateerde berichten gebaseerd op zowel content als titel. Indien "
|
119 |
"niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
|
120 |
"gebruik van een caching plugin aan wanneer je dit inschakelt)"
|
121 |
|
122 |
-
#: admin.inc.php:
|
123 |
msgid "List of post or page IDs to exclude from the results: "
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: admin.inc.php:
|
127 |
msgid "Categories to exclude from the results: "
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: admin.inc.php:
|
131 |
msgid ""
|
132 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
133 |
"so simply start typing in the starting letters and it will prompt you with "
|
134 |
"options"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
#, fuzzy
|
139 |
msgid "Add related posts to:"
|
140 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid "Posts"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: admin.inc.php:
|
147 |
msgid "Pages"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "Home page"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
msgid "Feeds"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: admin.inc.php:
|
159 |
msgid "Category archives"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: admin.inc.php:
|
163 |
msgid "Tag archives"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
msgid "Other archives"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
#, fuzzy
|
172 |
msgid ""
|
173 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -179,155 +179,175 @@ msgstr ""
|
|
179 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> toevoegen aan je sjabloon "
|
180 |
"bestand waar je het wilt laten weergeven"
|
181 |
|
182 |
-
#: admin.inc.php:
|
183 |
msgid "Add a link to the plugin page as a final item in the list"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
msgid " <em>Optional</em>"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: admin.inc.php:
|
191 |
#, fuzzy
|
192 |
msgid "Output options"
|
193 |
msgstr "Output Opties:"
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
msgid "Title of related posts: "
|
197 |
msgstr "Titel van gerelateerde berichten:"
|
198 |
|
199 |
-
#: admin.inc.php:
|
200 |
msgid "When there are no posts, what should be shown?"
|
201 |
msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
|
202 |
|
203 |
-
#: admin.inc.php:
|
204 |
msgid "Blank Output"
|
205 |
msgstr "Lege Output"
|
206 |
|
207 |
-
#: admin.inc.php:
|
208 |
msgid "Display:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: admin.inc.php:
|
212 |
msgid "Show post excerpt in list?"
|
213 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
214 |
|
215 |
-
#: admin.inc.php:
|
216 |
msgid "Length of excerpt (in words): "
|
217 |
msgstr "Lengte van uittreksel (in woorden):"
|
218 |
|
219 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
220 |
#, fuzzy
|
221 |
msgid "Show post date in list?"
|
222 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Limit post title length (in characters)"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Open links in new window"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "Add nofollow attribute to links in the list"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
#, fuzzy
|
238 |
msgid "Exclude display of related posts on these posts / pages"
|
239 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Customize the output:"
|
247 |
msgstr "Aanpassen van de output:"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "HTML to display before the list of posts: "
|
251 |
msgstr "Weer te geven HTML voor de berichtenlijst:"
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "HTML to display before each list item: "
|
255 |
msgstr "Weer te geven HTML voor elk item in de lijst:"
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "HTML to display after each list item: "
|
259 |
msgstr "Weer te geven HTML na elk item in de lijst:"
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "HTML to display after the list of posts: "
|
263 |
msgstr "Weer te geven HTML na de berichtenlijst:"
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Post thumbnail options:"
|
267 |
msgstr "Berichtopties miniatuurafbeelding:"
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
msgid "Location of post thumbnail:"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
#, fuzzy
|
275 |
msgid "Display thumbnails inline with posts, before title"
|
276 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
#, fuzzy
|
280 |
msgid "Display thumbnails inline with posts, after title"
|
281 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "Display only thumbnails, no text"
|
285 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Do not display thumbnails, only text."
|
289 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Maximum width of the thumbnail: "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Maximum height of the thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
msgid "Use timthumb to generate thumbnails? "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: admin.inc.php:
|
304 |
msgid ""
|
305 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
306 |
"\">timthumb</a> will be used to generate thumbnails"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid "Quality of thumbnails generated by timthumb"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: admin.inc.php:
|
314 |
msgid ""
|
315 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
316 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin.inc.php:
|
320 |
#, fuzzy
|
321 |
msgid "Post thumbnail meta field name: "
|
322 |
msgstr "Berichtopties miniatuurafbeelding:"
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
msgid ""
|
326 |
"The value of this field should contain the image source and is set in the "
|
327 |
"<em>Add New Post</em> screen"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin.inc.php:
|
331 |
#, fuzzy
|
332 |
msgid ""
|
333 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -337,7 +357,7 @@ msgstr ""
|
|
337 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
338 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
339 |
|
340 |
-
#: admin.inc.php:
|
341 |
#, fuzzy
|
342 |
msgid ""
|
343 |
"This can slow down the loading of your page if the first image in the "
|
@@ -347,21 +367,21 @@ msgstr ""
|
|
347 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
348 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
349 |
|
350 |
-
#: admin.inc.php:
|
351 |
msgid "Use default thumbnail? "
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid ""
|
356 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
357 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin.inc.php:
|
361 |
msgid "Default thumbnail: "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin.inc.php:
|
365 |
#, fuzzy
|
366 |
msgid ""
|
367 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -373,159 +393,173 @@ msgstr ""
|
|
373 |
"miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
|
374 |
"hieronder aangegeven:"
|
375 |
|
376 |
-
#: admin.inc.php:
|
377 |
#, fuzzy
|
378 |
msgid "Feed options"
|
379 |
msgstr "Opties:"
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid ""
|
383 |
"Below options override the related posts settings for your blog feed. These "
|
384 |
"only apply if you have selected to add related posts to Feeds in the General "
|
385 |
"Options tab."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid "Custom Styles"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
msgid "Custom CSS to add to header:"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin.inc.php:
|
397 |
msgid ""
|
398 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
399 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
400 |
"\">FAQ</a> for available CSS classes to style."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
#, fuzzy
|
405 |
msgid "Save Options"
|
406 |
msgstr "Opties:"
|
407 |
|
408 |
-
#: admin.inc.php:
|
409 |
#, fuzzy
|
410 |
msgid "Default Options"
|
411 |
msgstr "Output Opties:"
|
412 |
|
413 |
-
#: admin.inc.php:
|
414 |
msgid "Do you want to set options to Default?"
|
415 |
msgstr "Wil je opties terug naar standaard instellen?"
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Recreate Index"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Are you sure you want to recreate the index?"
|
423 |
msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "Contextual Related Posts"
|
427 |
msgstr "Contextual Related Posts"
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid "Related Posts"
|
431 |
msgstr "Gerelateerde Berichten"
|
432 |
|
433 |
-
#: admin.inc.php:
|
434 |
#, fuzzy
|
435 |
msgid "plugin settings page"
|
436 |
msgstr "plugin pagina"
|
437 |
|
438 |
-
#: admin.inc.php:
|
439 |
msgid ""
|
440 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
441 |
"visit the "
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin.inc.php:
|
445 |
msgid " to configure."
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin.inc.php:
|
449 |
msgid ""
|
450 |
"An error occurred clearing the cache. Please contact your site administrator."
|
451 |
"\\n\\nError message:\\n"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin.inc.php:
|
455 |
msgid " cached row(s) cleared"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
459 |
msgid "Powered by"
|
460 |
msgstr "Powered by"
|
461 |
|
462 |
-
#: contextual-related-posts.php:
|
463 |
#, fuzzy
|
464 |
msgid "Display Related Posts"
|
465 |
msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
466 |
|
467 |
-
#: contextual-related-posts.php:
|
468 |
msgid "Title"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: contextual-related-posts.php:
|
472 |
msgid "No. of posts"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: contextual-related-posts.php:
|
476 |
#, fuzzy
|
477 |
msgid " Show excerpt?"
|
478 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
479 |
|
480 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
#, fuzzy
|
482 |
msgid "Thumbnail options"
|
483 |
msgstr "Berichtopties miniatuurafbeelding:"
|
484 |
|
485 |
-
#: contextual-related-posts.php:
|
486 |
#, fuzzy
|
487 |
msgid "Thumbnails inline, before title"
|
488 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
489 |
|
490 |
-
#: contextual-related-posts.php:
|
491 |
#, fuzzy
|
492 |
msgid "Thumbnails inline, after title"
|
493 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
494 |
|
495 |
-
#: contextual-related-posts.php:
|
496 |
#, fuzzy
|
497 |
msgid "Only thumbnails, no text"
|
498 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
499 |
|
500 |
-
#: contextual-related-posts.php:
|
501 |
#, fuzzy
|
502 |
msgid "No thumbnails, only text."
|
503 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
504 |
|
505 |
-
#: contextual-related-posts.php:
|
506 |
#, fuzzy
|
507 |
msgid "Thumbnail height"
|
508 |
msgstr "Berichtopties miniatuurafbeelding:"
|
509 |
|
510 |
-
#: contextual-related-posts.php:
|
511 |
#, fuzzy
|
512 |
msgid "Thumbnail width"
|
513 |
msgstr "Berichtopties miniatuurafbeelding:"
|
514 |
|
515 |
-
#: contextual-related-posts.php:
|
516 |
msgid "<h3>Related Posts:</h3>"
|
517 |
msgstr "<h3>Gerelateerde Berichten:</h3>"
|
518 |
|
519 |
-
#: contextual-related-posts.php:
|
520 |
#, fuzzy
|
521 |
msgid "No related posts found"
|
522 |
msgstr "Geen gerelateerde berichten gevonden"
|
523 |
|
524 |
-
#: contextual-related-posts.php:
|
525 |
msgid "Settings"
|
526 |
msgstr "Instellingen"
|
527 |
|
528 |
-
#: contextual-related-posts.php:
|
529 |
msgid "Donate"
|
530 |
msgstr "Doneren"
|
531 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:28-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: http://WPwebshop.com <info@wppg.me>\n"
|
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.7\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin.inc.php:106
|
21 |
msgid "Options saved successfully."
|
22 |
msgstr "Opties succesvol opgeslagen."
|
23 |
|
24 |
+
#: admin.inc.php:122
|
25 |
msgid "Options set to Default."
|
26 |
msgstr "Opties ingesteld op standaard."
|
27 |
|
28 |
+
#: admin.inc.php:138
|
29 |
msgid "Index recreated"
|
30 |
msgstr "Index opnieuw gemaakt"
|
31 |
|
32 |
+
#: admin.inc.php:151
|
33 |
msgid "Support the development"
|
34 |
msgstr "Ondersteun de ontwikkeling"
|
35 |
|
36 |
+
#: admin.inc.php:159
|
37 |
msgid "Enter amount in USD: "
|
38 |
msgstr "Voer het bedrag in USD in:"
|
39 |
|
40 |
+
#: admin.inc.php:163
|
41 |
msgid "Send your donation to the author of"
|
42 |
msgstr "Stuur je donatie aan de auteur van"
|
43 |
|
44 |
+
#: admin.inc.php:174
|
45 |
#, fuzzy
|
46 |
msgid "Quick Links"
|
47 |
msgstr "Quick links"
|
48 |
|
49 |
+
#: admin.inc.php:176
|
50 |
#, fuzzy
|
51 |
msgid "Contextual Related Posts plugin page"
|
52 |
msgstr "Contextual Related Posts "
|
53 |
|
54 |
+
#: admin.inc.php:177
|
55 |
msgid "Other plugins"
|
56 |
msgstr "Andere plugins"
|
57 |
|
58 |
+
#: admin.inc.php:178
|
59 |
msgid "Ajay's blog"
|
60 |
msgstr "Ajay's blog"
|
61 |
|
62 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
63 |
msgid "Support"
|
64 |
msgstr "Ondersteuning"
|
65 |
|
66 |
+
#: admin.inc.php:180
|
67 |
msgid "Reviews"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:184
|
71 |
msgid "Recent developments"
|
72 |
msgstr "Recente ontwikkelingen"
|
73 |
|
74 |
+
#: admin.inc.php:194
|
75 |
msgid "General options"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:196
|
79 |
msgid "Cache output?"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:198
|
83 |
msgid ""
|
84 |
"Enabling this option will cache the related posts output when the post is "
|
85 |
"visited the first time. The cache is cleaned when you save this page."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:199
|
89 |
msgid "Clear cache"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:202 admin.inc.php:402
|
93 |
msgid "Number of related posts to display: "
|
94 |
msgstr "Aantal weer te geven gerelateerde berichten:"
|
95 |
|
96 |
+
#: admin.inc.php:205
|
97 |
msgid "Related posts should be newer than:"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:206
|
101 |
msgid "days"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:208
|
105 |
msgid "Post types to include in results (including custom post types)"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:219
|
109 |
msgid "Find related posts based on content as well as title"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: admin.inc.php:221
|
113 |
#, fuzzy
|
114 |
msgid ""
|
115 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
116 |
+
"or enabling \"Cache output\" above if you enable this."
|
117 |
msgstr ""
|
118 |
"Vind gerelateerde berichten gebaseerd op zowel content als titel. Indien "
|
119 |
"niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
|
120 |
"gebruik van een caching plugin aan wanneer je dit inschakelt)"
|
121 |
|
122 |
+
#: admin.inc.php:224
|
123 |
msgid "List of post or page IDs to exclude from the results: "
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: admin.inc.php:227
|
127 |
msgid "Categories to exclude from the results: "
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: admin.inc.php:243
|
131 |
msgid ""
|
132 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
133 |
"so simply start typing in the starting letters and it will prompt you with "
|
134 |
"options"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin.inc.php:246
|
138 |
#, fuzzy
|
139 |
msgid "Add related posts to:"
|
140 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
141 |
|
142 |
+
#: admin.inc.php:248
|
143 |
msgid "Posts"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: admin.inc.php:249
|
147 |
msgid "Pages"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:250
|
151 |
msgid "Home page"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:251
|
155 |
msgid "Feeds"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: admin.inc.php:252
|
159 |
msgid "Category archives"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: admin.inc.php:253
|
163 |
msgid "Tag archives"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin.inc.php:254
|
167 |
msgid "Other archives"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: admin.inc.php:255
|
171 |
#, fuzzy
|
172 |
msgid ""
|
173 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
179 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> toevoegen aan je sjabloon "
|
180 |
"bestand waar je het wilt laten weergeven"
|
181 |
|
182 |
+
#: admin.inc.php:258
|
183 |
msgid "Add a link to the plugin page as a final item in the list"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: admin.inc.php:259
|
187 |
msgid " <em>Optional</em>"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: admin.inc.php:266
|
191 |
#, fuzzy
|
192 |
msgid "Output options"
|
193 |
msgstr "Output Opties:"
|
194 |
|
195 |
+
#: admin.inc.php:268
|
196 |
msgid "Title of related posts: "
|
197 |
msgstr "Titel van gerelateerde berichten:"
|
198 |
|
199 |
+
#: admin.inc.php:271
|
200 |
msgid "When there are no posts, what should be shown?"
|
201 |
msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
|
202 |
|
203 |
+
#: admin.inc.php:275
|
204 |
msgid "Blank Output"
|
205 |
msgstr "Lege Output"
|
206 |
|
207 |
+
#: admin.inc.php:279
|
208 |
msgid "Display:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin.inc.php:283 admin.inc.php:405
|
212 |
msgid "Show post excerpt in list?"
|
213 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
214 |
|
215 |
+
#: admin.inc.php:286
|
216 |
msgid "Length of excerpt (in words): "
|
217 |
msgstr "Lengte van uittreksel (in woorden):"
|
218 |
|
219 |
+
#: admin.inc.php:289
|
220 |
+
#, fuzzy
|
221 |
+
msgid "Show post author in list?"
|
222 |
+
msgstr "Laat bericht uittreksel zien in lijst?"
|
223 |
+
|
224 |
+
#: admin.inc.php:292
|
225 |
#, fuzzy
|
226 |
msgid "Show post date in list?"
|
227 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
228 |
|
229 |
+
#: admin.inc.php:295
|
230 |
msgid "Limit post title length (in characters)"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin.inc.php:298
|
234 |
msgid "Open links in new window"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin.inc.php:301
|
238 |
msgid "Add nofollow attribute to links in the list"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: admin.inc.php:304
|
242 |
#, fuzzy
|
243 |
msgid "Exclude display of related posts on these posts / pages"
|
244 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
245 |
|
246 |
+
#: admin.inc.php:307
|
247 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin.inc.php:310
|
251 |
msgid "Customize the output:"
|
252 |
msgstr "Aanpassen van de output:"
|
253 |
|
254 |
+
#: admin.inc.php:312
|
255 |
msgid "HTML to display before the list of posts: "
|
256 |
msgstr "Weer te geven HTML voor de berichtenlijst:"
|
257 |
|
258 |
+
#: admin.inc.php:315
|
259 |
msgid "HTML to display before each list item: "
|
260 |
msgstr "Weer te geven HTML voor elk item in de lijst:"
|
261 |
|
262 |
+
#: admin.inc.php:318
|
263 |
msgid "HTML to display after each list item: "
|
264 |
msgstr "Weer te geven HTML na elk item in de lijst:"
|
265 |
|
266 |
+
#: admin.inc.php:321
|
267 |
msgid "HTML to display after the list of posts: "
|
268 |
msgstr "Weer te geven HTML na de berichtenlijst:"
|
269 |
|
270 |
+
#: admin.inc.php:324
|
271 |
msgid "Post thumbnail options:"
|
272 |
msgstr "Berichtopties miniatuurafbeelding:"
|
273 |
|
274 |
+
#: admin.inc.php:326 admin.inc.php:408
|
275 |
msgid "Location of post thumbnail:"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin.inc.php:330 admin.inc.php:412
|
279 |
#, fuzzy
|
280 |
msgid "Display thumbnails inline with posts, before title"
|
281 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
282 |
|
283 |
+
#: admin.inc.php:334 admin.inc.php:416
|
284 |
#, fuzzy
|
285 |
msgid "Display thumbnails inline with posts, after title"
|
286 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
287 |
|
288 |
+
#: admin.inc.php:338 admin.inc.php:420
|
289 |
msgid "Display only thumbnails, no text"
|
290 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
291 |
|
292 |
+
#: admin.inc.php:342 admin.inc.php:424
|
293 |
msgid "Do not display thumbnails, only text."
|
294 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
295 |
|
296 |
+
#: admin.inc.php:346 admin.inc.php:428
|
297 |
msgid "Maximum width of the thumbnail: "
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:349 admin.inc.php:431
|
301 |
msgid "Maximum height of the thumbnail: "
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: admin.inc.php:352
|
305 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: admin.inc.php:356
|
309 |
+
msgid ""
|
310 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: admin.inc.php:360
|
314 |
+
msgid ""
|
315 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
316 |
+
"\""
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: admin.inc.php:364
|
320 |
msgid "Use timthumb to generate thumbnails? "
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: admin.inc.php:366
|
324 |
msgid ""
|
325 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
326 |
"\">timthumb</a> will be used to generate thumbnails"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:369
|
330 |
msgid "Quality of thumbnails generated by timthumb"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin.inc.php:372
|
334 |
msgid ""
|
335 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
336 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin.inc.php:375
|
340 |
#, fuzzy
|
341 |
msgid "Post thumbnail meta field name: "
|
342 |
msgstr "Berichtopties miniatuurafbeelding:"
|
343 |
|
344 |
+
#: admin.inc.php:377
|
345 |
msgid ""
|
346 |
"The value of this field should contain the image source and is set in the "
|
347 |
"<em>Add New Post</em> screen"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin.inc.php:380
|
351 |
#, fuzzy
|
352 |
msgid ""
|
353 |
"If the postmeta is not set, then should the plugin extract the first image "
|
357 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
358 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
359 |
|
360 |
+
#: admin.inc.php:382
|
361 |
#, fuzzy
|
362 |
msgid ""
|
363 |
"This can slow down the loading of your page if the first image in the "
|
367 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
368 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
369 |
|
370 |
+
#: admin.inc.php:385
|
371 |
msgid "Use default thumbnail? "
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin.inc.php:387
|
375 |
msgid ""
|
376 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
377 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin.inc.php:390
|
381 |
msgid "Default thumbnail: "
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin.inc.php:392
|
385 |
#, fuzzy
|
386 |
msgid ""
|
387 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
393 |
"miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
|
394 |
"hieronder aangegeven:"
|
395 |
|
396 |
+
#: admin.inc.php:398
|
397 |
#, fuzzy
|
398 |
msgid "Feed options"
|
399 |
msgstr "Opties:"
|
400 |
|
401 |
+
#: admin.inc.php:400
|
402 |
msgid ""
|
403 |
"Below options override the related posts settings for your blog feed. These "
|
404 |
"only apply if you have selected to add related posts to Feeds in the General "
|
405 |
"Options tab."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:437
|
409 |
msgid "Custom Styles"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:439
|
413 |
msgid "Custom CSS to add to header:"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: admin.inc.php:442
|
417 |
msgid ""
|
418 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
419 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
420 |
"\">FAQ</a> for available CSS classes to style."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: admin.inc.php:447
|
424 |
#, fuzzy
|
425 |
msgid "Save Options"
|
426 |
msgstr "Opties:"
|
427 |
|
428 |
+
#: admin.inc.php:448
|
429 |
#, fuzzy
|
430 |
msgid "Default Options"
|
431 |
msgstr "Output Opties:"
|
432 |
|
433 |
+
#: admin.inc.php:448
|
434 |
msgid "Do you want to set options to Default?"
|
435 |
msgstr "Wil je opties terug naar standaard instellen?"
|
436 |
|
437 |
+
#: admin.inc.php:449
|
438 |
msgid "Recreate Index"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin.inc.php:449
|
442 |
msgid "Are you sure you want to recreate the index?"
|
443 |
msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
|
444 |
|
445 |
+
#: admin.inc.php:473
|
446 |
msgid "Contextual Related Posts"
|
447 |
msgstr "Contextual Related Posts"
|
448 |
|
449 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
450 |
msgid "Related Posts"
|
451 |
msgstr "Gerelateerde Berichten"
|
452 |
|
453 |
+
#: admin.inc.php:486
|
454 |
#, fuzzy
|
455 |
msgid "plugin settings page"
|
456 |
msgstr "plugin pagina"
|
457 |
|
458 |
+
#: admin.inc.php:491
|
459 |
msgid ""
|
460 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
461 |
"visit the "
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin.inc.php:491
|
465 |
msgid " to configure."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin.inc.php:555
|
469 |
msgid ""
|
470 |
"An error occurred clearing the cache. Please contact your site administrator."
|
471 |
"\\n\\nError message:\\n"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin.inc.php:561
|
475 |
msgid " cached row(s) cleared"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: contextual-related-posts.php:123
|
479 |
+
#, fuzzy
|
480 |
+
msgid " Posted by "
|
481 |
+
msgstr "Powered by"
|
482 |
+
|
483 |
+
#: contextual-related-posts.php:138
|
484 |
msgid "Powered by"
|
485 |
msgstr "Powered by"
|
486 |
|
487 |
+
#: contextual-related-posts.php:313
|
488 |
#, fuzzy
|
489 |
msgid "Display Related Posts"
|
490 |
msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
491 |
|
492 |
+
#: contextual-related-posts.php:328
|
493 |
msgid "Title"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: contextual-related-posts.php:333
|
497 |
msgid "No. of posts"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: contextual-related-posts.php:338
|
501 |
#, fuzzy
|
502 |
msgid " Show excerpt?"
|
503 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
504 |
|
505 |
+
#: contextual-related-posts.php:343
|
506 |
+
msgid " Show author?"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: contextual-related-posts.php:348
|
510 |
+
#, fuzzy
|
511 |
+
msgid " Show date?"
|
512 |
+
msgstr "Laat bericht uittreksel zien in lijst?"
|
513 |
+
|
514 |
+
#: contextual-related-posts.php:352
|
515 |
#, fuzzy
|
516 |
msgid "Thumbnail options"
|
517 |
msgstr "Berichtopties miniatuurafbeelding:"
|
518 |
|
519 |
+
#: contextual-related-posts.php:354
|
520 |
#, fuzzy
|
521 |
msgid "Thumbnails inline, before title"
|
522 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
523 |
|
524 |
+
#: contextual-related-posts.php:355
|
525 |
#, fuzzy
|
526 |
msgid "Thumbnails inline, after title"
|
527 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
528 |
|
529 |
+
#: contextual-related-posts.php:356
|
530 |
#, fuzzy
|
531 |
msgid "Only thumbnails, no text"
|
532 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
533 |
|
534 |
+
#: contextual-related-posts.php:357
|
535 |
#, fuzzy
|
536 |
msgid "No thumbnails, only text."
|
537 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
538 |
|
539 |
+
#: contextual-related-posts.php:362
|
540 |
#, fuzzy
|
541 |
msgid "Thumbnail height"
|
542 |
msgstr "Berichtopties miniatuurafbeelding:"
|
543 |
|
544 |
+
#: contextual-related-posts.php:367
|
545 |
#, fuzzy
|
546 |
msgid "Thumbnail width"
|
547 |
msgstr "Berichtopties miniatuurafbeelding:"
|
548 |
|
549 |
+
#: contextual-related-posts.php:463
|
550 |
msgid "<h3>Related Posts:</h3>"
|
551 |
msgstr "<h3>Gerelateerde Berichten:</h3>"
|
552 |
|
553 |
+
#: contextual-related-posts.php:464
|
554 |
#, fuzzy
|
555 |
msgid "No related posts found"
|
556 |
msgstr "Geen gerelateerde berichten gevonden"
|
557 |
|
558 |
+
#: contextual-related-posts.php:807
|
559 |
msgid "Settings"
|
560 |
msgstr "Instellingen"
|
561 |
|
562 |
+
#: contextual-related-posts.php:830
|
563 |
msgid "Donate"
|
564 |
msgstr "Doneren"
|
565 |
|
languages/crp-ru_RU.mo
CHANGED
Binary file
|
languages/crp-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -12,161 +12,161 @@ msgstr ""
|
|
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.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Настройки сохранены успешно."
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Опции возвращены к стандартным"
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Индекс воссоздан"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Support the development"
|
32 |
msgstr "Поддержка развития проекта"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Введите сумму в долларах США:"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Отправить пожертвование автору"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Быстрые ссылки"
|
46 |
|
47 |
-
#: admin.inc.php:
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Контекстные похожие посты"
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Другие плагины"
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Блог автора (Ajay, английский язык)"
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
msgid "Support"
|
62 |
msgstr "Поддержка"
|
63 |
|
64 |
-
#: admin.inc.php:
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: admin.inc.php:
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Последние разработки"
|
71 |
|
72 |
-
#: admin.inc.php:
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Количество отображаемых похожих постов:"
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
-
"If unchecked, only posts titles are used.
|
114 |
-
"
|
115 |
msgstr ""
|
116 |
"Найти связанные сообщения в зависимости от содержания и заголовка. Если вы "
|
117 |
"не выберете эту опцию, то для поиска будут использоваться только заголовки "
|
118 |
"сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
|
119 |
"опцию)"
|
120 |
|
121 |
-
#: admin.inc.php:
|
122 |
msgid "List of post or page IDs to exclude from the results: "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin.inc.php:
|
126 |
msgid "Categories to exclude from the results: "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
msgid ""
|
131 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
132 |
"so simply start typing in the starting letters and it will prompt you with "
|
133 |
"options"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: admin.inc.php:
|
137 |
#, fuzzy
|
138 |
msgid "Add related posts to:"
|
139 |
msgstr "Добавить похожие посты в фид"
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid "Posts"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin.inc.php:
|
146 |
msgid "Pages"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Home page"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
msgid "Feeds"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin.inc.php:
|
158 |
msgid "Category archives"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid "Tag archives"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin.inc.php:
|
166 |
msgid "Other archives"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
#, fuzzy
|
171 |
msgid ""
|
172 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -178,155 +178,175 @@ msgstr ""
|
|
178 |
"('echo_ald_crp')) echo_ald_crp(); ?></code>, в отображаемый шаблон на "
|
179 |
"вашем сайте"
|
180 |
|
181 |
-
#: admin.inc.php:
|
182 |
msgid "Add a link to the plugin page as a final item in the list"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: admin.inc.php:
|
186 |
msgid " <em>Optional</em>"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: admin.inc.php:
|
190 |
#, fuzzy
|
191 |
msgid "Output options"
|
192 |
msgstr "Опции вывода:"
|
193 |
|
194 |
-
#: admin.inc.php:
|
195 |
msgid "Title of related posts: "
|
196 |
msgstr "Названия связанных постов:"
|
197 |
|
198 |
-
#: admin.inc.php:
|
199 |
msgid "When there are no posts, what should be shown?"
|
200 |
msgstr "Когда нет сообщений, что должно быть показано?"
|
201 |
|
202 |
-
#: admin.inc.php:
|
203 |
msgid "Blank Output"
|
204 |
msgstr "Пустой выход"
|
205 |
|
206 |
-
#: admin.inc.php:
|
207 |
msgid "Display:"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: admin.inc.php:
|
211 |
msgid "Show post excerpt in list?"
|
212 |
msgstr "Показать выдержки из поста в списке?"
|
213 |
|
214 |
-
#: admin.inc.php:
|
215 |
msgid "Length of excerpt (in words): "
|
216 |
msgstr "Длина выдержки (в словах):"
|
217 |
|
218 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
219 |
#, fuzzy
|
220 |
msgid "Show post date in list?"
|
221 |
msgstr "Показать выдержки из поста в списке?"
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
msgid "Limit post title length (in characters)"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin.inc.php:
|
228 |
msgid "Open links in new window"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: admin.inc.php:
|
232 |
msgid "Add nofollow attribute to links in the list"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: admin.inc.php:
|
236 |
#, fuzzy
|
237 |
msgid "Exclude display of related posts on these posts / pages"
|
238 |
msgstr "Добавить похожие посты в фид"
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "Customize the output:"
|
246 |
msgstr "Настройки выхода:"
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "HTML to display before the list of posts: "
|
250 |
msgstr "HTML для показа перед списком сообщений: "
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "HTML to display before each list item: "
|
254 |
msgstr "HTML для показа перед каждым элементом списка: "
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "HTML to display after each list item: "
|
258 |
msgstr "HTML для отображения после каждого элемента списка: "
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "HTML to display after the list of posts: "
|
262 |
msgstr "HTML для отображения после списка сообщений: "
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Post thumbnail options:"
|
266 |
msgstr "Опции изображения поста:"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Location of post thumbnail:"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
#, fuzzy
|
274 |
msgid "Display thumbnails inline with posts, before title"
|
275 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
276 |
|
277 |
-
#: admin.inc.php:
|
278 |
#, fuzzy
|
279 |
msgid "Display thumbnails inline with posts, after title"
|
280 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "Display only thumbnails, no text"
|
284 |
msgstr "Показывать только изображения, без текста"
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Do not display thumbnails, only text."
|
288 |
msgstr "Не показывать изображения, только текст"
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Maximum width of the thumbnail: "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Maximum height of the thumbnail: "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
msgid "Use timthumb to generate thumbnails? "
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: admin.inc.php:
|
303 |
msgid ""
|
304 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
305 |
"\">timthumb</a> will be used to generate thumbnails"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid "Quality of thumbnails generated by timthumb"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid ""
|
314 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
315 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
#, fuzzy
|
320 |
msgid "Post thumbnail meta field name: "
|
321 |
msgstr "Опции изображения поста:"
|
322 |
|
323 |
-
#: admin.inc.php:
|
324 |
msgid ""
|
325 |
"The value of this field should contain the image source and is set in the "
|
326 |
"<em>Add New Post</em> screen"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
#, fuzzy
|
331 |
msgid ""
|
332 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -335,7 +355,7 @@ msgstr ""
|
|
335 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
336 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
337 |
|
338 |
-
#: admin.inc.php:
|
339 |
#, fuzzy
|
340 |
msgid ""
|
341 |
"This can slow down the loading of your page if the first image in the "
|
@@ -344,21 +364,21 @@ msgstr ""
|
|
344 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
345 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
346 |
|
347 |
-
#: admin.inc.php:
|
348 |
msgid "Use default thumbnail? "
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
msgid ""
|
353 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
354 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin.inc.php:
|
358 |
msgid "Default thumbnail: "
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
#, fuzzy
|
363 |
msgid ""
|
364 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -369,159 +389,173 @@ msgstr ""
|
|
369 |
"обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
|
370 |
"плагин будет показывать изображение по умолчанию, как указано ниже:"
|
371 |
|
372 |
-
#: admin.inc.php:
|
373 |
#, fuzzy
|
374 |
msgid "Feed options"
|
375 |
msgstr "Опции:"
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid ""
|
379 |
"Below options override the related posts settings for your blog feed. These "
|
380 |
"only apply if you have selected to add related posts to Feeds in the General "
|
381 |
"Options tab."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin.inc.php:
|
385 |
msgid "Custom Styles"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid "Custom CSS to add to header:"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
msgid ""
|
394 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
395 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
396 |
"\">FAQ</a> for available CSS classes to style."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
#, fuzzy
|
401 |
msgid "Save Options"
|
402 |
msgstr "Опции:"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
#, fuzzy
|
406 |
msgid "Default Options"
|
407 |
msgstr "Опции вывода:"
|
408 |
|
409 |
-
#: admin.inc.php:
|
410 |
msgid "Do you want to set options to Default?"
|
411 |
msgstr "Вы хотите задать параметры по умолчанию?"
|
412 |
|
413 |
-
#: admin.inc.php:
|
414 |
msgid "Recreate Index"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Are you sure you want to recreate the index?"
|
419 |
msgstr "Вы уверены, что хотите воссоздать индекс?"
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "Contextual Related Posts"
|
423 |
msgstr "Контекстные похожие посты"
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid "Related Posts"
|
427 |
msgstr "Похожие посты"
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
#, fuzzy
|
431 |
msgid "plugin settings page"
|
432 |
msgstr "Страница плагина"
|
433 |
|
434 |
-
#: admin.inc.php:
|
435 |
msgid ""
|
436 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
437 |
"visit the "
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin.inc.php:
|
441 |
msgid " to configure."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin.inc.php:
|
445 |
msgid ""
|
446 |
"An error occurred clearing the cache. Please contact your site administrator."
|
447 |
"\\n\\nError message:\\n"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin.inc.php:
|
451 |
msgid " cached row(s) cleared"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
455 |
msgid "Powered by"
|
456 |
msgstr "Автор:"
|
457 |
|
458 |
-
#: contextual-related-posts.php:
|
459 |
#, fuzzy
|
460 |
msgid "Display Related Posts"
|
461 |
msgstr "Показывать \"Нет похожих постов\""
|
462 |
|
463 |
-
#: contextual-related-posts.php:
|
464 |
msgid "Title"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: contextual-related-posts.php:
|
468 |
msgid "No. of posts"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: contextual-related-posts.php:
|
472 |
#, fuzzy
|
473 |
msgid " Show excerpt?"
|
474 |
msgstr "Показать выдержки из поста в списке?"
|
475 |
|
476 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
#, fuzzy
|
478 |
msgid "Thumbnail options"
|
479 |
msgstr "Опции изображения поста:"
|
480 |
|
481 |
-
#: contextual-related-posts.php:
|
482 |
#, fuzzy
|
483 |
msgid "Thumbnails inline, before title"
|
484 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
485 |
|
486 |
-
#: contextual-related-posts.php:
|
487 |
#, fuzzy
|
488 |
msgid "Thumbnails inline, after title"
|
489 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
490 |
|
491 |
-
#: contextual-related-posts.php:
|
492 |
#, fuzzy
|
493 |
msgid "Only thumbnails, no text"
|
494 |
msgstr "Показывать только изображения, без текста"
|
495 |
|
496 |
-
#: contextual-related-posts.php:
|
497 |
#, fuzzy
|
498 |
msgid "No thumbnails, only text."
|
499 |
msgstr "Не показывать изображения, только текст"
|
500 |
|
501 |
-
#: contextual-related-posts.php:
|
502 |
#, fuzzy
|
503 |
msgid "Thumbnail height"
|
504 |
msgstr "Опции изображения поста:"
|
505 |
|
506 |
-
#: contextual-related-posts.php:
|
507 |
#, fuzzy
|
508 |
msgid "Thumbnail width"
|
509 |
msgstr "Опции изображения поста:"
|
510 |
|
511 |
-
#: contextual-related-posts.php:
|
512 |
msgid "<h3>Related Posts:</h3>"
|
513 |
msgstr "<h3>Похожие посты:</h3>"
|
514 |
|
515 |
-
#: contextual-related-posts.php:
|
516 |
#, fuzzy
|
517 |
msgid "No related posts found"
|
518 |
msgstr "Не найдены похожие посты"
|
519 |
|
520 |
-
#: contextual-related-posts.php:
|
521 |
msgid "Settings"
|
522 |
msgstr "Настройки"
|
523 |
|
524 |
-
#: contextual-related-posts.php:
|
525 |
msgid "Donate"
|
526 |
msgstr "Пожертвование"
|
527 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:29-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
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.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:106
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Настройки сохранены успешно."
|
21 |
|
22 |
+
#: admin.inc.php:122
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Опции возвращены к стандартным"
|
25 |
|
26 |
+
#: admin.inc.php:138
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Индекс воссоздан"
|
29 |
|
30 |
+
#: admin.inc.php:151
|
31 |
msgid "Support the development"
|
32 |
msgstr "Поддержка развития проекта"
|
33 |
|
34 |
+
#: admin.inc.php:159
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Введите сумму в долларах США:"
|
37 |
|
38 |
+
#: admin.inc.php:163
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Отправить пожертвование автору"
|
41 |
|
42 |
+
#: admin.inc.php:174
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Быстрые ссылки"
|
46 |
|
47 |
+
#: admin.inc.php:176
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Контекстные похожие посты"
|
51 |
|
52 |
+
#: admin.inc.php:177
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Другие плагины"
|
55 |
|
56 |
+
#: admin.inc.php:178
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Блог автора (Ajay, английский язык)"
|
59 |
|
60 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
61 |
msgid "Support"
|
62 |
msgstr "Поддержка"
|
63 |
|
64 |
+
#: admin.inc.php:180
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:184
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Последние разработки"
|
71 |
|
72 |
+
#: admin.inc.php:194
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:196
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:198
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:199
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:202 admin.inc.php:402
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Количество отображаемых похожих постов:"
|
93 |
|
94 |
+
#: admin.inc.php:205
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:206
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:208
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:219
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin.inc.php:221
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
114 |
+
"or enabling \"Cache output\" above if you enable this."
|
115 |
msgstr ""
|
116 |
"Найти связанные сообщения в зависимости от содержания и заголовка. Если вы "
|
117 |
"не выберете эту опцию, то для поиска будут использоваться только заголовки "
|
118 |
"сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
|
119 |
"опцию)"
|
120 |
|
121 |
+
#: admin.inc.php:224
|
122 |
msgid "List of post or page IDs to exclude from the results: "
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: admin.inc.php:227
|
126 |
msgid "Categories to exclude from the results: "
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin.inc.php:243
|
130 |
msgid ""
|
131 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
132 |
"so simply start typing in the starting letters and it will prompt you with "
|
133 |
"options"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: admin.inc.php:246
|
137 |
#, fuzzy
|
138 |
msgid "Add related posts to:"
|
139 |
msgstr "Добавить похожие посты в фид"
|
140 |
|
141 |
+
#: admin.inc.php:248
|
142 |
msgid "Posts"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.inc.php:249
|
146 |
msgid "Pages"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:250
|
150 |
msgid "Home page"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:251
|
154 |
msgid "Feeds"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin.inc.php:252
|
158 |
msgid "Category archives"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: admin.inc.php:253
|
162 |
msgid "Tag archives"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: admin.inc.php:254
|
166 |
msgid "Other archives"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: admin.inc.php:255
|
170 |
#, fuzzy
|
171 |
msgid ""
|
172 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
178 |
"('echo_ald_crp')) echo_ald_crp(); ?></code>, в отображаемый шаблон на "
|
179 |
"вашем сайте"
|
180 |
|
181 |
+
#: admin.inc.php:258
|
182 |
msgid "Add a link to the plugin page as a final item in the list"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: admin.inc.php:259
|
186 |
msgid " <em>Optional</em>"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: admin.inc.php:266
|
190 |
#, fuzzy
|
191 |
msgid "Output options"
|
192 |
msgstr "Опции вывода:"
|
193 |
|
194 |
+
#: admin.inc.php:268
|
195 |
msgid "Title of related posts: "
|
196 |
msgstr "Названия связанных постов:"
|
197 |
|
198 |
+
#: admin.inc.php:271
|
199 |
msgid "When there are no posts, what should be shown?"
|
200 |
msgstr "Когда нет сообщений, что должно быть показано?"
|
201 |
|
202 |
+
#: admin.inc.php:275
|
203 |
msgid "Blank Output"
|
204 |
msgstr "Пустой выход"
|
205 |
|
206 |
+
#: admin.inc.php:279
|
207 |
msgid "Display:"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: admin.inc.php:283 admin.inc.php:405
|
211 |
msgid "Show post excerpt in list?"
|
212 |
msgstr "Показать выдержки из поста в списке?"
|
213 |
|
214 |
+
#: admin.inc.php:286
|
215 |
msgid "Length of excerpt (in words): "
|
216 |
msgstr "Длина выдержки (в словах):"
|
217 |
|
218 |
+
#: admin.inc.php:289
|
219 |
+
#, fuzzy
|
220 |
+
msgid "Show post author in list?"
|
221 |
+
msgstr "Показать выдержки из поста в списке?"
|
222 |
+
|
223 |
+
#: admin.inc.php:292
|
224 |
#, fuzzy
|
225 |
msgid "Show post date in list?"
|
226 |
msgstr "Показать выдержки из поста в списке?"
|
227 |
|
228 |
+
#: admin.inc.php:295
|
229 |
msgid "Limit post title length (in characters)"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:298
|
233 |
msgid "Open links in new window"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:301
|
237 |
msgid "Add nofollow attribute to links in the list"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin.inc.php:304
|
241 |
#, fuzzy
|
242 |
msgid "Exclude display of related posts on these posts / pages"
|
243 |
msgstr "Добавить похожие посты в фид"
|
244 |
|
245 |
+
#: admin.inc.php:307
|
246 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: admin.inc.php:310
|
250 |
msgid "Customize the output:"
|
251 |
msgstr "Настройки выхода:"
|
252 |
|
253 |
+
#: admin.inc.php:312
|
254 |
msgid "HTML to display before the list of posts: "
|
255 |
msgstr "HTML для показа перед списком сообщений: "
|
256 |
|
257 |
+
#: admin.inc.php:315
|
258 |
msgid "HTML to display before each list item: "
|
259 |
msgstr "HTML для показа перед каждым элементом списка: "
|
260 |
|
261 |
+
#: admin.inc.php:318
|
262 |
msgid "HTML to display after each list item: "
|
263 |
msgstr "HTML для отображения после каждого элемента списка: "
|
264 |
|
265 |
+
#: admin.inc.php:321
|
266 |
msgid "HTML to display after the list of posts: "
|
267 |
msgstr "HTML для отображения после списка сообщений: "
|
268 |
|
269 |
+
#: admin.inc.php:324
|
270 |
msgid "Post thumbnail options:"
|
271 |
msgstr "Опции изображения поста:"
|
272 |
|
273 |
+
#: admin.inc.php:326 admin.inc.php:408
|
274 |
msgid "Location of post thumbnail:"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin.inc.php:330 admin.inc.php:412
|
278 |
#, fuzzy
|
279 |
msgid "Display thumbnails inline with posts, before title"
|
280 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
281 |
|
282 |
+
#: admin.inc.php:334 admin.inc.php:416
|
283 |
#, fuzzy
|
284 |
msgid "Display thumbnails inline with posts, after title"
|
285 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
286 |
|
287 |
+
#: admin.inc.php:338 admin.inc.php:420
|
288 |
msgid "Display only thumbnails, no text"
|
289 |
msgstr "Показывать только изображения, без текста"
|
290 |
|
291 |
+
#: admin.inc.php:342 admin.inc.php:424
|
292 |
msgid "Do not display thumbnails, only text."
|
293 |
msgstr "Не показывать изображения, только текст"
|
294 |
|
295 |
+
#: admin.inc.php:346 admin.inc.php:428
|
296 |
msgid "Maximum width of the thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: admin.inc.php:349 admin.inc.php:431
|
300 |
msgid "Maximum height of the thumbnail: "
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin.inc.php:352
|
304 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: admin.inc.php:356
|
308 |
+
msgid ""
|
309 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: admin.inc.php:360
|
313 |
+
msgid ""
|
314 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
315 |
+
"\""
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: admin.inc.php:364
|
319 |
msgid "Use timthumb to generate thumbnails? "
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin.inc.php:366
|
323 |
msgid ""
|
324 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
325 |
"\">timthumb</a> will be used to generate thumbnails"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: admin.inc.php:369
|
329 |
msgid "Quality of thumbnails generated by timthumb"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: admin.inc.php:372
|
333 |
msgid ""
|
334 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
335 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin.inc.php:375
|
339 |
#, fuzzy
|
340 |
msgid "Post thumbnail meta field name: "
|
341 |
msgstr "Опции изображения поста:"
|
342 |
|
343 |
+
#: admin.inc.php:377
|
344 |
msgid ""
|
345 |
"The value of this field should contain the image source and is set in the "
|
346 |
"<em>Add New Post</em> screen"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin.inc.php:380
|
350 |
#, fuzzy
|
351 |
msgid ""
|
352 |
"If the postmeta is not set, then should the plugin extract the first image "
|
355 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
356 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
357 |
|
358 |
+
#: admin.inc.php:382
|
359 |
#, fuzzy
|
360 |
msgid ""
|
361 |
"This can slow down the loading of your page if the first image in the "
|
364 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
365 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
366 |
|
367 |
+
#: admin.inc.php:385
|
368 |
msgid "Use default thumbnail? "
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin.inc.php:387
|
372 |
msgid ""
|
373 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
374 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:390
|
378 |
msgid "Default thumbnail: "
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin.inc.php:392
|
382 |
#, fuzzy
|
383 |
msgid ""
|
384 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
389 |
"обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
|
390 |
"плагин будет показывать изображение по умолчанию, как указано ниже:"
|
391 |
|
392 |
+
#: admin.inc.php:398
|
393 |
#, fuzzy
|
394 |
msgid "Feed options"
|
395 |
msgstr "Опции:"
|
396 |
|
397 |
+
#: admin.inc.php:400
|
398 |
msgid ""
|
399 |
"Below options override the related posts settings for your blog feed. These "
|
400 |
"only apply if you have selected to add related posts to Feeds in the General "
|
401 |
"Options tab."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin.inc.php:437
|
405 |
msgid "Custom Styles"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:439
|
409 |
msgid "Custom CSS to add to header:"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:442
|
413 |
msgid ""
|
414 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
415 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
416 |
"\">FAQ</a> for available CSS classes to style."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin.inc.php:447
|
420 |
#, fuzzy
|
421 |
msgid "Save Options"
|
422 |
msgstr "Опции:"
|
423 |
|
424 |
+
#: admin.inc.php:448
|
425 |
#, fuzzy
|
426 |
msgid "Default Options"
|
427 |
msgstr "Опции вывода:"
|
428 |
|
429 |
+
#: admin.inc.php:448
|
430 |
msgid "Do you want to set options to Default?"
|
431 |
msgstr "Вы хотите задать параметры по умолчанию?"
|
432 |
|
433 |
+
#: admin.inc.php:449
|
434 |
msgid "Recreate Index"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin.inc.php:449
|
438 |
msgid "Are you sure you want to recreate the index?"
|
439 |
msgstr "Вы уверены, что хотите воссоздать индекс?"
|
440 |
|
441 |
+
#: admin.inc.php:473
|
442 |
msgid "Contextual Related Posts"
|
443 |
msgstr "Контекстные похожие посты"
|
444 |
|
445 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
446 |
msgid "Related Posts"
|
447 |
msgstr "Похожие посты"
|
448 |
|
449 |
+
#: admin.inc.php:486
|
450 |
#, fuzzy
|
451 |
msgid "plugin settings page"
|
452 |
msgstr "Страница плагина"
|
453 |
|
454 |
+
#: admin.inc.php:491
|
455 |
msgid ""
|
456 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
457 |
"visit the "
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin.inc.php:491
|
461 |
msgid " to configure."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin.inc.php:555
|
465 |
msgid ""
|
466 |
"An error occurred clearing the cache. Please contact your site administrator."
|
467 |
"\\n\\nError message:\\n"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin.inc.php:561
|
471 |
msgid " cached row(s) cleared"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: contextual-related-posts.php:123
|
475 |
+
#, fuzzy
|
476 |
+
msgid " Posted by "
|
477 |
+
msgstr "Автор:"
|
478 |
+
|
479 |
+
#: contextual-related-posts.php:138
|
480 |
msgid "Powered by"
|
481 |
msgstr "Автор:"
|
482 |
|
483 |
+
#: contextual-related-posts.php:313
|
484 |
#, fuzzy
|
485 |
msgid "Display Related Posts"
|
486 |
msgstr "Показывать \"Нет похожих постов\""
|
487 |
|
488 |
+
#: contextual-related-posts.php:328
|
489 |
msgid "Title"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: contextual-related-posts.php:333
|
493 |
msgid "No. of posts"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: contextual-related-posts.php:338
|
497 |
#, fuzzy
|
498 |
msgid " Show excerpt?"
|
499 |
msgstr "Показать выдержки из поста в списке?"
|
500 |
|
501 |
+
#: contextual-related-posts.php:343
|
502 |
+
msgid " Show author?"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: contextual-related-posts.php:348
|
506 |
+
#, fuzzy
|
507 |
+
msgid " Show date?"
|
508 |
+
msgstr "Показать выдержки из поста в списке?"
|
509 |
+
|
510 |
+
#: contextual-related-posts.php:352
|
511 |
#, fuzzy
|
512 |
msgid "Thumbnail options"
|
513 |
msgstr "Опции изображения поста:"
|
514 |
|
515 |
+
#: contextual-related-posts.php:354
|
516 |
#, fuzzy
|
517 |
msgid "Thumbnails inline, before title"
|
518 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
519 |
|
520 |
+
#: contextual-related-posts.php:355
|
521 |
#, fuzzy
|
522 |
msgid "Thumbnails inline, after title"
|
523 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
524 |
|
525 |
+
#: contextual-related-posts.php:356
|
526 |
#, fuzzy
|
527 |
msgid "Only thumbnails, no text"
|
528 |
msgstr "Показывать только изображения, без текста"
|
529 |
|
530 |
+
#: contextual-related-posts.php:357
|
531 |
#, fuzzy
|
532 |
msgid "No thumbnails, only text."
|
533 |
msgstr "Не показывать изображения, только текст"
|
534 |
|
535 |
+
#: contextual-related-posts.php:362
|
536 |
#, fuzzy
|
537 |
msgid "Thumbnail height"
|
538 |
msgstr "Опции изображения поста:"
|
539 |
|
540 |
+
#: contextual-related-posts.php:367
|
541 |
#, fuzzy
|
542 |
msgid "Thumbnail width"
|
543 |
msgstr "Опции изображения поста:"
|
544 |
|
545 |
+
#: contextual-related-posts.php:463
|
546 |
msgid "<h3>Related Posts:</h3>"
|
547 |
msgstr "<h3>Похожие посты:</h3>"
|
548 |
|
549 |
+
#: contextual-related-posts.php:464
|
550 |
#, fuzzy
|
551 |
msgid "No related posts found"
|
552 |
msgstr "Не найдены похожие посты"
|
553 |
|
554 |
+
#: contextual-related-posts.php:807
|
555 |
msgid "Settings"
|
556 |
msgstr "Настройки"
|
557 |
|
558 |
+
#: contextual-related-posts.php:830
|
559 |
msgid "Donate"
|
560 |
msgstr "Пожертвование"
|
561 |
|
languages/crp-zh_CN.mo
CHANGED
Binary file
|
languages/crp-zh_CN.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -12,157 +12,158 @@ msgstr ""
|
|
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.
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: admin.inc.php:
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "成功保存设置。"
|
21 |
|
22 |
-
#: admin.inc.php:
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "已重置设置。"
|
25 |
|
26 |
-
#: admin.inc.php:
|
27 |
msgid "Index recreated"
|
28 |
msgstr "已重新创建索引"
|
29 |
|
30 |
-
#: admin.inc.php:
|
31 |
msgid "Support the development"
|
32 |
msgstr "支持开发"
|
33 |
|
34 |
-
#: admin.inc.php:
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "输入美元金额:"
|
37 |
|
38 |
-
#: admin.inc.php:
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "捐赠给作者"
|
41 |
|
42 |
-
#: admin.inc.php:
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "快捷链接"
|
46 |
|
47 |
-
#: admin.inc.php:
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "相关日志"
|
51 |
|
52 |
-
#: admin.inc.php:
|
53 |
msgid "Other plugins"
|
54 |
msgstr "其他插件"
|
55 |
|
56 |
-
#: admin.inc.php:
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Ajay 的博客"
|
59 |
|
60 |
-
#: admin.inc.php:
|
61 |
msgid "Support"
|
62 |
msgstr "技术支持"
|
63 |
|
64 |
-
#: admin.inc.php:
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: admin.inc.php:
|
69 |
msgid "Recent developments"
|
70 |
msgstr "最新开发"
|
71 |
|
72 |
-
#: admin.inc.php:
|
73 |
msgid "General options"
|
74 |
msgstr "一般设置"
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "相关日志数量:"
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr "被索引的日志类型(包含自定义日志类型)"
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr "根据标题和正文内容索引"
|
109 |
|
110 |
-
#: admin.inc.php:
|
|
|
111 |
msgid ""
|
112 |
-
"If unchecked, only posts titles are used.
|
113 |
-
"
|
114 |
msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "List of post or page IDs to exclude from the results: "
|
118 |
msgstr "排除的文章或页面 ID:"
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
#, fuzzy
|
122 |
msgid "Categories to exclude from the results: "
|
123 |
msgstr "排除的文章或页面 ID:"
|
124 |
|
125 |
-
#: admin.inc.php:
|
126 |
msgid ""
|
127 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
128 |
"so simply start typing in the starting letters and it will prompt you with "
|
129 |
"options"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
#, fuzzy
|
134 |
msgid "Add related posts to:"
|
135 |
msgstr "添加相关日志到 feed 里"
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
msgid "Posts"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid "Pages"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin.inc.php:
|
146 |
msgid "Home page"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Feeds"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
msgid "Category archives"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin.inc.php:
|
158 |
msgid "Tag archives"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid "Other archives"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: admin.inc.php:
|
166 |
msgid ""
|
167 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
168 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
@@ -171,126 +172,146 @@ msgstr ""
|
|
171 |
"假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code><?php "
|
172 |
"if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code>"
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
msgid "Add a link to the plugin page as a final item in the list"
|
176 |
msgstr "在相关日志后添加插件页面的链接"
|
177 |
|
178 |
-
#: admin.inc.php:
|
179 |
msgid " <em>Optional</em>"
|
180 |
msgstr " <em>可选</em>"
|
181 |
|
182 |
-
#: admin.inc.php:
|
183 |
#, fuzzy
|
184 |
msgid "Output options"
|
185 |
msgstr "显示设置"
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
msgid "Title of related posts: "
|
189 |
msgstr "相关日志的标题:"
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
msgid "When there are no posts, what should be shown?"
|
193 |
msgstr "当不存在相关日志时,显示什么?"
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
msgid "Blank Output"
|
197 |
msgstr "不显示"
|
198 |
|
199 |
-
#: admin.inc.php:
|
200 |
msgid "Display:"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: admin.inc.php:
|
204 |
msgid "Show post excerpt in list?"
|
205 |
msgstr "是否显示日志摘要?"
|
206 |
|
207 |
-
#: admin.inc.php:
|
208 |
msgid "Length of excerpt (in words): "
|
209 |
msgstr "摘要长度(词数):"
|
210 |
|
211 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
212 |
#, fuzzy
|
213 |
msgid "Show post date in list?"
|
214 |
msgstr "是否显示日志摘要?"
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "Limit post title length (in characters)"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "Open links in new window"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Add nofollow attribute to links in the list"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
#, fuzzy
|
230 |
msgid "Exclude display of related posts on these posts / pages"
|
231 |
msgstr "添加相关日志到页面里"
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
msgid "Customize the output:"
|
239 |
msgstr "自定义显示:"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "HTML to display before the list of posts: "
|
243 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "HTML to display before each list item: "
|
247 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "HTML to display after each list item: "
|
251 |
msgstr "显示在日志列表前面的 HTML 标签:"
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "HTML to display after the list of posts: "
|
255 |
msgstr "显示在日志列表后面的 HTML 标签:"
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "Post thumbnail options:"
|
259 |
msgstr "日志缩略图设置:"
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Location of post thumbnail:"
|
263 |
msgstr "日志缩略图位置:"
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Display thumbnails inline with posts, before title"
|
267 |
msgstr "在标题前显示缩略图"
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
msgid "Display thumbnails inline with posts, after title"
|
271 |
msgstr "在标题后显示缩略图"
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
msgid "Display only thumbnails, no text"
|
275 |
msgstr "不显示文本,只显示缩略图"
|
276 |
|
277 |
-
#: admin.inc.php:
|
278 |
msgid "Do not display thumbnails, only text."
|
279 |
msgstr "不显示缩略图,只显示文本"
|
280 |
|
281 |
-
#: admin.inc.php:
|
282 |
msgid "Maximum width of the thumbnail: "
|
283 |
msgstr "缩略图最大宽度"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid "Maximum height of the thumbnail: "
|
287 |
msgstr "缩略图最大高度"
|
288 |
|
289 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
msgid "Use timthumb to generate thumbnails? "
|
291 |
msgstr "是否使用 timthumb 生成缩略图?"
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid ""
|
295 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
296 |
"\">timthumb</a> will be used to generate thumbnails"
|
@@ -298,54 +319,54 @@ msgstr ""
|
|
298 |
"勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
299 |
"\">timthumb</a> 生成缩略图"
|
300 |
|
301 |
-
#: admin.inc.php:
|
302 |
msgid "Quality of thumbnails generated by timthumb"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin.inc.php:
|
306 |
msgid ""
|
307 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
308 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: admin.inc.php:
|
312 |
msgid "Post thumbnail meta field name: "
|
313 |
msgstr "日志缩略图自定义栏目的名称:"
|
314 |
|
315 |
-
#: admin.inc.php:
|
316 |
msgid ""
|
317 |
"The value of this field should contain the image source and is set in the "
|
318 |
"<em>Add New Post</em> screen"
|
319 |
msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid ""
|
323 |
"If the postmeta is not set, then should the plugin extract the first image "
|
324 |
"from the post?"
|
325 |
msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
|
326 |
|
327 |
-
#: admin.inc.php:
|
328 |
msgid ""
|
329 |
"This can slow down the loading of your page if the first image in the "
|
330 |
"related posts is large in file-size"
|
331 |
msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
|
332 |
|
333 |
-
#: admin.inc.php:
|
334 |
msgid "Use default thumbnail? "
|
335 |
msgstr "是否使用默认缩略图?"
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
msgid ""
|
339 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
340 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
341 |
msgstr ""
|
342 |
"勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
|
343 |
|
344 |
-
#: admin.inc.php:
|
345 |
msgid "Default thumbnail: "
|
346 |
msgstr "默认缩略图:"
|
347 |
|
348 |
-
#: admin.inc.php:
|
349 |
msgid ""
|
350 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
351 |
"then it will check the meta field. If this is not available, then it will "
|
@@ -354,27 +375,27 @@ msgstr ""
|
|
354 |
"本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
|
355 |
"示上面默认图像"
|
356 |
|
357 |
-
#: admin.inc.php:
|
358 |
#, fuzzy
|
359 |
msgid "Feed options"
|
360 |
msgstr "一般设置"
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid ""
|
364 |
"Below options override the related posts settings for your blog feed. These "
|
365 |
"only apply if you have selected to add related posts to Feeds in the General "
|
366 |
"Options tab."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin.inc.php:
|
370 |
msgid "Custom Styles"
|
371 |
msgstr "自定义样式"
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid "Custom CSS to add to header:"
|
375 |
msgstr "添加自定义 CSS 到 header:"
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
#, fuzzy
|
379 |
msgid ""
|
380 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
@@ -384,122 +405,136 @@ msgstr ""
|
|
384 |
"不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
|
385 |
"extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid "Save Options"
|
389 |
msgstr "保存设置"
|
390 |
|
391 |
-
#: admin.inc.php:
|
392 |
msgid "Default Options"
|
393 |
msgstr "默认设置"
|
394 |
|
395 |
-
#: admin.inc.php:
|
396 |
msgid "Do you want to set options to Default?"
|
397 |
msgstr "是否要重置设置?"
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
msgid "Recreate Index"
|
401 |
msgstr "重建索引"
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
msgid "Are you sure you want to recreate the index?"
|
405 |
msgstr "是否要重建索引?"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid "Contextual Related Posts"
|
409 |
msgstr "Contextual Related Posts"
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
msgid "Related Posts"
|
413 |
msgstr "相关日志"
|
414 |
|
415 |
-
#: admin.inc.php:
|
416 |
msgid "plugin settings page"
|
417 |
msgstr "插件设置页面"
|
418 |
|
419 |
-
#: admin.inc.php:
|
420 |
msgid ""
|
421 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
422 |
"visit the "
|
423 |
msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid " to configure."
|
427 |
msgstr "设置插件。"
|
428 |
|
429 |
-
#: admin.inc.php:
|
430 |
msgid ""
|
431 |
"An error occurred clearing the cache. Please contact your site administrator."
|
432 |
"\\n\\nError message:\\n"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin.inc.php:
|
436 |
msgid " cached row(s) cleared"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
440 |
msgid "Powered by"
|
441 |
msgstr "插件作者:"
|
442 |
|
443 |
-
#: contextual-related-posts.php:
|
444 |
msgid "Display Related Posts"
|
445 |
msgstr "显示相关日志"
|
446 |
|
447 |
-
#: contextual-related-posts.php:
|
448 |
msgid "Title"
|
449 |
msgstr "标题"
|
450 |
|
451 |
-
#: contextual-related-posts.php:
|
452 |
msgid "No. of posts"
|
453 |
msgstr "日志数量"
|
454 |
|
455 |
-
#: contextual-related-posts.php:
|
456 |
msgid " Show excerpt?"
|
457 |
msgstr "是否显示日志摘要?"
|
458 |
|
459 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
msgid "Thumbnail options"
|
461 |
msgstr "缩略图设置:"
|
462 |
|
463 |
-
#: contextual-related-posts.php:
|
464 |
msgid "Thumbnails inline, before title"
|
465 |
msgstr "在标题前显示缩略图"
|
466 |
|
467 |
-
#: contextual-related-posts.php:
|
468 |
msgid "Thumbnails inline, after title"
|
469 |
msgstr "在标题后显示缩略图"
|
470 |
|
471 |
-
#: contextual-related-posts.php:
|
472 |
msgid "Only thumbnails, no text"
|
473 |
msgstr "不显示文本,只显示缩略图"
|
474 |
|
475 |
-
#: contextual-related-posts.php:
|
476 |
msgid "No thumbnails, only text."
|
477 |
msgstr "不显示缩略图,只显示文本"
|
478 |
|
479 |
-
#: contextual-related-posts.php:
|
480 |
#, fuzzy
|
481 |
msgid "Thumbnail height"
|
482 |
msgstr "缩略图设置:"
|
483 |
|
484 |
-
#: contextual-related-posts.php:
|
485 |
#, fuzzy
|
486 |
msgid "Thumbnail width"
|
487 |
msgstr "缩略图设置:"
|
488 |
|
489 |
-
#: contextual-related-posts.php:
|
490 |
msgid "<h3>Related Posts:</h3>"
|
491 |
msgstr "<h3>相关日志:</h3>"
|
492 |
|
493 |
-
#: contextual-related-posts.php:
|
494 |
#, fuzzy
|
495 |
msgid "No related posts found"
|
496 |
msgstr "没有发现相关日志"
|
497 |
|
498 |
-
#: contextual-related-posts.php:
|
499 |
msgid "Settings"
|
500 |
msgstr "设置"
|
501 |
|
502 |
-
#: contextual-related-posts.php:
|
503 |
msgid "Donate"
|
504 |
msgstr "捐赠"
|
505 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-08-19 23:29-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
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.7\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:106
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "成功保存设置。"
|
21 |
|
22 |
+
#: admin.inc.php:122
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "已重置设置。"
|
25 |
|
26 |
+
#: admin.inc.php:138
|
27 |
msgid "Index recreated"
|
28 |
msgstr "已重新创建索引"
|
29 |
|
30 |
+
#: admin.inc.php:151
|
31 |
msgid "Support the development"
|
32 |
msgstr "支持开发"
|
33 |
|
34 |
+
#: admin.inc.php:159
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "输入美元金额:"
|
37 |
|
38 |
+
#: admin.inc.php:163
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "捐赠给作者"
|
41 |
|
42 |
+
#: admin.inc.php:174
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "快捷链接"
|
46 |
|
47 |
+
#: admin.inc.php:176
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "相关日志"
|
51 |
|
52 |
+
#: admin.inc.php:177
|
53 |
msgid "Other plugins"
|
54 |
msgstr "其他插件"
|
55 |
|
56 |
+
#: admin.inc.php:178
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Ajay 的博客"
|
59 |
|
60 |
+
#: admin.inc.php:179 contextual-related-posts.php:829
|
61 |
msgid "Support"
|
62 |
msgstr "技术支持"
|
63 |
|
64 |
+
#: admin.inc.php:180
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:184
|
69 |
msgid "Recent developments"
|
70 |
msgstr "最新开发"
|
71 |
|
72 |
+
#: admin.inc.php:194
|
73 |
msgid "General options"
|
74 |
msgstr "一般设置"
|
75 |
|
76 |
+
#: admin.inc.php:196
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:198
|
81 |
msgid ""
|
82 |
"Enabling this option will cache the related posts output when the post is "
|
83 |
"visited the first time. The cache is cleaned when you save this page."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:199
|
87 |
msgid "Clear cache"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:202 admin.inc.php:402
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "相关日志数量:"
|
93 |
|
94 |
+
#: admin.inc.php:205
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:206
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:208
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr "被索引的日志类型(包含自定义日志类型)"
|
105 |
|
106 |
+
#: admin.inc.php:219
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr "根据标题和正文内容索引"
|
109 |
|
110 |
+
#: admin.inc.php:221
|
111 |
+
#, fuzzy
|
112 |
msgid ""
|
113 |
+
"If unchecked, only posts titles are used. I recommend using a caching plugin "
|
114 |
+
"or enabling \"Cache output\" above if you enable this."
|
115 |
msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
|
116 |
|
117 |
+
#: admin.inc.php:224
|
118 |
msgid "List of post or page IDs to exclude from the results: "
|
119 |
msgstr "排除的文章或页面 ID:"
|
120 |
|
121 |
+
#: admin.inc.php:227
|
122 |
#, fuzzy
|
123 |
msgid "Categories to exclude from the results: "
|
124 |
msgstr "排除的文章或页面 ID:"
|
125 |
|
126 |
+
#: admin.inc.php:243
|
127 |
msgid ""
|
128 |
"Comma separated list of category slugs. The field above has an autocomplete "
|
129 |
"so simply start typing in the starting letters and it will prompt you with "
|
130 |
"options"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin.inc.php:246
|
134 |
#, fuzzy
|
135 |
msgid "Add related posts to:"
|
136 |
msgstr "添加相关日志到 feed 里"
|
137 |
|
138 |
+
#: admin.inc.php:248
|
139 |
msgid "Posts"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin.inc.php:249
|
143 |
msgid "Pages"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: admin.inc.php:250
|
147 |
msgid "Home page"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:251
|
151 |
msgid "Feeds"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:252
|
155 |
msgid "Category archives"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: admin.inc.php:253
|
159 |
msgid "Tag archives"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: admin.inc.php:254
|
163 |
msgid "Other archives"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin.inc.php:255
|
167 |
msgid ""
|
168 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
169 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
172 |
"假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code><?php "
|
173 |
"if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code>"
|
174 |
|
175 |
+
#: admin.inc.php:258
|
176 |
msgid "Add a link to the plugin page as a final item in the list"
|
177 |
msgstr "在相关日志后添加插件页面的链接"
|
178 |
|
179 |
+
#: admin.inc.php:259
|
180 |
msgid " <em>Optional</em>"
|
181 |
msgstr " <em>可选</em>"
|
182 |
|
183 |
+
#: admin.inc.php:266
|
184 |
#, fuzzy
|
185 |
msgid "Output options"
|
186 |
msgstr "显示设置"
|
187 |
|
188 |
+
#: admin.inc.php:268
|
189 |
msgid "Title of related posts: "
|
190 |
msgstr "相关日志的标题:"
|
191 |
|
192 |
+
#: admin.inc.php:271
|
193 |
msgid "When there are no posts, what should be shown?"
|
194 |
msgstr "当不存在相关日志时,显示什么?"
|
195 |
|
196 |
+
#: admin.inc.php:275
|
197 |
msgid "Blank Output"
|
198 |
msgstr "不显示"
|
199 |
|
200 |
+
#: admin.inc.php:279
|
201 |
msgid "Display:"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin.inc.php:283 admin.inc.php:405
|
205 |
msgid "Show post excerpt in list?"
|
206 |
msgstr "是否显示日志摘要?"
|
207 |
|
208 |
+
#: admin.inc.php:286
|
209 |
msgid "Length of excerpt (in words): "
|
210 |
msgstr "摘要长度(词数):"
|
211 |
|
212 |
+
#: admin.inc.php:289
|
213 |
+
#, fuzzy
|
214 |
+
msgid "Show post author in list?"
|
215 |
+
msgstr "是否显示日志摘要?"
|
216 |
+
|
217 |
+
#: admin.inc.php:292
|
218 |
#, fuzzy
|
219 |
msgid "Show post date in list?"
|
220 |
msgstr "是否显示日志摘要?"
|
221 |
|
222 |
+
#: admin.inc.php:295
|
223 |
msgid "Limit post title length (in characters)"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin.inc.php:298
|
227 |
msgid "Open links in new window"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin.inc.php:301
|
231 |
msgid "Add nofollow attribute to links in the list"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: admin.inc.php:304
|
235 |
#, fuzzy
|
236 |
msgid "Exclude display of related posts on these posts / pages"
|
237 |
msgstr "添加相关日志到页面里"
|
238 |
|
239 |
+
#: admin.inc.php:307
|
240 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: admin.inc.php:310
|
244 |
msgid "Customize the output:"
|
245 |
msgstr "自定义显示:"
|
246 |
|
247 |
+
#: admin.inc.php:312
|
248 |
msgid "HTML to display before the list of posts: "
|
249 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
250 |
|
251 |
+
#: admin.inc.php:315
|
252 |
msgid "HTML to display before each list item: "
|
253 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
254 |
|
255 |
+
#: admin.inc.php:318
|
256 |
msgid "HTML to display after each list item: "
|
257 |
msgstr "显示在日志列表前面的 HTML 标签:"
|
258 |
|
259 |
+
#: admin.inc.php:321
|
260 |
msgid "HTML to display after the list of posts: "
|
261 |
msgstr "显示在日志列表后面的 HTML 标签:"
|
262 |
|
263 |
+
#: admin.inc.php:324
|
264 |
msgid "Post thumbnail options:"
|
265 |
msgstr "日志缩略图设置:"
|
266 |
|
267 |
+
#: admin.inc.php:326 admin.inc.php:408
|
268 |
msgid "Location of post thumbnail:"
|
269 |
msgstr "日志缩略图位置:"
|
270 |
|
271 |
+
#: admin.inc.php:330 admin.inc.php:412
|
272 |
msgid "Display thumbnails inline with posts, before title"
|
273 |
msgstr "在标题前显示缩略图"
|
274 |
|
275 |
+
#: admin.inc.php:334 admin.inc.php:416
|
276 |
msgid "Display thumbnails inline with posts, after title"
|
277 |
msgstr "在标题后显示缩略图"
|
278 |
|
279 |
+
#: admin.inc.php:338 admin.inc.php:420
|
280 |
msgid "Display only thumbnails, no text"
|
281 |
msgstr "不显示文本,只显示缩略图"
|
282 |
|
283 |
+
#: admin.inc.php:342 admin.inc.php:424
|
284 |
msgid "Do not display thumbnails, only text."
|
285 |
msgstr "不显示缩略图,只显示文本"
|
286 |
|
287 |
+
#: admin.inc.php:346 admin.inc.php:428
|
288 |
msgid "Maximum width of the thumbnail: "
|
289 |
msgstr "缩略图最大宽度"
|
290 |
|
291 |
+
#: admin.inc.php:349 admin.inc.php:431
|
292 |
msgid "Maximum height of the thumbnail: "
|
293 |
msgstr "缩略图最大高度"
|
294 |
|
295 |
+
#: admin.inc.php:352
|
296 |
+
msgid "Style attributes / Width and Height HTML attributes:"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: admin.inc.php:356
|
300 |
+
msgid ""
|
301 |
+
"Style attributes are used for width and height. <code>style=\"max-width:"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: admin.inc.php:360
|
305 |
+
msgid ""
|
306 |
+
"HTML width and height attributes are used for width and height. <code>width="
|
307 |
+
"\""
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: admin.inc.php:364
|
311 |
msgid "Use timthumb to generate thumbnails? "
|
312 |
msgstr "是否使用 timthumb 生成缩略图?"
|
313 |
|
314 |
+
#: admin.inc.php:366
|
315 |
msgid ""
|
316 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
317 |
"\">timthumb</a> will be used to generate thumbnails"
|
319 |
"勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
320 |
"\">timthumb</a> 生成缩略图"
|
321 |
|
322 |
+
#: admin.inc.php:369
|
323 |
msgid "Quality of thumbnails generated by timthumb"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin.inc.php:372
|
327 |
msgid ""
|
328 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
329 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: admin.inc.php:375
|
333 |
msgid "Post thumbnail meta field name: "
|
334 |
msgstr "日志缩略图自定义栏目的名称:"
|
335 |
|
336 |
+
#: admin.inc.php:377
|
337 |
msgid ""
|
338 |
"The value of this field should contain the image source and is set in the "
|
339 |
"<em>Add New Post</em> screen"
|
340 |
msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
|
341 |
|
342 |
+
#: admin.inc.php:380
|
343 |
msgid ""
|
344 |
"If the postmeta is not set, then should the plugin extract the first image "
|
345 |
"from the post?"
|
346 |
msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
|
347 |
|
348 |
+
#: admin.inc.php:382
|
349 |
msgid ""
|
350 |
"This can slow down the loading of your page if the first image in the "
|
351 |
"related posts is large in file-size"
|
352 |
msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
|
353 |
|
354 |
+
#: admin.inc.php:385
|
355 |
msgid "Use default thumbnail? "
|
356 |
msgstr "是否使用默认缩略图?"
|
357 |
|
358 |
+
#: admin.inc.php:387
|
359 |
msgid ""
|
360 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
361 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
362 |
msgstr ""
|
363 |
"勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
|
364 |
|
365 |
+
#: admin.inc.php:390
|
366 |
msgid "Default thumbnail: "
|
367 |
msgstr "默认缩略图:"
|
368 |
|
369 |
+
#: admin.inc.php:392
|
370 |
msgid ""
|
371 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
372 |
"then it will check the meta field. If this is not available, then it will "
|
375 |
"本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
|
376 |
"示上面默认图像"
|
377 |
|
378 |
+
#: admin.inc.php:398
|
379 |
#, fuzzy
|
380 |
msgid "Feed options"
|
381 |
msgstr "一般设置"
|
382 |
|
383 |
+
#: admin.inc.php:400
|
384 |
msgid ""
|
385 |
"Below options override the related posts settings for your blog feed. These "
|
386 |
"only apply if you have selected to add related posts to Feeds in the General "
|
387 |
"Options tab."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin.inc.php:437
|
391 |
msgid "Custom Styles"
|
392 |
msgstr "自定义样式"
|
393 |
|
394 |
+
#: admin.inc.php:439
|
395 |
msgid "Custom CSS to add to header:"
|
396 |
msgstr "添加自定义 CSS 到 header:"
|
397 |
|
398 |
+
#: admin.inc.php:442
|
399 |
#, fuzzy
|
400 |
msgid ""
|
401 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
405 |
"不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
|
406 |
"extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
|
407 |
|
408 |
+
#: admin.inc.php:447
|
409 |
msgid "Save Options"
|
410 |
msgstr "保存设置"
|
411 |
|
412 |
+
#: admin.inc.php:448
|
413 |
msgid "Default Options"
|
414 |
msgstr "默认设置"
|
415 |
|
416 |
+
#: admin.inc.php:448
|
417 |
msgid "Do you want to set options to Default?"
|
418 |
msgstr "是否要重置设置?"
|
419 |
|
420 |
+
#: admin.inc.php:449
|
421 |
msgid "Recreate Index"
|
422 |
msgstr "重建索引"
|
423 |
|
424 |
+
#: admin.inc.php:449
|
425 |
msgid "Are you sure you want to recreate the index?"
|
426 |
msgstr "是否要重建索引?"
|
427 |
|
428 |
+
#: admin.inc.php:473
|
429 |
msgid "Contextual Related Posts"
|
430 |
msgstr "Contextual Related Posts"
|
431 |
|
432 |
+
#: admin.inc.php:473 contextual-related-posts.php:314
|
433 |
msgid "Related Posts"
|
434 |
msgstr "相关日志"
|
435 |
|
436 |
+
#: admin.inc.php:486
|
437 |
msgid "plugin settings page"
|
438 |
msgstr "插件设置页面"
|
439 |
|
440 |
+
#: admin.inc.php:491
|
441 |
msgid ""
|
442 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
443 |
"visit the "
|
444 |
msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
|
445 |
|
446 |
+
#: admin.inc.php:491
|
447 |
msgid " to configure."
|
448 |
msgstr "设置插件。"
|
449 |
|
450 |
+
#: admin.inc.php:555
|
451 |
msgid ""
|
452 |
"An error occurred clearing the cache. Please contact your site administrator."
|
453 |
"\\n\\nError message:\\n"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin.inc.php:561
|
457 |
msgid " cached row(s) cleared"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: contextual-related-posts.php:123
|
461 |
+
#, fuzzy
|
462 |
+
msgid " Posted by "
|
463 |
+
msgstr "插件作者:"
|
464 |
+
|
465 |
+
#: contextual-related-posts.php:138
|
466 |
msgid "Powered by"
|
467 |
msgstr "插件作者:"
|
468 |
|
469 |
+
#: contextual-related-posts.php:313
|
470 |
msgid "Display Related Posts"
|
471 |
msgstr "显示相关日志"
|
472 |
|
473 |
+
#: contextual-related-posts.php:328
|
474 |
msgid "Title"
|
475 |
msgstr "标题"
|
476 |
|
477 |
+
#: contextual-related-posts.php:333
|
478 |
msgid "No. of posts"
|
479 |
msgstr "日志数量"
|
480 |
|
481 |
+
#: contextual-related-posts.php:338
|
482 |
msgid " Show excerpt?"
|
483 |
msgstr "是否显示日志摘要?"
|
484 |
|
485 |
+
#: contextual-related-posts.php:343
|
486 |
+
msgid " Show author?"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: contextual-related-posts.php:348
|
490 |
+
#, fuzzy
|
491 |
+
msgid " Show date?"
|
492 |
+
msgstr "是否显示日志摘要?"
|
493 |
+
|
494 |
+
#: contextual-related-posts.php:352
|
495 |
msgid "Thumbnail options"
|
496 |
msgstr "缩略图设置:"
|
497 |
|
498 |
+
#: contextual-related-posts.php:354
|
499 |
msgid "Thumbnails inline, before title"
|
500 |
msgstr "在标题前显示缩略图"
|
501 |
|
502 |
+
#: contextual-related-posts.php:355
|
503 |
msgid "Thumbnails inline, after title"
|
504 |
msgstr "在标题后显示缩略图"
|
505 |
|
506 |
+
#: contextual-related-posts.php:356
|
507 |
msgid "Only thumbnails, no text"
|
508 |
msgstr "不显示文本,只显示缩略图"
|
509 |
|
510 |
+
#: contextual-related-posts.php:357
|
511 |
msgid "No thumbnails, only text."
|
512 |
msgstr "不显示缩略图,只显示文本"
|
513 |
|
514 |
+
#: contextual-related-posts.php:362
|
515 |
#, fuzzy
|
516 |
msgid "Thumbnail height"
|
517 |
msgstr "缩略图设置:"
|
518 |
|
519 |
+
#: contextual-related-posts.php:367
|
520 |
#, fuzzy
|
521 |
msgid "Thumbnail width"
|
522 |
msgstr "缩略图设置:"
|
523 |
|
524 |
+
#: contextual-related-posts.php:463
|
525 |
msgid "<h3>Related Posts:</h3>"
|
526 |
msgstr "<h3>相关日志:</h3>"
|
527 |
|
528 |
+
#: contextual-related-posts.php:464
|
529 |
#, fuzzy
|
530 |
msgid "No related posts found"
|
531 |
msgstr "没有发现相关日志"
|
532 |
|
533 |
+
#: contextual-related-posts.php:807
|
534 |
msgid "Settings"
|
535 |
msgstr "设置"
|
536 |
|
537 |
+
#: contextual-related-posts.php:830
|
538 |
msgid "Donate"
|
539 |
msgstr "捐赠"
|
540 |
|
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.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
|
@@ -37,14 +37,32 @@ Contextual Related Posts is one of the most feature rich related posts plugins f
|
|
37 |
* Display excerpts in post. You can select the length of the excerpt in words
|
38 |
* Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
|
39 |
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
== Upgrade Notice ==
|
42 |
|
43 |
-
= 1.8.
|
44 |
-
* New:
|
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
= 1.8.8 =
|
49 |
* New: Clear cache button
|
50 |
* New: Option to add the date before the post title
|
@@ -274,10 +292,13 @@ The plugin uses <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthum
|
|
274 |
|
275 |
The following functions are available in case you wish to do a manual install of the posts by editing the theme files.
|
276 |
|
277 |
-
**echo_ald_crp()**
|
|
|
|
|
278 |
|
279 |
-
|
280 |
-
|
|
|
281 |
|
282 |
**get_crp_posts()**
|
283 |
|
@@ -293,9 +314,9 @@ Parameters:
|
|
293 |
|
294 |
= Shortcodes =
|
295 |
|
296 |
-
You can insert the related posts anywhere in your post using the `[crp]` shortcode. The plugin takes
|
297 |
|
298 |
-
`[crp limit="5" heading="1"]`
|
299 |
|
300 |
*limit* : Maximum number of posts to return. The actual number displayed may be lower depending on the matching algorithm and the category / post exclusion settings.
|
301 |
|
@@ -305,7 +326,17 @@ You can insert the related posts anywhere in your post using the `[crp]` shortco
|
|
305 |
<h3>Similar posts</h3>
|
306 |
[crp limit="2" heading="0"]
|
307 |
`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
|
|
|
309 |
|
310 |
== Wishlist ==
|
311 |
|
4 |
Donate link: http://ajaydsouza.com/donate/
|
5 |
Stable tag: trunk
|
6 |
Requires at least: 3.0
|
7 |
+
Tested up to: 3.7
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Display related posts on your WordPress blog and feed. Supports thumbnails, shortcodes, widgets and custom post types!
|
37 |
* Display excerpts in post. You can select the length of the excerpt in words
|
38 |
* Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
|
39 |
|
40 |
+
= Donations =
|
41 |
+
|
42 |
+
I spend a significant amount of my free time maintaing, updating and more importantly supporting this plugin. Those who have sought support in the support forums know that I have done by best to answer your question and solve your problem.
|
43 |
+
If you have been using this plugin and find this useful, do consider making a donation. This helps me pay for my hosting and domains.
|
44 |
+
|
45 |
|
46 |
== Upgrade Notice ==
|
47 |
|
48 |
+
= 1.8.9 =
|
49 |
+
* New: Select between CSS or HTML attributes for thumbnail width and height; Add author to posts; More options in the widget; More cache control;
|
50 |
+
Check the Changelog for more information
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.8.9 =
|
55 |
+
* New: Option to choose between using CSS styles or HTML attributes for thumbnail width and height. *HTML width and height attributes are default*
|
56 |
+
* New: Filters `crp_title` and `crp_heading_title` can be used to customise the Title of the posts and Heading Title of posts list respectively. Check out the FAQ for further information
|
57 |
+
* New: Option to add the author to the list of posts
|
58 |
+
* New: Options in the widget to show author and date
|
59 |
+
* New: Bypass cache option for `echo_ald_crp`. This is the default option. You can force the cache using `echo_ald_crp($cache=true)`
|
60 |
+
* Modified: Shortcodes are now stripped from excerpts
|
61 |
+
* Fixed: Lists for the widget and for in-post have independent caches to prevent overlap
|
62 |
+
* Modified: Saving widgets settings will clear the widget cache
|
63 |
+
* Fixed: Plugin will now create thumbnails from the first image in gallery custom posts
|
64 |
+
* Fixed: Uninstall script should now clean the cache as well
|
65 |
+
|
66 |
= 1.8.8 =
|
67 |
* New: Clear cache button
|
68 |
* New: Option to add the date before the post title
|
292 |
|
293 |
The following functions are available in case you wish to do a manual install of the posts by editing the theme files.
|
294 |
|
295 |
+
**echo_ald_crp($cache=0)**
|
296 |
+
|
297 |
+
Echoes the list of posts wherever you add the this function. You can also use this function to display related posts on any type of page generated by WordPress including homepage and archive pages.
|
298 |
|
299 |
+
Usage: `<?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?>` to your template file where you want the related posts to be displayed.
|
300 |
+
|
301 |
+
From v1.8.9, this function will bypass the cache. If you'd like to cache the output, use the following code: `<?php if(function_exists('echo_ald_crp')) echo_ald_crp(1); ?>`
|
302 |
|
303 |
**get_crp_posts()**
|
304 |
|
314 |
|
315 |
= Shortcodes =
|
316 |
|
317 |
+
You can insert the related posts anywhere in your post using the `[crp]` shortcode. The plugin takes three optional attributes `limit`, `heading` and `cache` as follows:
|
318 |
|
319 |
+
`[crp limit="5" heading="1" cache="1"]`
|
320 |
|
321 |
*limit* : Maximum number of posts to return. The actual number displayed may be lower depending on the matching algorithm and the category / post exclusion settings.
|
322 |
|
326 |
<h3>Similar posts</h3>
|
327 |
[crp limit="2" heading="0"]
|
328 |
`
|
329 |
+
*cache* : Cache the output or not? By default the output will be cached for the post you add the shortcode in. You can override this by specifying `cache=0`
|
330 |
+
|
331 |
+
= Filters =
|
332 |
+
|
333 |
+
The plugin includes the following filters that allows you to customise the output for several section using <a href="http://codex.wordpress.org/Function_Reference/add_filter">add_filter</a>.
|
334 |
+
|
335 |
+
*crp_heading_title* : Filter for heading title of the posts. This is the text that you enter under *Output options > Title of related posts*
|
336 |
+
|
337 |
+
*crp_title* : Filter for the post title for each of the related posts
|
338 |
|
339 |
+
I'll be adding more filters eventually. If you are looking for any particular filter do raise a post in the <a href="http://wordpress.org/support/plugin/contextual-related-posts">support forum</a> requesting the same.
|
340 |
|
341 |
== Wishlist ==
|
342 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
uninstall.php
CHANGED
@@ -14,5 +14,13 @@ if ( !defined('ABSPATH') && !defined('WP_UNINSTALL_PLUGIN') ) {
|
|
14 |
$sql = "ALTER TABLE $poststable DROP INDEX crp_related_content";
|
15 |
$wpdb->query($sql);
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
delete_option('ald_crp_settings');
|
18 |
?>
|
14 |
$sql = "ALTER TABLE $poststable DROP INDEX crp_related_content";
|
15 |
$wpdb->query($sql);
|
16 |
|
17 |
+
$sql = "ALTER TABLE $poststable DROP INDEX crp_related_content";
|
18 |
+
$wpdb->query($sql);
|
19 |
+
|
20 |
+
$wpdb->query("
|
21 |
+
DELETE FROM " . $wpdb->postmeta . "
|
22 |
+
WHERE meta_key='crp_related_posts'
|
23 |
+
");
|
24 |
+
|
25 |
delete_option('ald_crp_settings');
|
26 |
?>
|