Version Description
- New: Clear cache button and option to add the date before the post title
=
Download this release
Release Info
Developer | Ajay |
Plugin | Contextual Related Posts |
Version | 1.8.8 |
Comparing to | |
See all releases |
Code changes from version 1.8.7 to 1.8.8
- admin.inc.php +75 -10
- contextual-related-posts.php +139 -38
- languages/crp-da_DK.mo +0 -0
- languages/crp-da_DK.po +123 -109
- languages/crp-de_DE.mo +0 -0
- languages/crp-de_DE.po +124 -109
- languages/crp-en_US.mo +0 -0
- languages/crp-en_US.po +123 -109
- languages/crp-en_US.pot +123 -109
- languages/crp-es_ES.mo +0 -0
- languages/crp-es_ES.po +124 -109
- languages/crp-it_IT.mo +0 -0
- languages/crp-it_IT.po +124 -109
- languages/crp-lt_LT.mo +0 -0
- languages/crp-lt_LT.po +124 -109
- languages/crp-nl_NL.mo +0 -0
- languages/crp-nl_NL.po +124 -109
- languages/crp-ru_RU.mo +0 -0
- languages/crp-ru_RU.po +124 -109
- languages/crp-zh_CN.mo +0 -0
- languages/crp-zh_CN.po +127 -109
- readme.txt +6 -3
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
admin.inc.php
CHANGED
@@ -4,6 +4,12 @@
|
|
4 |
*********************************************************************/
|
5 |
if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
function crp_options() {
|
8 |
|
9 |
global $wpdb;
|
@@ -55,6 +61,7 @@ function crp_options() {
|
|
55 |
$crp_settings['scan_images'] = (isset($_POST['scan_images']) ? true : false);
|
56 |
$crp_settings['show_excerpt'] = (isset($_POST['show_excerpt']) ? true : false);
|
57 |
$crp_settings['excerpt_length'] = intval($_POST['excerpt_length']);
|
|
|
58 |
$crp_settings['show_credit'] = (isset($_POST['show_credit']) ? true : false);
|
59 |
$crp_settings['custom_CSS'] = wp_kses_post($_POST['custom_CSS']);
|
60 |
|
@@ -81,7 +88,7 @@ function crp_options() {
|
|
81 |
$wp_post_types = get_post_types( array(
|
82 |
'public' => true,
|
83 |
) );
|
84 |
-
$post_types_arr = (is_array($_POST['post_types'])) ? $_POST['post_types'] : array('post' => 'post');
|
85 |
$post_types = array_intersect($wp_post_types, $post_types_arr);
|
86 |
$crp_settings['post_types'] = http_build_query($post_types, '', '&');
|
87 |
|
@@ -186,6 +193,7 @@ function crp_options() {
|
|
186 |
<tr><th scope="row"><label for="cache"><?php _e('Cache output?',CRP_LOCAL_NAME); ?></label></th>
|
187 |
<td><input type="checkbox" name="cache" id="cache" <?php if ($crp_settings['cache']) echo 'checked="checked"' ?> />
|
188 |
<p class="description"><?php _e('Enabling this option will cache the related posts output when the post is visited the first time. The cache is cleaned when you save this page.',CRP_LOCAL_NAME); ?></p>
|
|
|
189 |
</td>
|
190 |
</tr>
|
191 |
<tr><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
|
@@ -195,18 +203,15 @@ function crp_options() {
|
|
195 |
<td><input type="textbox" name="daily_range" id="daily_range" value="<?php echo esc_attr(stripslashes($crp_settings['daily_range'])); ?>"><?php _e('days',CRP_LOCAL_NAME); ?></td>
|
196 |
</tr>
|
197 |
<tr><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
|
198 |
-
|
199 |
-
<select name="post_types[]" multiple="multiple" size="<?php echo min(20,count($wp_post_types)); ?>">
|
200 |
<?php foreach ($wp_post_types as $wp_post_type) {
|
201 |
-
$post_type_op = '<
|
202 |
-
if (in_array($wp_post_type, $posts_types_inc)) $post_type_op .= '
|
203 |
-
$post_type_op .= '
|
204 |
echo $post_type_op;
|
205 |
}
|
206 |
?>
|
207 |
-
</
|
208 |
-
<p class="description"><?php _e('Use CTRL on Windows and COMMAND on Mac to select multiple items',CRP_LOCAL_NAME); ?></p>
|
209 |
-
</td>
|
210 |
</tr>
|
211 |
<tr><th scope="row"><label for="match_content"><?php _e('Find related posts based on content as well as title',CRP_LOCAL_NAME); ?></label></th>
|
212 |
<td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings['match_content']) echo 'checked="checked"' ?> />
|
@@ -278,6 +283,9 @@ function crp_options() {
|
|
278 |
<tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',CRP_LOCAL_NAME); ?></label></th>
|
279 |
<td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($crp_settings['excerpt_length']); ?>" /></td>
|
280 |
</tr>
|
|
|
|
|
|
|
281 |
<tr><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',CRP_LOCAL_NAME); ?></label></th>
|
282 |
<td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($crp_settings['title_length']); ?>" /></td>
|
283 |
</tr>
|
@@ -436,6 +444,12 @@ function crp_options() {
|
|
436 |
}
|
437 |
|
438 |
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
function crp_adminmenu() {
|
440 |
if ((function_exists('add_options_page'))) {
|
441 |
$plugin_page = add_options_page(__("Contextual Related Posts", CRP_LOCAL_NAME), __("Related Posts", CRP_LOCAL_NAME), 'manage_options', 'crp_options', 'crp_options');
|
@@ -444,7 +458,12 @@ function crp_adminmenu() {
|
|
444 |
}
|
445 |
add_action('admin_menu', 'crp_adminmenu');
|
446 |
|
447 |
-
|
|
|
|
|
|
|
|
|
|
|
448 |
function crp_admin_notice() {
|
449 |
$plugin_settings_page = '<a href="' . admin_url( 'options-general.php?page=crp_options' ) . '">' . __('plugin settings page', CRP_LOCAL_NAME ) . '</a>';
|
450 |
|
@@ -456,6 +475,12 @@ function crp_admin_notice() {
|
|
456 |
}
|
457 |
// add_action('admin_notices', 'crp_admin_notice');
|
458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
function crp_adminhead() {
|
460 |
global $crp_url;
|
461 |
|
@@ -464,16 +489,56 @@ function crp_adminhead() {
|
|
464 |
<link rel="stylesheet" type="text/css" href="<?php echo $crp_url ?>/admin-styles.css" />
|
465 |
<link rel="stylesheet" type="text/css" href="<?php echo $crp_url ?>/tabber/tabber.css" />
|
466 |
<script type="text/javascript" language="JavaScript">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
467 |
function checkForm() {
|
468 |
answer = true;
|
469 |
if (siw && siw.selectingSomething)
|
470 |
answer = false;
|
471 |
return answer;
|
472 |
}//
|
|
|
473 |
</script>
|
474 |
<script type="text/javascript" src="<?php echo $crp_url ?>/wick/sample_data.js.php"></script>
|
475 |
<script type="text/javascript" src="<?php echo $crp_url ?>/wick/wick.js"></script>
|
476 |
<script type="text/javascript" src="<?php echo $crp_url ?>/tabber/tabber-minimized.js"></script>
|
477 |
<?php }
|
478 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
479 |
?>
|
4 |
*********************************************************************/
|
5 |
if (!defined('ABSPATH')) die("Aren't you supposed to come here via WP-Admin?");
|
6 |
|
7 |
+
/**
|
8 |
+
* Plugin settings page.
|
9 |
+
*
|
10 |
+
* @access public
|
11 |
+
* @return void
|
12 |
+
*/
|
13 |
function crp_options() {
|
14 |
|
15 |
global $wpdb;
|
61 |
$crp_settings['scan_images'] = (isset($_POST['scan_images']) ? true : false);
|
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 |
|
88 |
$wp_post_types = get_post_types( array(
|
89 |
'public' => true,
|
90 |
) );
|
91 |
+
$post_types_arr = (isset($_POST['post_types']) && is_array($_POST['post_types'])) ? $_POST['post_types'] : array('post' => 'post');
|
92 |
$post_types = array_intersect($wp_post_types, $post_types_arr);
|
93 |
$crp_settings['post_types'] = http_build_query($post_types, '', '&');
|
94 |
|
193 |
<tr><th scope="row"><label for="cache"><?php _e('Cache output?',CRP_LOCAL_NAME); ?></label></th>
|
194 |
<td><input type="checkbox" name="cache" id="cache" <?php if ($crp_settings['cache']) echo 'checked="checked"' ?> />
|
195 |
<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>
|
196 |
+
<p><input type="button" value="<?php _e('Clear cache',CRP_LOCAL_NAME) ?>" onclick="return clearCache();" class="button-secondary" /></p>
|
197 |
</td>
|
198 |
</tr>
|
199 |
<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="daily_range" id="daily_range" value="<?php echo esc_attr(stripslashes($crp_settings['daily_range'])); ?>"><?php _e('days',CRP_LOCAL_NAME); ?></td>
|
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>
|
|
|
207 |
<?php foreach ($wp_post_types as $wp_post_type) {
|
208 |
+
$post_type_op = '<input type="checkbox" name="post_types[]" value="'.$wp_post_type.'" ';
|
209 |
+
if (in_array($wp_post_type, $posts_types_inc)) $post_type_op .= ' checked="checked" ';
|
210 |
+
$post_type_op .= ' />'.$wp_post_type.' ';
|
211 |
echo $post_type_op;
|
212 |
}
|
213 |
?>
|
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 |
<td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings['match_content']) echo 'checked="checked"' ?> />
|
283 |
<tr><th scope="row"><label for="excerpt_length"><?php _e('Length of excerpt (in words): ',CRP_LOCAL_NAME); ?></label></th>
|
284 |
<td><input type="textbox" name="excerpt_length" id="excerpt_length" value="<?php echo stripslashes($crp_settings['excerpt_length']); ?>" /></td>
|
285 |
</tr>
|
286 |
+
<tr><th scope="row"><label for="show_date"><?php _e('Show post date in list?',CRP_LOCAL_NAME); ?></label></th>
|
287 |
+
<td><input type="checkbox" name="show_date" id="show_date" <?php if ($crp_settings['show_date']) echo 'checked="checked"' ?> /></td>
|
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 |
<td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($crp_settings['title_length']); ?>" /></td>
|
291 |
</tr>
|
444 |
}
|
445 |
|
446 |
|
447 |
+
/**
|
448 |
+
* Add a link under Settings to the plugins settings page.
|
449 |
+
*
|
450 |
+
* @access public
|
451 |
+
* @return void
|
452 |
+
*/
|
453 |
function crp_adminmenu() {
|
454 |
if ((function_exists('add_options_page'))) {
|
455 |
$plugin_page = add_options_page(__("Contextual Related Posts", CRP_LOCAL_NAME), __("Related Posts", CRP_LOCAL_NAME), 'manage_options', 'crp_options', 'crp_options');
|
458 |
}
|
459 |
add_action('admin_menu', 'crp_adminmenu');
|
460 |
|
461 |
+
/**
|
462 |
+
* Function to add a notice to the admin page.
|
463 |
+
*
|
464 |
+
* @access public
|
465 |
+
* @return string Echoed string
|
466 |
+
*/
|
467 |
function crp_admin_notice() {
|
468 |
$plugin_settings_page = '<a href="' . admin_url( 'options-general.php?page=crp_options' ) . '">' . __('plugin settings page', CRP_LOCAL_NAME ) . '</a>';
|
469 |
|
475 |
}
|
476 |
// add_action('admin_notices', 'crp_admin_notice');
|
477 |
|
478 |
+
/**
|
479 |
+
* Function to add CSS and JS to the Admin header.
|
480 |
+
*
|
481 |
+
* @access public
|
482 |
+
* @return void
|
483 |
+
*/
|
484 |
function crp_adminhead() {
|
485 |
global $crp_url;
|
486 |
|
489 |
<link rel="stylesheet" type="text/css" href="<?php echo $crp_url ?>/admin-styles.css" />
|
490 |
<link rel="stylesheet" type="text/css" href="<?php echo $crp_url ?>/tabber/tabber.css" />
|
491 |
<script type="text/javascript" language="JavaScript">
|
492 |
+
//<![CDATA[
|
493 |
+
function clearCache() {
|
494 |
+
// since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
|
495 |
+
jQuery.post(ajaxurl, {action: 'crp_clear_cache'}, function(response, textStatus, jqXHR) {
|
496 |
+
alert( response.message );
|
497 |
+
}, 'json');
|
498 |
+
}
|
499 |
+
|
500 |
function checkForm() {
|
501 |
answer = true;
|
502 |
if (siw && siw.selectingSomething)
|
503 |
answer = false;
|
504 |
return answer;
|
505 |
}//
|
506 |
+
//]]>
|
507 |
</script>
|
508 |
<script type="text/javascript" src="<?php echo $crp_url ?>/wick/sample_data.js.php"></script>
|
509 |
<script type="text/javascript" src="<?php echo $crp_url ?>/wick/wick.js"></script>
|
510 |
<script type="text/javascript" src="<?php echo $crp_url ?>/tabber/tabber-minimized.js"></script>
|
511 |
<?php }
|
512 |
|
513 |
+
|
514 |
+
/**
|
515 |
+
* Function to clear the CRP Cache with Ajax.
|
516 |
+
*
|
517 |
+
* @access public
|
518 |
+
* @return void
|
519 |
+
*/
|
520 |
+
function crp_ajax_clearcache() {
|
521 |
+
global $wpdb; // this is how you get access to the database
|
522 |
+
|
523 |
+
$rows = $wpdb->query("
|
524 |
+
DELETE FROM " . $wpdb->postmeta . "
|
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(),
|
533 |
+
)));
|
534 |
+
// No error, return the number of
|
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');
|
542 |
+
|
543 |
+
|
544 |
?>
|
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
|
@@ -45,8 +45,15 @@ add_action('init', 'ald_crp_init');
|
|
45 |
global $crp_settings;
|
46 |
$crp_settings = crp_read_options();
|
47 |
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
function ald_crp( $args ) {
|
|
|
50 |
global $crp_settings;
|
51 |
|
52 |
$defaults = array(
|
@@ -61,27 +68,12 @@ function ald_crp( $args ) {
|
|
61 |
// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
|
62 |
extract( $args, EXTR_SKIP );
|
63 |
|
64 |
-
return get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_height, $thumb_width);
|
65 |
-
}
|
66 |
-
|
67 |
-
// Main function that returns the posts
|
68 |
-
function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_height, $thumb_width) {
|
69 |
-
global $wpdb, $post, $single;
|
70 |
-
|
71 |
-
global $crp_settings;
|
72 |
-
|
73 |
//Support caching to speed up retrieval
|
74 |
if ( !empty($crp_settings['cache']) ) {
|
75 |
$output = get_post_meta($post->ID, 'crp_related_posts', true);
|
76 |
if ( $output ) return $output;
|
77 |
}
|
78 |
|
79 |
-
if (empty($limit)) $limit = stripslashes($crp_settings['limit']);
|
80 |
-
if (!isset($show_excerpt)) $show_excerpt = $crp_settings['show_excerpt'];
|
81 |
-
if (empty($post_thumb_op)) $post_thumb_op = stripslashes($crp_settings['post_thumb_op']);
|
82 |
-
if (empty($thumb_height)) $thumb_height = stripslashes($crp_settings['thumb_height']);
|
83 |
-
if (empty($thumb_width)) $thumb_width = stripslashes($crp_settings['thumb_width']);
|
84 |
-
|
85 |
$exclude_categories = explode(',',$crp_settings['exclude_categories']);
|
86 |
|
87 |
$rel_attribute = (($crp_settings['link_nofollow']) ? ' rel="nofollow" ' : ' ' );
|
@@ -99,6 +91,7 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_heigh
|
|
99 |
$output .= $crp_settings['before_list'];
|
100 |
|
101 |
foreach($results as $result) {
|
|
|
102 |
$categorys = get_the_category($result->ID); //Fetch categories of the plugin
|
103 |
$p_in_c = false; // Variable to check if post exists in a particular category
|
104 |
$title = crp_max_formatted_content(get_the_title($result->ID),$crp_settings['title_length']);
|
@@ -122,7 +115,9 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_heigh
|
|
122 |
if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
|
123 |
$output .= '<a href="'.get_permalink($result->ID).'" '.$rel_attribute.' '.$target_attribute.' class="crp_title">'.$title.'</a>'; // Add title when required by settings
|
124 |
}
|
125 |
-
|
|
|
|
|
126 |
if ($show_excerpt) {
|
127 |
$output .= '<span class="crp_excerpt"> '.crp_excerpt($result->ID,$crp_settings['excerpt_length']).'</span>';
|
128 |
}
|
@@ -154,7 +149,16 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_heigh
|
|
154 |
return $output;
|
155 |
}
|
156 |
|
157 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
function get_crp_posts($postid = FALSE, $limit = FALSE, $strict_limit = TRUE) {
|
159 |
global $wpdb, $post, $single;
|
160 |
|
@@ -212,7 +216,14 @@ function get_crp_posts($postid = FALSE, $limit = FALSE, $strict_limit = TRUE) {
|
|
212 |
return $results;
|
213 |
}
|
214 |
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
function ald_crp_content($content) {
|
217 |
|
218 |
global $single, $post;
|
@@ -242,7 +253,14 @@ function ald_crp_content($content) {
|
|
242 |
}
|
243 |
add_filter('the_content', 'ald_crp_content');
|
244 |
|
245 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
function ald_crp_rss($content) {
|
247 |
global $post;
|
248 |
global $crp_settings;
|
@@ -260,7 +278,12 @@ add_filter('the_excerpt_rss', 'ald_crp_rss');
|
|
260 |
add_filter('the_content_feed', 'ald_crp_rss');
|
261 |
|
262 |
|
263 |
-
|
|
|
|
|
|
|
|
|
|
|
264 |
function echo_ald_crp() {
|
265 |
echo ald_crp('is_widget=0');
|
266 |
}
|
@@ -268,7 +291,11 @@ function echo_ald_crp() {
|
|
268 |
/*********************************************************************
|
269 |
* WordPress Widgets *
|
270 |
********************************************************************/
|
271 |
-
|
|
|
|
|
|
|
|
|
272 |
class WidgetCRP extends WP_Widget
|
273 |
{
|
274 |
function WidgetCRP()
|
@@ -371,7 +398,14 @@ add_action('init', 'init_ald_crp', 1);
|
|
371 |
/*********************************************************************
|
372 |
* Shortcode functions *
|
373 |
********************************************************************/
|
374 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
375 |
function crp_shortcode( $atts, $content = null ) {
|
376 |
extract( shortcode_atts( array(
|
377 |
'limit' => '5',
|
@@ -387,7 +421,12 @@ add_shortcode( 'crp', 'crp_shortcode' );
|
|
387 |
/*********************************************************************
|
388 |
* Default options *
|
389 |
********************************************************************/
|
390 |
-
|
|
|
|
|
|
|
|
|
|
|
391 |
function crp_default_options() {
|
392 |
global $crp_url;
|
393 |
$title = __('<h3>Related Posts:</h3>',CRP_LOCAL_NAME);
|
@@ -433,7 +472,8 @@ function crp_default_options() {
|
|
433 |
'thumb_timthumb' => true, // Use timthumb
|
434 |
'thumb_timthumb_q' => '75', // Quality attribute for timthumb
|
435 |
'scan_images' => false, // Scan post for images
|
436 |
-
'show_excerpt' => false, // Show
|
|
|
437 |
'excerpt_length' => '10', // Length of characters
|
438 |
'title_length' => '60', // Limit length of post title
|
439 |
'post_types' => $post_types, // WordPress custom post types
|
@@ -449,7 +489,12 @@ function crp_default_options() {
|
|
449 |
return $crp_settings;
|
450 |
}
|
451 |
|
452 |
-
|
|
|
|
|
|
|
|
|
|
|
453 |
function crp_read_options()
|
454 |
{
|
455 |
$crp_settings_changed = false;
|
@@ -471,8 +516,12 @@ function crp_read_options()
|
|
471 |
|
472 |
}
|
473 |
|
474 |
-
|
475 |
-
|
|
|
|
|
|
|
|
|
476 |
function crp_header() {
|
477 |
global $wpdb, $post, $single;
|
478 |
|
@@ -498,8 +547,15 @@ function crp_header() {
|
|
498 |
}
|
499 |
}
|
500 |
}
|
|
|
501 |
|
502 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
503 |
function ald_crp_activate() {
|
504 |
global $wpdb;
|
505 |
|
@@ -522,7 +578,17 @@ if (function_exists('register_activation_hook')) {
|
|
522 |
/*********************************************************************
|
523 |
* Utility Functions *
|
524 |
********************************************************************/
|
525 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
function crp_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q) {
|
527 |
global $crp_url;
|
528 |
|
@@ -535,7 +601,14 @@ function crp_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthu
|
|
535 |
}
|
536 |
add_filter('crp_postimage', 'crp_scale_thumbs', 10, 5);
|
537 |
|
538 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
function crp_get_the_post_thumbnail($args = array()) {
|
540 |
|
541 |
$defaults = array(
|
@@ -591,7 +664,15 @@ function crp_get_the_post_thumbnail($args = array()) {
|
|
591 |
return $output;
|
592 |
}
|
593 |
|
594 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
595 |
function crp_excerpt($id,$excerpt_length){
|
596 |
$content = get_post($id)->post_excerpt;
|
597 |
if ($content=='') $content = get_post($id)->post_content;
|
@@ -614,7 +695,15 @@ function crp_excerpt($id,$excerpt_length){
|
|
614 |
return $out;
|
615 |
}
|
616 |
|
617 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
618 |
function crp_max_formatted_content($content, $MaxLength = -1) {
|
619 |
$content = strip_tags($content); // Remove CRLFs, leaving space in their wake
|
620 |
|
@@ -635,12 +724,16 @@ function crp_max_formatted_content($content, $MaxLength = -1) {
|
|
635 |
/*********************************************************************
|
636 |
* Admin Functions *
|
637 |
********************************************************************/
|
638 |
-
// This function adds an Options page in WP Admin
|
639 |
if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
|
640 |
require_once(ALD_CRP_DIR . "/admin.inc.php");
|
641 |
|
642 |
-
|
643 |
-
|
|
|
|
|
|
|
|
|
|
|
644 |
function crp_plugin_actions_links( $links ) {
|
645 |
|
646 |
return array_merge(
|
@@ -651,8 +744,16 @@ if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
|
|
651 |
);
|
652 |
|
653 |
}
|
|
|
654 |
|
655 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
656 |
function crp_plugin_actions( $links, $file ) {
|
657 |
static $plugin;
|
658 |
if (!$plugin) $plugin = plugin_basename(__FILE__);
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Contextual Related Posts
|
4 |
+
Version: 1.8.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
|
45 |
global $crp_settings;
|
46 |
$crp_settings = crp_read_options();
|
47 |
|
48 |
+
/**
|
49 |
+
* Main function to generate the related posts output
|
50 |
+
*
|
51 |
+
* @access public
|
52 |
+
* @param mixed $args Parameters in a query string format
|
53 |
+
* @return string HTML formatted list of related posts
|
54 |
+
*/
|
55 |
function ald_crp( $args ) {
|
56 |
+
global $wpdb, $post, $single;
|
57 |
global $crp_settings;
|
58 |
|
59 |
$defaults = array(
|
68 |
// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
|
69 |
extract( $args, EXTR_SKIP );
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
//Support caching to speed up retrieval
|
72 |
if ( !empty($crp_settings['cache']) ) {
|
73 |
$output = get_post_meta($post->ID, 'crp_related_posts', true);
|
74 |
if ( $output ) return $output;
|
75 |
}
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
$exclude_categories = explode(',',$crp_settings['exclude_categories']);
|
78 |
|
79 |
$rel_attribute = (($crp_settings['link_nofollow']) ? ' rel="nofollow" ' : ' ' );
|
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),$crp_settings['title_length']);
|
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 |
+
}
|
121 |
if ($show_excerpt) {
|
122 |
$output .= '<span class="crp_excerpt"> '.crp_excerpt($result->ID,$crp_settings['excerpt_length']).'</span>';
|
123 |
}
|
149 |
return $output;
|
150 |
}
|
151 |
|
152 |
+
|
153 |
+
/**
|
154 |
+
* Fetch related posts as an array.
|
155 |
+
*
|
156 |
+
* @access public
|
157 |
+
* @param int $postid (default: FALSE) The post ID for which you want the posts for
|
158 |
+
* @param int $limit (default: FALSE) Maximum posts to retreive
|
159 |
+
* @param boolean $strict_limit (default: TRUE) Setting to true will fetch exactly as per limit above
|
160 |
+
* @return array Array of Post IDs
|
161 |
+
*/
|
162 |
function get_crp_posts($postid = FALSE, $limit = FALSE, $strict_limit = TRUE) {
|
163 |
global $wpdb, $post, $single;
|
164 |
|
216 |
return $results;
|
217 |
}
|
218 |
|
219 |
+
|
220 |
+
/**
|
221 |
+
* Filter for 'the_content' to add the related posts.
|
222 |
+
*
|
223 |
+
* @access public
|
224 |
+
* @param string $content
|
225 |
+
* @return string After the filter has been processed
|
226 |
+
*/
|
227 |
function ald_crp_content($content) {
|
228 |
|
229 |
global $single, $post;
|
253 |
}
|
254 |
add_filter('the_content', 'ald_crp_content');
|
255 |
|
256 |
+
|
257 |
+
/**
|
258 |
+
* Filter to add related posts to feeds.
|
259 |
+
*
|
260 |
+
* @access public
|
261 |
+
* @param string $content
|
262 |
+
* @return string
|
263 |
+
*/
|
264 |
function ald_crp_rss($content) {
|
265 |
global $post;
|
266 |
global $crp_settings;
|
278 |
add_filter('the_content_feed', 'ald_crp_rss');
|
279 |
|
280 |
|
281 |
+
/**
|
282 |
+
* Manual install of the related posts.
|
283 |
+
*
|
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 |
}
|
291 |
/*********************************************************************
|
292 |
* WordPress Widgets *
|
293 |
********************************************************************/
|
294 |
+
/**
|
295 |
+
* Create a Wordpress Widget for CRP.
|
296 |
+
*
|
297 |
+
* @extends WP_Widget
|
298 |
+
*/
|
299 |
class WidgetCRP extends WP_Widget
|
300 |
{
|
301 |
function WidgetCRP()
|
398 |
/*********************************************************************
|
399 |
* Shortcode functions *
|
400 |
********************************************************************/
|
401 |
+
/**
|
402 |
+
* Creates a shortcode [crp limit="5" heading="1"].
|
403 |
+
*
|
404 |
+
* @access public
|
405 |
+
* @param array $atts
|
406 |
+
* @param string $content (default: null)
|
407 |
+
* @return void
|
408 |
+
*/
|
409 |
function crp_shortcode( $atts, $content = null ) {
|
410 |
extract( shortcode_atts( array(
|
411 |
'limit' => '5',
|
421 |
/*********************************************************************
|
422 |
* Default options *
|
423 |
********************************************************************/
|
424 |
+
/**
|
425 |
+
* Default options.
|
426 |
+
*
|
427 |
+
* @access public
|
428 |
+
* @return array
|
429 |
+
*/
|
430 |
function crp_default_options() {
|
431 |
global $crp_url;
|
432 |
$title = __('<h3>Related Posts:</h3>',CRP_LOCAL_NAME);
|
472 |
'thumb_timthumb' => true, // Use timthumb
|
473 |
'thumb_timthumb_q' => '75', // Quality attribute for timthumb
|
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
|
489 |
return $crp_settings;
|
490 |
}
|
491 |
|
492 |
+
/**
|
493 |
+
* Function to read options from the database.
|
494 |
+
*
|
495 |
+
* @access public
|
496 |
+
* @return array
|
497 |
+
*/
|
498 |
function crp_read_options()
|
499 |
{
|
500 |
$crp_settings_changed = false;
|
516 |
|
517 |
}
|
518 |
|
519 |
+
/**
|
520 |
+
* Header function.
|
521 |
+
*
|
522 |
+
* @access public
|
523 |
+
* @return etring Echoed string with the CSS output in the Header
|
524 |
+
*/
|
525 |
function crp_header() {
|
526 |
global $wpdb, $post, $single;
|
527 |
|
547 |
}
|
548 |
}
|
549 |
}
|
550 |
+
add_action('wp_head','crp_header');
|
551 |
|
552 |
+
|
553 |
+
/**
|
554 |
+
* Create full text index on activation.
|
555 |
+
*
|
556 |
+
* @access public
|
557 |
+
* @return void
|
558 |
+
*/
|
559 |
function ald_crp_activate() {
|
560 |
global $wpdb;
|
561 |
|
578 |
/*********************************************************************
|
579 |
* Utility Functions *
|
580 |
********************************************************************/
|
581 |
+
/**
|
582 |
+
* Filter function to resize post thumbnail. Filters: crp_postimage.
|
583 |
+
*
|
584 |
+
* @access public
|
585 |
+
* @param string $postimage
|
586 |
+
* @param strint|int $thumb_width
|
587 |
+
* @param strint|int $thumb_height
|
588 |
+
* @param boolean $thumb_timthumb
|
589 |
+
* @param strint|int $thumb_timthumb_q
|
590 |
+
* @return string Post image output
|
591 |
+
*/
|
592 |
function crp_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q) {
|
593 |
global $crp_url;
|
594 |
|
601 |
}
|
602 |
add_filter('crp_postimage', 'crp_scale_thumbs', 10, 5);
|
603 |
|
604 |
+
|
605 |
+
/**
|
606 |
+
* Function to get the post thumbnail.
|
607 |
+
*
|
608 |
+
* @access public
|
609 |
+
* @param array|string $args (default: array()) Array / Query string with arguments post thumbnails
|
610 |
+
* @return string Output with the post thumbnail
|
611 |
+
*/
|
612 |
function crp_get_the_post_thumbnail($args = array()) {
|
613 |
|
614 |
$defaults = array(
|
664 |
return $output;
|
665 |
}
|
666 |
|
667 |
+
|
668 |
+
/**
|
669 |
+
* Function to create an excerpt for the post.
|
670 |
+
*
|
671 |
+
* @access public
|
672 |
+
* @param int $id Post ID
|
673 |
+
* @param int|string $excerpt_length Length of the excerpt in words
|
674 |
+
* @return string Excerpt
|
675 |
+
*/
|
676 |
function crp_excerpt($id,$excerpt_length){
|
677 |
$content = get_post($id)->post_excerpt;
|
678 |
if ($content=='') $content = get_post($id)->post_content;
|
695 |
return $out;
|
696 |
}
|
697 |
|
698 |
+
|
699 |
+
/**
|
700 |
+
* Function to limit content by characters.
|
701 |
+
*
|
702 |
+
* @access public
|
703 |
+
* @param string $content Content to be used to make an excerpt
|
704 |
+
* @param int $MaxLength (default: -1) Maximum length of excerpt in characters
|
705 |
+
* @return string Formatted content
|
706 |
+
*/
|
707 |
function crp_max_formatted_content($content, $MaxLength = -1) {
|
708 |
$content = strip_tags($content); // Remove CRLFs, leaving space in their wake
|
709 |
|
724 |
/*********************************************************************
|
725 |
* Admin Functions *
|
726 |
********************************************************************/
|
|
|
727 |
if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
|
728 |
require_once(ALD_CRP_DIR . "/admin.inc.php");
|
729 |
|
730 |
+
/**
|
731 |
+
* Filter to add link to WordPress plugin action links.
|
732 |
+
*
|
733 |
+
* @access public
|
734 |
+
* @param array $links
|
735 |
+
* @return array
|
736 |
+
*/
|
737 |
function crp_plugin_actions_links( $links ) {
|
738 |
|
739 |
return array_merge(
|
744 |
);
|
745 |
|
746 |
}
|
747 |
+
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'crp_plugin_actions_links' );
|
748 |
|
749 |
+
/**
|
750 |
+
* Filter to add links to the plugin action row.
|
751 |
+
*
|
752 |
+
* @access public
|
753 |
+
* @param array $links
|
754 |
+
* @param array $file
|
755 |
+
* @return void
|
756 |
+
*/
|
757 |
function crp_plugin_actions( $links, $file ) {
|
758 |
static $plugin;
|
759 |
if (!$plugin) $plugin = plugin_basename(__FILE__);
|
languages/crp-da_DK.mo
CHANGED
Binary file
|
languages/crp-da_DK.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts 1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 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"
|
@@ -18,99 +18,99 @@ msgstr ""
|
|
18 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
91 |
msgstr "Antal Lignende indlæg, der skal vises: "
|
92 |
|
93 |
-
#: admin.inc.php:
|
94 |
msgid "Related posts should be newer than:"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin.inc.php:
|
98 |
msgid "days"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: admin.inc.php:
|
102 |
msgid "Post types to include in results (including custom post types)"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: admin.inc.php:
|
106 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
#: admin.inc.php:211
|
110 |
msgid "Find related posts based on content as well as title"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin.inc.php:
|
114 |
#, fuzzy
|
115 |
msgid ""
|
116 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -120,55 +120,55 @@ msgstr ""
|
|
120 |
"kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
|
121 |
"dette)"
|
122 |
|
123 |
-
#: admin.inc.php:
|
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,176 +180,180 @@ 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 "Limit post title length (in characters)"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Open links in new window"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Add nofollow attribute to links in the list"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
#, fuzzy
|
234 |
msgid "Exclude display of related posts on these posts / pages"
|
235 |
msgstr "Tilføj Lignende indlæg til feeds"
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Customize the output:"
|
243 |
msgstr "Tilpas outputtet:"
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "HTML to display before the list of posts: "
|
247 |
msgstr "HTML, der skal vises før listen med indlæg: "
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "HTML to display before each list item: "
|
251 |
msgstr "HTML, der skal vises før hvert punkt på listen: "
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "HTML to display after each list item: "
|
255 |
msgstr "HTML, der skal vises efter hvert punkt på listen: "
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "HTML to display after the list of posts: "
|
259 |
msgstr "HTML, der skal vises efter listen med indlæg: "
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Post thumbnail options:"
|
263 |
msgstr "Indstillinger for indlægsminiaturer:"
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Location of post thumbnail:"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
#, fuzzy
|
271 |
msgid "Display thumbnails inline with posts, before title"
|
272 |
msgstr "Vis miniaturer inline med indlæg"
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
#, fuzzy
|
276 |
msgid "Display thumbnails inline with posts, after title"
|
277 |
msgstr "Vis miniaturer inline med indlæg"
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "Display only thumbnails, no text"
|
281 |
msgstr "Vis kun miniaturer, ingen tekst"
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "Do not display thumbnails, only text."
|
285 |
msgstr "Vis ikke miniaturer, kun tekst."
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Maximum width of the thumbnail: "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Maximum height of the thumbnail: "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Use timthumb to generate thumbnails? "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
msgid ""
|
301 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
302 |
"\">timthumb</a> will be used to generate thumbnails"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin.inc.php:
|
306 |
msgid "Quality of thumbnails generated by timthumb"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: admin.inc.php:
|
310 |
msgid ""
|
311 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
312 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin.inc.php:
|
316 |
#, fuzzy
|
317 |
msgid "Post thumbnail meta field name: "
|
318 |
msgstr "Indstillinger for indlægsminiaturer:"
|
319 |
|
320 |
-
#: admin.inc.php:
|
321 |
msgid ""
|
322 |
"The value of this field should contain the image source and is set in the "
|
323 |
"<em>Add New Post</em> screen"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin.inc.php:
|
327 |
msgid ""
|
328 |
"If the postmeta is not set, then should the plugin extract the first image "
|
329 |
"from the post?"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: admin.inc.php:
|
333 |
msgid ""
|
334 |
"This can slow down the loading of your page if the first image in the "
|
335 |
"related posts is large in file-size"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: admin.inc.php:
|
339 |
msgid "Use default thumbnail? "
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: admin.inc.php:
|
343 |
msgid ""
|
344 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
345 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: admin.inc.php:
|
349 |
msgid "Default thumbnail: "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin.inc.php:
|
353 |
#, fuzzy
|
354 |
msgid ""
|
355 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -360,148 +364,158 @@ msgstr ""
|
|
360 |
"indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
|
361 |
"findes, vil det vise standardbilledet specificeret nedenfor:"
|
362 |
|
363 |
-
#: admin.inc.php:
|
364 |
#, fuzzy
|
365 |
msgid "Feed options"
|
366 |
msgstr "Indstillinger:"
|
367 |
|
368 |
-
#: admin.inc.php:
|
369 |
msgid ""
|
370 |
"Below options override the related posts settings for your blog feed. These "
|
371 |
"only apply if you have selected to add related posts to Feeds in the General "
|
372 |
"Options tab."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: admin.inc.php:
|
376 |
msgid "Custom Styles"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin.inc.php:
|
380 |
msgid "Custom CSS to add to header:"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin.inc.php:
|
384 |
msgid ""
|
385 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
386 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
387 |
"\">FAQ</a> for available CSS classes to style."
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin.inc.php:
|
391 |
#, fuzzy
|
392 |
msgid "Save Options"
|
393 |
msgstr "Indstillinger:"
|
394 |
|
395 |
-
#: admin.inc.php:
|
396 |
#, fuzzy
|
397 |
msgid "Default Options"
|
398 |
msgstr "Indstillinger for output:"
|
399 |
|
400 |
-
#: admin.inc.php:
|
401 |
msgid "Do you want to set options to Default?"
|
402 |
msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
msgid "Recreate Index"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: admin.inc.php:
|
409 |
msgid "Are you sure you want to recreate the index?"
|
410 |
msgstr "Er du sikker på, du ønsker at gendanne indekset?"
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
#, fuzzy
|
414 |
msgid "Contextual Related Posts"
|
415 |
msgstr "Related Posts (Lignende indlæg)"
|
416 |
|
417 |
-
#: admin.inc.php:
|
418 |
msgid "Related Posts"
|
419 |
msgstr "Related Posts (Lignende indlæg)"
|
420 |
|
421 |
-
#: admin.inc.php:
|
422 |
msgid "plugin settings page"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: admin.inc.php:
|
426 |
msgid ""
|
427 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
428 |
"visit the "
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin.inc.php:
|
432 |
msgid " to configure."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
msgid "Powered by"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: contextual-related-posts.php:
|
440 |
#, fuzzy
|
441 |
msgid "Display Related Posts"
|
442 |
msgstr "Vis \"Ingen lignende indlæg\""
|
443 |
|
444 |
-
#: contextual-related-posts.php:
|
445 |
msgid "Title"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: contextual-related-posts.php:
|
449 |
msgid "No. of posts"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: contextual-related-posts.php:
|
453 |
msgid " Show excerpt?"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: contextual-related-posts.php:
|
457 |
#, fuzzy
|
458 |
msgid "Thumbnail options"
|
459 |
msgstr "Indstillinger for indlægsminiaturer:"
|
460 |
|
461 |
-
#: contextual-related-posts.php:
|
462 |
#, fuzzy
|
463 |
msgid "Thumbnails inline, before title"
|
464 |
msgstr "Vis miniaturer inline med indlæg"
|
465 |
|
466 |
-
#: contextual-related-posts.php:
|
467 |
#, fuzzy
|
468 |
msgid "Thumbnails inline, after title"
|
469 |
msgstr "Vis miniaturer inline med indlæg"
|
470 |
|
471 |
-
#: contextual-related-posts.php:
|
472 |
#, fuzzy
|
473 |
msgid "Only thumbnails, no text"
|
474 |
msgstr "Vis kun miniaturer, ingen tekst"
|
475 |
|
476 |
-
#: contextual-related-posts.php:
|
477 |
#, fuzzy
|
478 |
msgid "No thumbnails, only text."
|
479 |
msgstr "Vis ikke miniaturer, kun tekst."
|
480 |
|
481 |
-
#: contextual-related-posts.php:
|
482 |
#, fuzzy
|
483 |
msgid "Thumbnail height"
|
484 |
msgstr "Indstillinger for indlægsminiaturer:"
|
485 |
|
486 |
-
#: contextual-related-posts.php:
|
487 |
#, fuzzy
|
488 |
msgid "Thumbnail width"
|
489 |
msgstr "Indstillinger for indlægsminiaturer:"
|
490 |
|
491 |
-
#: contextual-related-posts.php:
|
492 |
msgid "<h3>Related Posts:</h3>"
|
493 |
msgstr "<h3>Lignende indlæg:</h3>"
|
494 |
|
495 |
-
#: contextual-related-posts.php:
|
496 |
#, fuzzy
|
497 |
msgid "No related posts found"
|
498 |
msgstr "Ingen lignende indlæg fundet"
|
499 |
|
500 |
-
#: contextual-related-posts.php:
|
501 |
msgid "Settings"
|
502 |
msgstr "Opsætning"
|
503 |
|
504 |
-
#: contextual-related-posts.php:
|
505 |
msgid "Donate"
|
506 |
msgstr "Donation"
|
507 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts 1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:42-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
18 |
"X-Generator: Poedit 1.5.5\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: admin.inc.php:103
|
22 |
msgid "Options saved successfully."
|
23 |
msgstr "Indstillingerne blev gemt."
|
24 |
|
25 |
+
#: admin.inc.php:119
|
26 |
msgid "Options set to Default."
|
27 |
msgstr "Indstillingerne sat til standardværdier."
|
28 |
|
29 |
+
#: admin.inc.php:135
|
30 |
msgid "Index recreated"
|
31 |
msgstr "Indeks blev gendannet"
|
32 |
|
33 |
+
#: admin.inc.php:148
|
34 |
#, fuzzy
|
35 |
msgid "Support the development"
|
36 |
msgstr "Støt udviklingen"
|
37 |
|
38 |
+
#: admin.inc.php:156
|
39 |
msgid "Enter amount in USD: "
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:160
|
43 |
msgid "Send your donation to the author of"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:171
|
47 |
msgid "Quick Links"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:173
|
51 |
#, fuzzy
|
52 |
msgid "Contextual Related Posts plugin page"
|
53 |
msgstr "Related Posts (Lignende indlæg)"
|
54 |
|
55 |
+
#: admin.inc.php:174
|
56 |
msgid "Other plugins"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: admin.inc.php:175
|
60 |
msgid "Ajay's blog"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
64 |
msgid "Support"
|
65 |
msgstr "Support"
|
66 |
|
67 |
+
#: admin.inc.php:177
|
68 |
msgid "Reviews"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin.inc.php:181
|
72 |
msgid "Recent developments"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: admin.inc.php:191
|
76 |
msgid "General options"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: admin.inc.php:193
|
80 |
msgid "Cache output?"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: admin.inc.php:195
|
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:196
|
90 |
+
msgid "Clear cache"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: admin.inc.php:199 admin.inc.php:384
|
94 |
msgid "Number of related posts to display: "
|
95 |
msgstr "Antal Lignende indlæg, der skal vises: "
|
96 |
|
97 |
+
#: admin.inc.php:202
|
98 |
msgid "Related posts should be newer than:"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin.inc.php:203
|
102 |
msgid "days"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin.inc.php:205
|
106 |
msgid "Post types to include in results (including custom post types)"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
110 |
msgid "Find related posts based on content as well as title"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: admin.inc.php:218
|
114 |
#, fuzzy
|
115 |
msgid ""
|
116 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
120 |
"kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
|
121 |
"dette)"
|
122 |
|
123 |
+
#: admin.inc.php:221
|
124 |
msgid "List of post or page IDs to exclude from the results: "
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:224
|
128 |
msgid "Categories to exclude from the results: "
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:240
|
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:243
|
139 |
#, fuzzy
|
140 |
msgid "Add related posts to:"
|
141 |
msgstr "Tilføj Lignende indlæg til feeds"
|
142 |
|
143 |
+
#: admin.inc.php:245
|
144 |
msgid "Posts"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin.inc.php:246
|
148 |
msgid "Pages"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:247
|
152 |
msgid "Home page"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:248
|
156 |
msgid "Feeds"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin.inc.php:249
|
160 |
msgid "Category archives"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin.inc.php:250
|
164 |
msgid "Tag archives"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin.inc.php:251
|
168 |
msgid "Other archives"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin.inc.php:252
|
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:255
|
184 |
msgid "Add a link to the plugin page as a final item in the list"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.inc.php:256
|
188 |
msgid " <em>Optional</em>"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin.inc.php:263
|
192 |
#, fuzzy
|
193 |
msgid "Output options"
|
194 |
msgstr "Indstillinger for output:"
|
195 |
|
196 |
+
#: admin.inc.php:265
|
197 |
msgid "Title of related posts: "
|
198 |
msgstr "Titel på Lignende indlæg: "
|
199 |
|
200 |
+
#: admin.inc.php:268
|
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:272
|
205 |
msgid "Blank Output"
|
206 |
msgstr "Intet"
|
207 |
|
208 |
+
#: admin.inc.php:276
|
209 |
msgid "Display:"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin.inc.php:280 admin.inc.php:387
|
213 |
msgid "Show post excerpt in list?"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin.inc.php:283
|
217 |
msgid "Length of excerpt (in words): "
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:286
|
221 |
+
msgid "Show post date in list?"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: admin.inc.php:289
|
225 |
msgid "Limit post title length (in characters)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:292
|
229 |
msgid "Open links in new window"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:295
|
233 |
msgid "Add nofollow attribute to links in the list"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:298
|
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:301
|
242 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin.inc.php:304
|
246 |
msgid "Customize the output:"
|
247 |
msgstr "Tilpas outputtet:"
|
248 |
|
249 |
+
#: admin.inc.php:306
|
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:309
|
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:312
|
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:315
|
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:318
|
266 |
msgid "Post thumbnail options:"
|
267 |
msgstr "Indstillinger for indlægsminiaturer:"
|
268 |
|
269 |
+
#: admin.inc.php:320 admin.inc.php:390
|
270 |
msgid "Location of post thumbnail:"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:324 admin.inc.php:394
|
274 |
#, fuzzy
|
275 |
msgid "Display thumbnails inline with posts, before title"
|
276 |
msgstr "Vis miniaturer inline med indlæg"
|
277 |
|
278 |
+
#: admin.inc.php:328 admin.inc.php:398
|
279 |
#, fuzzy
|
280 |
msgid "Display thumbnails inline with posts, after title"
|
281 |
msgstr "Vis miniaturer inline med indlæg"
|
282 |
|
283 |
+
#: admin.inc.php:332 admin.inc.php:402
|
284 |
msgid "Display only thumbnails, no text"
|
285 |
msgstr "Vis kun miniaturer, ingen tekst"
|
286 |
|
287 |
+
#: admin.inc.php:336 admin.inc.php:406
|
288 |
msgid "Do not display thumbnails, only text."
|
289 |
msgstr "Vis ikke miniaturer, kun tekst."
|
290 |
|
291 |
+
#: admin.inc.php:340 admin.inc.php:410
|
292 |
msgid "Maximum width of the thumbnail: "
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin.inc.php:343 admin.inc.php:413
|
296 |
msgid "Maximum height of the thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: admin.inc.php:346
|
300 |
msgid "Use timthumb to generate thumbnails? "
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin.inc.php:348
|
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:351
|
310 |
msgid "Quality of thumbnails generated by timthumb"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin.inc.php:354
|
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:357
|
320 |
#, fuzzy
|
321 |
msgid "Post thumbnail meta field name: "
|
322 |
msgstr "Indstillinger for indlægsminiaturer:"
|
323 |
|
324 |
+
#: admin.inc.php:359
|
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:362
|
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:364
|
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:367
|
343 |
msgid "Use default thumbnail? "
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin.inc.php:369
|
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:372
|
353 |
msgid "Default thumbnail: "
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin.inc.php:374
|
357 |
#, fuzzy
|
358 |
msgid ""
|
359 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
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:380
|
368 |
#, fuzzy
|
369 |
msgid "Feed options"
|
370 |
msgstr "Indstillinger:"
|
371 |
|
372 |
+
#: admin.inc.php:382
|
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:419
|
380 |
msgid "Custom Styles"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin.inc.php:421
|
384 |
msgid "Custom CSS to add to header:"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: admin.inc.php:424
|
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:429
|
395 |
#, fuzzy
|
396 |
msgid "Save Options"
|
397 |
msgstr "Indstillinger:"
|
398 |
|
399 |
+
#: admin.inc.php:430
|
400 |
#, fuzzy
|
401 |
msgid "Default Options"
|
402 |
msgstr "Indstillinger for output:"
|
403 |
|
404 |
+
#: admin.inc.php:430
|
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:431
|
409 |
msgid "Recreate Index"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin.inc.php:431
|
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:455
|
417 |
#, fuzzy
|
418 |
msgid "Contextual Related Posts"
|
419 |
msgstr "Related Posts (Lignende indlæg)"
|
420 |
|
421 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
422 |
msgid "Related Posts"
|
423 |
msgstr "Related Posts (Lignende indlæg)"
|
424 |
|
425 |
+
#: admin.inc.php:468
|
426 |
msgid "plugin settings page"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin.inc.php:473
|
430 |
msgid ""
|
431 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
432 |
"visit the "
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin.inc.php:473
|
436 |
msgid " to configure."
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: admin.inc.php:532
|
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:538
|
446 |
+
msgid " cached row(s) cleared"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: contextual-related-posts.php:131
|
450 |
msgid "Powered by"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: contextual-related-posts.php:303
|
454 |
#, fuzzy
|
455 |
msgid "Display Related Posts"
|
456 |
msgstr "Vis \"Ingen lignende indlæg\""
|
457 |
|
458 |
+
#: contextual-related-posts.php:316
|
459 |
msgid "Title"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: contextual-related-posts.php:321
|
463 |
msgid "No. of posts"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: contextual-related-posts.php:326
|
467 |
msgid " Show excerpt?"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: contextual-related-posts.php:330
|
471 |
#, fuzzy
|
472 |
msgid "Thumbnail options"
|
473 |
msgstr "Indstillinger for indlægsminiaturer:"
|
474 |
|
475 |
+
#: contextual-related-posts.php:332
|
476 |
#, fuzzy
|
477 |
msgid "Thumbnails inline, before title"
|
478 |
msgstr "Vis miniaturer inline med indlæg"
|
479 |
|
480 |
+
#: contextual-related-posts.php:333
|
481 |
#, fuzzy
|
482 |
msgid "Thumbnails inline, after title"
|
483 |
msgstr "Vis miniaturer inline med indlæg"
|
484 |
|
485 |
+
#: contextual-related-posts.php:334
|
486 |
#, fuzzy
|
487 |
msgid "Only thumbnails, no text"
|
488 |
msgstr "Vis kun miniaturer, ingen tekst"
|
489 |
|
490 |
+
#: contextual-related-posts.php:335
|
491 |
#, fuzzy
|
492 |
msgid "No thumbnails, only text."
|
493 |
msgstr "Vis ikke miniaturer, kun tekst."
|
494 |
|
495 |
+
#: contextual-related-posts.php:340
|
496 |
#, fuzzy
|
497 |
msgid "Thumbnail height"
|
498 |
msgstr "Indstillinger for indlægsminiaturer:"
|
499 |
|
500 |
+
#: contextual-related-posts.php:345
|
501 |
#, fuzzy
|
502 |
msgid "Thumbnail width"
|
503 |
msgstr "Indstillinger for indlægsminiaturer:"
|
504 |
|
505 |
+
#: contextual-related-posts.php:432
|
506 |
msgid "<h3>Related Posts:</h3>"
|
507 |
msgstr "<h3>Lignende indlæg:</h3>"
|
508 |
|
509 |
+
#: contextual-related-posts.php:433
|
510 |
#, fuzzy
|
511 |
msgid "No related posts found"
|
512 |
msgstr "Ingen lignende indlæg fundet"
|
513 |
|
514 |
+
#: contextual-related-posts.php:741
|
515 |
msgid "Settings"
|
516 |
msgstr "Opsætning"
|
517 |
|
518 |
+
#: contextual-related-posts.php:764
|
519 |
msgid "Donate"
|
520 |
msgstr "Donation"
|
521 |
|
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"
|
@@ -15,99 +15,99 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
88 |
msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Related posts should be newer than:"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "days"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Post types to include in results (including custom post types)"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: admin.inc.php:211
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -117,55 +117,55 @@ msgstr ""
|
|
117 |
"Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
|
118 |
"Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
|
119 |
|
120 |
-
#: admin.inc.php:
|
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,152 +177,157 @@ 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 |
msgid "Limit post title length (in characters)"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
msgid "Open links in new window"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin.inc.php:
|
228 |
msgid "Add nofollow attribute to links in the list"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: admin.inc.php:
|
232 |
#, fuzzy
|
233 |
msgid "Exclude display of related posts on these posts / pages"
|
234 |
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Customize the output:"
|
242 |
msgstr "Die Ausgabe anpassen:"
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "HTML to display before the list of posts: "
|
246 |
msgstr "HTML vor der Beitragsliste: "
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "HTML to display before each list item: "
|
250 |
msgstr "HTML vor jedem Listenelement: "
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "HTML to display after each list item: "
|
254 |
msgstr "HTML nach jedem Listenelement: "
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "HTML to display after the list of posts: "
|
258 |
msgstr "HTML nach der Beitragsliste: "
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Post thumbnail options:"
|
262 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Location of post thumbnail:"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
#, fuzzy
|
270 |
msgid "Display thumbnails inline with posts, before title"
|
271 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
#, fuzzy
|
275 |
msgid "Display thumbnails inline with posts, after title"
|
276 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
msgid "Display only thumbnails, no text"
|
280 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "Do not display thumbnails, only text."
|
284 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Maximum width of the thumbnail: "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Maximum height of the thumbnail: "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Use timthumb to generate thumbnails? "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
msgid ""
|
300 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
301 |
"\">timthumb</a> will be used to generate thumbnails"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Quality of thumbnails generated by timthumb"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid ""
|
310 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
311 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
#, fuzzy
|
316 |
msgid "Post thumbnail meta field name: "
|
317 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
318 |
|
319 |
-
#: admin.inc.php:
|
320 |
msgid ""
|
321 |
"The value of this field should contain the image source and is set in the "
|
322 |
"<em>Add New Post</em> screen"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
#, fuzzy
|
327 |
msgid ""
|
328 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -332,7 +337,7 @@ msgstr ""
|
|
332 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
333 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
#, fuzzy
|
337 |
msgid ""
|
338 |
"This can slow down the loading of your page if the first image in the "
|
@@ -342,21 +347,21 @@ msgstr ""
|
|
342 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
343 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid "Use default thumbnail? "
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
msgid ""
|
351 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
352 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin.inc.php:
|
356 |
msgid "Default thumbnail: "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: admin.inc.php:
|
360 |
#, fuzzy
|
361 |
msgid ""
|
362 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -367,149 +372,159 @@ msgstr ""
|
|
367 |
"nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
|
368 |
"wird das unten spezifizierte Default-Thumbnail angezeigt:"
|
369 |
|
370 |
-
#: admin.inc.php:
|
371 |
#, fuzzy
|
372 |
msgid "Feed options"
|
373 |
msgstr "Optionen:"
|
374 |
|
375 |
-
#: admin.inc.php:
|
376 |
msgid ""
|
377 |
"Below options override the related posts settings for your blog feed. These "
|
378 |
"only apply if you have selected to add related posts to Feeds in the General "
|
379 |
"Options tab."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin.inc.php:
|
383 |
msgid "Custom Styles"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin.inc.php:
|
387 |
msgid "Custom CSS to add to header:"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin.inc.php:
|
391 |
msgid ""
|
392 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
393 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
394 |
"\">FAQ</a> for available CSS classes to style."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin.inc.php:
|
398 |
#, fuzzy
|
399 |
msgid "Save Options"
|
400 |
msgstr "Optionen:"
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
#, fuzzy
|
404 |
msgid "Default Options"
|
405 |
msgstr "Ausgabeotionen:"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid "Do you want to set options to Default?"
|
409 |
msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
msgid "Recreate Index"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: admin.inc.php:
|
416 |
msgid "Are you sure you want to recreate the index?"
|
417 |
msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
|
418 |
|
419 |
-
#: admin.inc.php:
|
420 |
msgid "Contextual Related Posts"
|
421 |
msgstr "Contextual Related Posts"
|
422 |
|
423 |
-
#: admin.inc.php:
|
424 |
msgid "Related Posts"
|
425 |
msgstr "Related Posts"
|
426 |
|
427 |
-
#: admin.inc.php:
|
428 |
#, fuzzy
|
429 |
msgid "plugin settings page"
|
430 |
msgstr "Plugin-Seite"
|
431 |
|
432 |
-
#: admin.inc.php:
|
433 |
msgid ""
|
434 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
435 |
"visit the "
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin.inc.php:
|
439 |
msgid " to configure."
|
440 |
msgstr ""
|
441 |
|
442 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
443 |
msgid "Powered by"
|
444 |
msgstr "Powered by"
|
445 |
|
446 |
-
#: contextual-related-posts.php:
|
447 |
#, fuzzy
|
448 |
msgid "Display Related Posts"
|
449 |
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
450 |
|
451 |
-
#: contextual-related-posts.php:
|
452 |
msgid "Title"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: contextual-related-posts.php:
|
456 |
msgid "No. of posts"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: contextual-related-posts.php:
|
460 |
#, fuzzy
|
461 |
msgid " Show excerpt?"
|
462 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
463 |
|
464 |
-
#: contextual-related-posts.php:
|
465 |
#, fuzzy
|
466 |
msgid "Thumbnail options"
|
467 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
468 |
|
469 |
-
#: contextual-related-posts.php:
|
470 |
#, fuzzy
|
471 |
msgid "Thumbnails inline, before title"
|
472 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
473 |
|
474 |
-
#: contextual-related-posts.php:
|
475 |
#, fuzzy
|
476 |
msgid "Thumbnails inline, after title"
|
477 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
478 |
|
479 |
-
#: contextual-related-posts.php:
|
480 |
#, fuzzy
|
481 |
msgid "Only thumbnails, no text"
|
482 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
483 |
|
484 |
-
#: contextual-related-posts.php:
|
485 |
#, fuzzy
|
486 |
msgid "No thumbnails, only text."
|
487 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
488 |
|
489 |
-
#: contextual-related-posts.php:
|
490 |
#, fuzzy
|
491 |
msgid "Thumbnail height"
|
492 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
493 |
|
494 |
-
#: contextual-related-posts.php:
|
495 |
#, fuzzy
|
496 |
msgid "Thumbnail width"
|
497 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
498 |
|
499 |
-
#: contextual-related-posts.php:
|
500 |
msgid "<h3>Related Posts:</h3>"
|
501 |
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
502 |
|
503 |
-
#: contextual-related-posts.php:
|
504 |
#, fuzzy
|
505 |
msgid "No related posts found"
|
506 |
msgstr "Keine ähnlichen Beiträge gefunden"
|
507 |
|
508 |
-
#: contextual-related-posts.php:
|
509 |
msgid "Settings"
|
510 |
msgstr "Einstellungen"
|
511 |
|
512 |
-
#: contextual-related-posts.php:
|
513 |
msgid "Donate"
|
514 |
msgstr "Spenden"
|
515 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:42-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Optionen gespeichert."
|
21 |
|
22 |
+
#: admin.inc.php:119
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
|
25 |
|
26 |
+
#: admin.inc.php:135
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Index aufgefrischt"
|
29 |
|
30 |
+
#: admin.inc.php:148
|
31 |
msgid "Support the development"
|
32 |
msgstr "Unterstützen Sie die Entwicklung"
|
33 |
|
34 |
+
#: admin.inc.php:156
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Den Betrag in USD eingeben: "
|
37 |
|
38 |
+
#: admin.inc.php:160
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Schicken Sie eine Spende an den Autor von"
|
41 |
|
42 |
+
#: admin.inc.php:171
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Links"
|
46 |
|
47 |
+
#: admin.inc.php:173
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Contextual Related Posts "
|
51 |
|
52 |
+
#: admin.inc.php:174
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Weitere Plugins"
|
55 |
|
56 |
+
#: admin.inc.php:175
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Ajay's Blog"
|
59 |
|
60 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
61 |
msgid "Support"
|
62 |
msgstr "Support"
|
63 |
|
64 |
+
#: admin.inc.php:177
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:181
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Neueste Entwicklungen"
|
71 |
|
72 |
+
#: admin.inc.php:191
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:193
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:195
|
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:196
|
87 |
+
msgid "Clear cache"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin.inc.php:199 admin.inc.php:384
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
|
93 |
|
94 |
+
#: admin.inc.php:202
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:203
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:205
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin.inc.php:218
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
117 |
"Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
|
118 |
"Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
|
119 |
|
120 |
+
#: admin.inc.php:221
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:224
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:240
|
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:243
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
139 |
|
140 |
+
#: admin.inc.php:245
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:246
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:247
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:248
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin.inc.php:249
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin.inc.php:250
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin.inc.php:251
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:252
|
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:255
|
181 |
msgid "Add a link to the plugin page as a final item in the list"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: admin.inc.php:256
|
185 |
msgid " <em>Optional</em>"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin.inc.php:263
|
189 |
#, fuzzy
|
190 |
msgid "Output options"
|
191 |
msgstr "Ausgabeotionen:"
|
192 |
|
193 |
+
#: admin.inc.php:265
|
194 |
msgid "Title of related posts: "
|
195 |
msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
|
196 |
|
197 |
+
#: admin.inc.php:268
|
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:272
|
204 |
msgid "Blank Output"
|
205 |
msgstr "Nichts"
|
206 |
|
207 |
+
#: admin.inc.php:276
|
208 |
msgid "Display:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin.inc.php:280 admin.inc.php:387
|
212 |
msgid "Show post excerpt in list?"
|
213 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
214 |
|
215 |
+
#: admin.inc.php:283
|
216 |
msgid "Length of excerpt (in words): "
|
217 |
msgstr "Länge des Auszugs (in Worten): "
|
218 |
|
219 |
+
#: admin.inc.php:286
|
220 |
+
#, fuzzy
|
221 |
+
msgid "Show post date in list?"
|
222 |
+
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
223 |
+
|
224 |
+
#: admin.inc.php:289
|
225 |
msgid "Limit post title length (in characters)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:292
|
229 |
msgid "Open links in new window"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:295
|
233 |
msgid "Add nofollow attribute to links in the list"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:298
|
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:301
|
242 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin.inc.php:304
|
246 |
msgid "Customize the output:"
|
247 |
msgstr "Die Ausgabe anpassen:"
|
248 |
|
249 |
+
#: admin.inc.php:306
|
250 |
msgid "HTML to display before the list of posts: "
|
251 |
msgstr "HTML vor der Beitragsliste: "
|
252 |
|
253 |
+
#: admin.inc.php:309
|
254 |
msgid "HTML to display before each list item: "
|
255 |
msgstr "HTML vor jedem Listenelement: "
|
256 |
|
257 |
+
#: admin.inc.php:312
|
258 |
msgid "HTML to display after each list item: "
|
259 |
msgstr "HTML nach jedem Listenelement: "
|
260 |
|
261 |
+
#: admin.inc.php:315
|
262 |
msgid "HTML to display after the list of posts: "
|
263 |
msgstr "HTML nach der Beitragsliste: "
|
264 |
|
265 |
+
#: admin.inc.php:318
|
266 |
msgid "Post thumbnail options:"
|
267 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
268 |
|
269 |
+
#: admin.inc.php:320 admin.inc.php:390
|
270 |
msgid "Location of post thumbnail:"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:324 admin.inc.php:394
|
274 |
#, fuzzy
|
275 |
msgid "Display thumbnails inline with posts, before title"
|
276 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
277 |
|
278 |
+
#: admin.inc.php:328 admin.inc.php:398
|
279 |
#, fuzzy
|
280 |
msgid "Display thumbnails inline with posts, after title"
|
281 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
282 |
|
283 |
+
#: admin.inc.php:332 admin.inc.php:402
|
284 |
msgid "Display only thumbnails, no text"
|
285 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
286 |
|
287 |
+
#: admin.inc.php:336 admin.inc.php:406
|
288 |
msgid "Do not display thumbnails, only text."
|
289 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
290 |
|
291 |
+
#: admin.inc.php:340 admin.inc.php:410
|
292 |
msgid "Maximum width of the thumbnail: "
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin.inc.php:343 admin.inc.php:413
|
296 |
msgid "Maximum height of the thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: admin.inc.php:346
|
300 |
msgid "Use timthumb to generate thumbnails? "
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin.inc.php:348
|
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:351
|
310 |
msgid "Quality of thumbnails generated by timthumb"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin.inc.php:354
|
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:357
|
320 |
#, fuzzy
|
321 |
msgid "Post thumbnail meta field name: "
|
322 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
323 |
|
324 |
+
#: admin.inc.php:359
|
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:362
|
331 |
#, fuzzy
|
332 |
msgid ""
|
333 |
"If the postmeta is not set, then should the plugin extract the first image "
|
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:364
|
341 |
#, fuzzy
|
342 |
msgid ""
|
343 |
"This can slow down the loading of your page if the first image in the "
|
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:367
|
351 |
msgid "Use default thumbnail? "
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin.inc.php:369
|
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:372
|
361 |
msgid "Default thumbnail: "
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin.inc.php:374
|
365 |
#, fuzzy
|
366 |
msgid ""
|
367 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
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:380
|
376 |
#, fuzzy
|
377 |
msgid "Feed options"
|
378 |
msgstr "Optionen:"
|
379 |
|
380 |
+
#: admin.inc.php:382
|
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:419
|
388 |
msgid "Custom Styles"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin.inc.php:421
|
392 |
msgid "Custom CSS to add to header:"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin.inc.php:424
|
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:429
|
403 |
#, fuzzy
|
404 |
msgid "Save Options"
|
405 |
msgstr "Optionen:"
|
406 |
|
407 |
+
#: admin.inc.php:430
|
408 |
#, fuzzy
|
409 |
msgid "Default Options"
|
410 |
msgstr "Ausgabeotionen:"
|
411 |
|
412 |
+
#: admin.inc.php:430
|
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:431
|
417 |
msgid "Recreate Index"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: admin.inc.php:431
|
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:455
|
425 |
msgid "Contextual Related Posts"
|
426 |
msgstr "Contextual Related Posts"
|
427 |
|
428 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
429 |
msgid "Related Posts"
|
430 |
msgstr "Related Posts"
|
431 |
|
432 |
+
#: admin.inc.php:468
|
433 |
#, fuzzy
|
434 |
msgid "plugin settings page"
|
435 |
msgstr "Plugin-Seite"
|
436 |
|
437 |
+
#: admin.inc.php:473
|
438 |
msgid ""
|
439 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
440 |
"visit the "
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin.inc.php:473
|
444 |
msgid " to configure."
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin.inc.php:532
|
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:538
|
454 |
+
msgid " cached row(s) cleared"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: contextual-related-posts.php:131
|
458 |
msgid "Powered by"
|
459 |
msgstr "Powered by"
|
460 |
|
461 |
+
#: contextual-related-posts.php:303
|
462 |
#, fuzzy
|
463 |
msgid "Display Related Posts"
|
464 |
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
465 |
|
466 |
+
#: contextual-related-posts.php:316
|
467 |
msgid "Title"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: contextual-related-posts.php:321
|
471 |
msgid "No. of posts"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: contextual-related-posts.php:326
|
475 |
#, fuzzy
|
476 |
msgid " Show excerpt?"
|
477 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
478 |
|
479 |
+
#: contextual-related-posts.php:330
|
480 |
#, fuzzy
|
481 |
msgid "Thumbnail options"
|
482 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
483 |
|
484 |
+
#: contextual-related-posts.php:332
|
485 |
#, fuzzy
|
486 |
msgid "Thumbnails inline, before title"
|
487 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
488 |
|
489 |
+
#: contextual-related-posts.php:333
|
490 |
#, fuzzy
|
491 |
msgid "Thumbnails inline, after title"
|
492 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
493 |
|
494 |
+
#: contextual-related-posts.php:334
|
495 |
#, fuzzy
|
496 |
msgid "Only thumbnails, no text"
|
497 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
498 |
|
499 |
+
#: contextual-related-posts.php:335
|
500 |
#, fuzzy
|
501 |
msgid "No thumbnails, only text."
|
502 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
503 |
|
504 |
+
#: contextual-related-posts.php:340
|
505 |
#, fuzzy
|
506 |
msgid "Thumbnail height"
|
507 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
508 |
|
509 |
+
#: contextual-related-posts.php:345
|
510 |
#, fuzzy
|
511 |
msgid "Thumbnail width"
|
512 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
513 |
|
514 |
+
#: contextual-related-posts.php:432
|
515 |
msgid "<h3>Related Posts:</h3>"
|
516 |
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
517 |
|
518 |
+
#: contextual-related-posts.php:433
|
519 |
#, fuzzy
|
520 |
msgid "No related posts found"
|
521 |
msgstr "Keine ähnlichen Beiträge gefunden"
|
522 |
|
523 |
+
#: contextual-related-posts.php:741
|
524 |
msgid "Settings"
|
525 |
msgstr "Einstellungen"
|
526 |
|
527 |
+
#: contextual-related-posts.php:764
|
528 |
msgid "Donate"
|
529 |
msgstr "Spenden"
|
530 |
|
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"
|
@@ -15,455 +15,469 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Related posts should be newer than:"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "days"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Post types to include in results (including custom post types)"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: admin.inc.php:211
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid ""
|
110 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
111 |
"plugin if you enable this)"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin.inc.php:
|
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 "Limit post title length (in characters)"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Open links in new window"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Add nofollow attribute to links in the list"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "Exclude display of related posts on these posts / pages"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Customize the output:"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "HTML to display before the list of posts: "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "HTML to display before each list item: "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "HTML to display after each list item: "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "HTML to display after the list of posts: "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "Post thumbnail options:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Location of post thumbnail:"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Display thumbnails inline with posts, before title"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "Display thumbnails inline with posts, after title"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Display only thumbnails, no text"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Do not display thumbnails, only text."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Maximum width of the thumbnail: "
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Maximum height of the thumbnail: "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Use timthumb to generate thumbnails? "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid ""
|
282 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
283 |
"\">timthumb</a> will be used to generate thumbnails"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Quality of thumbnails generated by timthumb"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid ""
|
292 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
293 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
msgid "Post thumbnail meta field name: "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid ""
|
302 |
"The value of this field should contain the image source and is set in the "
|
303 |
"<em>Add New Post</em> screen"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid ""
|
308 |
"If the postmeta is not set, then should the plugin extract the first image "
|
309 |
"from the post?"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid ""
|
314 |
"This can slow down the loading of your page if the first image in the "
|
315 |
"related posts is large in file-size"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid "Use default thumbnail? "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid ""
|
324 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
325 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: admin.inc.php:
|
329 |
msgid "Default thumbnail: "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: admin.inc.php:
|
333 |
msgid ""
|
334 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
335 |
"then it will check the meta field. If this is not available, then it will "
|
336 |
"show the default image as specified above"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin.inc.php:
|
340 |
msgid "Feed options"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin.inc.php:
|
344 |
msgid ""
|
345 |
"Below options override the related posts settings for your blog feed. These "
|
346 |
"only apply if you have selected to add related posts to Feeds in the General "
|
347 |
"Options tab."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin.inc.php:
|
351 |
msgid "Custom Styles"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid "Custom CSS to add to header:"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin.inc.php:
|
359 |
msgid ""
|
360 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
361 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
362 |
"\">FAQ</a> for available CSS classes to style."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: admin.inc.php:
|
366 |
msgid "Save Options"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin.inc.php:
|
370 |
msgid "Default Options"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid "Do you want to set options to Default?"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Recreate Index"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid "Are you sure you want to recreate the index?"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: admin.inc.php:
|
386 |
msgid "Contextual Related Posts"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin.inc.php:
|
390 |
msgid "Related Posts"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin.inc.php:
|
394 |
msgid "plugin settings page"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin.inc.php:
|
398 |
msgid ""
|
399 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
400 |
"visit the "
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
msgid " to configure."
|
405 |
msgstr ""
|
406 |
|
407 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
msgid "Powered by"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: contextual-related-posts.php:
|
412 |
msgid "Display Related Posts"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: contextual-related-posts.php:
|
416 |
msgid "Title"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: contextual-related-posts.php:
|
420 |
msgid "No. of posts"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: contextual-related-posts.php:
|
424 |
msgid " Show excerpt?"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: contextual-related-posts.php:
|
428 |
msgid "Thumbnail options"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: contextual-related-posts.php:
|
432 |
msgid "Thumbnails inline, before title"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: contextual-related-posts.php:
|
436 |
msgid "Thumbnails inline, after title"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: contextual-related-posts.php:
|
440 |
msgid "Only thumbnails, no text"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: contextual-related-posts.php:
|
444 |
msgid "No thumbnails, only text."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: contextual-related-posts.php:
|
448 |
msgid "Thumbnail height"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: contextual-related-posts.php:
|
452 |
msgid "Thumbnail width"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: contextual-related-posts.php:
|
456 |
msgid "<h3>Related Posts:</h3>"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: contextual-related-posts.php:
|
460 |
msgid "No related posts found"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: contextual-related-posts.php:
|
464 |
msgid "Settings"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: contextual-related-posts.php:
|
468 |
msgid "Donate"
|
469 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:41-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:119
|
23 |
msgid "Options set to Default."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:135
|
27 |
msgid "Index recreated"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin.inc.php:148
|
31 |
msgid "Support the development"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin.inc.php:156
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.inc.php:160
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:171
|
43 |
msgid "Quick Links"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:174
|
51 |
msgid "Other plugins"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:175
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:177
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:181
|
67 |
msgid "Recent developments"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:191
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin.inc.php:193
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:195
|
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:196
|
85 |
+
msgid "Clear cache"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: admin.inc.php:199 admin.inc.php:384
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:202
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:203
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:205
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:218
|
109 |
msgid ""
|
110 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
111 |
"plugin if you enable this)"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin.inc.php:221
|
115 |
msgid "List of post or page IDs to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin.inc.php:224
|
119 |
msgid "Categories to exclude from the results: "
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: admin.inc.php:240
|
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:243
|
130 |
msgid "Add related posts to:"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin.inc.php:245
|
134 |
msgid "Posts"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin.inc.php:246
|
138 |
msgid "Pages"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: admin.inc.php:247
|
142 |
msgid "Home page"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.inc.php:248
|
146 |
msgid "Feeds"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:249
|
150 |
msgid "Category archives"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:250
|
154 |
msgid "Tag archives"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin.inc.php:251
|
158 |
msgid "Other archives"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: admin.inc.php:252
|
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:255
|
169 |
msgid "Add a link to the plugin page as a final item in the list"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: admin.inc.php:256
|
173 |
msgid " <em>Optional</em>"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: admin.inc.php:263
|
177 |
msgid "Output options"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin.inc.php:265
|
181 |
msgid "Title of related posts: "
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: admin.inc.php:268
|
185 |
msgid "When there are no posts, what should be shown?"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin.inc.php:272
|
189 |
msgid "Blank Output"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: admin.inc.php:276
|
193 |
msgid "Display:"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: admin.inc.php:280 admin.inc.php:387
|
197 |
msgid "Show post excerpt in list?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: admin.inc.php:283
|
201 |
msgid "Length of excerpt (in words): "
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin.inc.php:286
|
205 |
+
msgid "Show post date in list?"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: admin.inc.php:289
|
209 |
msgid "Limit post title length (in characters)"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin.inc.php:292
|
213 |
msgid "Open links in new window"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin.inc.php:295
|
217 |
msgid "Add nofollow attribute to links in the list"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:298
|
221 |
msgid "Exclude display of related posts on these posts / pages"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin.inc.php:301
|
225 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:304
|
229 |
msgid "Customize the output:"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:306
|
233 |
msgid "HTML to display before the list of posts: "
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:309
|
237 |
msgid "HTML to display before each list item: "
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin.inc.php:312
|
241 |
msgid "HTML to display after each list item: "
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: admin.inc.php:315
|
245 |
msgid "HTML to display after the list of posts: "
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin.inc.php:318
|
249 |
msgid "Post thumbnail options:"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin.inc.php:320 admin.inc.php:390
|
253 |
msgid "Location of post thumbnail:"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin.inc.php:324 admin.inc.php:394
|
257 |
msgid "Display thumbnails inline with posts, before title"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin.inc.php:328 admin.inc.php:398
|
261 |
msgid "Display thumbnails inline with posts, after title"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin.inc.php:332 admin.inc.php:402
|
265 |
msgid "Display only thumbnails, no text"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin.inc.php:336 admin.inc.php:406
|
269 |
msgid "Do not display thumbnails, only text."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:340 admin.inc.php:410
|
273 |
msgid "Maximum width of the thumbnail: "
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin.inc.php:343 admin.inc.php:413
|
277 |
msgid "Maximum height of the thumbnail: "
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin.inc.php:346
|
281 |
msgid "Use timthumb to generate thumbnails? "
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin.inc.php:348
|
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:351
|
291 |
msgid "Quality of thumbnails generated by timthumb"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: admin.inc.php:354
|
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:357
|
301 |
msgid "Post thumbnail meta field name: "
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: admin.inc.php:359
|
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:362
|
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:364
|
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:367
|
323 |
msgid "Use default thumbnail? "
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin.inc.php:369
|
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:372
|
333 |
msgid "Default thumbnail: "
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: admin.inc.php:374
|
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:380
|
344 |
msgid "Feed options"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin.inc.php:382
|
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:419
|
355 |
msgid "Custom Styles"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: admin.inc.php:421
|
359 |
msgid "Custom CSS to add to header:"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:424
|
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:429
|
370 |
msgid "Save Options"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:430
|
374 |
msgid "Default Options"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:430
|
378 |
msgid "Do you want to set options to Default?"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin.inc.php:431
|
382 |
msgid "Recreate Index"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: admin.inc.php:431
|
386 |
msgid "Are you sure you want to recreate the index?"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: admin.inc.php:455
|
390 |
msgid "Contextual Related Posts"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
394 |
msgid "Related Posts"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin.inc.php:468
|
398 |
msgid "plugin settings page"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin.inc.php:473
|
402 |
msgid ""
|
403 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
404 |
"visit the "
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin.inc.php:473
|
408 |
msgid " to configure."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin.inc.php:532
|
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:538
|
418 |
+
msgid " cached row(s) cleared"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: contextual-related-posts.php:131
|
422 |
msgid "Powered by"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: contextual-related-posts.php:303
|
426 |
msgid "Display Related Posts"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: contextual-related-posts.php:316
|
430 |
msgid "Title"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: contextual-related-posts.php:321
|
434 |
msgid "No. of posts"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: contextual-related-posts.php:326
|
438 |
msgid " Show excerpt?"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: contextual-related-posts.php:330
|
442 |
msgid "Thumbnail options"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: contextual-related-posts.php:332
|
446 |
msgid "Thumbnails inline, before title"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: contextual-related-posts.php:333
|
450 |
msgid "Thumbnails inline, after title"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: contextual-related-posts.php:334
|
454 |
msgid "Only thumbnails, no text"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: contextual-related-posts.php:335
|
458 |
msgid "No thumbnails, only text."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: contextual-related-posts.php:340
|
462 |
msgid "Thumbnail height"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: contextual-related-posts.php:345
|
466 |
msgid "Thumbnail width"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: contextual-related-posts.php:432
|
470 |
msgid "<h3>Related Posts:</h3>"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: contextual-related-posts.php:433
|
474 |
msgid "No related posts found"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: contextual-related-posts.php:741
|
478 |
msgid "Settings"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: contextual-related-posts.php:764
|
482 |
msgid "Donate"
|
483 |
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"
|
@@ -15,455 +15,469 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Related posts should be newer than:"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "days"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Post types to include in results (including custom post types)"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: admin.inc.php:211
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid ""
|
110 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
111 |
"plugin if you enable this)"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin.inc.php:
|
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 "Limit post title length (in characters)"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin.inc.php:
|
209 |
msgid "Open links in new window"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin.inc.php:
|
213 |
msgid "Add nofollow attribute to links in the list"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
217 |
msgid "Exclude display of related posts on these posts / pages"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "Customize the output:"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "HTML to display before the list of posts: "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "HTML to display before each list item: "
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "HTML to display after each list item: "
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "HTML to display after the list of posts: "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "Post thumbnail options:"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "Location of post thumbnail:"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Display thumbnails inline with posts, before title"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "Display thumbnails inline with posts, after title"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Display only thumbnails, no text"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Do not display thumbnails, only text."
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Maximum width of the thumbnail: "
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Maximum height of the thumbnail: "
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Use timthumb to generate thumbnails? "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid ""
|
282 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
283 |
"\">timthumb</a> will be used to generate thumbnails"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Quality of thumbnails generated by timthumb"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid ""
|
292 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
293 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin.inc.php:
|
297 |
msgid "Post thumbnail meta field name: "
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin.inc.php:
|
301 |
msgid ""
|
302 |
"The value of this field should contain the image source and is set in the "
|
303 |
"<em>Add New Post</em> screen"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
307 |
msgid ""
|
308 |
"If the postmeta is not set, then should the plugin extract the first image "
|
309 |
"from the post?"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid ""
|
314 |
"This can slow down the loading of your page if the first image in the "
|
315 |
"related posts is large in file-size"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid "Use default thumbnail? "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid ""
|
324 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
325 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: admin.inc.php:
|
329 |
msgid "Default thumbnail: "
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: admin.inc.php:
|
333 |
msgid ""
|
334 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
335 |
"then it will check the meta field. If this is not available, then it will "
|
336 |
"show the default image as specified above"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin.inc.php:
|
340 |
msgid "Feed options"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin.inc.php:
|
344 |
msgid ""
|
345 |
"Below options override the related posts settings for your blog feed. These "
|
346 |
"only apply if you have selected to add related posts to Feeds in the General "
|
347 |
"Options tab."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin.inc.php:
|
351 |
msgid "Custom Styles"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid "Custom CSS to add to header:"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin.inc.php:
|
359 |
msgid ""
|
360 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
361 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
362 |
"\">FAQ</a> for available CSS classes to style."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: admin.inc.php:
|
366 |
msgid "Save Options"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin.inc.php:
|
370 |
msgid "Default Options"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid "Do you want to set options to Default?"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Recreate Index"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
msgid "Are you sure you want to recreate the index?"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: admin.inc.php:
|
386 |
msgid "Contextual Related Posts"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin.inc.php:
|
390 |
msgid "Related Posts"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin.inc.php:
|
394 |
msgid "plugin settings page"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin.inc.php:
|
398 |
msgid ""
|
399 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
400 |
"visit the "
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
msgid " to configure."
|
405 |
msgstr ""
|
406 |
|
407 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
msgid "Powered by"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: contextual-related-posts.php:
|
412 |
msgid "Display Related Posts"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: contextual-related-posts.php:
|
416 |
msgid "Title"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: contextual-related-posts.php:
|
420 |
msgid "No. of posts"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: contextual-related-posts.php:
|
424 |
msgid " Show excerpt?"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: contextual-related-posts.php:
|
428 |
msgid "Thumbnail options"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: contextual-related-posts.php:
|
432 |
msgid "Thumbnails inline, before title"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: contextual-related-posts.php:
|
436 |
msgid "Thumbnails inline, after title"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: contextual-related-posts.php:
|
440 |
msgid "Only thumbnails, no text"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: contextual-related-posts.php:
|
444 |
msgid "No thumbnails, only text."
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: contextual-related-posts.php:
|
448 |
msgid "Thumbnail height"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: contextual-related-posts.php:
|
452 |
msgid "Thumbnail width"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: contextual-related-posts.php:
|
456 |
msgid "<h3>Related Posts:</h3>"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: contextual-related-posts.php:
|
460 |
msgid "No related posts found"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: contextual-related-posts.php:
|
464 |
msgid "Settings"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: contextual-related-posts.php:
|
468 |
msgid "Donate"
|
469 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:41-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:119
|
23 |
msgid "Options set to Default."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:135
|
27 |
msgid "Index recreated"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin.inc.php:148
|
31 |
msgid "Support the development"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin.inc.php:156
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.inc.php:160
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:171
|
43 |
msgid "Quick Links"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:174
|
51 |
msgid "Other plugins"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:175
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:177
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:181
|
67 |
msgid "Recent developments"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:191
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin.inc.php:193
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:195
|
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:196
|
85 |
+
msgid "Clear cache"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: admin.inc.php:199 admin.inc.php:384
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:202
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:203
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:205
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:218
|
109 |
msgid ""
|
110 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
111 |
"plugin if you enable this)"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin.inc.php:221
|
115 |
msgid "List of post or page IDs to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin.inc.php:224
|
119 |
msgid "Categories to exclude from the results: "
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: admin.inc.php:240
|
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:243
|
130 |
msgid "Add related posts to:"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin.inc.php:245
|
134 |
msgid "Posts"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin.inc.php:246
|
138 |
msgid "Pages"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: admin.inc.php:247
|
142 |
msgid "Home page"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.inc.php:248
|
146 |
msgid "Feeds"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:249
|
150 |
msgid "Category archives"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:250
|
154 |
msgid "Tag archives"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin.inc.php:251
|
158 |
msgid "Other archives"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: admin.inc.php:252
|
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:255
|
169 |
msgid "Add a link to the plugin page as a final item in the list"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: admin.inc.php:256
|
173 |
msgid " <em>Optional</em>"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: admin.inc.php:263
|
177 |
msgid "Output options"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin.inc.php:265
|
181 |
msgid "Title of related posts: "
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: admin.inc.php:268
|
185 |
msgid "When there are no posts, what should be shown?"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin.inc.php:272
|
189 |
msgid "Blank Output"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: admin.inc.php:276
|
193 |
msgid "Display:"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: admin.inc.php:280 admin.inc.php:387
|
197 |
msgid "Show post excerpt in list?"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: admin.inc.php:283
|
201 |
msgid "Length of excerpt (in words): "
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin.inc.php:286
|
205 |
+
msgid "Show post date in list?"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: admin.inc.php:289
|
209 |
msgid "Limit post title length (in characters)"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin.inc.php:292
|
213 |
msgid "Open links in new window"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin.inc.php:295
|
217 |
msgid "Add nofollow attribute to links in the list"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:298
|
221 |
msgid "Exclude display of related posts on these posts / pages"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin.inc.php:301
|
225 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:304
|
229 |
msgid "Customize the output:"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:306
|
233 |
msgid "HTML to display before the list of posts: "
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:309
|
237 |
msgid "HTML to display before each list item: "
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: admin.inc.php:312
|
241 |
msgid "HTML to display after each list item: "
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: admin.inc.php:315
|
245 |
msgid "HTML to display after the list of posts: "
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin.inc.php:318
|
249 |
msgid "Post thumbnail options:"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin.inc.php:320 admin.inc.php:390
|
253 |
msgid "Location of post thumbnail:"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin.inc.php:324 admin.inc.php:394
|
257 |
msgid "Display thumbnails inline with posts, before title"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin.inc.php:328 admin.inc.php:398
|
261 |
msgid "Display thumbnails inline with posts, after title"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin.inc.php:332 admin.inc.php:402
|
265 |
msgid "Display only thumbnails, no text"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin.inc.php:336 admin.inc.php:406
|
269 |
msgid "Do not display thumbnails, only text."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:340 admin.inc.php:410
|
273 |
msgid "Maximum width of the thumbnail: "
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin.inc.php:343 admin.inc.php:413
|
277 |
msgid "Maximum height of the thumbnail: "
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin.inc.php:346
|
281 |
msgid "Use timthumb to generate thumbnails? "
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin.inc.php:348
|
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:351
|
291 |
msgid "Quality of thumbnails generated by timthumb"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: admin.inc.php:354
|
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:357
|
301 |
msgid "Post thumbnail meta field name: "
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: admin.inc.php:359
|
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:362
|
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:364
|
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:367
|
323 |
msgid "Use default thumbnail? "
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin.inc.php:369
|
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:372
|
333 |
msgid "Default thumbnail: "
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: admin.inc.php:374
|
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:380
|
344 |
msgid "Feed options"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: admin.inc.php:382
|
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:419
|
355 |
msgid "Custom Styles"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: admin.inc.php:421
|
359 |
msgid "Custom CSS to add to header:"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:424
|
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:429
|
370 |
msgid "Save Options"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:430
|
374 |
msgid "Default Options"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:430
|
378 |
msgid "Do you want to set options to Default?"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin.inc.php:431
|
382 |
msgid "Recreate Index"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: admin.inc.php:431
|
386 |
msgid "Are you sure you want to recreate the index?"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: admin.inc.php:455
|
390 |
msgid "Contextual Related Posts"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
394 |
msgid "Related Posts"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin.inc.php:468
|
398 |
msgid "plugin settings page"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin.inc.php:473
|
402 |
msgid ""
|
403 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
404 |
"visit the "
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin.inc.php:473
|
408 |
msgid " to configure."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin.inc.php:532
|
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:538
|
418 |
+
msgid " cached row(s) cleared"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: contextual-related-posts.php:131
|
422 |
msgid "Powered by"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: contextual-related-posts.php:303
|
426 |
msgid "Display Related Posts"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: contextual-related-posts.php:316
|
430 |
msgid "Title"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: contextual-related-posts.php:321
|
434 |
msgid "No. of posts"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: contextual-related-posts.php:326
|
438 |
msgid " Show excerpt?"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: contextual-related-posts.php:330
|
442 |
msgid "Thumbnail options"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: contextual-related-posts.php:332
|
446 |
msgid "Thumbnails inline, before title"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: contextual-related-posts.php:333
|
450 |
msgid "Thumbnails inline, after title"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: contextual-related-posts.php:334
|
454 |
msgid "Only thumbnails, no text"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: contextual-related-posts.php:335
|
458 |
msgid "No thumbnails, only text."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: contextual-related-posts.php:340
|
462 |
msgid "Thumbnail height"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: contextual-related-posts.php:345
|
466 |
msgid "Thumbnail width"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: contextual-related-posts.php:432
|
470 |
msgid "<h3>Related Posts:</h3>"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: contextual-related-posts.php:433
|
474 |
msgid "No related posts found"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: contextual-related-posts.php:741
|
478 |
msgid "Settings"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: contextual-related-posts.php:764
|
482 |
msgid "Donate"
|
483 |
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"
|
@@ -15,99 +15,99 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
88 |
msgstr "Número de posts relacionados a mostrar:"
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Related posts should be newer than:"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "days"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Post types to include in results (including custom post types)"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: admin.inc.php:211
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -117,55 +117,55 @@ msgstr ""
|
|
117 |
"deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
|
118 |
"caché si activas esto)"
|
119 |
|
120 |
-
#: admin.inc.php:
|
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,150 +176,155 @@ 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 |
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 "Agregar posts relacionados al feed"
|
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 "Personalizar la salida:"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "HTML to display before the list of posts: "
|
243 |
msgstr "HTML a mostrar antes de todos los items:"
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "HTML to display before each list item: "
|
247 |
msgstr "HTML a mostrar antes de cada item:"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "HTML to display after each list item: "
|
251 |
msgstr "HTML a mostrar despues de cada item:"
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "HTML to display after the list of posts: "
|
255 |
msgstr "HTML a mostrar despues de todos los items:"
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "Post thumbnail options:"
|
259 |
msgstr "Opciones de miniaturas en el post:"
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Location of post thumbnail:"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
#, fuzzy
|
267 |
msgid "Display thumbnails inline with posts, before title"
|
268 |
msgstr "Miniaturas en línea con los posts"
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
#, fuzzy
|
272 |
msgid "Display thumbnails inline with posts, after title"
|
273 |
msgstr "Miniaturas en línea con los posts"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "Display only thumbnails, no text"
|
277 |
msgstr "Solo miniaturas, sin texto"
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "Do not display thumbnails, only text."
|
281 |
msgstr "No mostrar miniaturas, solo texto."
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "Maximum width of the thumbnail: "
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Maximum height of the thumbnail: "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Use timthumb to generate thumbnails? "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid ""
|
297 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
298 |
"\">timthumb</a> will be used to generate thumbnails"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin.inc.php:
|
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 |
#, fuzzy
|
313 |
msgid "Post thumbnail meta field name: "
|
314 |
msgstr "Opciones de miniaturas en el post:"
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid ""
|
318 |
"The value of this field should contain the image source and is set in the "
|
319 |
"<em>Add New Post</em> screen"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
#, fuzzy
|
324 |
msgid ""
|
325 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -329,7 +334,7 @@ msgstr ""
|
|
329 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
330 |
"tamaño"
|
331 |
|
332 |
-
#: admin.inc.php:
|
333 |
#, fuzzy
|
334 |
msgid ""
|
335 |
"This can slow down the loading of your page if the first image in the "
|
@@ -339,21 +344,21 @@ msgstr ""
|
|
339 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
340 |
"tamaño"
|
341 |
|
342 |
-
#: admin.inc.php:
|
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,149 +369,159 @@ msgstr ""
|
|
364 |
"ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
|
365 |
"la imágen padrón especificada a continuación:"
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
#, fuzzy
|
369 |
msgid "Feed options"
|
370 |
msgstr "Opciones:"
|
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 "Opciones:"
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
#, fuzzy
|
401 |
msgid "Default Options"
|
402 |
msgstr "Opciones de Salida:"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
msgid "Do you want to set options to Default?"
|
406 |
msgstr "¿Quieres resetear las opciones?"
|
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 "¿Está seguro que quiere recrear el index?"
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
msgid "Contextual Related Posts"
|
418 |
msgstr "Posts Relacionados Contextualmente"
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid "Related Posts"
|
422 |
msgstr "Post Relacionados"
|
423 |
|
424 |
-
#: admin.inc.php:
|
425 |
#, fuzzy
|
426 |
msgid "plugin settings page"
|
427 |
msgstr "sitio del plugin"
|
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 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
440 |
msgid "Powered by"
|
441 |
msgstr "Creado por"
|
442 |
|
443 |
-
#: contextual-related-posts.php:
|
444 |
#, fuzzy
|
445 |
msgid "Display Related Posts"
|
446 |
msgstr "Mostrar \"Posts No Relacionados\""
|
447 |
|
448 |
-
#: contextual-related-posts.php:
|
449 |
msgid "Title"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: contextual-related-posts.php:
|
453 |
msgid "No. of posts"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: contextual-related-posts.php:
|
457 |
#, fuzzy
|
458 |
msgid " Show excerpt?"
|
459 |
msgstr "¿Mostrar extracto con los items?"
|
460 |
|
461 |
-
#: contextual-related-posts.php:
|
462 |
#, fuzzy
|
463 |
msgid "Thumbnail options"
|
464 |
msgstr "Opciones de miniaturas en el post:"
|
465 |
|
466 |
-
#: contextual-related-posts.php:
|
467 |
#, fuzzy
|
468 |
msgid "Thumbnails inline, before title"
|
469 |
msgstr "Miniaturas en línea con los posts"
|
470 |
|
471 |
-
#: contextual-related-posts.php:
|
472 |
#, fuzzy
|
473 |
msgid "Thumbnails inline, after title"
|
474 |
msgstr "Miniaturas en línea con los posts"
|
475 |
|
476 |
-
#: contextual-related-posts.php:
|
477 |
#, fuzzy
|
478 |
msgid "Only thumbnails, no text"
|
479 |
msgstr "Solo miniaturas, sin texto"
|
480 |
|
481 |
-
#: contextual-related-posts.php:
|
482 |
#, fuzzy
|
483 |
msgid "No thumbnails, only text."
|
484 |
msgstr "No mostrar miniaturas, solo texto."
|
485 |
|
486 |
-
#: contextual-related-posts.php:
|
487 |
#, fuzzy
|
488 |
msgid "Thumbnail height"
|
489 |
msgstr "Opciones de miniaturas en el post:"
|
490 |
|
491 |
-
#: contextual-related-posts.php:
|
492 |
#, fuzzy
|
493 |
msgid "Thumbnail width"
|
494 |
msgstr "Opciones de miniaturas en el post:"
|
495 |
|
496 |
-
#: contextual-related-posts.php:
|
497 |
msgid "<h3>Related Posts:</h3>"
|
498 |
msgstr "<h3>Post Relacionados:</h3>"
|
499 |
|
500 |
-
#: contextual-related-posts.php:
|
501 |
#, fuzzy
|
502 |
msgid "No related posts found"
|
503 |
msgstr "No hay posts relacionados"
|
504 |
|
505 |
-
#: contextual-related-posts.php:
|
506 |
msgid "Settings"
|
507 |
msgstr "Opciones"
|
508 |
|
509 |
-
#: contextual-related-posts.php:
|
510 |
msgid "Donate"
|
511 |
msgstr "Donar"
|
512 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:42-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Opciones guardadas correctament."
|
21 |
|
22 |
+
#: admin.inc.php:119
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Restablecer opciones originales"
|
25 |
|
26 |
+
#: admin.inc.php:135
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Recrear el Index"
|
29 |
|
30 |
+
#: admin.inc.php:148
|
31 |
msgid "Support the development"
|
32 |
msgstr "Apoya el desarrollo"
|
33 |
|
34 |
+
#: admin.inc.php:156
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Ingresa monto en USD:"
|
37 |
|
38 |
+
#: admin.inc.php:160
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Enviar tu donación al autor de"
|
41 |
|
42 |
+
#: admin.inc.php:171
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Links rápidos"
|
46 |
|
47 |
+
#: admin.inc.php:173
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Posts relacionados contextualmente"
|
51 |
|
52 |
+
#: admin.inc.php:174
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Otros plugins"
|
55 |
|
56 |
+
#: admin.inc.php:175
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
61 |
msgid "Support"
|
62 |
msgstr "Soporte"
|
63 |
|
64 |
+
#: admin.inc.php:177
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:181
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Desarrollos recientes"
|
71 |
|
72 |
+
#: admin.inc.php:191
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:193
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:195
|
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:196
|
87 |
+
msgid "Clear cache"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin.inc.php:199 admin.inc.php:384
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Número de posts relacionados a mostrar:"
|
93 |
|
94 |
+
#: admin.inc.php:202
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:203
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:205
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin.inc.php:218
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
117 |
"deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
|
118 |
"caché si activas esto)"
|
119 |
|
120 |
+
#: admin.inc.php:221
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:224
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:240
|
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:243
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "Agregar posts relacionados al feed"
|
139 |
|
140 |
+
#: admin.inc.php:245
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:246
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:247
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:248
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin.inc.php:249
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin.inc.php:250
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin.inc.php:251
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:252
|
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:255
|
180 |
msgid "Add a link to the plugin page as a final item in the list"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin.inc.php:256
|
184 |
msgid " <em>Optional</em>"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.inc.php:263
|
188 |
#, fuzzy
|
189 |
msgid "Output options"
|
190 |
msgstr "Opciones de Salida:"
|
191 |
|
192 |
+
#: admin.inc.php:265
|
193 |
msgid "Title of related posts: "
|
194 |
msgstr "Título de posts relacionados:"
|
195 |
|
196 |
+
#: admin.inc.php:268
|
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:272
|
201 |
msgid "Blank Output"
|
202 |
msgstr "Salida vacía"
|
203 |
|
204 |
+
#: admin.inc.php:276
|
205 |
msgid "Display:"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: admin.inc.php:280 admin.inc.php:387
|
209 |
msgid "Show post excerpt in list?"
|
210 |
msgstr "¿Mostrar extracto con los items?"
|
211 |
|
212 |
+
#: admin.inc.php:283
|
213 |
msgid "Length of excerpt (in words): "
|
214 |
msgstr "Tamaño del extracto (en palabras):"
|
215 |
|
216 |
+
#: admin.inc.php:286
|
217 |
+
#, fuzzy
|
218 |
+
msgid "Show post date in list?"
|
219 |
+
msgstr "¿Mostrar extracto con los items?"
|
220 |
+
|
221 |
+
#: admin.inc.php:289
|
222 |
msgid "Limit post title length (in characters)"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: admin.inc.php:292
|
226 |
msgid "Open links in new window"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: admin.inc.php:295
|
230 |
msgid "Add nofollow attribute to links in the list"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin.inc.php:298
|
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:301
|
239 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin.inc.php:304
|
243 |
msgid "Customize the output:"
|
244 |
msgstr "Personalizar la salida:"
|
245 |
|
246 |
+
#: admin.inc.php:306
|
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:309
|
251 |
msgid "HTML to display before each list item: "
|
252 |
msgstr "HTML a mostrar antes de cada item:"
|
253 |
|
254 |
+
#: admin.inc.php:312
|
255 |
msgid "HTML to display after each list item: "
|
256 |
msgstr "HTML a mostrar despues de cada item:"
|
257 |
|
258 |
+
#: admin.inc.php:315
|
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:318
|
263 |
msgid "Post thumbnail options:"
|
264 |
msgstr "Opciones de miniaturas en el post:"
|
265 |
|
266 |
+
#: admin.inc.php:320 admin.inc.php:390
|
267 |
msgid "Location of post thumbnail:"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:324 admin.inc.php:394
|
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:328 admin.inc.php:398
|
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:332 admin.inc.php:402
|
281 |
msgid "Display only thumbnails, no text"
|
282 |
msgstr "Solo miniaturas, sin texto"
|
283 |
|
284 |
+
#: admin.inc.php:336 admin.inc.php:406
|
285 |
msgid "Do not display thumbnails, only text."
|
286 |
msgstr "No mostrar miniaturas, solo texto."
|
287 |
|
288 |
+
#: admin.inc.php:340 admin.inc.php:410
|
289 |
msgid "Maximum width of the thumbnail: "
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin.inc.php:343 admin.inc.php:413
|
293 |
msgid "Maximum height of the thumbnail: "
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin.inc.php:346
|
297 |
msgid "Use timthumb to generate thumbnails? "
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:348
|
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:351
|
307 |
msgid "Quality of thumbnails generated by timthumb"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: admin.inc.php:354
|
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:357
|
317 |
#, fuzzy
|
318 |
msgid "Post thumbnail meta field name: "
|
319 |
msgstr "Opciones de miniaturas en el post:"
|
320 |
|
321 |
+
#: admin.inc.php:359
|
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:362
|
328 |
#, fuzzy
|
329 |
msgid ""
|
330 |
"If the postmeta is not set, then should the plugin extract the first image "
|
334 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
335 |
"tamaño"
|
336 |
|
337 |
+
#: admin.inc.php:364
|
338 |
#, fuzzy
|
339 |
msgid ""
|
340 |
"This can slow down the loading of your page if the first image in the "
|
344 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
345 |
"tamaño"
|
346 |
|
347 |
+
#: admin.inc.php:367
|
348 |
msgid "Use default thumbnail? "
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin.inc.php:369
|
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:372
|
358 |
msgid "Default thumbnail: "
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin.inc.php:374
|
362 |
#, fuzzy
|
363 |
msgid ""
|
364 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
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:380
|
373 |
#, fuzzy
|
374 |
msgid "Feed options"
|
375 |
msgstr "Opciones:"
|
376 |
|
377 |
+
#: admin.inc.php:382
|
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:419
|
385 |
msgid "Custom Styles"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:421
|
389 |
msgid "Custom CSS to add to header:"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin.inc.php:424
|
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:429
|
400 |
#, fuzzy
|
401 |
msgid "Save Options"
|
402 |
msgstr "Opciones:"
|
403 |
|
404 |
+
#: admin.inc.php:430
|
405 |
#, fuzzy
|
406 |
msgid "Default Options"
|
407 |
msgstr "Opciones de Salida:"
|
408 |
|
409 |
+
#: admin.inc.php:430
|
410 |
msgid "Do you want to set options to Default?"
|
411 |
msgstr "¿Quieres resetear las opciones?"
|
412 |
|
413 |
+
#: admin.inc.php:431
|
414 |
msgid "Recreate Index"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin.inc.php:431
|
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:455
|
422 |
msgid "Contextual Related Posts"
|
423 |
msgstr "Posts Relacionados Contextualmente"
|
424 |
|
425 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
426 |
msgid "Related Posts"
|
427 |
msgstr "Post Relacionados"
|
428 |
|
429 |
+
#: admin.inc.php:468
|
430 |
#, fuzzy
|
431 |
msgid "plugin settings page"
|
432 |
msgstr "sitio del plugin"
|
433 |
|
434 |
+
#: admin.inc.php:473
|
435 |
msgid ""
|
436 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
437 |
"visit the "
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin.inc.php:473
|
441 |
msgid " to configure."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:532
|
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:538
|
451 |
+
msgid " cached row(s) cleared"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: contextual-related-posts.php:131
|
455 |
msgid "Powered by"
|
456 |
msgstr "Creado por"
|
457 |
|
458 |
+
#: contextual-related-posts.php:303
|
459 |
#, fuzzy
|
460 |
msgid "Display Related Posts"
|
461 |
msgstr "Mostrar \"Posts No Relacionados\""
|
462 |
|
463 |
+
#: contextual-related-posts.php:316
|
464 |
msgid "Title"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: contextual-related-posts.php:321
|
468 |
msgid "No. of posts"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: contextual-related-posts.php:326
|
472 |
#, fuzzy
|
473 |
msgid " Show excerpt?"
|
474 |
msgstr "¿Mostrar extracto con los items?"
|
475 |
|
476 |
+
#: contextual-related-posts.php:330
|
477 |
#, fuzzy
|
478 |
msgid "Thumbnail options"
|
479 |
msgstr "Opciones de miniaturas en el post:"
|
480 |
|
481 |
+
#: contextual-related-posts.php:332
|
482 |
#, fuzzy
|
483 |
msgid "Thumbnails inline, before title"
|
484 |
msgstr "Miniaturas en línea con los posts"
|
485 |
|
486 |
+
#: contextual-related-posts.php:333
|
487 |
#, fuzzy
|
488 |
msgid "Thumbnails inline, after title"
|
489 |
msgstr "Miniaturas en línea con los posts"
|
490 |
|
491 |
+
#: contextual-related-posts.php:334
|
492 |
#, fuzzy
|
493 |
msgid "Only thumbnails, no text"
|
494 |
msgstr "Solo miniaturas, sin texto"
|
495 |
|
496 |
+
#: contextual-related-posts.php:335
|
497 |
#, fuzzy
|
498 |
msgid "No thumbnails, only text."
|
499 |
msgstr "No mostrar miniaturas, solo texto."
|
500 |
|
501 |
+
#: contextual-related-posts.php:340
|
502 |
#, fuzzy
|
503 |
msgid "Thumbnail height"
|
504 |
msgstr "Opciones de miniaturas en el post:"
|
505 |
|
506 |
+
#: contextual-related-posts.php:345
|
507 |
#, fuzzy
|
508 |
msgid "Thumbnail width"
|
509 |
msgstr "Opciones de miniaturas en el post:"
|
510 |
|
511 |
+
#: contextual-related-posts.php:432
|
512 |
msgid "<h3>Related Posts:</h3>"
|
513 |
msgstr "<h3>Post Relacionados:</h3>"
|
514 |
|
515 |
+
#: contextual-related-posts.php:433
|
516 |
#, fuzzy
|
517 |
msgid "No related posts found"
|
518 |
msgstr "No hay posts relacionados"
|
519 |
|
520 |
+
#: contextual-related-posts.php:741
|
521 |
msgid "Settings"
|
522 |
msgstr "Opciones"
|
523 |
|
524 |
+
#: contextual-related-posts.php:764
|
525 |
msgid "Donate"
|
526 |
msgstr "Donar"
|
527 |
|
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"
|
@@ -15,99 +15,99 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
88 |
msgstr "numero di articoli correlati da mostrare:"
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Related posts should be newer than:"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "days"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Post types to include in results (including custom post types)"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: admin.inc.php:211
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -117,55 +117,55 @@ msgstr ""
|
|
117 |
"disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
|
118 |
"preferibile attivare un plugin per la cache)"
|
119 |
|
120 |
-
#: admin.inc.php:
|
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,150 +176,155 @@ 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 |
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 "aggiungi gli articoli correlati al feed"
|
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 "Personalizzazione output:"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "HTML to display before the list of posts: "
|
243 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "HTML to display before each list item: "
|
247 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "HTML to display after each list item: "
|
251 |
msgstr "HTML da mostrare dopo ogni lista:"
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "HTML to display after the list of posts: "
|
255 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "Post thumbnail options:"
|
259 |
msgstr "Opzioni miniature articolo:"
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Location of post thumbnail:"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
#, fuzzy
|
267 |
msgid "Display thumbnails inline with posts, before title"
|
268 |
msgstr "Mostra gli articoli con le miniature inline"
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
#, fuzzy
|
272 |
msgid "Display thumbnails inline with posts, after title"
|
273 |
msgstr "Mostra gli articoli con le miniature inline"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid "Display only thumbnails, no text"
|
277 |
msgstr "Mostra le sole miniature, nessun testo"
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid "Do not display thumbnails, only text."
|
281 |
msgstr "Non mostrare le miniature, solo testo."
|
282 |
|
283 |
-
#: admin.inc.php:
|
284 |
msgid "Maximum width of the thumbnail: "
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid "Maximum height of the thumbnail: "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Use timthumb to generate thumbnails? "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid ""
|
297 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
298 |
"\">timthumb</a> will be used to generate thumbnails"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin.inc.php:
|
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 |
#, fuzzy
|
313 |
msgid "Post thumbnail meta field name: "
|
314 |
msgstr "Opzioni miniature articolo:"
|
315 |
|
316 |
-
#: admin.inc.php:
|
317 |
msgid ""
|
318 |
"The value of this field should contain the image source and is set in the "
|
319 |
"<em>Add New Post</em> screen"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
#, fuzzy
|
324 |
msgid ""
|
325 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -330,7 +335,7 @@ msgstr ""
|
|
330 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
331 |
"dimensioni"
|
332 |
|
333 |
-
#: admin.inc.php:
|
334 |
#, fuzzy
|
335 |
msgid ""
|
336 |
"This can slow down the loading of your page if the first image in the "
|
@@ -341,21 +346,21 @@ msgstr ""
|
|
341 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
342 |
"dimensioni"
|
343 |
|
344 |
-
#: admin.inc.php:
|
345 |
msgid "Use default thumbnail? "
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: admin.inc.php:
|
349 |
msgid ""
|
350 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
351 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid "Default thumbnail: "
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin.inc.php:
|
359 |
#, fuzzy
|
360 |
msgid ""
|
361 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -367,149 +372,159 @@ msgstr ""
|
|
367 |
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
368 |
"specificato qui sotto:"
|
369 |
|
370 |
-
#: admin.inc.php:
|
371 |
#, fuzzy
|
372 |
msgid "Feed options"
|
373 |
msgstr "Opzioni:"
|
374 |
|
375 |
-
#: admin.inc.php:
|
376 |
msgid ""
|
377 |
"Below options override the related posts settings for your blog feed. These "
|
378 |
"only apply if you have selected to add related posts to Feeds in the General "
|
379 |
"Options tab."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin.inc.php:
|
383 |
msgid "Custom Styles"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin.inc.php:
|
387 |
msgid "Custom CSS to add to header:"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin.inc.php:
|
391 |
msgid ""
|
392 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
393 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
394 |
"\">FAQ</a> for available CSS classes to style."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin.inc.php:
|
398 |
#, fuzzy
|
399 |
msgid "Save Options"
|
400 |
msgstr "Opzioni:"
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
#, fuzzy
|
404 |
msgid "Default Options"
|
405 |
msgstr "Opzioni output:"
|
406 |
|
407 |
-
#: admin.inc.php:
|
408 |
msgid "Do you want to set options to Default?"
|
409 |
msgstr "Sei certo di volere impostare alle opzioni predefinite?"
|
410 |
|
411 |
-
#: admin.inc.php:
|
412 |
msgid "Recreate Index"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: admin.inc.php:
|
416 |
msgid "Are you sure you want to recreate the index?"
|
417 |
msgstr "Sei certo di volere ricreare l'indice?"
|
418 |
|
419 |
-
#: admin.inc.php:
|
420 |
msgid "Contextual Related Posts"
|
421 |
msgstr "Contextual Related Posts"
|
422 |
|
423 |
-
#: admin.inc.php:
|
424 |
msgid "Related Posts"
|
425 |
msgstr "Related Posts"
|
426 |
|
427 |
-
#: admin.inc.php:
|
428 |
#, fuzzy
|
429 |
msgid "plugin settings page"
|
430 |
msgstr "pagina plugin"
|
431 |
|
432 |
-
#: admin.inc.php:
|
433 |
msgid ""
|
434 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
435 |
"visit the "
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin.inc.php:
|
439 |
msgid " to configure."
|
440 |
msgstr ""
|
441 |
|
442 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
443 |
msgid "Powered by"
|
444 |
msgstr "Powered by"
|
445 |
|
446 |
-
#: contextual-related-posts.php:
|
447 |
#, fuzzy
|
448 |
msgid "Display Related Posts"
|
449 |
msgstr "\"Nessun articolo correlato\""
|
450 |
|
451 |
-
#: contextual-related-posts.php:
|
452 |
msgid "Title"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: contextual-related-posts.php:
|
456 |
msgid "No. of posts"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: contextual-related-posts.php:
|
460 |
#, fuzzy
|
461 |
msgid " Show excerpt?"
|
462 |
msgstr "Desideri mostrare gli estratti?"
|
463 |
|
464 |
-
#: contextual-related-posts.php:
|
465 |
#, fuzzy
|
466 |
msgid "Thumbnail options"
|
467 |
msgstr "Opzioni miniature articolo:"
|
468 |
|
469 |
-
#: contextual-related-posts.php:
|
470 |
#, fuzzy
|
471 |
msgid "Thumbnails inline, before title"
|
472 |
msgstr "Mostra gli articoli con le miniature inline"
|
473 |
|
474 |
-
#: contextual-related-posts.php:
|
475 |
#, fuzzy
|
476 |
msgid "Thumbnails inline, after title"
|
477 |
msgstr "Mostra gli articoli con le miniature inline"
|
478 |
|
479 |
-
#: contextual-related-posts.php:
|
480 |
#, fuzzy
|
481 |
msgid "Only thumbnails, no text"
|
482 |
msgstr "Mostra le sole miniature, nessun testo"
|
483 |
|
484 |
-
#: contextual-related-posts.php:
|
485 |
#, fuzzy
|
486 |
msgid "No thumbnails, only text."
|
487 |
msgstr "Non mostrare le miniature, solo testo."
|
488 |
|
489 |
-
#: contextual-related-posts.php:
|
490 |
#, fuzzy
|
491 |
msgid "Thumbnail height"
|
492 |
msgstr "Opzioni miniature articolo:"
|
493 |
|
494 |
-
#: contextual-related-posts.php:
|
495 |
#, fuzzy
|
496 |
msgid "Thumbnail width"
|
497 |
msgstr "Opzioni miniature articolo:"
|
498 |
|
499 |
-
#: contextual-related-posts.php:
|
500 |
msgid "<h3>Related Posts:</h3>"
|
501 |
msgstr "<h3>Related Posts:</h3>"
|
502 |
|
503 |
-
#: contextual-related-posts.php:
|
504 |
#, fuzzy
|
505 |
msgid "No related posts found"
|
506 |
msgstr "Non é stato trovato alcun articolo correlato"
|
507 |
|
508 |
-
#: contextual-related-posts.php:
|
509 |
msgid "Settings"
|
510 |
msgstr "Impostazioni"
|
511 |
|
512 |
-
#: contextual-related-posts.php:
|
513 |
msgid "Donate"
|
514 |
msgstr "Donazioni"
|
515 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:42-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Le opzioni sono state salvate correttamente."
|
21 |
|
22 |
+
#: admin.inc.php:119
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Opzioni impostate alle predefinite."
|
25 |
|
26 |
+
#: admin.inc.php:135
|
27 |
msgid "Index recreated"
|
28 |
msgstr "E' stato ricreato l'indice"
|
29 |
|
30 |
+
#: admin.inc.php:148
|
31 |
msgid "Support the development"
|
32 |
msgstr "Sostieni lo sviluppo"
|
33 |
|
34 |
+
#: admin.inc.php:156
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Inserisci la cifra in USD: "
|
37 |
|
38 |
+
#: admin.inc.php:160
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Invia la tua donazione all'autore di"
|
41 |
|
42 |
+
#: admin.inc.php:171
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Collegamenti veloci"
|
46 |
|
47 |
+
#: admin.inc.php:173
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Contextual Related Posts "
|
51 |
|
52 |
+
#: admin.inc.php:174
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Altri plugin"
|
55 |
|
56 |
+
#: admin.inc.php:175
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Il blog di Ajay"
|
59 |
|
60 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
61 |
msgid "Support"
|
62 |
msgstr "Supporto"
|
63 |
|
64 |
+
#: admin.inc.php:177
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:181
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Sviluppi recenti"
|
71 |
|
72 |
+
#: admin.inc.php:191
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:193
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:195
|
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:196
|
87 |
+
msgid "Clear cache"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin.inc.php:199 admin.inc.php:384
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "numero di articoli correlati da mostrare:"
|
93 |
|
94 |
+
#: admin.inc.php:202
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:203
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:205
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin.inc.php:218
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
117 |
"disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
|
118 |
"preferibile attivare un plugin per la cache)"
|
119 |
|
120 |
+
#: admin.inc.php:221
|
121 |
msgid "List of post or page IDs to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:224
|
125 |
msgid "Categories to exclude from the results: "
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:240
|
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:243
|
136 |
#, fuzzy
|
137 |
msgid "Add related posts to:"
|
138 |
msgstr "aggiungi gli articoli correlati al feed"
|
139 |
|
140 |
+
#: admin.inc.php:245
|
141 |
msgid "Posts"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:246
|
145 |
msgid "Pages"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:247
|
149 |
msgid "Home page"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:248
|
153 |
msgid "Feeds"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: admin.inc.php:249
|
157 |
msgid "Category archives"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: admin.inc.php:250
|
161 |
msgid "Tag archives"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin.inc.php:251
|
165 |
msgid "Other archives"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:252
|
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:255
|
180 |
msgid "Add a link to the plugin page as a final item in the list"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin.inc.php:256
|
184 |
msgid " <em>Optional</em>"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.inc.php:263
|
188 |
#, fuzzy
|
189 |
msgid "Output options"
|
190 |
msgstr "Opzioni output:"
|
191 |
|
192 |
+
#: admin.inc.php:265
|
193 |
msgid "Title of related posts: "
|
194 |
msgstr "titolo per gli articoli correlati:"
|
195 |
|
196 |
+
#: admin.inc.php:268
|
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:272
|
201 |
msgid "Blank Output"
|
202 |
msgstr "nulla"
|
203 |
|
204 |
+
#: admin.inc.php:276
|
205 |
msgid "Display:"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: admin.inc.php:280 admin.inc.php:387
|
209 |
msgid "Show post excerpt in list?"
|
210 |
msgstr "Desideri mostrare gli estratti?"
|
211 |
|
212 |
+
#: admin.inc.php:283
|
213 |
msgid "Length of excerpt (in words): "
|
214 |
msgstr "Lunghezza estratto (in parole): "
|
215 |
|
216 |
+
#: admin.inc.php:286
|
217 |
+
#, fuzzy
|
218 |
+
msgid "Show post date in list?"
|
219 |
+
msgstr "Desideri mostrare gli estratti?"
|
220 |
+
|
221 |
+
#: admin.inc.php:289
|
222 |
msgid "Limit post title length (in characters)"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: admin.inc.php:292
|
226 |
msgid "Open links in new window"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: admin.inc.php:295
|
230 |
msgid "Add nofollow attribute to links in the list"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin.inc.php:298
|
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:301
|
239 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin.inc.php:304
|
243 |
msgid "Customize the output:"
|
244 |
msgstr "Personalizzazione output:"
|
245 |
|
246 |
+
#: admin.inc.php:306
|
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:309
|
251 |
msgid "HTML to display before each list item: "
|
252 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
253 |
|
254 |
+
#: admin.inc.php:312
|
255 |
msgid "HTML to display after each list item: "
|
256 |
msgstr "HTML da mostrare dopo ogni lista:"
|
257 |
|
258 |
+
#: admin.inc.php:315
|
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:318
|
263 |
msgid "Post thumbnail options:"
|
264 |
msgstr "Opzioni miniature articolo:"
|
265 |
|
266 |
+
#: admin.inc.php:320 admin.inc.php:390
|
267 |
msgid "Location of post thumbnail:"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:324 admin.inc.php:394
|
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:328 admin.inc.php:398
|
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:332 admin.inc.php:402
|
281 |
msgid "Display only thumbnails, no text"
|
282 |
msgstr "Mostra le sole miniature, nessun testo"
|
283 |
|
284 |
+
#: admin.inc.php:336 admin.inc.php:406
|
285 |
msgid "Do not display thumbnails, only text."
|
286 |
msgstr "Non mostrare le miniature, solo testo."
|
287 |
|
288 |
+
#: admin.inc.php:340 admin.inc.php:410
|
289 |
msgid "Maximum width of the thumbnail: "
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin.inc.php:343 admin.inc.php:413
|
293 |
msgid "Maximum height of the thumbnail: "
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin.inc.php:346
|
297 |
msgid "Use timthumb to generate thumbnails? "
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:348
|
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:351
|
307 |
msgid "Quality of thumbnails generated by timthumb"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: admin.inc.php:354
|
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:357
|
317 |
#, fuzzy
|
318 |
msgid "Post thumbnail meta field name: "
|
319 |
msgstr "Opzioni miniature articolo:"
|
320 |
|
321 |
+
#: admin.inc.php:359
|
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:362
|
328 |
#, fuzzy
|
329 |
msgid ""
|
330 |
"If the postmeta is not set, then should the plugin extract the first image "
|
335 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
336 |
"dimensioni"
|
337 |
|
338 |
+
#: admin.inc.php:364
|
339 |
#, fuzzy
|
340 |
msgid ""
|
341 |
"This can slow down the loading of your page if the first image in the "
|
346 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
347 |
"dimensioni"
|
348 |
|
349 |
+
#: admin.inc.php:367
|
350 |
msgid "Use default thumbnail? "
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: admin.inc.php:369
|
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:372
|
360 |
msgid "Default thumbnail: "
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin.inc.php:374
|
364 |
#, fuzzy
|
365 |
msgid ""
|
366 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
372 |
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
373 |
"specificato qui sotto:"
|
374 |
|
375 |
+
#: admin.inc.php:380
|
376 |
#, fuzzy
|
377 |
msgid "Feed options"
|
378 |
msgstr "Opzioni:"
|
379 |
|
380 |
+
#: admin.inc.php:382
|
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:419
|
388 |
msgid "Custom Styles"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin.inc.php:421
|
392 |
msgid "Custom CSS to add to header:"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin.inc.php:424
|
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:429
|
403 |
#, fuzzy
|
404 |
msgid "Save Options"
|
405 |
msgstr "Opzioni:"
|
406 |
|
407 |
+
#: admin.inc.php:430
|
408 |
#, fuzzy
|
409 |
msgid "Default Options"
|
410 |
msgstr "Opzioni output:"
|
411 |
|
412 |
+
#: admin.inc.php:430
|
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:431
|
417 |
msgid "Recreate Index"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: admin.inc.php:431
|
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:455
|
425 |
msgid "Contextual Related Posts"
|
426 |
msgstr "Contextual Related Posts"
|
427 |
|
428 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
429 |
msgid "Related Posts"
|
430 |
msgstr "Related Posts"
|
431 |
|
432 |
+
#: admin.inc.php:468
|
433 |
#, fuzzy
|
434 |
msgid "plugin settings page"
|
435 |
msgstr "pagina plugin"
|
436 |
|
437 |
+
#: admin.inc.php:473
|
438 |
msgid ""
|
439 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
440 |
"visit the "
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin.inc.php:473
|
444 |
msgid " to configure."
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin.inc.php:532
|
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:538
|
454 |
+
msgid " cached row(s) cleared"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: contextual-related-posts.php:131
|
458 |
msgid "Powered by"
|
459 |
msgstr "Powered by"
|
460 |
|
461 |
+
#: contextual-related-posts.php:303
|
462 |
#, fuzzy
|
463 |
msgid "Display Related Posts"
|
464 |
msgstr "\"Nessun articolo correlato\""
|
465 |
|
466 |
+
#: contextual-related-posts.php:316
|
467 |
msgid "Title"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: contextual-related-posts.php:321
|
471 |
msgid "No. of posts"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: contextual-related-posts.php:326
|
475 |
#, fuzzy
|
476 |
msgid " Show excerpt?"
|
477 |
msgstr "Desideri mostrare gli estratti?"
|
478 |
|
479 |
+
#: contextual-related-posts.php:330
|
480 |
#, fuzzy
|
481 |
msgid "Thumbnail options"
|
482 |
msgstr "Opzioni miniature articolo:"
|
483 |
|
484 |
+
#: contextual-related-posts.php:332
|
485 |
#, fuzzy
|
486 |
msgid "Thumbnails inline, before title"
|
487 |
msgstr "Mostra gli articoli con le miniature inline"
|
488 |
|
489 |
+
#: contextual-related-posts.php:333
|
490 |
#, fuzzy
|
491 |
msgid "Thumbnails inline, after title"
|
492 |
msgstr "Mostra gli articoli con le miniature inline"
|
493 |
|
494 |
+
#: contextual-related-posts.php:334
|
495 |
#, fuzzy
|
496 |
msgid "Only thumbnails, no text"
|
497 |
msgstr "Mostra le sole miniature, nessun testo"
|
498 |
|
499 |
+
#: contextual-related-posts.php:335
|
500 |
#, fuzzy
|
501 |
msgid "No thumbnails, only text."
|
502 |
msgstr "Non mostrare le miniature, solo testo."
|
503 |
|
504 |
+
#: contextual-related-posts.php:340
|
505 |
#, fuzzy
|
506 |
msgid "Thumbnail height"
|
507 |
msgstr "Opzioni miniature articolo:"
|
508 |
|
509 |
+
#: contextual-related-posts.php:345
|
510 |
#, fuzzy
|
511 |
msgid "Thumbnail width"
|
512 |
msgstr "Opzioni miniature articolo:"
|
513 |
|
514 |
+
#: contextual-related-posts.php:432
|
515 |
msgid "<h3>Related Posts:</h3>"
|
516 |
msgstr "<h3>Related Posts:</h3>"
|
517 |
|
518 |
+
#: contextual-related-posts.php:433
|
519 |
#, fuzzy
|
520 |
msgid "No related posts found"
|
521 |
msgstr "Non é stato trovato alcun articolo correlato"
|
522 |
|
523 |
+
#: contextual-related-posts.php:741
|
524 |
msgid "Settings"
|
525 |
msgstr "Impostazioni"
|
526 |
|
527 |
+
#: contextual-related-posts.php:764
|
528 |
msgid "Donate"
|
529 |
msgstr "Donazioni"
|
530 |
|
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"
|
@@ -15,97 +15,97 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
86 |
msgstr "Skaits saistītus amatus, lai parādītu:"
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "Related posts should be newer than:"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "days"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Post types to include in results (including custom post types)"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: admin.inc.php:211
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid ""
|
110 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
111 |
"plugin if you enable this)"
|
@@ -113,54 +113,54 @@ 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,152 +170,157 @@ 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 |
msgid "Limit post title length (in characters)"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
msgid "Open links in new window"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "Add nofollow attribute to links in the list"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Exclude display of related posts on these posts / pages"
|
223 |
msgstr "Pievienot saistītus amatus barībā"
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Customize the output:"
|
231 |
msgstr "Pielāgot izejas:"
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "HTML to display before the list of posts: "
|
235 |
msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
msgid "HTML to display before each list item: "
|
239 |
msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "HTML to display after each list item: "
|
243 |
msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "HTML to display after the list of posts: "
|
247 |
msgstr "HTML, lai parādītu pēc amatu sarakstā:"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "Post thumbnail options:"
|
251 |
msgstr "Post sīktēlu iespējas:"
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "Location of post thumbnail:"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "Display thumbnails inline with posts, before title"
|
259 |
msgstr "Rādīt skices ar ziņojumiem"
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Display thumbnails inline with posts, after title"
|
263 |
msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Display only thumbnails, no text"
|
267 |
msgstr "Attēlotu tikai sīktēlus, teksts"
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
msgid "Do not display thumbnails, only text."
|
271 |
msgstr "Nerādīt sīktēlus, tikai tekstu."
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
msgid "Maximum width of the thumbnail: "
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin.inc.php:
|
278 |
msgid "Maximum height of the thumbnail: "
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: admin.inc.php:
|
282 |
msgid "Use timthumb to generate thumbnails? "
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid ""
|
287 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
288 |
"\">timthumb</a> will be used to generate thumbnails"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
msgid "Quality of thumbnails generated by timthumb"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid ""
|
297 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
298 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin.inc.php:
|
302 |
msgid "Post thumbnail meta field name: "
|
303 |
msgstr "Attēlu rīki post:"
|
304 |
|
305 |
-
#: admin.inc.php:
|
306 |
msgid ""
|
307 |
"The value of this field should contain the image source and is set in the "
|
308 |
"<em>Add New Post</em> screen"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: admin.inc.php:
|
312 |
msgid ""
|
313 |
"If the postmeta is not set, then should the plugin extract the first image "
|
314 |
"from the post?"
|
315 |
msgstr ""
|
316 |
"Ja postmeta nav noteikts, tad būtu spraudnis iegūt pirmo attēlu no amata?"
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid ""
|
320 |
"This can slow down the loading of your page if the first image in the "
|
321 |
"related posts is large in file-size"
|
@@ -323,21 +328,21 @@ msgstr ""
|
|
323 |
"Tas var palēnināt iekraušana lapas, ja pirmo attēlu saistītajos amatos ir "
|
324 |
"liela faila izmēra"
|
325 |
|
326 |
-
#: admin.inc.php:
|
327 |
msgid "Use default thumbnail? "
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin.inc.php:
|
331 |
msgid ""
|
332 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
333 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin.inc.php:
|
337 |
msgid "Default thumbnail: "
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: admin.inc.php:
|
341 |
msgid ""
|
342 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
343 |
"then it will check the meta field. If this is not available, then it will "
|
@@ -347,135 +352,145 @@ msgstr ""
|
|
347 |
"būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
|
348 |
"noklusējuma attēlu, kā minēts iepriekš"
|
349 |
|
350 |
-
#: admin.inc.php:
|
351 |
msgid "Feed options"
|
352 |
msgstr "Iespējas:"
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid ""
|
356 |
"Below options override the related posts settings for your blog feed. These "
|
357 |
"only apply if you have selected to add related posts to Feeds in the General "
|
358 |
"Options tab."
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
msgid "Custom Styles"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: admin.inc.php:
|
366 |
msgid "Custom CSS to add to header:"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin.inc.php:
|
370 |
msgid ""
|
371 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
372 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
373 |
"\">FAQ</a> for available CSS classes to style."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin.inc.php:
|
377 |
msgid "Save Options"
|
378 |
msgstr "Saglabāt opcijas"
|
379 |
|
380 |
-
#: admin.inc.php:
|
381 |
msgid "Default Options"
|
382 |
msgstr "noklusējuma opcijas"
|
383 |
|
384 |
-
#: admin.inc.php:
|
385 |
msgid "Do you want to set options to Default?"
|
386 |
msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
|
387 |
|
388 |
-
#: admin.inc.php:
|
389 |
msgid "Recreate Index"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
msgid "Are you sure you want to recreate the index?"
|
394 |
msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
|
395 |
|
396 |
-
#: admin.inc.php:
|
397 |
msgid "Contextual Related Posts"
|
398 |
msgstr "Konteksta Related Posts"
|
399 |
|
400 |
-
#: admin.inc.php:
|
401 |
msgid "Related Posts"
|
402 |
msgstr "Related Posts"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
msgid "plugin settings page"
|
406 |
msgstr "spraudnis iestatījumu lapa"
|
407 |
|
408 |
-
#: admin.inc.php:
|
409 |
msgid ""
|
410 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
411 |
"visit the "
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin.inc.php:
|
415 |
msgid " to configure."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
419 |
msgid "Powered by"
|
420 |
msgstr "Powered by"
|
421 |
|
422 |
-
#: contextual-related-posts.php:
|
423 |
msgid "Display Related Posts"
|
424 |
msgstr "Displeja Related Posts"
|
425 |
|
426 |
-
#: contextual-related-posts.php:
|
427 |
msgid "Title"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: contextual-related-posts.php:
|
431 |
msgid "No. of posts"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: contextual-related-posts.php:
|
435 |
msgid " Show excerpt?"
|
436 |
msgstr "Rādīt izvilkumu?"
|
437 |
|
438 |
-
#: contextual-related-posts.php:
|
439 |
msgid "Thumbnail options"
|
440 |
msgstr "sīktēlu iespējas"
|
441 |
|
442 |
-
#: contextual-related-posts.php:
|
443 |
msgid "Thumbnails inline, before title"
|
444 |
msgstr "Sīktēli inline, pirms virsraksta"
|
445 |
|
446 |
-
#: contextual-related-posts.php:
|
447 |
msgid "Thumbnails inline, after title"
|
448 |
msgstr "Sīktēli inline, pēc nosaukuma"
|
449 |
|
450 |
-
#: contextual-related-posts.php:
|
451 |
msgid "Only thumbnails, no text"
|
452 |
msgstr "Tikai sīktēlus, bez teksta"
|
453 |
|
454 |
-
#: contextual-related-posts.php:
|
455 |
msgid "No thumbnails, only text."
|
456 |
msgstr "Nav sīktēlus, tikai tekstu."
|
457 |
|
458 |
-
#: contextual-related-posts.php:
|
459 |
msgid "Thumbnail height"
|
460 |
msgstr "sīktēls augstums"
|
461 |
|
462 |
-
#: contextual-related-posts.php:
|
463 |
msgid "Thumbnail width"
|
464 |
msgstr "Thumbnail platums"
|
465 |
|
466 |
-
#: contextual-related-posts.php:
|
467 |
msgid "<h3>Related Posts:</h3>"
|
468 |
msgstr "<h3>saistīta posts:</h3>"
|
469 |
|
470 |
-
#: contextual-related-posts.php:
|
471 |
msgid "No related posts found"
|
472 |
msgstr "Nr saistītus amatus atrasts"
|
473 |
|
474 |
-
#: contextual-related-posts.php:
|
475 |
msgid "Settings"
|
476 |
msgstr "iestatījumi"
|
477 |
|
478 |
-
#: contextual-related-posts.php:
|
479 |
msgid "Donate"
|
480 |
msgstr "ziedot"
|
481 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:42-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Opcijas veiksmīgi saglabāts."
|
21 |
|
22 |
+
#: admin.inc.php:119
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Opcijas iestatīts uz Default."
|
25 |
|
26 |
+
#: admin.inc.php:135
|
27 |
msgid "Index recreated"
|
28 |
msgstr "indekss pārbūvēts"
|
29 |
|
30 |
+
#: admin.inc.php:148
|
31 |
msgid "Support the development"
|
32 |
msgstr "Atbalstīt"
|
33 |
|
34 |
+
#: admin.inc.php:156
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Ievadiet summu USD:"
|
37 |
|
38 |
+
#: admin.inc.php:160
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Sūtiet savu ziedojumu autoram"
|
41 |
|
42 |
+
#: admin.inc.php:171
|
43 |
msgid "Quick Links"
|
44 |
msgstr "Ātrās saites"
|
45 |
|
46 |
+
#: admin.inc.php:173
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr "Konteksta saistītus amatus"
|
49 |
|
50 |
+
#: admin.inc.php:174
|
51 |
msgid "Other plugins"
|
52 |
msgstr "citas plugins"
|
53 |
|
54 |
+
#: admin.inc.php:175
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr "Ajay blogs"
|
57 |
|
58 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
59 |
msgid "Support"
|
60 |
msgstr "atbalstīt"
|
61 |
|
62 |
+
#: admin.inc.php:177
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:181
|
67 |
msgid "Recent developments"
|
68 |
msgstr "Nesenie notikumi"
|
69 |
|
70 |
+
#: admin.inc.php:191
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin.inc.php:193
|
75 |
msgid "Cache output?"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:195
|
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:196
|
85 |
+
msgid "Clear cache"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: admin.inc.php:199 admin.inc.php:384
|
89 |
msgid "Number of related posts to display: "
|
90 |
msgstr "Skaits saistītus amatus, lai parādītu:"
|
91 |
|
92 |
+
#: admin.inc.php:202
|
93 |
msgid "Related posts should be newer than:"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:203
|
97 |
msgid "days"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:205
|
101 |
msgid "Post types to include in results (including custom post types)"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
105 |
msgid "Find related posts based on content as well as title"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:218
|
109 |
msgid ""
|
110 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
111 |
"plugin if you enable this)"
|
113 |
"Ja nekontrolēti, tikai amati nosaukumi tiek izmantoti. (Es ieteiktu izmantot "
|
114 |
"caching spraudnis, ja aktivizēsiet šo)"
|
115 |
|
116 |
+
#: admin.inc.php:221
|
117 |
msgid "List of post or page IDs to exclude from the results: "
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:224
|
121 |
msgid "Categories to exclude from the results: "
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:240
|
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:243
|
132 |
msgid "Add related posts to:"
|
133 |
msgstr "Pievienot saistītus amatus barībā"
|
134 |
|
135 |
+
#: admin.inc.php:245
|
136 |
msgid "Posts"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:246
|
140 |
msgid "Pages"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin.inc.php:247
|
144 |
msgid "Home page"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin.inc.php:248
|
148 |
msgid "Feeds"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:249
|
152 |
msgid "Category archives"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:250
|
156 |
msgid "Tag archives"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin.inc.php:251
|
160 |
msgid "Other archives"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin.inc.php:252
|
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 |
"(\"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:255
|
174 |
msgid "Add a link to the plugin page as a final item in the list"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: admin.inc.php:256
|
178 |
msgid " <em>Optional</em>"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: admin.inc.php:263
|
182 |
msgid "Output options"
|
183 |
msgstr "Izejas opcijas:"
|
184 |
|
185 |
+
#: admin.inc.php:265
|
186 |
msgid "Title of related posts: "
|
187 |
msgstr "Nosaukums saistītus amatus:"
|
188 |
|
189 |
+
#: admin.inc.php:268
|
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:272
|
194 |
msgid "Blank Output"
|
195 |
msgstr "tukša izeja"
|
196 |
|
197 |
+
#: admin.inc.php:276
|
198 |
msgid "Display:"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: admin.inc.php:280 admin.inc.php:387
|
202 |
msgid "Show post excerpt in list?"
|
203 |
msgstr "Rādīt post izvilkumu sarakstā?"
|
204 |
|
205 |
+
#: admin.inc.php:283
|
206 |
msgid "Length of excerpt (in words): "
|
207 |
msgstr "Garums izrakstā (vārdiem)"
|
208 |
|
209 |
+
#: admin.inc.php:286
|
210 |
+
#, fuzzy
|
211 |
+
msgid "Show post date in list?"
|
212 |
+
msgstr "Rādīt post izvilkumu sarakstā?"
|
213 |
+
|
214 |
+
#: admin.inc.php:289
|
215 |
msgid "Limit post title length (in characters)"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: admin.inc.php:292
|
219 |
msgid "Open links in new window"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: admin.inc.php:295
|
223 |
msgid "Add nofollow attribute to links in the list"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin.inc.php:298
|
227 |
msgid "Exclude display of related posts on these posts / pages"
|
228 |
msgstr "Pievienot saistītus amatus barībā"
|
229 |
|
230 |
+
#: admin.inc.php:301
|
231 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: admin.inc.php:304
|
235 |
msgid "Customize the output:"
|
236 |
msgstr "Pielāgot izejas:"
|
237 |
|
238 |
+
#: admin.inc.php:306
|
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:309
|
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:312
|
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:315
|
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:318
|
255 |
msgid "Post thumbnail options:"
|
256 |
msgstr "Post sīktēlu iespējas:"
|
257 |
|
258 |
+
#: admin.inc.php:320 admin.inc.php:390
|
259 |
msgid "Location of post thumbnail:"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: admin.inc.php:324 admin.inc.php:394
|
263 |
msgid "Display thumbnails inline with posts, before title"
|
264 |
msgstr "Rādīt skices ar ziņojumiem"
|
265 |
|
266 |
+
#: admin.inc.php:328 admin.inc.php:398
|
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:332 admin.inc.php:402
|
271 |
msgid "Display only thumbnails, no text"
|
272 |
msgstr "Attēlotu tikai sīktēlus, teksts"
|
273 |
|
274 |
+
#: admin.inc.php:336 admin.inc.php:406
|
275 |
msgid "Do not display thumbnails, only text."
|
276 |
msgstr "Nerādīt sīktēlus, tikai tekstu."
|
277 |
|
278 |
+
#: admin.inc.php:340 admin.inc.php:410
|
279 |
msgid "Maximum width of the thumbnail: "
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: admin.inc.php:343 admin.inc.php:413
|
283 |
msgid "Maximum height of the thumbnail: "
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: admin.inc.php:346
|
287 |
msgid "Use timthumb to generate thumbnails? "
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: admin.inc.php:348
|
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:351
|
297 |
msgid "Quality of thumbnails generated by timthumb"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin.inc.php:354
|
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:357
|
307 |
msgid "Post thumbnail meta field name: "
|
308 |
msgstr "Attēlu rīki post:"
|
309 |
|
310 |
+
#: admin.inc.php:359
|
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:362
|
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:364
|
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 |
"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:367
|
332 |
msgid "Use default thumbnail? "
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:369
|
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:372
|
342 |
msgid "Default thumbnail: "
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin.inc.php:374
|
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 |
"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:380
|
356 |
msgid "Feed options"
|
357 |
msgstr "Iespējas:"
|
358 |
|
359 |
+
#: admin.inc.php:382
|
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:419
|
367 |
msgid "Custom Styles"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: admin.inc.php:421
|
371 |
msgid "Custom CSS to add to header:"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin.inc.php:424
|
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:429
|
382 |
msgid "Save Options"
|
383 |
msgstr "Saglabāt opcijas"
|
384 |
|
385 |
+
#: admin.inc.php:430
|
386 |
msgid "Default Options"
|
387 |
msgstr "noklusējuma opcijas"
|
388 |
|
389 |
+
#: admin.inc.php:430
|
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:431
|
394 |
msgid "Recreate Index"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin.inc.php:431
|
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:455
|
402 |
msgid "Contextual Related Posts"
|
403 |
msgstr "Konteksta Related Posts"
|
404 |
|
405 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
406 |
msgid "Related Posts"
|
407 |
msgstr "Related Posts"
|
408 |
|
409 |
+
#: admin.inc.php:468
|
410 |
msgid "plugin settings page"
|
411 |
msgstr "spraudnis iestatījumu lapa"
|
412 |
|
413 |
+
#: admin.inc.php:473
|
414 |
msgid ""
|
415 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
416 |
"visit the "
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: admin.inc.php:473
|
420 |
msgid " to configure."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: admin.inc.php:532
|
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:538
|
430 |
+
msgid " cached row(s) cleared"
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: contextual-related-posts.php:131
|
434 |
msgid "Powered by"
|
435 |
msgstr "Powered by"
|
436 |
|
437 |
+
#: contextual-related-posts.php:303
|
438 |
msgid "Display Related Posts"
|
439 |
msgstr "Displeja Related Posts"
|
440 |
|
441 |
+
#: contextual-related-posts.php:316
|
442 |
msgid "Title"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: contextual-related-posts.php:321
|
446 |
msgid "No. of posts"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: contextual-related-posts.php:326
|
450 |
msgid " Show excerpt?"
|
451 |
msgstr "Rādīt izvilkumu?"
|
452 |
|
453 |
+
#: contextual-related-posts.php:330
|
454 |
msgid "Thumbnail options"
|
455 |
msgstr "sīktēlu iespējas"
|
456 |
|
457 |
+
#: contextual-related-posts.php:332
|
458 |
msgid "Thumbnails inline, before title"
|
459 |
msgstr "Sīktēli inline, pirms virsraksta"
|
460 |
|
461 |
+
#: contextual-related-posts.php:333
|
462 |
msgid "Thumbnails inline, after title"
|
463 |
msgstr "Sīktēli inline, pēc nosaukuma"
|
464 |
|
465 |
+
#: contextual-related-posts.php:334
|
466 |
msgid "Only thumbnails, no text"
|
467 |
msgstr "Tikai sīktēlus, bez teksta"
|
468 |
|
469 |
+
#: contextual-related-posts.php:335
|
470 |
msgid "No thumbnails, only text."
|
471 |
msgstr "Nav sīktēlus, tikai tekstu."
|
472 |
|
473 |
+
#: contextual-related-posts.php:340
|
474 |
msgid "Thumbnail height"
|
475 |
msgstr "sīktēls augstums"
|
476 |
|
477 |
+
#: contextual-related-posts.php:345
|
478 |
msgid "Thumbnail width"
|
479 |
msgstr "Thumbnail platums"
|
480 |
|
481 |
+
#: contextual-related-posts.php:432
|
482 |
msgid "<h3>Related Posts:</h3>"
|
483 |
msgstr "<h3>saistīta posts:</h3>"
|
484 |
|
485 |
+
#: contextual-related-posts.php:433
|
486 |
msgid "No related posts found"
|
487 |
msgstr "Nr saistītus amatus atrasts"
|
488 |
|
489 |
+
#: contextual-related-posts.php:741
|
490 |
msgid "Settings"
|
491 |
msgstr "iestatījumi"
|
492 |
|
493 |
+
#: contextual-related-posts.php:764
|
494 |
msgid "Donate"
|
495 |
msgstr "ziedot"
|
496 |
|
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"
|
@@ -17,99 +17,99 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
90 |
msgstr "Aantal weer te geven gerelateerde berichten:"
|
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 "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: admin.inc.php:211
|
109 |
msgid "Find related posts based on content as well as title"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
#, fuzzy
|
114 |
msgid ""
|
115 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -119,55 +119,55 @@ msgstr ""
|
|
119 |
"niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
|
120 |
"gebruik van een caching plugin aan wanneer je dit inschakelt)"
|
121 |
|
122 |
-
#: admin.inc.php:
|
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,150 +179,155 @@ 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 |
msgid "Limit post title length (in characters)"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
msgid "Open links in new window"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: admin.inc.php:
|
228 |
msgid "Add nofollow attribute to links in the list"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: admin.inc.php:
|
232 |
#, fuzzy
|
233 |
msgid "Exclude display of related posts on these posts / pages"
|
234 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Customize the output:"
|
242 |
msgstr "Aanpassen van de output:"
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "HTML to display before the list of posts: "
|
246 |
msgstr "Weer te geven HTML voor de berichtenlijst:"
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "HTML to display before each list item: "
|
250 |
msgstr "Weer te geven HTML voor elk item in de lijst:"
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "HTML to display after each list item: "
|
254 |
msgstr "Weer te geven HTML na elk item in de lijst:"
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "HTML to display after the list of posts: "
|
258 |
msgstr "Weer te geven HTML na de berichtenlijst:"
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Post thumbnail options:"
|
262 |
msgstr "Berichtopties miniatuurafbeelding:"
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Location of post thumbnail:"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
#, fuzzy
|
270 |
msgid "Display thumbnails inline with posts, before title"
|
271 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
#, fuzzy
|
275 |
msgid "Display thumbnails inline with posts, after title"
|
276 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
277 |
|
278 |
-
#: admin.inc.php:
|
279 |
msgid "Display only thumbnails, no text"
|
280 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid "Do not display thumbnails, only text."
|
284 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid "Maximum width of the thumbnail: "
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
msgid "Maximum height of the thumbnail: "
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: admin.inc.php:
|
295 |
msgid "Use timthumb to generate thumbnails? "
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
msgid ""
|
300 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
301 |
"\">timthumb</a> will be used to generate thumbnails"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Quality of thumbnails generated by timthumb"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid ""
|
310 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
311 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
#, fuzzy
|
316 |
msgid "Post thumbnail meta field name: "
|
317 |
msgstr "Berichtopties miniatuurafbeelding:"
|
318 |
|
319 |
-
#: admin.inc.php:
|
320 |
msgid ""
|
321 |
"The value of this field should contain the image source and is set in the "
|
322 |
"<em>Add New Post</em> screen"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
#, fuzzy
|
327 |
msgid ""
|
328 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -332,7 +337,7 @@ msgstr ""
|
|
332 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
333 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
#, fuzzy
|
337 |
msgid ""
|
338 |
"This can slow down the loading of your page if the first image in the "
|
@@ -342,21 +347,21 @@ msgstr ""
|
|
342 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
343 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid "Use default thumbnail? "
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
msgid ""
|
351 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
352 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin.inc.php:
|
356 |
msgid "Default thumbnail: "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: admin.inc.php:
|
360 |
#, fuzzy
|
361 |
msgid ""
|
362 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -368,149 +373,159 @@ msgstr ""
|
|
368 |
"miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
|
369 |
"hieronder aangegeven:"
|
370 |
|
371 |
-
#: admin.inc.php:
|
372 |
#, fuzzy
|
373 |
msgid "Feed options"
|
374 |
msgstr "Opties:"
|
375 |
|
376 |
-
#: admin.inc.php:
|
377 |
msgid ""
|
378 |
"Below options override the related posts settings for your blog feed. These "
|
379 |
"only apply if you have selected to add related posts to Feeds in the General "
|
380 |
"Options tab."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin.inc.php:
|
384 |
msgid "Custom Styles"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid "Custom CSS to add to header:"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: admin.inc.php:
|
392 |
msgid ""
|
393 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
394 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
395 |
"\">FAQ</a> for available CSS classes to style."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin.inc.php:
|
399 |
#, fuzzy
|
400 |
msgid "Save Options"
|
401 |
msgstr "Opties:"
|
402 |
|
403 |
-
#: admin.inc.php:
|
404 |
#, fuzzy
|
405 |
msgid "Default Options"
|
406 |
msgstr "Output Opties:"
|
407 |
|
408 |
-
#: admin.inc.php:
|
409 |
msgid "Do you want to set options to Default?"
|
410 |
msgstr "Wil je opties terug naar standaard instellen?"
|
411 |
|
412 |
-
#: admin.inc.php:
|
413 |
msgid "Recreate Index"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
msgid "Are you sure you want to recreate the index?"
|
418 |
msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid "Contextual Related Posts"
|
422 |
msgstr "Contextual Related Posts"
|
423 |
|
424 |
-
#: admin.inc.php:
|
425 |
msgid "Related Posts"
|
426 |
msgstr "Gerelateerde Berichten"
|
427 |
|
428 |
-
#: admin.inc.php:
|
429 |
#, fuzzy
|
430 |
msgid "plugin settings page"
|
431 |
msgstr "plugin pagina"
|
432 |
|
433 |
-
#: admin.inc.php:
|
434 |
msgid ""
|
435 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
436 |
"visit the "
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin.inc.php:
|
440 |
msgid " to configure."
|
441 |
msgstr ""
|
442 |
|
443 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
msgid "Powered by"
|
445 |
msgstr "Powered by"
|
446 |
|
447 |
-
#: contextual-related-posts.php:
|
448 |
#, fuzzy
|
449 |
msgid "Display Related Posts"
|
450 |
msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
451 |
|
452 |
-
#: contextual-related-posts.php:
|
453 |
msgid "Title"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: contextual-related-posts.php:
|
457 |
msgid "No. of posts"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: contextual-related-posts.php:
|
461 |
#, fuzzy
|
462 |
msgid " Show excerpt?"
|
463 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
464 |
|
465 |
-
#: contextual-related-posts.php:
|
466 |
#, fuzzy
|
467 |
msgid "Thumbnail options"
|
468 |
msgstr "Berichtopties miniatuurafbeelding:"
|
469 |
|
470 |
-
#: contextual-related-posts.php:
|
471 |
#, fuzzy
|
472 |
msgid "Thumbnails inline, before title"
|
473 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
474 |
|
475 |
-
#: contextual-related-posts.php:
|
476 |
#, fuzzy
|
477 |
msgid "Thumbnails inline, after title"
|
478 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
479 |
|
480 |
-
#: contextual-related-posts.php:
|
481 |
#, fuzzy
|
482 |
msgid "Only thumbnails, no text"
|
483 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
484 |
|
485 |
-
#: contextual-related-posts.php:
|
486 |
#, fuzzy
|
487 |
msgid "No thumbnails, only text."
|
488 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
489 |
|
490 |
-
#: contextual-related-posts.php:
|
491 |
#, fuzzy
|
492 |
msgid "Thumbnail height"
|
493 |
msgstr "Berichtopties miniatuurafbeelding:"
|
494 |
|
495 |
-
#: contextual-related-posts.php:
|
496 |
#, fuzzy
|
497 |
msgid "Thumbnail width"
|
498 |
msgstr "Berichtopties miniatuurafbeelding:"
|
499 |
|
500 |
-
#: contextual-related-posts.php:
|
501 |
msgid "<h3>Related Posts:</h3>"
|
502 |
msgstr "<h3>Gerelateerde Berichten:</h3>"
|
503 |
|
504 |
-
#: contextual-related-posts.php:
|
505 |
#, fuzzy
|
506 |
msgid "No related posts found"
|
507 |
msgstr "Geen gerelateerde berichten gevonden"
|
508 |
|
509 |
-
#: contextual-related-posts.php:
|
510 |
msgid "Settings"
|
511 |
msgstr "Instellingen"
|
512 |
|
513 |
-
#: contextual-related-posts.php:
|
514 |
msgid "Donate"
|
515 |
msgstr "Doneren"
|
516 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:42-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: http://WPwebshop.com <info@wppg.me>\n"
|
17 |
"X-Generator: Poedit 1.5.5\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin.inc.php:103
|
21 |
msgid "Options saved successfully."
|
22 |
msgstr "Opties succesvol opgeslagen."
|
23 |
|
24 |
+
#: admin.inc.php:119
|
25 |
msgid "Options set to Default."
|
26 |
msgstr "Opties ingesteld op standaard."
|
27 |
|
28 |
+
#: admin.inc.php:135
|
29 |
msgid "Index recreated"
|
30 |
msgstr "Index opnieuw gemaakt"
|
31 |
|
32 |
+
#: admin.inc.php:148
|
33 |
msgid "Support the development"
|
34 |
msgstr "Ondersteun de ontwikkeling"
|
35 |
|
36 |
+
#: admin.inc.php:156
|
37 |
msgid "Enter amount in USD: "
|
38 |
msgstr "Voer het bedrag in USD in:"
|
39 |
|
40 |
+
#: admin.inc.php:160
|
41 |
msgid "Send your donation to the author of"
|
42 |
msgstr "Stuur je donatie aan de auteur van"
|
43 |
|
44 |
+
#: admin.inc.php:171
|
45 |
#, fuzzy
|
46 |
msgid "Quick Links"
|
47 |
msgstr "Quick links"
|
48 |
|
49 |
+
#: admin.inc.php:173
|
50 |
#, fuzzy
|
51 |
msgid "Contextual Related Posts plugin page"
|
52 |
msgstr "Contextual Related Posts "
|
53 |
|
54 |
+
#: admin.inc.php:174
|
55 |
msgid "Other plugins"
|
56 |
msgstr "Andere plugins"
|
57 |
|
58 |
+
#: admin.inc.php:175
|
59 |
msgid "Ajay's blog"
|
60 |
msgstr "Ajay's blog"
|
61 |
|
62 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
63 |
msgid "Support"
|
64 |
msgstr "Ondersteuning"
|
65 |
|
66 |
+
#: admin.inc.php:177
|
67 |
msgid "Reviews"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:181
|
71 |
msgid "Recent developments"
|
72 |
msgstr "Recente ontwikkelingen"
|
73 |
|
74 |
+
#: admin.inc.php:191
|
75 |
msgid "General options"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:193
|
79 |
msgid "Cache output?"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:195
|
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:196
|
89 |
+
msgid "Clear cache"
|
90 |
+
msgstr ""
|
91 |
+
|
92 |
+
#: admin.inc.php:199 admin.inc.php:384
|
93 |
msgid "Number of related posts to display: "
|
94 |
msgstr "Aantal weer te geven gerelateerde berichten:"
|
95 |
|
96 |
+
#: admin.inc.php:202
|
97 |
msgid "Related posts should be newer than:"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:203
|
101 |
msgid "days"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:205
|
105 |
msgid "Post types to include in results (including custom post types)"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
109 |
msgid "Find related posts based on content as well as title"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: admin.inc.php:218
|
113 |
#, fuzzy
|
114 |
msgid ""
|
115 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
119 |
"niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
|
120 |
"gebruik van een caching plugin aan wanneer je dit inschakelt)"
|
121 |
|
122 |
+
#: admin.inc.php:221
|
123 |
msgid "List of post or page IDs to exclude from the results: "
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: admin.inc.php:224
|
127 |
msgid "Categories to exclude from the results: "
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: admin.inc.php:240
|
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:243
|
138 |
#, fuzzy
|
139 |
msgid "Add related posts to:"
|
140 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
141 |
|
142 |
+
#: admin.inc.php:245
|
143 |
msgid "Posts"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: admin.inc.php:246
|
147 |
msgid "Pages"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:247
|
151 |
msgid "Home page"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:248
|
155 |
msgid "Feeds"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: admin.inc.php:249
|
159 |
msgid "Category archives"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: admin.inc.php:250
|
163 |
msgid "Tag archives"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin.inc.php:251
|
167 |
msgid "Other archives"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: admin.inc.php:252
|
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:255
|
183 |
msgid "Add a link to the plugin page as a final item in the list"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: admin.inc.php:256
|
187 |
msgid " <em>Optional</em>"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: admin.inc.php:263
|
191 |
#, fuzzy
|
192 |
msgid "Output options"
|
193 |
msgstr "Output Opties:"
|
194 |
|
195 |
+
#: admin.inc.php:265
|
196 |
msgid "Title of related posts: "
|
197 |
msgstr "Titel van gerelateerde berichten:"
|
198 |
|
199 |
+
#: admin.inc.php:268
|
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:272
|
204 |
msgid "Blank Output"
|
205 |
msgstr "Lege Output"
|
206 |
|
207 |
+
#: admin.inc.php:276
|
208 |
msgid "Display:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin.inc.php:280 admin.inc.php:387
|
212 |
msgid "Show post excerpt in list?"
|
213 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
214 |
|
215 |
+
#: admin.inc.php:283
|
216 |
msgid "Length of excerpt (in words): "
|
217 |
msgstr "Lengte van uittreksel (in woorden):"
|
218 |
|
219 |
+
#: admin.inc.php:286
|
220 |
+
#, fuzzy
|
221 |
+
msgid "Show post date in list?"
|
222 |
+
msgstr "Laat bericht uittreksel zien in lijst?"
|
223 |
+
|
224 |
+
#: admin.inc.php:289
|
225 |
msgid "Limit post title length (in characters)"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:292
|
229 |
msgid "Open links in new window"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin.inc.php:295
|
233 |
msgid "Add nofollow attribute to links in the list"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin.inc.php:298
|
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:301
|
242 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: admin.inc.php:304
|
246 |
msgid "Customize the output:"
|
247 |
msgstr "Aanpassen van de output:"
|
248 |
|
249 |
+
#: admin.inc.php:306
|
250 |
msgid "HTML to display before the list of posts: "
|
251 |
msgstr "Weer te geven HTML voor de berichtenlijst:"
|
252 |
|
253 |
+
#: admin.inc.php:309
|
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:312
|
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:315
|
262 |
msgid "HTML to display after the list of posts: "
|
263 |
msgstr "Weer te geven HTML na de berichtenlijst:"
|
264 |
|
265 |
+
#: admin.inc.php:318
|
266 |
msgid "Post thumbnail options:"
|
267 |
msgstr "Berichtopties miniatuurafbeelding:"
|
268 |
|
269 |
+
#: admin.inc.php:320 admin.inc.php:390
|
270 |
msgid "Location of post thumbnail:"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:324 admin.inc.php:394
|
274 |
#, fuzzy
|
275 |
msgid "Display thumbnails inline with posts, before title"
|
276 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
277 |
|
278 |
+
#: admin.inc.php:328 admin.inc.php:398
|
279 |
#, fuzzy
|
280 |
msgid "Display thumbnails inline with posts, after title"
|
281 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
282 |
|
283 |
+
#: admin.inc.php:332 admin.inc.php:402
|
284 |
msgid "Display only thumbnails, no text"
|
285 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
286 |
|
287 |
+
#: admin.inc.php:336 admin.inc.php:406
|
288 |
msgid "Do not display thumbnails, only text."
|
289 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
290 |
|
291 |
+
#: admin.inc.php:340 admin.inc.php:410
|
292 |
msgid "Maximum width of the thumbnail: "
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin.inc.php:343 admin.inc.php:413
|
296 |
msgid "Maximum height of the thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: admin.inc.php:346
|
300 |
msgid "Use timthumb to generate thumbnails? "
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin.inc.php:348
|
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:351
|
310 |
msgid "Quality of thumbnails generated by timthumb"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin.inc.php:354
|
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:357
|
320 |
#, fuzzy
|
321 |
msgid "Post thumbnail meta field name: "
|
322 |
msgstr "Berichtopties miniatuurafbeelding:"
|
323 |
|
324 |
+
#: admin.inc.php:359
|
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:362
|
331 |
#, fuzzy
|
332 |
msgid ""
|
333 |
"If the postmeta is not set, then should the plugin extract the first image "
|
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:364
|
341 |
#, fuzzy
|
342 |
msgid ""
|
343 |
"This can slow down the loading of your page if the first image in the "
|
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:367
|
351 |
msgid "Use default thumbnail? "
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin.inc.php:369
|
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:372
|
361 |
msgid "Default thumbnail: "
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin.inc.php:374
|
365 |
#, fuzzy
|
366 |
msgid ""
|
367 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
373 |
"miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
|
374 |
"hieronder aangegeven:"
|
375 |
|
376 |
+
#: admin.inc.php:380
|
377 |
#, fuzzy
|
378 |
msgid "Feed options"
|
379 |
msgstr "Opties:"
|
380 |
|
381 |
+
#: admin.inc.php:382
|
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:419
|
389 |
msgid "Custom Styles"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin.inc.php:421
|
393 |
msgid "Custom CSS to add to header:"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin.inc.php:424
|
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:429
|
404 |
#, fuzzy
|
405 |
msgid "Save Options"
|
406 |
msgstr "Opties:"
|
407 |
|
408 |
+
#: admin.inc.php:430
|
409 |
#, fuzzy
|
410 |
msgid "Default Options"
|
411 |
msgstr "Output Opties:"
|
412 |
|
413 |
+
#: admin.inc.php:430
|
414 |
msgid "Do you want to set options to Default?"
|
415 |
msgstr "Wil je opties terug naar standaard instellen?"
|
416 |
|
417 |
+
#: admin.inc.php:431
|
418 |
msgid "Recreate Index"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin.inc.php:431
|
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:455
|
426 |
msgid "Contextual Related Posts"
|
427 |
msgstr "Contextual Related Posts"
|
428 |
|
429 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
430 |
msgid "Related Posts"
|
431 |
msgstr "Gerelateerde Berichten"
|
432 |
|
433 |
+
#: admin.inc.php:468
|
434 |
#, fuzzy
|
435 |
msgid "plugin settings page"
|
436 |
msgstr "plugin pagina"
|
437 |
|
438 |
+
#: admin.inc.php:473
|
439 |
msgid ""
|
440 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
441 |
"visit the "
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:473
|
445 |
msgid " to configure."
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin.inc.php:532
|
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:538
|
455 |
+
msgid " cached row(s) cleared"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: contextual-related-posts.php:131
|
459 |
msgid "Powered by"
|
460 |
msgstr "Powered by"
|
461 |
|
462 |
+
#: contextual-related-posts.php:303
|
463 |
#, fuzzy
|
464 |
msgid "Display Related Posts"
|
465 |
msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
466 |
|
467 |
+
#: contextual-related-posts.php:316
|
468 |
msgid "Title"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: contextual-related-posts.php:321
|
472 |
msgid "No. of posts"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: contextual-related-posts.php:326
|
476 |
#, fuzzy
|
477 |
msgid " Show excerpt?"
|
478 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
479 |
|
480 |
+
#: contextual-related-posts.php:330
|
481 |
#, fuzzy
|
482 |
msgid "Thumbnail options"
|
483 |
msgstr "Berichtopties miniatuurafbeelding:"
|
484 |
|
485 |
+
#: contextual-related-posts.php:332
|
486 |
#, fuzzy
|
487 |
msgid "Thumbnails inline, before title"
|
488 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
489 |
|
490 |
+
#: contextual-related-posts.php:333
|
491 |
#, fuzzy
|
492 |
msgid "Thumbnails inline, after title"
|
493 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
494 |
|
495 |
+
#: contextual-related-posts.php:334
|
496 |
#, fuzzy
|
497 |
msgid "Only thumbnails, no text"
|
498 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
499 |
|
500 |
+
#: contextual-related-posts.php:335
|
501 |
#, fuzzy
|
502 |
msgid "No thumbnails, only text."
|
503 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
504 |
|
505 |
+
#: contextual-related-posts.php:340
|
506 |
#, fuzzy
|
507 |
msgid "Thumbnail height"
|
508 |
msgstr "Berichtopties miniatuurafbeelding:"
|
509 |
|
510 |
+
#: contextual-related-posts.php:345
|
511 |
#, fuzzy
|
512 |
msgid "Thumbnail width"
|
513 |
msgstr "Berichtopties miniatuurafbeelding:"
|
514 |
|
515 |
+
#: contextual-related-posts.php:432
|
516 |
msgid "<h3>Related Posts:</h3>"
|
517 |
msgstr "<h3>Gerelateerde Berichten:</h3>"
|
518 |
|
519 |
+
#: contextual-related-posts.php:433
|
520 |
#, fuzzy
|
521 |
msgid "No related posts found"
|
522 |
msgstr "Geen gerelateerde berichten gevonden"
|
523 |
|
524 |
+
#: contextual-related-posts.php:741
|
525 |
msgid "Settings"
|
526 |
msgstr "Instellingen"
|
527 |
|
528 |
+
#: contextual-related-posts.php:764
|
529 |
msgid "Donate"
|
530 |
msgstr "Doneren"
|
531 |
|
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"
|
@@ -15,99 +15,99 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
88 |
msgstr "Количество отображаемых похожих постов:"
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Related posts should be newer than:"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "days"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Post types to include in results (including custom post types)"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: admin.inc.php:211
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -118,55 +118,55 @@ msgstr ""
|
|
118 |
"сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
|
119 |
"опцию)"
|
120 |
|
121 |
-
#: admin.inc.php:
|
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,150 +178,155 @@ 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 |
msgid "Limit post title length (in characters)"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: admin.inc.php:
|
223 |
msgid "Open links in new window"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: admin.inc.php:
|
227 |
msgid "Add nofollow attribute to links in the list"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: admin.inc.php:
|
231 |
#, fuzzy
|
232 |
msgid "Exclude display of related posts on these posts / pages"
|
233 |
msgstr "Добавить похожие посты в фид"
|
234 |
|
235 |
-
#: admin.inc.php:
|
236 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: admin.inc.php:
|
240 |
msgid "Customize the output:"
|
241 |
msgstr "Настройки выхода:"
|
242 |
|
243 |
-
#: admin.inc.php:
|
244 |
msgid "HTML to display before the list of posts: "
|
245 |
msgstr "HTML для показа перед списком сообщений: "
|
246 |
|
247 |
-
#: admin.inc.php:
|
248 |
msgid "HTML to display before each list item: "
|
249 |
msgstr "HTML для показа перед каждым элементом списка: "
|
250 |
|
251 |
-
#: admin.inc.php:
|
252 |
msgid "HTML to display after each list item: "
|
253 |
msgstr "HTML для отображения после каждого элемента списка: "
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "HTML to display after the list of posts: "
|
257 |
msgstr "HTML для отображения после списка сообщений: "
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Post thumbnail options:"
|
261 |
msgstr "Опции изображения поста:"
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Location of post thumbnail:"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
#, fuzzy
|
269 |
msgid "Display thumbnails inline with posts, before title"
|
270 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
#, fuzzy
|
274 |
msgid "Display thumbnails inline with posts, after title"
|
275 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
276 |
|
277 |
-
#: admin.inc.php:
|
278 |
msgid "Display only thumbnails, no text"
|
279 |
msgstr "Показывать только изображения, без текста"
|
280 |
|
281 |
-
#: admin.inc.php:
|
282 |
msgid "Do not display thumbnails, only text."
|
283 |
msgstr "Не показывать изображения, только текст"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid "Maximum width of the thumbnail: "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: admin.inc.php:
|
290 |
msgid "Maximum height of the thumbnail: "
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid "Use timthumb to generate thumbnails? "
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: admin.inc.php:
|
298 |
msgid ""
|
299 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
300 |
"\">timthumb</a> will be used to generate thumbnails"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: admin.inc.php:
|
304 |
msgid "Quality of thumbnails generated by timthumb"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: admin.inc.php:
|
308 |
msgid ""
|
309 |
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
310 |
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: admin.inc.php:
|
314 |
#, fuzzy
|
315 |
msgid "Post thumbnail meta field name: "
|
316 |
msgstr "Опции изображения поста:"
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid ""
|
320 |
"The value of this field should contain the image source and is set in the "
|
321 |
"<em>Add New Post</em> screen"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
#, fuzzy
|
326 |
msgid ""
|
327 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -330,7 +335,7 @@ msgstr ""
|
|
330 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
331 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
332 |
|
333 |
-
#: admin.inc.php:
|
334 |
#, fuzzy
|
335 |
msgid ""
|
336 |
"This can slow down the loading of your page if the first image in the "
|
@@ -339,21 +344,21 @@ msgstr ""
|
|
339 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
340 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
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,149 +369,159 @@ msgstr ""
|
|
364 |
"обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
|
365 |
"плагин будет показывать изображение по умолчанию, как указано ниже:"
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
#, fuzzy
|
369 |
msgid "Feed options"
|
370 |
msgstr "Опции:"
|
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 "Опции:"
|
398 |
|
399 |
-
#: admin.inc.php:
|
400 |
#, fuzzy
|
401 |
msgid "Default Options"
|
402 |
msgstr "Опции вывода:"
|
403 |
|
404 |
-
#: admin.inc.php:
|
405 |
msgid "Do you want to set options to Default?"
|
406 |
msgstr "Вы хотите задать параметры по умолчанию?"
|
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 "Вы уверены, что хотите воссоздать индекс?"
|
415 |
|
416 |
-
#: admin.inc.php:
|
417 |
msgid "Contextual Related Posts"
|
418 |
msgstr "Контекстные похожие посты"
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid "Related Posts"
|
422 |
msgstr "Похожие посты"
|
423 |
|
424 |
-
#: admin.inc.php:
|
425 |
#, fuzzy
|
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 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
440 |
msgid "Powered by"
|
441 |
msgstr "Автор:"
|
442 |
|
443 |
-
#: contextual-related-posts.php:
|
444 |
#, fuzzy
|
445 |
msgid "Display Related Posts"
|
446 |
msgstr "Показывать \"Нет похожих постов\""
|
447 |
|
448 |
-
#: contextual-related-posts.php:
|
449 |
msgid "Title"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: contextual-related-posts.php:
|
453 |
msgid "No. of posts"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: contextual-related-posts.php:
|
457 |
#, fuzzy
|
458 |
msgid " Show excerpt?"
|
459 |
msgstr "Показать выдержки из поста в списке?"
|
460 |
|
461 |
-
#: contextual-related-posts.php:
|
462 |
#, fuzzy
|
463 |
msgid "Thumbnail options"
|
464 |
msgstr "Опции изображения поста:"
|
465 |
|
466 |
-
#: contextual-related-posts.php:
|
467 |
#, fuzzy
|
468 |
msgid "Thumbnails inline, before title"
|
469 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
470 |
|
471 |
-
#: contextual-related-posts.php:
|
472 |
#, fuzzy
|
473 |
msgid "Thumbnails inline, after title"
|
474 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
475 |
|
476 |
-
#: contextual-related-posts.php:
|
477 |
#, fuzzy
|
478 |
msgid "Only thumbnails, no text"
|
479 |
msgstr "Показывать только изображения, без текста"
|
480 |
|
481 |
-
#: contextual-related-posts.php:
|
482 |
#, fuzzy
|
483 |
msgid "No thumbnails, only text."
|
484 |
msgstr "Не показывать изображения, только текст"
|
485 |
|
486 |
-
#: contextual-related-posts.php:
|
487 |
#, fuzzy
|
488 |
msgid "Thumbnail height"
|
489 |
msgstr "Опции изображения поста:"
|
490 |
|
491 |
-
#: contextual-related-posts.php:
|
492 |
#, fuzzy
|
493 |
msgid "Thumbnail width"
|
494 |
msgstr "Опции изображения поста:"
|
495 |
|
496 |
-
#: contextual-related-posts.php:
|
497 |
msgid "<h3>Related Posts:</h3>"
|
498 |
msgstr "<h3>Похожие посты:</h3>"
|
499 |
|
500 |
-
#: contextual-related-posts.php:
|
501 |
#, fuzzy
|
502 |
msgid "No related posts found"
|
503 |
msgstr "Не найдены похожие посты"
|
504 |
|
505 |
-
#: contextual-related-posts.php:
|
506 |
msgid "Settings"
|
507 |
msgstr "Настройки"
|
508 |
|
509 |
-
#: contextual-related-posts.php:
|
510 |
msgid "Donate"
|
511 |
msgstr "Пожертвование"
|
512 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:42-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Настройки сохранены успешно."
|
21 |
|
22 |
+
#: admin.inc.php:119
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Опции возвращены к стандартным"
|
25 |
|
26 |
+
#: admin.inc.php:135
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Индекс воссоздан"
|
29 |
|
30 |
+
#: admin.inc.php:148
|
31 |
msgid "Support the development"
|
32 |
msgstr "Поддержка развития проекта"
|
33 |
|
34 |
+
#: admin.inc.php:156
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Введите сумму в долларах США:"
|
37 |
|
38 |
+
#: admin.inc.php:160
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Отправить пожертвование автору"
|
41 |
|
42 |
+
#: admin.inc.php:171
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Быстрые ссылки"
|
46 |
|
47 |
+
#: admin.inc.php:173
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Контекстные похожие посты"
|
51 |
|
52 |
+
#: admin.inc.php:174
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Другие плагины"
|
55 |
|
56 |
+
#: admin.inc.php:175
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Блог автора (Ajay, английский язык)"
|
59 |
|
60 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
61 |
msgid "Support"
|
62 |
msgstr "Поддержка"
|
63 |
|
64 |
+
#: admin.inc.php:177
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:181
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Последние разработки"
|
71 |
|
72 |
+
#: admin.inc.php:191
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:193
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:195
|
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:196
|
87 |
+
msgid "Clear cache"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin.inc.php:199 admin.inc.php:384
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "Количество отображаемых похожих постов:"
|
93 |
|
94 |
+
#: admin.inc.php:202
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:203
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:205
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin.inc.php:218
|
111 |
#, fuzzy
|
112 |
msgid ""
|
113 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
118 |
"сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
|
119 |
"опцию)"
|
120 |
|
121 |
+
#: admin.inc.php:221
|
122 |
msgid "List of post or page IDs to exclude from the results: "
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: admin.inc.php:224
|
126 |
msgid "Categories to exclude from the results: "
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin.inc.php:240
|
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:243
|
137 |
#, fuzzy
|
138 |
msgid "Add related posts to:"
|
139 |
msgstr "Добавить похожие посты в фид"
|
140 |
|
141 |
+
#: admin.inc.php:245
|
142 |
msgid "Posts"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.inc.php:246
|
146 |
msgid "Pages"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:247
|
150 |
msgid "Home page"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:248
|
154 |
msgid "Feeds"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin.inc.php:249
|
158 |
msgid "Category archives"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: admin.inc.php:250
|
162 |
msgid "Tag archives"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: admin.inc.php:251
|
166 |
msgid "Other archives"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: admin.inc.php:252
|
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:255
|
182 |
msgid "Add a link to the plugin page as a final item in the list"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: admin.inc.php:256
|
186 |
msgid " <em>Optional</em>"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: admin.inc.php:263
|
190 |
#, fuzzy
|
191 |
msgid "Output options"
|
192 |
msgstr "Опции вывода:"
|
193 |
|
194 |
+
#: admin.inc.php:265
|
195 |
msgid "Title of related posts: "
|
196 |
msgstr "Названия связанных постов:"
|
197 |
|
198 |
+
#: admin.inc.php:268
|
199 |
msgid "When there are no posts, what should be shown?"
|
200 |
msgstr "Когда нет сообщений, что должно быть показано?"
|
201 |
|
202 |
+
#: admin.inc.php:272
|
203 |
msgid "Blank Output"
|
204 |
msgstr "Пустой выход"
|
205 |
|
206 |
+
#: admin.inc.php:276
|
207 |
msgid "Display:"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: admin.inc.php:280 admin.inc.php:387
|
211 |
msgid "Show post excerpt in list?"
|
212 |
msgstr "Показать выдержки из поста в списке?"
|
213 |
|
214 |
+
#: admin.inc.php:283
|
215 |
msgid "Length of excerpt (in words): "
|
216 |
msgstr "Длина выдержки (в словах):"
|
217 |
|
218 |
+
#: admin.inc.php:286
|
219 |
+
#, fuzzy
|
220 |
+
msgid "Show post date in list?"
|
221 |
+
msgstr "Показать выдержки из поста в списке?"
|
222 |
+
|
223 |
+
#: admin.inc.php:289
|
224 |
msgid "Limit post title length (in characters)"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: admin.inc.php:292
|
228 |
msgid "Open links in new window"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: admin.inc.php:295
|
232 |
msgid "Add nofollow attribute to links in the list"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: admin.inc.php:298
|
236 |
#, fuzzy
|
237 |
msgid "Exclude display of related posts on these posts / pages"
|
238 |
msgstr "Добавить похожие посты в фид"
|
239 |
|
240 |
+
#: admin.inc.php:301
|
241 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: admin.inc.php:304
|
245 |
msgid "Customize the output:"
|
246 |
msgstr "Настройки выхода:"
|
247 |
|
248 |
+
#: admin.inc.php:306
|
249 |
msgid "HTML to display before the list of posts: "
|
250 |
msgstr "HTML для показа перед списком сообщений: "
|
251 |
|
252 |
+
#: admin.inc.php:309
|
253 |
msgid "HTML to display before each list item: "
|
254 |
msgstr "HTML для показа перед каждым элементом списка: "
|
255 |
|
256 |
+
#: admin.inc.php:312
|
257 |
msgid "HTML to display after each list item: "
|
258 |
msgstr "HTML для отображения после каждого элемента списка: "
|
259 |
|
260 |
+
#: admin.inc.php:315
|
261 |
msgid "HTML to display after the list of posts: "
|
262 |
msgstr "HTML для отображения после списка сообщений: "
|
263 |
|
264 |
+
#: admin.inc.php:318
|
265 |
msgid "Post thumbnail options:"
|
266 |
msgstr "Опции изображения поста:"
|
267 |
|
268 |
+
#: admin.inc.php:320 admin.inc.php:390
|
269 |
msgid "Location of post thumbnail:"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:324 admin.inc.php:394
|
273 |
#, fuzzy
|
274 |
msgid "Display thumbnails inline with posts, before title"
|
275 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
276 |
|
277 |
+
#: admin.inc.php:328 admin.inc.php:398
|
278 |
#, fuzzy
|
279 |
msgid "Display thumbnails inline with posts, after title"
|
280 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
281 |
|
282 |
+
#: admin.inc.php:332 admin.inc.php:402
|
283 |
msgid "Display only thumbnails, no text"
|
284 |
msgstr "Показывать только изображения, без текста"
|
285 |
|
286 |
+
#: admin.inc.php:336 admin.inc.php:406
|
287 |
msgid "Do not display thumbnails, only text."
|
288 |
msgstr "Не показывать изображения, только текст"
|
289 |
|
290 |
+
#: admin.inc.php:340 admin.inc.php:410
|
291 |
msgid "Maximum width of the thumbnail: "
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: admin.inc.php:343 admin.inc.php:413
|
295 |
msgid "Maximum height of the thumbnail: "
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: admin.inc.php:346
|
299 |
msgid "Use timthumb to generate thumbnails? "
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: admin.inc.php:348
|
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:351
|
309 |
msgid "Quality of thumbnails generated by timthumb"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: admin.inc.php:354
|
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:357
|
319 |
#, fuzzy
|
320 |
msgid "Post thumbnail meta field name: "
|
321 |
msgstr "Опции изображения поста:"
|
322 |
|
323 |
+
#: admin.inc.php:359
|
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:362
|
330 |
#, fuzzy
|
331 |
msgid ""
|
332 |
"If the postmeta is not set, then should the plugin extract the first image "
|
335 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
336 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
337 |
|
338 |
+
#: admin.inc.php:364
|
339 |
#, fuzzy
|
340 |
msgid ""
|
341 |
"This can slow down the loading of your page if the first image in the "
|
344 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
345 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
346 |
|
347 |
+
#: admin.inc.php:367
|
348 |
msgid "Use default thumbnail? "
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin.inc.php:369
|
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:372
|
358 |
msgid "Default thumbnail: "
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin.inc.php:374
|
362 |
#, fuzzy
|
363 |
msgid ""
|
364 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
369 |
"обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
|
370 |
"плагин будет показывать изображение по умолчанию, как указано ниже:"
|
371 |
|
372 |
+
#: admin.inc.php:380
|
373 |
#, fuzzy
|
374 |
msgid "Feed options"
|
375 |
msgstr "Опции:"
|
376 |
|
377 |
+
#: admin.inc.php:382
|
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:419
|
385 |
msgid "Custom Styles"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin.inc.php:421
|
389 |
msgid "Custom CSS to add to header:"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin.inc.php:424
|
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:429
|
400 |
#, fuzzy
|
401 |
msgid "Save Options"
|
402 |
msgstr "Опции:"
|
403 |
|
404 |
+
#: admin.inc.php:430
|
405 |
#, fuzzy
|
406 |
msgid "Default Options"
|
407 |
msgstr "Опции вывода:"
|
408 |
|
409 |
+
#: admin.inc.php:430
|
410 |
msgid "Do you want to set options to Default?"
|
411 |
msgstr "Вы хотите задать параметры по умолчанию?"
|
412 |
|
413 |
+
#: admin.inc.php:431
|
414 |
msgid "Recreate Index"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin.inc.php:431
|
418 |
msgid "Are you sure you want to recreate the index?"
|
419 |
msgstr "Вы уверены, что хотите воссоздать индекс?"
|
420 |
|
421 |
+
#: admin.inc.php:455
|
422 |
msgid "Contextual Related Posts"
|
423 |
msgstr "Контекстные похожие посты"
|
424 |
|
425 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
426 |
msgid "Related Posts"
|
427 |
msgstr "Похожие посты"
|
428 |
|
429 |
+
#: admin.inc.php:468
|
430 |
#, fuzzy
|
431 |
msgid "plugin settings page"
|
432 |
msgstr "Страница плагина"
|
433 |
|
434 |
+
#: admin.inc.php:473
|
435 |
msgid ""
|
436 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
437 |
"visit the "
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin.inc.php:473
|
441 |
msgid " to configure."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin.inc.php:532
|
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:538
|
451 |
+
msgid " cached row(s) cleared"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: contextual-related-posts.php:131
|
455 |
msgid "Powered by"
|
456 |
msgstr "Автор:"
|
457 |
|
458 |
+
#: contextual-related-posts.php:303
|
459 |
#, fuzzy
|
460 |
msgid "Display Related Posts"
|
461 |
msgstr "Показывать \"Нет похожих постов\""
|
462 |
|
463 |
+
#: contextual-related-posts.php:316
|
464 |
msgid "Title"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: contextual-related-posts.php:321
|
468 |
msgid "No. of posts"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: contextual-related-posts.php:326
|
472 |
#, fuzzy
|
473 |
msgid " Show excerpt?"
|
474 |
msgstr "Показать выдержки из поста в списке?"
|
475 |
|
476 |
+
#: contextual-related-posts.php:330
|
477 |
#, fuzzy
|
478 |
msgid "Thumbnail options"
|
479 |
msgstr "Опции изображения поста:"
|
480 |
|
481 |
+
#: contextual-related-posts.php:332
|
482 |
#, fuzzy
|
483 |
msgid "Thumbnails inline, before title"
|
484 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
485 |
|
486 |
+
#: contextual-related-posts.php:333
|
487 |
#, fuzzy
|
488 |
msgid "Thumbnails inline, after title"
|
489 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
490 |
|
491 |
+
#: contextual-related-posts.php:334
|
492 |
#, fuzzy
|
493 |
msgid "Only thumbnails, no text"
|
494 |
msgstr "Показывать только изображения, без текста"
|
495 |
|
496 |
+
#: contextual-related-posts.php:335
|
497 |
#, fuzzy
|
498 |
msgid "No thumbnails, only text."
|
499 |
msgstr "Не показывать изображения, только текст"
|
500 |
|
501 |
+
#: contextual-related-posts.php:340
|
502 |
#, fuzzy
|
503 |
msgid "Thumbnail height"
|
504 |
msgstr "Опции изображения поста:"
|
505 |
|
506 |
+
#: contextual-related-posts.php:345
|
507 |
#, fuzzy
|
508 |
msgid "Thumbnail width"
|
509 |
msgstr "Опции изображения поста:"
|
510 |
|
511 |
+
#: contextual-related-posts.php:432
|
512 |
msgid "<h3>Related Posts:</h3>"
|
513 |
msgstr "<h3>Похожие посты:</h3>"
|
514 |
|
515 |
+
#: contextual-related-posts.php:433
|
516 |
#, fuzzy
|
517 |
msgid "No related posts found"
|
518 |
msgstr "Не найдены похожие посты"
|
519 |
|
520 |
+
#: contextual-related-posts.php:741
|
521 |
msgid "Settings"
|
522 |
msgstr "Настройки"
|
523 |
|
524 |
+
#: contextual-related-posts.php:764
|
525 |
msgid "Donate"
|
526 |
msgstr "Пожертвование"
|
527 |
|
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"
|
@@ -15,154 +15,154 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
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 "Number of related posts to display: "
|
88 |
msgstr "相关日志数量:"
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Related posts should be newer than:"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "days"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Post types to include in results (including custom post types)"
|
100 |
msgstr "被索引的日志类型(包含自定义日志类型)"
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
-
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
104 |
-
msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
|
105 |
-
|
106 |
-
#: admin.inc.php:211
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr "根据标题和正文内容索引"
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
msgid ""
|
112 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
113 |
"plugin if you enable this)"
|
114 |
msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
|
115 |
|
116 |
-
#: admin.inc.php:
|
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,121 +171,126 @@ 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 |
msgid "Limit post title length (in characters)"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: admin.inc.php:
|
216 |
msgid "Open links in new window"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: admin.inc.php:
|
220 |
msgid "Add nofollow attribute to links in the list"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
#, fuzzy
|
225 |
msgid "Exclude display of related posts on these posts / pages"
|
226 |
msgstr "添加相关日志到页面里"
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "Customize the output:"
|
234 |
msgstr "自定义显示:"
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "HTML to display before the list of posts: "
|
238 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "HTML to display before each list item: "
|
242 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
msgid "HTML to display after each list item: "
|
246 |
msgstr "显示在日志列表前面的 HTML 标签:"
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
msgid "HTML to display after the list of posts: "
|
250 |
msgstr "显示在日志列表后面的 HTML 标签:"
|
251 |
|
252 |
-
#: admin.inc.php:
|
253 |
msgid "Post thumbnail options:"
|
254 |
msgstr "日志缩略图设置:"
|
255 |
|
256 |
-
#: admin.inc.php:
|
257 |
msgid "Location of post thumbnail:"
|
258 |
msgstr "日志缩略图位置:"
|
259 |
|
260 |
-
#: admin.inc.php:
|
261 |
msgid "Display thumbnails inline with posts, before title"
|
262 |
msgstr "在标题前显示缩略图"
|
263 |
|
264 |
-
#: admin.inc.php:
|
265 |
msgid "Display thumbnails inline with posts, after title"
|
266 |
msgstr "在标题后显示缩略图"
|
267 |
|
268 |
-
#: admin.inc.php:
|
269 |
msgid "Display only thumbnails, no text"
|
270 |
msgstr "不显示文本,只显示缩略图"
|
271 |
|
272 |
-
#: admin.inc.php:
|
273 |
msgid "Do not display thumbnails, only text."
|
274 |
msgstr "不显示缩略图,只显示文本"
|
275 |
|
276 |
-
#: admin.inc.php:
|
277 |
msgid "Maximum width of the thumbnail: "
|
278 |
msgstr "缩略图最大宽度"
|
279 |
|
280 |
-
#: admin.inc.php:
|
281 |
msgid "Maximum height of the thumbnail: "
|
282 |
msgstr "缩略图最大高度"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid "Use timthumb to generate thumbnails? "
|
286 |
msgstr "是否使用 timthumb 生成缩略图?"
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
msgid ""
|
290 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
291 |
"\">timthumb</a> will be used to generate thumbnails"
|
@@ -293,54 +298,54 @@ msgstr ""
|
|
293 |
"勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
294 |
"\">timthumb</a> 生成缩略图"
|
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 "日志缩略图自定义栏目的名称:"
|
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 "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
|
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 |
|
322 |
-
#: admin.inc.php:
|
323 |
msgid ""
|
324 |
"This can slow down the loading of your page if the first image in the "
|
325 |
"related posts is large in file-size"
|
326 |
msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
|
327 |
|
328 |
-
#: admin.inc.php:
|
329 |
msgid "Use default thumbnail? "
|
330 |
msgstr "是否使用默认缩略图?"
|
331 |
|
332 |
-
#: admin.inc.php:
|
333 |
msgid ""
|
334 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
335 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
336 |
msgstr ""
|
337 |
"勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
|
338 |
|
339 |
-
#: admin.inc.php:
|
340 |
msgid "Default thumbnail: "
|
341 |
msgstr "默认缩略图:"
|
342 |
|
343 |
-
#: admin.inc.php:
|
344 |
msgid ""
|
345 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
346 |
"then it will check the meta field. If this is not available, then it will "
|
@@ -349,27 +354,27 @@ msgstr ""
|
|
349 |
"本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
|
350 |
"示上面默认图像"
|
351 |
|
352 |
-
#: admin.inc.php:
|
353 |
#, fuzzy
|
354 |
msgid "Feed options"
|
355 |
msgstr "一般设置"
|
356 |
|
357 |
-
#: admin.inc.php:
|
358 |
msgid ""
|
359 |
"Below options override the related posts settings for your blog feed. These "
|
360 |
"only apply if you have selected to add related posts to Feeds in the General "
|
361 |
"Options tab."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin.inc.php:
|
365 |
msgid "Custom Styles"
|
366 |
msgstr "自定义样式"
|
367 |
|
368 |
-
#: admin.inc.php:
|
369 |
msgid "Custom CSS to add to header:"
|
370 |
msgstr "添加自定义 CSS 到 header:"
|
371 |
|
372 |
-
#: admin.inc.php:
|
373 |
#, fuzzy
|
374 |
msgid ""
|
375 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
@@ -379,115 +384,128 @@ msgstr ""
|
|
379 |
"不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
|
380 |
"extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
|
381 |
|
382 |
-
#: admin.inc.php:
|
383 |
msgid "Save Options"
|
384 |
msgstr "保存设置"
|
385 |
|
386 |
-
#: admin.inc.php:
|
387 |
msgid "Default Options"
|
388 |
msgstr "默认设置"
|
389 |
|
390 |
-
#: admin.inc.php:
|
391 |
msgid "Do you want to set options to Default?"
|
392 |
msgstr "是否要重置设置?"
|
393 |
|
394 |
-
#: admin.inc.php:
|
395 |
msgid "Recreate Index"
|
396 |
msgstr "重建索引"
|
397 |
|
398 |
-
#: admin.inc.php:
|
399 |
msgid "Are you sure you want to recreate the index?"
|
400 |
msgstr "是否要重建索引?"
|
401 |
|
402 |
-
#: admin.inc.php:
|
403 |
msgid "Contextual Related Posts"
|
404 |
msgstr "Contextual Related Posts"
|
405 |
|
406 |
-
#: admin.inc.php:
|
407 |
msgid "Related Posts"
|
408 |
msgstr "相关日志"
|
409 |
|
410 |
-
#: admin.inc.php:
|
411 |
msgid "plugin settings page"
|
412 |
msgstr "插件设置页面"
|
413 |
|
414 |
-
#: admin.inc.php:
|
415 |
msgid ""
|
416 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
417 |
"visit the "
|
418 |
msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
|
419 |
|
420 |
-
#: admin.inc.php:
|
421 |
msgid " to configure."
|
422 |
msgstr "设置插件。"
|
423 |
|
424 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
msgid "Powered by"
|
426 |
msgstr "插件作者:"
|
427 |
|
428 |
-
#: contextual-related-posts.php:
|
429 |
msgid "Display Related Posts"
|
430 |
msgstr "显示相关日志"
|
431 |
|
432 |
-
#: contextual-related-posts.php:
|
433 |
msgid "Title"
|
434 |
msgstr "标题"
|
435 |
|
436 |
-
#: contextual-related-posts.php:
|
437 |
msgid "No. of posts"
|
438 |
msgstr "日志数量"
|
439 |
|
440 |
-
#: contextual-related-posts.php:
|
441 |
msgid " Show excerpt?"
|
442 |
msgstr "是否显示日志摘要?"
|
443 |
|
444 |
-
#: contextual-related-posts.php:
|
445 |
msgid "Thumbnail options"
|
446 |
msgstr "缩略图设置:"
|
447 |
|
448 |
-
#: contextual-related-posts.php:
|
449 |
msgid "Thumbnails inline, before title"
|
450 |
msgstr "在标题前显示缩略图"
|
451 |
|
452 |
-
#: contextual-related-posts.php:
|
453 |
msgid "Thumbnails inline, after title"
|
454 |
msgstr "在标题后显示缩略图"
|
455 |
|
456 |
-
#: contextual-related-posts.php:
|
457 |
msgid "Only thumbnails, no text"
|
458 |
msgstr "不显示文本,只显示缩略图"
|
459 |
|
460 |
-
#: contextual-related-posts.php:
|
461 |
msgid "No thumbnails, only text."
|
462 |
msgstr "不显示缩略图,只显示文本"
|
463 |
|
464 |
-
#: contextual-related-posts.php:
|
465 |
#, fuzzy
|
466 |
msgid "Thumbnail height"
|
467 |
msgstr "缩略图设置:"
|
468 |
|
469 |
-
#: contextual-related-posts.php:
|
470 |
#, fuzzy
|
471 |
msgid "Thumbnail width"
|
472 |
msgstr "缩略图设置:"
|
473 |
|
474 |
-
#: contextual-related-posts.php:
|
475 |
msgid "<h3>Related Posts:</h3>"
|
476 |
msgstr "<h3>相关日志:</h3>"
|
477 |
|
478 |
-
#: contextual-related-posts.php:
|
479 |
#, fuzzy
|
480 |
msgid "No related posts found"
|
481 |
msgstr "没有发现相关日志"
|
482 |
|
483 |
-
#: contextual-related-posts.php:
|
484 |
msgid "Settings"
|
485 |
msgstr "设置"
|
486 |
|
487 |
-
#: contextual-related-posts.php:
|
488 |
msgid "Donate"
|
489 |
msgstr "捐赠"
|
490 |
|
|
|
|
|
|
|
491 |
#~ msgid "Follow @ajaydsouza on Twitter"
|
492 |
#~ msgstr "在推特上关注 @ajaydsouza"
|
493 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-06-02 10:43-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
15 |
"X-Generator: Poedit 1.5.5\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:103
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "成功保存设置。"
|
21 |
|
22 |
+
#: admin.inc.php:119
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "已重置设置。"
|
25 |
|
26 |
+
#: admin.inc.php:135
|
27 |
msgid "Index recreated"
|
28 |
msgstr "已重新创建索引"
|
29 |
|
30 |
+
#: admin.inc.php:148
|
31 |
msgid "Support the development"
|
32 |
msgstr "支持开发"
|
33 |
|
34 |
+
#: admin.inc.php:156
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "输入美元金额:"
|
37 |
|
38 |
+
#: admin.inc.php:160
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "捐赠给作者"
|
41 |
|
42 |
+
#: admin.inc.php:171
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "快捷链接"
|
46 |
|
47 |
+
#: admin.inc.php:173
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "相关日志"
|
51 |
|
52 |
+
#: admin.inc.php:174
|
53 |
msgid "Other plugins"
|
54 |
msgstr "其他插件"
|
55 |
|
56 |
+
#: admin.inc.php:175
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Ajay 的博客"
|
59 |
|
60 |
+
#: admin.inc.php:176 contextual-related-posts.php:763
|
61 |
msgid "Support"
|
62 |
msgstr "技术支持"
|
63 |
|
64 |
+
#: admin.inc.php:177
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:181
|
69 |
msgid "Recent developments"
|
70 |
msgstr "最新开发"
|
71 |
|
72 |
+
#: admin.inc.php:191
|
73 |
msgid "General options"
|
74 |
msgstr "一般设置"
|
75 |
|
76 |
+
#: admin.inc.php:193
|
77 |
msgid "Cache output?"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin.inc.php:195
|
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:196
|
87 |
+
msgid "Clear cache"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: admin.inc.php:199 admin.inc.php:384
|
91 |
msgid "Number of related posts to display: "
|
92 |
msgstr "相关日志数量:"
|
93 |
|
94 |
+
#: admin.inc.php:202
|
95 |
msgid "Related posts should be newer than:"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:203
|
99 |
msgid "days"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:205
|
103 |
msgid "Post types to include in results (including custom post types)"
|
104 |
msgstr "被索引的日志类型(包含自定义日志类型)"
|
105 |
|
106 |
+
#: admin.inc.php:216
|
|
|
|
|
|
|
|
|
107 |
msgid "Find related posts based on content as well as title"
|
108 |
msgstr "根据标题和正文内容索引"
|
109 |
|
110 |
+
#: admin.inc.php:218
|
111 |
msgid ""
|
112 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
113 |
"plugin if you enable this)"
|
114 |
msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
|
115 |
|
116 |
+
#: admin.inc.php:221
|
117 |
msgid "List of post or page IDs to exclude from the results: "
|
118 |
msgstr "排除的文章或页面 ID:"
|
119 |
|
120 |
+
#: admin.inc.php:224
|
121 |
#, fuzzy
|
122 |
msgid "Categories to exclude from the results: "
|
123 |
msgstr "排除的文章或页面 ID:"
|
124 |
|
125 |
+
#: admin.inc.php:240
|
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:243
|
133 |
#, fuzzy
|
134 |
msgid "Add related posts to:"
|
135 |
msgstr "添加相关日志到 feed 里"
|
136 |
|
137 |
+
#: admin.inc.php:245
|
138 |
msgid "Posts"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: admin.inc.php:246
|
142 |
msgid "Pages"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.inc.php:247
|
146 |
msgid "Home page"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:248
|
150 |
msgid "Feeds"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:249
|
154 |
msgid "Category archives"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin.inc.php:250
|
158 |
msgid "Tag archives"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: admin.inc.php:251
|
162 |
msgid "Other archives"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: admin.inc.php:252
|
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 |
"假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code><?php "
|
172 |
"if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code>"
|
173 |
|
174 |
+
#: admin.inc.php:255
|
175 |
msgid "Add a link to the plugin page as a final item in the list"
|
176 |
msgstr "在相关日志后添加插件页面的链接"
|
177 |
|
178 |
+
#: admin.inc.php:256
|
179 |
msgid " <em>Optional</em>"
|
180 |
msgstr " <em>可选</em>"
|
181 |
|
182 |
+
#: admin.inc.php:263
|
183 |
#, fuzzy
|
184 |
msgid "Output options"
|
185 |
msgstr "显示设置"
|
186 |
|
187 |
+
#: admin.inc.php:265
|
188 |
msgid "Title of related posts: "
|
189 |
msgstr "相关日志的标题:"
|
190 |
|
191 |
+
#: admin.inc.php:268
|
192 |
msgid "When there are no posts, what should be shown?"
|
193 |
msgstr "当不存在相关日志时,显示什么?"
|
194 |
|
195 |
+
#: admin.inc.php:272
|
196 |
msgid "Blank Output"
|
197 |
msgstr "不显示"
|
198 |
|
199 |
+
#: admin.inc.php:276
|
200 |
msgid "Display:"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin.inc.php:280 admin.inc.php:387
|
204 |
msgid "Show post excerpt in list?"
|
205 |
msgstr "是否显示日志摘要?"
|
206 |
|
207 |
+
#: admin.inc.php:283
|
208 |
msgid "Length of excerpt (in words): "
|
209 |
msgstr "摘要长度(词数):"
|
210 |
|
211 |
+
#: admin.inc.php:286
|
212 |
+
#, fuzzy
|
213 |
+
msgid "Show post date in list?"
|
214 |
+
msgstr "是否显示日志摘要?"
|
215 |
+
|
216 |
+
#: admin.inc.php:289
|
217 |
msgid "Limit post title length (in characters)"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin.inc.php:292
|
221 |
msgid "Open links in new window"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin.inc.php:295
|
225 |
msgid "Add nofollow attribute to links in the list"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin.inc.php:298
|
229 |
#, fuzzy
|
230 |
msgid "Exclude display of related posts on these posts / pages"
|
231 |
msgstr "添加相关日志到页面里"
|
232 |
|
233 |
+
#: admin.inc.php:301
|
234 |
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin.inc.php:304
|
238 |
msgid "Customize the output:"
|
239 |
msgstr "自定义显示:"
|
240 |
|
241 |
+
#: admin.inc.php:306
|
242 |
msgid "HTML to display before the list of posts: "
|
243 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
244 |
|
245 |
+
#: admin.inc.php:309
|
246 |
msgid "HTML to display before each list item: "
|
247 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
248 |
|
249 |
+
#: admin.inc.php:312
|
250 |
msgid "HTML to display after each list item: "
|
251 |
msgstr "显示在日志列表前面的 HTML 标签:"
|
252 |
|
253 |
+
#: admin.inc.php:315
|
254 |
msgid "HTML to display after the list of posts: "
|
255 |
msgstr "显示在日志列表后面的 HTML 标签:"
|
256 |
|
257 |
+
#: admin.inc.php:318
|
258 |
msgid "Post thumbnail options:"
|
259 |
msgstr "日志缩略图设置:"
|
260 |
|
261 |
+
#: admin.inc.php:320 admin.inc.php:390
|
262 |
msgid "Location of post thumbnail:"
|
263 |
msgstr "日志缩略图位置:"
|
264 |
|
265 |
+
#: admin.inc.php:324 admin.inc.php:394
|
266 |
msgid "Display thumbnails inline with posts, before title"
|
267 |
msgstr "在标题前显示缩略图"
|
268 |
|
269 |
+
#: admin.inc.php:328 admin.inc.php:398
|
270 |
msgid "Display thumbnails inline with posts, after title"
|
271 |
msgstr "在标题后显示缩略图"
|
272 |
|
273 |
+
#: admin.inc.php:332 admin.inc.php:402
|
274 |
msgid "Display only thumbnails, no text"
|
275 |
msgstr "不显示文本,只显示缩略图"
|
276 |
|
277 |
+
#: admin.inc.php:336 admin.inc.php:406
|
278 |
msgid "Do not display thumbnails, only text."
|
279 |
msgstr "不显示缩略图,只显示文本"
|
280 |
|
281 |
+
#: admin.inc.php:340 admin.inc.php:410
|
282 |
msgid "Maximum width of the thumbnail: "
|
283 |
msgstr "缩略图最大宽度"
|
284 |
|
285 |
+
#: admin.inc.php:343 admin.inc.php:413
|
286 |
msgid "Maximum height of the thumbnail: "
|
287 |
msgstr "缩略图最大高度"
|
288 |
|
289 |
+
#: admin.inc.php:346
|
290 |
msgid "Use timthumb to generate thumbnails? "
|
291 |
msgstr "是否使用 timthumb 生成缩略图?"
|
292 |
|
293 |
+
#: admin.inc.php:348
|
294 |
msgid ""
|
295 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
296 |
"\">timthumb</a> will be used to generate thumbnails"
|
298 |
"勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
299 |
"\">timthumb</a> 生成缩略图"
|
300 |
|
301 |
+
#: admin.inc.php:351
|
302 |
msgid "Quality of thumbnails generated by timthumb"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:354
|
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:357
|
312 |
msgid "Post thumbnail meta field name: "
|
313 |
msgstr "日志缩略图自定义栏目的名称:"
|
314 |
|
315 |
+
#: admin.inc.php:359
|
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:362
|
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:364
|
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:367
|
334 |
msgid "Use default thumbnail? "
|
335 |
msgstr "是否使用默认缩略图?"
|
336 |
|
337 |
+
#: admin.inc.php:369
|
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:372
|
345 |
msgid "Default thumbnail: "
|
346 |
msgstr "默认缩略图:"
|
347 |
|
348 |
+
#: admin.inc.php:374
|
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 |
"本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
|
355 |
"示上面默认图像"
|
356 |
|
357 |
+
#: admin.inc.php:380
|
358 |
#, fuzzy
|
359 |
msgid "Feed options"
|
360 |
msgstr "一般设置"
|
361 |
|
362 |
+
#: admin.inc.php:382
|
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:419
|
370 |
msgid "Custom Styles"
|
371 |
msgstr "自定义样式"
|
372 |
|
373 |
+
#: admin.inc.php:421
|
374 |
msgid "Custom CSS to add to header:"
|
375 |
msgstr "添加自定义 CSS 到 header:"
|
376 |
|
377 |
+
#: admin.inc.php:424
|
378 |
#, fuzzy
|
379 |
msgid ""
|
380 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
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:429
|
388 |
msgid "Save Options"
|
389 |
msgstr "保存设置"
|
390 |
|
391 |
+
#: admin.inc.php:430
|
392 |
msgid "Default Options"
|
393 |
msgstr "默认设置"
|
394 |
|
395 |
+
#: admin.inc.php:430
|
396 |
msgid "Do you want to set options to Default?"
|
397 |
msgstr "是否要重置设置?"
|
398 |
|
399 |
+
#: admin.inc.php:431
|
400 |
msgid "Recreate Index"
|
401 |
msgstr "重建索引"
|
402 |
|
403 |
+
#: admin.inc.php:431
|
404 |
msgid "Are you sure you want to recreate the index?"
|
405 |
msgstr "是否要重建索引?"
|
406 |
|
407 |
+
#: admin.inc.php:455
|
408 |
msgid "Contextual Related Posts"
|
409 |
msgstr "Contextual Related Posts"
|
410 |
|
411 |
+
#: admin.inc.php:455 contextual-related-posts.php:304
|
412 |
msgid "Related Posts"
|
413 |
msgstr "相关日志"
|
414 |
|
415 |
+
#: admin.inc.php:468
|
416 |
msgid "plugin settings page"
|
417 |
msgstr "插件设置页面"
|
418 |
|
419 |
+
#: admin.inc.php:473
|
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:473
|
426 |
msgid " to configure."
|
427 |
msgstr "设置插件。"
|
428 |
|
429 |
+
#: admin.inc.php:532
|
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:538
|
436 |
+
msgid " cached row(s) cleared"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: contextual-related-posts.php:131
|
440 |
msgid "Powered by"
|
441 |
msgstr "插件作者:"
|
442 |
|
443 |
+
#: contextual-related-posts.php:303
|
444 |
msgid "Display Related Posts"
|
445 |
msgstr "显示相关日志"
|
446 |
|
447 |
+
#: contextual-related-posts.php:316
|
448 |
msgid "Title"
|
449 |
msgstr "标题"
|
450 |
|
451 |
+
#: contextual-related-posts.php:321
|
452 |
msgid "No. of posts"
|
453 |
msgstr "日志数量"
|
454 |
|
455 |
+
#: contextual-related-posts.php:326
|
456 |
msgid " Show excerpt?"
|
457 |
msgstr "是否显示日志摘要?"
|
458 |
|
459 |
+
#: contextual-related-posts.php:330
|
460 |
msgid "Thumbnail options"
|
461 |
msgstr "缩略图设置:"
|
462 |
|
463 |
+
#: contextual-related-posts.php:332
|
464 |
msgid "Thumbnails inline, before title"
|
465 |
msgstr "在标题前显示缩略图"
|
466 |
|
467 |
+
#: contextual-related-posts.php:333
|
468 |
msgid "Thumbnails inline, after title"
|
469 |
msgstr "在标题后显示缩略图"
|
470 |
|
471 |
+
#: contextual-related-posts.php:334
|
472 |
msgid "Only thumbnails, no text"
|
473 |
msgstr "不显示文本,只显示缩略图"
|
474 |
|
475 |
+
#: contextual-related-posts.php:335
|
476 |
msgid "No thumbnails, only text."
|
477 |
msgstr "不显示缩略图,只显示文本"
|
478 |
|
479 |
+
#: contextual-related-posts.php:340
|
480 |
#, fuzzy
|
481 |
msgid "Thumbnail height"
|
482 |
msgstr "缩略图设置:"
|
483 |
|
484 |
+
#: contextual-related-posts.php:345
|
485 |
#, fuzzy
|
486 |
msgid "Thumbnail width"
|
487 |
msgstr "缩略图设置:"
|
488 |
|
489 |
+
#: contextual-related-posts.php:432
|
490 |
msgid "<h3>Related Posts:</h3>"
|
491 |
msgstr "<h3>相关日志:</h3>"
|
492 |
|
493 |
+
#: contextual-related-posts.php:433
|
494 |
#, fuzzy
|
495 |
msgid "No related posts found"
|
496 |
msgstr "没有发现相关日志"
|
497 |
|
498 |
+
#: contextual-related-posts.php:741
|
499 |
msgid "Settings"
|
500 |
msgstr "设置"
|
501 |
|
502 |
+
#: contextual-related-posts.php:764
|
503 |
msgid "Donate"
|
504 |
msgstr "捐赠"
|
505 |
|
506 |
+
#~ msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
507 |
+
#~ msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
|
508 |
+
|
509 |
#~ msgid "Follow @ajaydsouza on Twitter"
|
510 |
#~ msgstr "在推特上关注 @ajaydsouza"
|
511 |
|
readme.txt
CHANGED
@@ -40,12 +40,15 @@ Contextual Related Posts is one of the most feature rich related posts plugins f
|
|
40 |
|
41 |
== Upgrade Notice ==
|
42 |
|
43 |
-
= 1.8.
|
44 |
-
*
|
45 |
-
|
46 |
|
47 |
== Changelog ==
|
48 |
|
|
|
|
|
|
|
|
|
49 |
= 1.8.7 =
|
50 |
* Important security update: Potential XSS vulnerability fixed. Thanks to Charlie Eriksen via Secunia SVCRP for reporting this
|
51 |
* Added Latvian translation
|
40 |
|
41 |
== Upgrade Notice ==
|
42 |
|
43 |
+
= 1.8.8 =
|
44 |
+
* New: Clear cache button and option to add the date before the post title
|
|
|
45 |
|
46 |
== Changelog ==
|
47 |
|
48 |
+
= 1.8.8 =
|
49 |
+
* New: Clear cache button
|
50 |
+
* New: Option to add the date before the post title
|
51 |
+
|
52 |
= 1.8.7 =
|
53 |
* Important security update: Potential XSS vulnerability fixed. Thanks to Charlie Eriksen via Secunia SVCRP for reporting this
|
54 |
* Added Latvian translation
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|