Version Description
- New options to open links in new window and add
rel="nofollow"
; quality setting for thumbnails when using timthumb; custom text for no related posts; new options for related posts in feeds; thumbnail height and width can be configured for widgets; Refer to Changelog for more information
=
Download this release
Release Info
Developer | Ajay |
Plugin | Contextual Related Posts |
Version | 1.8.5 |
Comparing to | |
See all releases |
Code changes from version 1.8.4 to 1.8.5
- admin.inc.php +124 -77
- contextual-related-posts.php +168 -81
- languages/crp-da_DK.mo +0 -0
- languages/crp-da_DK.po +152 -113
- languages/crp-de_DE.mo +0 -0
- languages/crp-de_DE.po +155 -113
- languages/crp-en_US.mo +0 -0
- languages/crp-en_US.po +142 -107
- languages/crp-en_US.pot +142 -107
- languages/crp-es_ES.mo +0 -0
- languages/crp-es_ES.po +155 -113
- languages/crp-it_IT.mo +0 -0
- languages/crp-it_IT.po +155 -113
- languages/crp-nl_NL.mo +0 -0
- languages/crp-nl_NL.po +155 -113
- languages/crp-ru_RU.mo +0 -0
- languages/crp-ru_RU.po +155 -113
- languages/crp-zh_CN.mo +0 -0
- languages/crp-zh_CN.po +156 -112
- readme.txt +20 -7
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
admin.inc.php
CHANGED
@@ -17,21 +17,21 @@ function crp_options() {
|
|
17 |
$posts_types_inc = array_intersect($wp_post_types, $post_types);
|
18 |
|
19 |
|
20 |
-
if($_POST['crp_save']){
|
21 |
$crp_settings['title'] = ($_POST['title']);
|
22 |
$crp_settings['limit'] = intval($_POST['limit']);
|
23 |
$crp_settings['daily_range'] = intval($_POST['daily_range']);
|
24 |
$crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'];
|
25 |
$crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'];
|
26 |
-
$crp_settings['match_content'] = (($_POST['match_content']) ? true : false);
|
27 |
|
28 |
-
$crp_settings['add_to_content'] = (($_POST['add_to_content']) ? true : false);
|
29 |
-
$crp_settings['add_to_page'] = (($_POST['add_to_page']) ? true : false);
|
30 |
-
$crp_settings['add_to_feed'] = (($_POST['add_to_feed']) ? true : false);
|
31 |
-
$crp_settings['add_to_home'] = (($_POST['add_to_home']) ? true : false);
|
32 |
-
$crp_settings['add_to_category_archives'] = (($_POST['add_to_category_archives']) ? true : false);
|
33 |
-
$crp_settings['add_to_tag_archives'] = (($_POST['add_to_tag_archives']) ? true : false);
|
34 |
-
$crp_settings['add_to_archives'] = (($_POST['add_to_archives']) ? true : false);
|
35 |
|
36 |
$crp_settings['title_length'] = intval($_POST['title_length']);
|
37 |
$crp_settings['blank_output'] = (($_POST['blank_output'] == 'blank' ) ? true : false);
|
@@ -46,21 +46,34 @@ function crp_options() {
|
|
46 |
$crp_settings['thumb_default'] = $_POST['thumb_default'];
|
47 |
$crp_settings['thumb_height'] = intval($_POST['thumb_height']);
|
48 |
$crp_settings['thumb_width'] = intval($_POST['thumb_width']);
|
49 |
-
$crp_settings['thumb_default_show'] = (($_POST['thumb_default_show']) ? true : false);
|
50 |
-
|
51 |
-
$crp_settings['
|
52 |
-
$crp_settings['
|
|
|
|
|
|
|
53 |
$crp_settings['excerpt_length'] = intval($_POST['excerpt_length']);
|
54 |
-
$crp_settings['show_credit'] = (($_POST['show_credit']) ? true : false);
|
55 |
$crp_settings['custom_CSS'] = $_POST['custom_CSS'];
|
|
|
|
|
|
|
56 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
$crp_settings['exclude_cat_slugs'] = ($_POST['exclude_cat_slugs']);
|
58 |
$exclude_categories_slugs = explode(", ",$crp_settings['exclude_cat_slugs']);
|
59 |
|
60 |
$exclude_categories = '';
|
61 |
foreach ($exclude_categories_slugs as $exclude_categories_slug) {
|
62 |
$catObj = get_category_by_slug($exclude_categories_slug);
|
63 |
-
$exclude_categories .= $catObj->term_id . ',';
|
64 |
}
|
65 |
$crp_settings['exclude_categories'] = substr($exclude_categories, 0, -2);
|
66 |
|
@@ -81,7 +94,7 @@ function crp_options() {
|
|
81 |
echo $str;
|
82 |
}
|
83 |
|
84 |
-
if ($_POST['crp_default']){
|
85 |
delete_option('ald_crp_settings');
|
86 |
$crp_settings = crp_default_options();
|
87 |
update_option('ald_crp_settings', $crp_settings);
|
@@ -96,7 +109,7 @@ function crp_options() {
|
|
96 |
$str = '<div id="message" class="updated fade"><p>'. __('Options set to Default.',CRP_LOCAL_NAME) .'</p></div>';
|
97 |
echo $str;
|
98 |
}
|
99 |
-
if ($_POST['crp_recreate']){
|
100 |
$sql = "ALTER TABLE $poststable DROP INDEX crp_related";
|
101 |
$wpdb->query($sql);
|
102 |
|
@@ -117,7 +130,7 @@ function crp_options() {
|
|
117 |
<div id="page-wrap">
|
118 |
<div id="inside">
|
119 |
<div id="header">
|
120 |
-
<h2>Contextual Related Posts</h2>
|
121 |
</div>
|
122 |
<div id="side">
|
123 |
<div class="side-widget">
|
@@ -139,23 +152,23 @@ function crp_options() {
|
|
139 |
</div>
|
140 |
</div>
|
141 |
<div class="side-widget">
|
142 |
-
|
|
|
|
|
143 |
</div>
|
144 |
<div class="side-widget">
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
</ul>
|
154 |
</div>
|
155 |
<div class="side-widget">
|
156 |
-
|
157 |
-
|
158 |
-
?>
|
159 |
</div>
|
160 |
</div>
|
161 |
|
@@ -163,16 +176,14 @@ function crp_options() {
|
|
163 |
<form method="post" id="crp_options" name="crp_options" onsubmit="return checkForm()">
|
164 |
<fieldset class="options">
|
165 |
<div class="tabber">
|
166 |
-
<div class="tabbertab">
|
167 |
-
<h3>
|
168 |
-
<?php _e('General options',CRP_LOCAL_NAME); ?>
|
169 |
-
</h3>
|
170 |
<table class="form-table">
|
171 |
<tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
|
172 |
-
<td><input type="textbox" name="limit" id="limit" value="<?php echo
|
173 |
</tr>
|
174 |
<tr style="vertical-align: top;"><th scope="row"><label for="daily_range"><?php _e('Related posts should be newer than:',CRP_LOCAL_NAME); ?></label></th>
|
175 |
-
<td><input type="textbox" name="daily_range" id="daily_range" value="<?php echo
|
176 |
</tr>
|
177 |
<tr style="vertical-align: top;"><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
|
178 |
<td>
|
@@ -192,7 +203,7 @@ function crp_options() {
|
|
192 |
<td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings['match_content']) echo 'checked="checked"' ?> /> <br /><?php _e('If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)',CRP_LOCAL_NAME); ?></td>
|
193 |
</tr>
|
194 |
<tr style="vertical-align: top;"><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
|
195 |
-
<td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo
|
196 |
</tr>
|
197 |
<tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Categories to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
|
198 |
<td>
|
@@ -231,13 +242,11 @@ function crp_options() {
|
|
231 |
</table>
|
232 |
|
233 |
</div>
|
234 |
-
<div class="tabbertab">
|
235 |
-
<h3>
|
236 |
-
<?php _e('Output Options',CRP_LOCAL_NAME); ?>
|
237 |
-
</h3>
|
238 |
<table class="form-table">
|
239 |
<tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
|
240 |
-
<td><input type="textbox" name="title" id="title" value="<?php echo
|
241 |
</tr>
|
242 |
<tr style="vertical-align: top;"><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?></label></th>
|
243 |
<td>
|
@@ -246,9 +255,9 @@ function crp_options() {
|
|
246 |
<?php _e('Blank Output',CRP_LOCAL_NAME); ?></label>
|
247 |
<br />
|
248 |
<label>
|
249 |
-
<input type="radio" name="blank_output" value="
|
250 |
-
<?php _e('Display
|
251 |
-
|
252 |
</td>
|
253 |
</tr>
|
254 |
<tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
|
@@ -260,22 +269,31 @@ function crp_options() {
|
|
260 |
<tr style="vertical-align: top;"><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',CRP_LOCAL_NAME); ?></label></th>
|
261 |
<td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($crp_settings['title_length']); ?>" /></td>
|
262 |
</tr>
|
263 |
-
<tr style="vertical-align: top;"><th scope="row"><label for="
|
264 |
-
<td><input type="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
</tr>
|
266 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
|
267 |
</tr>
|
268 |
<tr style="vertical-align: top;"><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
|
269 |
-
<td><input type="textbox" name="before_list" id="before_list" value="<?php echo
|
270 |
</tr>
|
271 |
<tr style="vertical-align: top;"><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',CRP_LOCAL_NAME); ?></label></th>
|
272 |
-
<td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo
|
273 |
</tr>
|
274 |
<tr style="vertical-align: top;"><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',CRP_LOCAL_NAME); ?></label></th>
|
275 |
-
<td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo
|
276 |
</tr>
|
277 |
<tr style="vertical-align: top;"><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
|
278 |
-
<td><input type="textbox" name="after_list" id="after_list" value="<?php echo
|
279 |
</tr>
|
280 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',CRP_LOCAL_NAME); ?></th>
|
281 |
</tr>
|
@@ -300,16 +318,22 @@ function crp_options() {
|
|
300 |
</td>
|
301 |
</tr>
|
302 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
303 |
-
<td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo
|
304 |
</tr>
|
305 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
306 |
-
<td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo
|
307 |
</tr>
|
308 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',CRP_LOCAL_NAME); ?></label></th>
|
309 |
<td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($crp_settings['thumb_timthumb']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',CRP_LOCAL_NAME); ?></td>
|
310 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',CRP_LOCAL_NAME); ?></label></th>
|
312 |
-
<td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo
|
313 |
</tr>
|
314 |
<tr style="vertical-align: top;"><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',CRP_LOCAL_NAME); ?></label></th>
|
315 |
<td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($crp_settings['scan_images']) echo 'checked="checked"' ?> /> <br /><?php _e('This can slow down the loading of your page if the first image in the related posts is large in file-size',CRP_LOCAL_NAME); ?></td>
|
@@ -318,14 +342,51 @@ function crp_options() {
|
|
318 |
<td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($crp_settings['thumb_default_show']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',CRP_LOCAL_NAME); ?></td>
|
319 |
</tr>
|
320 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
321 |
-
<td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo
|
322 |
</tr>
|
323 |
</table>
|
324 |
</div>
|
325 |
-
<div class="tabbertab">
|
326 |
-
<h3>
|
327 |
-
|
328 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
<table class="form-table">
|
330 |
<tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
|
331 |
</tr>
|
@@ -352,24 +413,10 @@ function crp_options() {
|
|
352 |
|
353 |
|
354 |
function crp_adminmenu() {
|
355 |
-
if (function_exists('
|
356 |
-
|
357 |
-
if (current_user_can('manage_options')) {
|
358 |
-
$crp_is_admin = true;
|
359 |
-
}
|
360 |
-
} else {
|
361 |
-
// In WordPress 1.x
|
362 |
-
global $user_ID;
|
363 |
-
if (user_can_edit_user($user_ID, 0)) {
|
364 |
-
$crp_is_admin = true;
|
365 |
-
}
|
366 |
-
}
|
367 |
-
|
368 |
-
if ((function_exists('add_options_page'))&&($crp_is_admin)) {
|
369 |
-
$plugin_page = add_options_page(__("Contextual Related Posts", CRP_LOCAL_NAME), __("Related Posts", CRP_LOCAL_NAME), 9, 'crp_options', 'crp_options');
|
370 |
add_action( 'admin_head-'. $plugin_page, 'crp_adminhead' );
|
371 |
}
|
372 |
-
|
373 |
}
|
374 |
add_action('admin_menu', 'crp_adminmenu');
|
375 |
|
@@ -402,7 +449,7 @@ return answer;
|
|
402 |
</script>
|
403 |
<script type="text/javascript" src="<?php echo $crp_url ?>/wick/sample_data.js.php"></script>
|
404 |
<script type="text/javascript" src="<?php echo $crp_url ?>/wick/wick.js"></script>
|
405 |
-
<script type="text/javascript" src="<?php echo $crp_url ?>/tabber/tabber.js"></script>
|
406 |
<?php }
|
407 |
|
408 |
?>
|
17 |
$posts_types_inc = array_intersect($wp_post_types, $post_types);
|
18 |
|
19 |
|
20 |
+
if (isset($_POST['crp_save'])) {
|
21 |
$crp_settings['title'] = ($_POST['title']);
|
22 |
$crp_settings['limit'] = intval($_POST['limit']);
|
23 |
$crp_settings['daily_range'] = intval($_POST['daily_range']);
|
24 |
$crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'];
|
25 |
$crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'];
|
26 |
+
$crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
|
27 |
|
28 |
+
$crp_settings['add_to_content'] = (isset($_POST['add_to_content']) ? true : false);
|
29 |
+
$crp_settings['add_to_page'] = (isset($_POST['add_to_page']) ? true : false);
|
30 |
+
$crp_settings['add_to_feed'] = (isset($_POST['add_to_feed']) ? true : false);
|
31 |
+
$crp_settings['add_to_home'] = (isset($_POST['add_to_home']) ? true : false);
|
32 |
+
$crp_settings['add_to_category_archives'] = (isset($_POST['add_to_category_archives']) ? true : false);
|
33 |
+
$crp_settings['add_to_tag_archives'] = (isset($_POST['add_to_tag_archives']) ? true : false);
|
34 |
+
$crp_settings['add_to_archives'] = (isset($_POST['add_to_archives']) ? true : false);
|
35 |
|
36 |
$crp_settings['title_length'] = intval($_POST['title_length']);
|
37 |
$crp_settings['blank_output'] = (($_POST['blank_output'] == 'blank' ) ? true : false);
|
46 |
$crp_settings['thumb_default'] = $_POST['thumb_default'];
|
47 |
$crp_settings['thumb_height'] = intval($_POST['thumb_height']);
|
48 |
$crp_settings['thumb_width'] = intval($_POST['thumb_width']);
|
49 |
+
$crp_settings['thumb_default_show'] = (isset($_POST['thumb_default_show']) ? true : false);
|
50 |
+
|
51 |
+
$crp_settings['thumb_timthumb'] = (isset($_POST['thumb_timthumb']) ? true : false);
|
52 |
+
$crp_settings['thumb_timthumb_q'] = intval($_POST['thumb_timthumb_q']);
|
53 |
+
|
54 |
+
$crp_settings['scan_images'] = (isset($_POST['scan_images']) ? true : false);
|
55 |
+
$crp_settings['show_excerpt'] = (isset($_POST['show_excerpt']) ? true : false);
|
56 |
$crp_settings['excerpt_length'] = intval($_POST['excerpt_length']);
|
57 |
+
$crp_settings['show_credit'] = (isset($_POST['show_credit']) ? true : false);
|
58 |
$crp_settings['custom_CSS'] = $_POST['custom_CSS'];
|
59 |
+
|
60 |
+
$crp_settings['link_new_window'] = (isset($_POST['link_new_window']) ? true : false);
|
61 |
+
$crp_settings['link_nofollow'] = (isset($_POST['link_nofollow']) ? true : false);
|
62 |
|
63 |
+
$crp_settings['limit_feed'] = intval($_POST['limit_feed']);
|
64 |
+
$crp_settings['post_thumb_op_feed'] = $_POST['post_thumb_op_feed'];
|
65 |
+
$crp_settings['thumb_height_feed'] = intval($_POST['thumb_height_feed']);
|
66 |
+
$crp_settings['thumb_width_feed'] = intval($_POST['thumb_width_feed']);
|
67 |
+
$crp_settings['show_excerpt_feed'] = (isset($_POST['show_excerpt_feed']) ? true : false);
|
68 |
+
|
69 |
+
|
70 |
$crp_settings['exclude_cat_slugs'] = ($_POST['exclude_cat_slugs']);
|
71 |
$exclude_categories_slugs = explode(", ",$crp_settings['exclude_cat_slugs']);
|
72 |
|
73 |
$exclude_categories = '';
|
74 |
foreach ($exclude_categories_slugs as $exclude_categories_slug) {
|
75 |
$catObj = get_category_by_slug($exclude_categories_slug);
|
76 |
+
if (isset($catObj->term_id)) $exclude_categories .= $catObj->term_id . ',';
|
77 |
}
|
78 |
$crp_settings['exclude_categories'] = substr($exclude_categories, 0, -2);
|
79 |
|
94 |
echo $str;
|
95 |
}
|
96 |
|
97 |
+
if (isset($_POST['crp_default'])) {
|
98 |
delete_option('ald_crp_settings');
|
99 |
$crp_settings = crp_default_options();
|
100 |
update_option('ald_crp_settings', $crp_settings);
|
109 |
$str = '<div id="message" class="updated fade"><p>'. __('Options set to Default.',CRP_LOCAL_NAME) .'</p></div>';
|
110 |
echo $str;
|
111 |
}
|
112 |
+
if (isset($_POST['crp_recreate'])) {
|
113 |
$sql = "ALTER TABLE $poststable DROP INDEX crp_related";
|
114 |
$wpdb->query($sql);
|
115 |
|
130 |
<div id="page-wrap">
|
131 |
<div id="inside">
|
132 |
<div id="header">
|
133 |
+
<?php screen_icon(); ?> <h2>Contextual Related Posts</h2>
|
134 |
</div>
|
135 |
<div id="side">
|
136 |
<div class="side-widget">
|
152 |
</div>
|
153 |
</div>
|
154 |
<div class="side-widget">
|
155 |
+
<iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fajaydsouzacom&width=292&height=62&colorscheme=light&show_faces=false&border_color&stream=false&header=true&appId=113175385243" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:62px;" allowTransparency="true"></iframe>
|
156 |
+
<div style="text-align:center"><a href="https://twitter.com/ajaydsouza" class="twitter-follow-button" data-show-count="false" data-size="large" data-dnt="true">Follow @ajaydsouza</a>
|
157 |
+
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></div>
|
158 |
</div>
|
159 |
<div class="side-widget">
|
160 |
+
<span class="title"><?php _e('Quick Links',CRP_LOCAL_NAME) ?></span>
|
161 |
+
<ul>
|
162 |
+
<li><a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/"><?php _e('Contextual Related Posts plugin page',CRP_LOCAL_NAME) ?></a></li>
|
163 |
+
<li><a href="http://ajaydsouza.com/wordpress/plugins/"><?php _e('Other plugins',CRP_LOCAL_NAME) ?></a></li>
|
164 |
+
<li><a href="http://ajaydsouza.com/"><?php _e('Ajay\'s blog',CRP_LOCAL_NAME) ?></a></li>
|
165 |
+
<li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e('Support',CRP_LOCAL_NAME) ?></a></li>
|
166 |
+
<li><a href="http://wordpress.org/support/view/plugin-reviews/contextual-related-posts"><?php _e('Reviews',CRP_LOCAL_NAME) ?></a></li>
|
167 |
+
</ul>
|
|
|
168 |
</div>
|
169 |
<div class="side-widget">
|
170 |
+
<span class="title"><?php _e('Recent developments',CRP_LOCAL_NAME) ?></span>
|
171 |
+
<?php require_once(ABSPATH . WPINC . '/class-simplepie.php'); wp_widget_rss_output('http://ajaydsouza.com/archives/category/wordpress/plugins/feed/', array('items' => 5, 'show_author' => 0, 'show_date' => 1)); ?>
|
|
|
172 |
</div>
|
173 |
</div>
|
174 |
|
176 |
<form method="post" id="crp_options" name="crp_options" onsubmit="return checkForm()">
|
177 |
<fieldset class="options">
|
178 |
<div class="tabber">
|
179 |
+
<div class="tabbertab" id="crp_genoptions">
|
180 |
+
<h3><?php _e('General options',CRP_LOCAL_NAME); ?></h3>
|
|
|
|
|
181 |
<table class="form-table">
|
182 |
<tr style="vertical-align: top;"><th scope="row"><label for="limit"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
|
183 |
+
<td><input type="textbox" name="limit" id="limit" value="<?php echo esc_attr(stripslashes($crp_settings['limit'])); ?>"></td>
|
184 |
</tr>
|
185 |
<tr style="vertical-align: top;"><th scope="row"><label for="daily_range"><?php _e('Related posts should be newer than:',CRP_LOCAL_NAME); ?></label></th>
|
186 |
+
<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>
|
187 |
</tr>
|
188 |
<tr style="vertical-align: top;"><th scope="row"><?php _e('Post types to include in results (including custom post types)',CRP_LOCAL_NAME); ?></th>
|
189 |
<td>
|
203 |
<td><input type="checkbox" name="match_content" id="match_content" <?php if ($crp_settings['match_content']) echo 'checked="checked"' ?> /> <br /><?php _e('If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)',CRP_LOCAL_NAME); ?></td>
|
204 |
</tr>
|
205 |
<tr style="vertical-align: top;"><th scope="row"><label for="exclude_post_ids"><?php _e('List of post or page IDs to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
|
206 |
+
<td><input type="textbox" name="exclude_post_ids" id="exclude_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_post_ids'])); ?>" style="width:250px"></td>
|
207 |
</tr>
|
208 |
<tr style="vertical-align: top;"><th scope="row"><label for="exclude_cat_slugs"><?php _e('Categories to exclude from the results: ',CRP_LOCAL_NAME); ?></label></th>
|
209 |
<td>
|
242 |
</table>
|
243 |
|
244 |
</div>
|
245 |
+
<div class="tabbertab" id="crp_outputoptions">
|
246 |
+
<h3><?php _e('Output options',CRP_LOCAL_NAME); ?></h3>
|
|
|
|
|
247 |
<table class="form-table">
|
248 |
<tr style="vertical-align: top;"><th scope="row"><label for="title"><?php _e('Title of related posts: ',CRP_LOCAL_NAME); ?></label></th>
|
249 |
+
<td><input type="textbox" name="title" id="title" value="<?php echo esc_attr(stripslashes($crp_settings['title'])); ?>" style="width:250px" /></td>
|
250 |
</tr>
|
251 |
<tr style="vertical-align: top;"><th scope="row"><label for="blank_output"><?php _e('When there are no posts, what should be shown?',CRP_LOCAL_NAME); ?></label></th>
|
252 |
<td>
|
255 |
<?php _e('Blank Output',CRP_LOCAL_NAME); ?></label>
|
256 |
<br />
|
257 |
<label>
|
258 |
+
<input type="radio" name="blank_output" value="customs" id="blank_output_1" <?php if (!$crp_settings['blank_output']) echo 'checked="checked"' ?> />
|
259 |
+
<?php _e('Display:',CRP_LOCAL_NAME); ?></label>
|
260 |
+
<input type="textbox" name="blank_output_text" id="blank_output_text" value="<?php echo esc_attr(stripslashes($crp_settings['blank_output_text'])); ?>" style="width:250px" />
|
261 |
</td>
|
262 |
</tr>
|
263 |
<tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
|
269 |
<tr style="vertical-align: top;"><th scope="row"><label for="title_length"><?php _e('Limit post title length (in characters)',CRP_LOCAL_NAME); ?></label></th>
|
270 |
<td><input type="textbox" name="title_length" id="title_length" value="<?php echo stripslashes($crp_settings['title_length']); ?>" /></td>
|
271 |
</tr>
|
272 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="link_new_window"><?php _e('Open links in new window',CRP_LOCAL_NAME); ?></label></th>
|
273 |
+
<td><input type="checkbox" name="link_new_window" id="link_new_window" <?php if ($crp_settings['link_new_window']) echo 'checked="checked"' ?> /></td>
|
274 |
+
</tr>
|
275 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="link_nofollow"><?php _e('Add nofollow attribute to links in the list',CRP_LOCAL_NAME); ?></label></th>
|
276 |
+
<td><input type="checkbox" name="link_nofollow" id="link_nofollow" <?php if ($crp_settings['link_nofollow']) echo 'checked="checked"' ?> /></td>
|
277 |
+
</tr>
|
278 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="exclude_on_post_ids"><?php _e('Exclude display of related posts on these posts / pages',CRP_LOCAL_NAME); ?></label></th>
|
279 |
+
<td>
|
280 |
+
<input type="textbox" name="exclude_on_post_ids" id="exclude_on_post_ids" value="<?php echo esc_attr(stripslashes($crp_settings['exclude_on_post_ids'])); ?>" style="width:250px">
|
281 |
+
<br /><?php _e('Enter comma separated list of IDs. e.g. 188,320,500',CRP_LOCAL_NAME); ?>
|
282 |
+
</td>
|
283 |
</tr>
|
284 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Customize the output:',CRP_LOCAL_NAME); ?></th>
|
285 |
</tr>
|
286 |
<tr style="vertical-align: top;"><th scope="row"><label for="before_list"><?php _e('HTML to display before the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
|
287 |
+
<td><input type="textbox" name="before_list" id="before_list" value="<?php echo esc_attr(stripslashes($crp_settings['before_list'])); ?>" style="width:250px" /></td>
|
288 |
</tr>
|
289 |
<tr style="vertical-align: top;"><th scope="row"><label for="before_list_item"><?php _e('HTML to display before each list item: ',CRP_LOCAL_NAME); ?></label></th>
|
290 |
+
<td><input type="textbox" name="before_list_item" id="before_list_item" value="<?php echo esc_attr(stripslashes($crp_settings['before_list_item'])); ?>" style="width:250px" /></td>
|
291 |
</tr>
|
292 |
<tr style="vertical-align: top;"><th scope="row"><label for="after_list_item"><?php _e('HTML to display after each list item: ',CRP_LOCAL_NAME); ?></label></th>
|
293 |
+
<td><input type="textbox" name="after_list_item" id="after_list_item" value="<?php echo esc_attr(stripslashes($crp_settings['after_list_item'])); ?>" style="width:250px" /></td>
|
294 |
</tr>
|
295 |
<tr style="vertical-align: top;"><th scope="row"><label for="after_list"><?php _e('HTML to display after the list of posts: ',CRP_LOCAL_NAME); ?></label></th>
|
296 |
+
<td><input type="textbox" name="after_list" id="after_list" value="<?php echo esc_attr(stripslashes($crp_settings['after_list'])); ?>" style="width:250px" /></td>
|
297 |
</tr>
|
298 |
<tr style="vertical-align: top; background: #eee"><th scope="row" colspan="2"><?php _e('Post thumbnail options:',CRP_LOCAL_NAME); ?></th>
|
299 |
</tr>
|
318 |
</td>
|
319 |
</tr>
|
320 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_width"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
321 |
+
<td><input type="textbox" name="thumb_width" id="thumb_width" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_width'])); ?>" style="width:30px" />px</td>
|
322 |
</tr>
|
323 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_height"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
324 |
+
<td><input type="textbox" name="thumb_height" id="thumb_height" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_height'])); ?>" style="width:30px" />px</td>
|
325 |
</tr>
|
326 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb"><?php _e('Use timthumb to generate thumbnails? ',CRP_LOCAL_NAME); ?></label></th>
|
327 |
<td><input type="checkbox" name="thumb_timthumb" id="thumb_timthumb" <?php if ($crp_settings['thumb_timthumb']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, <a href="http://www.binarymoon.co.uk/projects/timthumb/">timthumb</a> will be used to generate thumbnails',CRP_LOCAL_NAME); ?></td>
|
328 |
</tr>
|
329 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_timthumb_q"><?php _e('Quality of thumbnails generated by timthumb',CRP_LOCAL_NAME); ?></label></th>
|
330 |
+
<td>
|
331 |
+
<input type="textbox" name="thumb_timthumb_q" id="thumb_timthumb_q" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_timthumb_q'])); ?>" style="width:30px" /><br />
|
332 |
+
<?php _e('Enter values between 0 and 100 only. 100 is highest quality, however, it is also the highest file size. Suggested maximum value is 95. CRP default is 75.',CRP_LOCAL_NAME); ?>
|
333 |
+
</td>
|
334 |
+
</tr>
|
335 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_meta"><?php _e('Post thumbnail meta field name: ',CRP_LOCAL_NAME); ?></label></th>
|
336 |
+
<td><input type="textbox" name="thumb_meta" id="thumb_meta" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_meta'])); ?>"> <br /><?php _e('The value of this field should contain the image source and is set in the <em>Add New Post</em> screen',CRP_LOCAL_NAME); ?></td>
|
337 |
</tr>
|
338 |
<tr style="vertical-align: top;"><th scope="row"><label for="scan_images"><?php _e('If the postmeta is not set, then should the plugin extract the first image from the post?',CRP_LOCAL_NAME); ?></label></th>
|
339 |
<td><input type="checkbox" name="scan_images" id="scan_images" <?php if ($crp_settings['scan_images']) echo 'checked="checked"' ?> /> <br /><?php _e('This can slow down the loading of your page if the first image in the related posts is large in file-size',CRP_LOCAL_NAME); ?></td>
|
342 |
<td><input type="checkbox" name="thumb_default_show" id="thumb_default_show" <?php if ($crp_settings['thumb_default_show']) echo 'checked="checked"' ?> /> <br /><?php _e('If checked, when no thumbnail is found, show a default one from the URL below. If not checked and no thumbnail is found, no image will be shown.',CRP_LOCAL_NAME); ?></td>
|
343 |
</tr>
|
344 |
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_default"><?php _e('Default thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
345 |
+
<td><input type="textbox" name="thumb_default" id="thumb_default" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_default'])); ?>" style="width:500px"> <br /><?php _e('The plugin will first check if the post contains a thumbnail. If it doesn\'t then it will check the meta field. If this is not available, then it will show the default image as specified above',CRP_LOCAL_NAME); ?></td>
|
346 |
</tr>
|
347 |
</table>
|
348 |
</div>
|
349 |
+
<div class="tabbertab" id="crp_feedoptions">
|
350 |
+
<h3><?php _e('Feed options',CRP_LOCAL_NAME); ?></h3>
|
351 |
+
<table class="form-table">
|
352 |
+
<tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Below options override the related posts settings for your blog feed. These only apply if you have selected to add related posts to Feeds in the General Options tab.',CRP_LOCAL_NAME); ?></th>
|
353 |
+
</tr>
|
354 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="limit_feed"><?php _e('Number of related posts to display: ',CRP_LOCAL_NAME); ?></label></th>
|
355 |
+
<td><input type="textbox" name="limit_feed" id="limit_feed" value="<?php echo esc_attr(stripslashes($crp_settings['limit_feed'])); ?>"></td>
|
356 |
+
</tr>
|
357 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="show_excerpt_feed"><?php _e('Show post excerpt in list?',CRP_LOCAL_NAME); ?></label></th>
|
358 |
+
<td><input type="checkbox" name="show_excerpt_feed" id="show_excerpt_feed" <?php if ($crp_settings['show_excerpt_feed']) echo 'checked="checked"' ?> /></td>
|
359 |
+
</tr>
|
360 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="post_thumb_op_feed"><?php _e('Location of post thumbnail:',CRP_LOCAL_NAME); ?></label></th>
|
361 |
+
<td>
|
362 |
+
<label>
|
363 |
+
<input type="radio" name="post_thumb_op_feed" value="inline" id="post_thumb_op_feed_0" <?php if ($crp_settings['post_thumb_op_feed']=='inline') echo 'checked="checked"' ?> />
|
364 |
+
<?php _e('Display thumbnails inline with posts, before title',CRP_LOCAL_NAME); ?></label>
|
365 |
+
<br />
|
366 |
+
<label>
|
367 |
+
<input type="radio" name="post_thumb_op_feed" value="after" id="post_thumb_op_feed_1" <?php if ($crp_settings['post_thumb_op_feed']=='after') echo 'checked="checked"' ?> />
|
368 |
+
<?php _e('Display thumbnails inline with posts, after title',CRP_LOCAL_NAME); ?></label>
|
369 |
+
<br />
|
370 |
+
<label>
|
371 |
+
<input type="radio" name="post_thumb_op_feed" value="thumbs_only" id="post_thumb_op_feed_2" <?php if ($crp_settings['post_thumb_op_feed']=='thumbs_only') echo 'checked="checked"' ?> />
|
372 |
+
<?php _e('Display only thumbnails, no text',CRP_LOCAL_NAME); ?></label>
|
373 |
+
<br />
|
374 |
+
<label>
|
375 |
+
<input type="radio" name="post_thumb_op_feed" value="text_only" id="post_thumb_op_feed_3" <?php if ($crp_settings['post_thumb_op_feed']=='text_only') echo 'checked="checked"' ?> />
|
376 |
+
<?php _e('Do not display thumbnails, only text.',CRP_LOCAL_NAME); ?></label>
|
377 |
+
<br />
|
378 |
+
</td>
|
379 |
+
</tr>
|
380 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_width_feed"><?php _e('Maximum width of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
381 |
+
<td><input type="textbox" name="thumb_width_feed" id="thumb_width_feed" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_width_feed'])); ?>" style="width:30px" />px</td>
|
382 |
+
</tr>
|
383 |
+
<tr style="vertical-align: top;"><th scope="row"><label for="thumb_height_feed"><?php _e('Maximum height of the thumbnail: ',CRP_LOCAL_NAME); ?></label></th>
|
384 |
+
<td><input type="textbox" name="thumb_height_feed" id="thumb_height_feed" value="<?php echo esc_attr(stripslashes($crp_settings['thumb_height_feed'])); ?>" style="width:30px" />px</td>
|
385 |
+
</tr>
|
386 |
+
</table>
|
387 |
+
</div>
|
388 |
+
<div class="tabbertab" id="crp_customstyles">
|
389 |
+
<h3><?php _e('Custom Styles',CRP_LOCAL_NAME); ?></h3>
|
390 |
<table class="form-table">
|
391 |
<tr style="vertical-align: top; "><th scope="row" colspan="2"><?php _e('Custom CSS to add to header:',CRP_LOCAL_NAME); ?></th>
|
392 |
</tr>
|
413 |
|
414 |
|
415 |
function crp_adminmenu() {
|
416 |
+
if ((function_exists('add_options_page'))) {
|
417 |
+
$plugin_page = add_options_page(__("Contextual Related Posts", CRP_LOCAL_NAME), __("Related Posts", CRP_LOCAL_NAME), 'manage_options', 'crp_options', 'crp_options');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
add_action( 'admin_head-'. $plugin_page, 'crp_adminhead' );
|
419 |
}
|
|
|
420 |
}
|
421 |
add_action('admin_menu', 'crp_adminmenu');
|
422 |
|
449 |
</script>
|
450 |
<script type="text/javascript" src="<?php echo $crp_url ?>/wick/sample_data.js.php"></script>
|
451 |
<script type="text/javascript" src="<?php echo $crp_url ?>/wick/wick.js"></script>
|
452 |
+
<script type="text/javascript" src="<?php echo $crp_url ?>/tabber/tabber-minimized.js"></script>
|
453 |
<?php }
|
454 |
|
455 |
?>
|
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
|
@@ -39,8 +39,9 @@ add_action('init', 'ald_crp_init');
|
|
39 |
|
40 |
|
41 |
/*********************************************************************
|
42 |
-
* Main
|
43 |
********************************************************************/
|
|
|
44 |
function ald_crp( $args ) {
|
45 |
$defaults = array(
|
46 |
'is_widget' => FALSE,
|
@@ -54,25 +55,31 @@ function ald_crp( $args ) {
|
|
54 |
// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
|
55 |
extract( $args, EXTR_SKIP );
|
56 |
|
57 |
-
return get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op);
|
58 |
}
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
|
63 |
global $wpdb, $post, $single;
|
64 |
|
65 |
$crp_settings = crp_read_options();
|
66 |
-
parse_str($crp_settings['post_types'],$post_types);
|
67 |
if (empty($limit)) $limit = stripslashes($crp_settings['limit']);
|
68 |
if (empty($post_thumb_op)) $post_thumb_op = stripslashes($crp_settings['post_thumb_op']);
|
69 |
if (!isset($show_excerpt)) $show_excerpt = $crp_settings['show_excerpt'];
|
|
|
|
|
|
|
|
|
70 |
$exclude_categories = explode(',',$crp_settings['exclude_categories']);
|
71 |
|
|
|
|
|
|
|
72 |
// Make sure the post is not from the future
|
73 |
-
$time_difference =
|
74 |
$now = gmdate("Y-m-d H:i:s",(time()+($time_difference*3600)));
|
75 |
|
|
|
76 |
if($crp_settings['match_content']) {
|
77 |
$stuff = addslashes($post->post_title. ' ' . $post->post_content);
|
78 |
}
|
@@ -80,10 +87,12 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
|
|
80 |
$stuff = addslashes($post->post_title);
|
81 |
}
|
82 |
|
|
|
83 |
$daily_range = $crp_settings['daily_range'] - 1;
|
84 |
$current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $now ) );
|
85 |
$current_date = date ( 'Y-m-d H:i:s' , $current_date );
|
86 |
|
|
|
87 |
if ((is_int($post->ID))&&($stuff != '')) {
|
88 |
$sql = "SELECT DISTINCT ID,post_title,post_date "
|
89 |
. " FROM ".$wpdb->posts." WHERE "
|
@@ -126,17 +135,18 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
|
|
126 |
if (!$p_in_c) {
|
127 |
$output .= $crp_settings['before_list_item'];
|
128 |
|
129 |
-
//$output .= '<a href="'.get_permalink($search->ID).'"
|
130 |
if ($post_thumb_op=='after') {
|
131 |
-
$output .= '<a href="'.get_permalink($search->ID).'"
|
132 |
}
|
133 |
if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
|
134 |
-
$output .= '<a href="'.get_permalink($search->ID).'"
|
135 |
-
$output .= crp_get_the_post_thumbnail(
|
|
|
136 |
$output .= '</a>';
|
137 |
}
|
138 |
if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
|
139 |
-
$output .= '<a href="'.get_permalink($search->ID).'"
|
140 |
}
|
141 |
//$output .= '</a>'; // Close the link
|
142 |
if ($show_excerpt) {
|
@@ -154,18 +164,19 @@ function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op) {
|
|
154 |
}
|
155 |
$output .= $crp_settings['after_list'];
|
156 |
}else{
|
157 |
-
$output .= ($crp_settings['blank_output']) ? ' ' : '<p>'
|
158 |
//$output .= '<p>'.strip_tags($sql).'</p>';
|
159 |
}
|
160 |
if ((strpos($output, $crp_settings['before_list_item'])) === false) {
|
161 |
$output = '<div id="crp_related">';
|
162 |
-
$output .= ($crp_settings['blank_output']) ? ' ' : '<p>'
|
163 |
}
|
164 |
$output .= '</div>';
|
165 |
|
166 |
return $output;
|
167 |
}
|
168 |
|
|
|
169 |
function ald_crp_content($content) {
|
170 |
|
171 |
global $single, $post;
|
@@ -195,12 +206,16 @@ function ald_crp_content($content) {
|
|
195 |
}
|
196 |
add_filter('the_content', 'ald_crp_content');
|
197 |
|
|
|
198 |
function ald_crp_rss($content) {
|
199 |
global $post;
|
200 |
$crp_settings = crp_read_options();
|
|
|
|
|
|
|
201 |
|
202 |
if($crp_settings['add_to_feed']) {
|
203 |
-
return $content.ald_crp('is_widget=0');
|
204 |
} else {
|
205 |
return $content;
|
206 |
}
|
@@ -213,6 +228,9 @@ function echo_ald_crp() {
|
|
213 |
echo ald_crp('is_widget=0');
|
214 |
}
|
215 |
|
|
|
|
|
|
|
216 |
// Create a Wordpress Widget for CRP
|
217 |
class WidgetCRP extends WP_Widget
|
218 |
{
|
@@ -226,30 +244,42 @@ class WidgetCRP extends WP_Widget
|
|
226 |
$limit = esc_attr($instance['limit']);
|
227 |
$show_excerpt = esc_attr($instance['show_excerpt']);
|
228 |
$post_thumb_op = esc_attr($instance['post_thumb_op']);
|
|
|
|
|
229 |
?>
|
230 |
<p>
|
231 |
-
|
232 |
-
|
233 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
</p>
|
235 |
<p>
|
236 |
-
|
237 |
-
|
238 |
-
|
|
|
|
|
|
|
|
|
239 |
</p>
|
240 |
<p>
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
<option value="after" <?php if ($post_thumb_op=='after') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, after title',CRP_LOCAL_NAME); ?></option>
|
245 |
-
<option value="thumbs_only" <?php if ($post_thumb_op=='thumbs_only') echo 'selected="selected"' ?>><?php _e('Only thumbnails, no text',CRP_LOCAL_NAME); ?></option>
|
246 |
-
<option value="text_only" <?php if ($post_thumb_op=='text_only') echo 'selected="selected"' ?>><?php _e('No thumbnails, only text.',CRP_LOCAL_NAME); ?></option>
|
247 |
-
</select>
|
248 |
</p>
|
249 |
<p>
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
</p>
|
254 |
<?php
|
255 |
} //ending form creation
|
@@ -259,6 +289,8 @@ class WidgetCRP extends WP_Widget
|
|
259 |
$instance['limit'] = ($new_instance['limit']);
|
260 |
$instance['show_excerpt'] = ($new_instance['show_excerpt']);
|
261 |
$instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
|
|
|
|
|
262 |
return $instance;
|
263 |
} //ending update
|
264 |
function widget($args, $instance) {
|
@@ -268,20 +300,24 @@ class WidgetCRP extends WP_Widget
|
|
268 |
|
269 |
$crp_settings = crp_read_options();
|
270 |
|
271 |
-
$title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($crp_settings['title']) : $instance['title']);
|
272 |
-
$limit = $instance['limit'];
|
273 |
-
$show_excerpt = $instance['show_excerpt'];
|
274 |
-
$post_thumb_op = $instance['post_thumb_op'];
|
275 |
-
if (empty($limit)) $limit = $crp_settings['limit'];
|
276 |
-
|
277 |
-
$output = $before_widget;
|
278 |
-
$output .= $before_title . $title . $after_title;
|
279 |
-
$output .= ald_crp('is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op);
|
280 |
-
$output .= $after_widget;
|
281 |
-
|
282 |
$exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
|
283 |
|
284 |
if( ( (is_single()) && (!is_single($exclude_on_post_ids)) ) || ( (is_page()) && (!is_page($exclude_on_post_ids)) ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
285 |
echo $output;
|
286 |
}
|
287 |
|
@@ -295,10 +331,14 @@ function init_ald_crp(){
|
|
295 |
add_action('init', 'init_ald_crp', 1);
|
296 |
|
297 |
|
|
|
|
|
|
|
298 |
// Default Options
|
299 |
function crp_default_options() {
|
300 |
global $crp_url;
|
301 |
$title = __('<h3>Related Posts:</h3>',CRP_LOCAL_NAME);
|
|
|
302 |
$thumb_default = $crp_url.'/default.png';
|
303 |
// get relevant post types
|
304 |
$args = array (
|
@@ -321,6 +361,7 @@ function crp_default_options() {
|
|
321 |
'show_credit' => false, // Link to this plugin's page?
|
322 |
'match_content' => true, // Match against post content as well as title
|
323 |
'blank_output' => true, // Blank output?
|
|
|
324 |
'exclude_categories' => '', // Exclude these categories
|
325 |
'exclude_cat_slugs' => '', // Exclude these categories (slugs)
|
326 |
'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
|
@@ -329,19 +370,27 @@ function crp_default_options() {
|
|
329 |
'after_list' => '</ul>', // After the entire list
|
330 |
'before_list_item' => '<li>', // Before each list item
|
331 |
'after_list_item' => '</li>', // After each list item
|
332 |
-
'post_thumb_op' => 'text_only', //
|
333 |
'thumb_height' => '50', // Height of thumbnails
|
334 |
'thumb_width' => '50', // Width of thumbnails
|
335 |
'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
|
336 |
'thumb_default' => $thumb_default, // Default thumbnail image
|
337 |
'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
|
338 |
'thumb_timthumb' => true, // Use timthumb
|
|
|
339 |
'scan_images' => false, // Scan post for images
|
340 |
'show_excerpt' => false, // Show description in list item
|
341 |
'excerpt_length' => '10', // Length of characters
|
342 |
'title_length' => '60', // Limit length of post title
|
343 |
'post_types' => $post_types, // WordPress custom post types
|
344 |
'custom_CSS' => '', // Custom CSS to style the output
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
345 |
);
|
346 |
return $crp_settings;
|
347 |
}
|
@@ -416,49 +465,72 @@ if (function_exists('register_activation_hook')) {
|
|
416 |
register_activation_hook(__FILE__,'ald_crp_activate');
|
417 |
}
|
418 |
|
419 |
-
|
420 |
-
|
|
|
|
|
|
|
421 |
global $crp_url;
|
422 |
|
423 |
if ($thumb_timthumb) {
|
424 |
-
$new_pi = $crp_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&w='.$thumb_width.'&h='.$thumb_height.'&zc=1&q=
|
425 |
} else {
|
426 |
$new_pi = $postimage;
|
427 |
}
|
428 |
return $new_pi;
|
429 |
}
|
430 |
-
add_filter('crp_postimage', 'crp_scale_thumbs', 10,
|
431 |
|
432 |
// Function to get the post thumbnail
|
433 |
-
function crp_get_the_post_thumbnail($
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
434 |
|
435 |
-
global $crp_url;
|
436 |
$result = get_post($postid);
|
437 |
-
|
438 |
$output = '';
|
439 |
$title = get_the_title($postid);
|
440 |
|
441 |
if (function_exists('has_post_thumbnail') && ( (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!='') || (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!= false) ) ) {
|
442 |
$postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
|
443 |
-
|
444 |
-
$
|
|
|
|
|
445 |
} else {
|
446 |
-
$postimage = get_post_meta($result->ID, $
|
447 |
-
if (!$postimage && $
|
448 |
-
preg_match_all( '
|
449 |
// any image there?
|
450 |
-
|
|
|
451 |
$postimage = $matches[1][0]; // we need the first one only!
|
|
|
452 |
}
|
453 |
}
|
454 |
if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
|
455 |
-
if ($
|
456 |
if ($postimage) {
|
457 |
-
|
458 |
-
|
459 |
-
} else {
|
460 |
-
$output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$settings_array['thumb_width'].'px;max-height:'.$settings_array['thumb_height'].'px;" border="0" class="crp_thumb" />';
|
461 |
-
}
|
462 |
}
|
463 |
}
|
464 |
|
@@ -506,29 +578,44 @@ function crp_max_formatted_content($content, $MaxLength = -1) {
|
|
506 |
return $content;
|
507 |
}
|
508 |
|
|
|
|
|
|
|
509 |
// This function adds an Options page in WP Admin
|
510 |
if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
|
511 |
require_once(ALD_CRP_DIR . "/admin.inc.php");
|
512 |
-
|
513 |
-
//
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
|
|
523 |
}
|
524 |
-
return $links;
|
525 |
-
}
|
526 |
-
global $wp_version;
|
527 |
-
if ( version_compare( $wp_version, '2.8alpha', '>' ) )
|
528 |
-
add_filter( 'plugin_row_meta', 'crp_plugin_actions', 10, 2 ); // only 2.8 and higher
|
529 |
-
else add_filter( 'plugin_action_links', 'crp_plugin_actions', 10, 2 );
|
530 |
-
|
531 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
532 |
} // End admin.inc
|
533 |
|
534 |
?>
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Contextual Related Posts
|
4 |
+
Version: 1.8.5
|
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
|
39 |
|
40 |
|
41 |
/*********************************************************************
|
42 |
+
* Main Functions *
|
43 |
********************************************************************/
|
44 |
+
// Main function, accepts parameters in a query string format
|
45 |
function ald_crp( $args ) {
|
46 |
$defaults = array(
|
47 |
'is_widget' => FALSE,
|
55 |
// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
|
56 |
extract( $args, EXTR_SKIP );
|
57 |
|
58 |
+
return get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_height, $thumb_width);
|
59 |
}
|
60 |
|
61 |
+
// Main function that returns the posts
|
62 |
+
function get_crp($is_widget, $limit, $show_excerpt, $post_thumb_op, $thumb_height, $thumb_width) {
|
|
|
63 |
global $wpdb, $post, $single;
|
64 |
|
65 |
$crp_settings = crp_read_options();
|
|
|
66 |
if (empty($limit)) $limit = stripslashes($crp_settings['limit']);
|
67 |
if (empty($post_thumb_op)) $post_thumb_op = stripslashes($crp_settings['post_thumb_op']);
|
68 |
if (!isset($show_excerpt)) $show_excerpt = $crp_settings['show_excerpt'];
|
69 |
+
if (empty($thumb_height)) $thumb_height = stripslashes($crp_settings['thumb_height']);
|
70 |
+
if (empty($thumb_width)) $thumb_width = stripslashes($crp_settings['thumb_width']);
|
71 |
+
|
72 |
+
parse_str($crp_settings['post_types'],$post_types);
|
73 |
$exclude_categories = explode(',',$crp_settings['exclude_categories']);
|
74 |
|
75 |
+
$rel_attribute = (($crp_settings['link_nofollow']) ? ' rel="nofollow" ' : ' ' );
|
76 |
+
$target_attribute = (($crp_settings['link_nofollow']) ? ' target="_blank" ' : ' ' );
|
77 |
+
|
78 |
// Make sure the post is not from the future
|
79 |
+
$time_difference = get_option('gmt_offset');
|
80 |
$now = gmdate("Y-m-d H:i:s",(time()+($time_difference*3600)));
|
81 |
|
82 |
+
// Are we matching only the title or the post content as well?
|
83 |
if($crp_settings['match_content']) {
|
84 |
$stuff = addslashes($post->post_title. ' ' . $post->post_content);
|
85 |
}
|
87 |
$stuff = addslashes($post->post_title);
|
88 |
}
|
89 |
|
90 |
+
// Limit the related posts by time
|
91 |
$daily_range = $crp_settings['daily_range'] - 1;
|
92 |
$current_date = strtotime ( '-'.$daily_range. ' DAY' , strtotime ( $now ) );
|
93 |
$current_date = date ( 'Y-m-d H:i:s' , $current_date );
|
94 |
|
95 |
+
// Create the SQL query to fetch the related posts from the database
|
96 |
if ((is_int($post->ID))&&($stuff != '')) {
|
97 |
$sql = "SELECT DISTINCT ID,post_title,post_date "
|
98 |
. " FROM ".$wpdb->posts." WHERE "
|
135 |
if (!$p_in_c) {
|
136 |
$output .= $crp_settings['before_list_item'];
|
137 |
|
138 |
+
//$output .= '<a href="'.get_permalink($search->ID).'" class="crp_link">'; // Add beginning of link
|
139 |
if ($post_thumb_op=='after') {
|
140 |
+
$output .= '<a href="'.get_permalink($search->ID).'" '.$rel_attribute.' '.$target_attribute.'class="crp_title">'.$title.'</a>'; // Add title if post thumbnail is to be displayed after
|
141 |
}
|
142 |
if ($post_thumb_op=='inline' || $post_thumb_op=='after' || $post_thumb_op=='thumbs_only') {
|
143 |
+
$output .= '<a href="'.get_permalink($search->ID).'" '.$rel_attribute.' '.$target_attribute.'>';
|
144 |
+
$output .= crp_get_the_post_thumbnail('postid='.$search->ID.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width.'&thumb_meta='.$crp_settings['thumb_meta'].'&thumb_default='.$crp_settings['thumb_default'].'&thumb_default_show='.$crp_settings['thumb_default_show'].'&thumb_timthumb='.$crp_settings['thumb_timthumb'].'&thumb_timthumb_q='.$crp_settings['thumb_timthumb_q'].'&scan_images='.$crp_settings['scan_images'].'&class=crp_thumb&filter=crp_postimage');
|
145 |
+
//$output .= crp_get_the_post_thumbnail($search->ID, $crp_settings);
|
146 |
$output .= '</a>';
|
147 |
}
|
148 |
if ($post_thumb_op=='inline' || $post_thumb_op=='text_only') {
|
149 |
+
$output .= '<a href="'.get_permalink($search->ID).'" '.$rel_attribute.' '.$target_attribute.' class="crp_title">'.$title.'</a>'; // Add title when required by settings
|
150 |
}
|
151 |
//$output .= '</a>'; // Close the link
|
152 |
if ($show_excerpt) {
|
164 |
}
|
165 |
$output .= $crp_settings['after_list'];
|
166 |
}else{
|
167 |
+
$output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.$crp_settings['blank_output_text'].'</p>';
|
168 |
//$output .= '<p>'.strip_tags($sql).'</p>';
|
169 |
}
|
170 |
if ((strpos($output, $crp_settings['before_list_item'])) === false) {
|
171 |
$output = '<div id="crp_related">';
|
172 |
+
$output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.$crp_settings['blank_output_text'].'</p>';
|
173 |
}
|
174 |
$output .= '</div>';
|
175 |
|
176 |
return $output;
|
177 |
}
|
178 |
|
179 |
+
// Filter for 'the_content' to add the related posts
|
180 |
function ald_crp_content($content) {
|
181 |
|
182 |
global $single, $post;
|
206 |
}
|
207 |
add_filter('the_content', 'ald_crp_content');
|
208 |
|
209 |
+
// Filter to add related posts to feeds
|
210 |
function ald_crp_rss($content) {
|
211 |
global $post;
|
212 |
$crp_settings = crp_read_options();
|
213 |
+
$limit_feed = $crp_settings['limit_feed'];
|
214 |
+
$show_excerpt_feed = $crp_settings['show_excerpt_feed'];
|
215 |
+
$post_thumb_op_feed = $crp_settings['post_thumb_op_feed'];
|
216 |
|
217 |
if($crp_settings['add_to_feed']) {
|
218 |
+
return $content.ald_crp('is_widget=0&limit='.$limit_feed.'&show_excerpt='.$show_excerpt_feed.'&post_thumb_op='.$post_thumb_op_feed);
|
219 |
} else {
|
220 |
return $content;
|
221 |
}
|
228 |
echo ald_crp('is_widget=0');
|
229 |
}
|
230 |
|
231 |
+
/*********************************************************************
|
232 |
+
* WordPress Widgets *
|
233 |
+
********************************************************************/
|
234 |
// Create a Wordpress Widget for CRP
|
235 |
class WidgetCRP extends WP_Widget
|
236 |
{
|
244 |
$limit = esc_attr($instance['limit']);
|
245 |
$show_excerpt = esc_attr($instance['show_excerpt']);
|
246 |
$post_thumb_op = esc_attr($instance['post_thumb_op']);
|
247 |
+
$thumb_height = esc_attr($instance['thumb_height']);
|
248 |
+
$thumb_width = esc_attr($instance['thumb_width']);
|
249 |
?>
|
250 |
<p>
|
251 |
+
<label for="<?php echo $this->get_field_id('title'); ?>">
|
252 |
+
<?php _e('Title', CRP_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" />
|
253 |
+
</label>
|
254 |
+
</p>
|
255 |
+
<p>
|
256 |
+
<label for="<?php echo $this->get_field_id('limit'); ?>">
|
257 |
+
<?php _e('No. of posts', CRP_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('limit'); ?>" name="<?php echo $this->get_field_name('limit'); ?>" type="text" value="<?php echo esc_attr($limit); ?>" />
|
258 |
+
</label>
|
259 |
+
</p>
|
260 |
+
<p>
|
261 |
+
<label for="<?php echo $this->get_field_id('show_excerpt'); ?>">
|
262 |
+
<input id="<?php echo $this->get_field_id('show_excerpt'); ?>" name="<?php echo $this->get_field_name('show_excerpt'); ?>" type="checkbox" <?php if ($show_excerpt) echo 'checked="checked"' ?> /> <?php _e(' Show excerpt?', CRP_LOCAL_NAME); ?>
|
263 |
+
</label>
|
264 |
</p>
|
265 |
<p>
|
266 |
+
<?php _e('Thumbnail options', CRP_LOCAL_NAME); ?>: <br />
|
267 |
+
<select class="widefat" id="<?php echo $this->get_field_id('post_thumb_op'); ?>" name="<?php echo $this->get_field_name('post_thumb_op'); ?>">
|
268 |
+
<option value="inline" <?php if ($post_thumb_op=='inline') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, before title',CRP_LOCAL_NAME); ?></option>
|
269 |
+
<option value="after" <?php if ($post_thumb_op=='after') echo 'selected="selected"' ?>><?php _e('Thumbnails inline, after title',CRP_LOCAL_NAME); ?></option>
|
270 |
+
<option value="thumbs_only" <?php if ($post_thumb_op=='thumbs_only') echo 'selected="selected"' ?>><?php _e('Only thumbnails, no text',CRP_LOCAL_NAME); ?></option>
|
271 |
+
<option value="text_only" <?php if ($post_thumb_op=='text_only') echo 'selected="selected"' ?>><?php _e('No thumbnails, only text.',CRP_LOCAL_NAME); ?></option>
|
272 |
+
</select>
|
273 |
</p>
|
274 |
<p>
|
275 |
+
<label for="<?php echo $this->get_field_id('thumb_height'); ?>">
|
276 |
+
<?php _e('Thumbnail height', CRP_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('thumb_height'); ?>" name="<?php echo $this->get_field_name('thumb_height'); ?>" type="text" value="<?php echo esc_attr($thumb_height); ?>" />
|
277 |
+
</label>
|
|
|
|
|
|
|
|
|
278 |
</p>
|
279 |
<p>
|
280 |
+
<label for="<?php echo $this->get_field_id('thumb_width'); ?>">
|
281 |
+
<?php _e('Thumbnail width', CRP_LOCAL_NAME); ?>: <input class="widefat" id="<?php echo $this->get_field_id('thumb_width'); ?>" name="<?php echo $this->get_field_name('thumb_width'); ?>" type="text" value="<?php echo esc_attr($thumb_width); ?>" />
|
282 |
+
</label>
|
283 |
</p>
|
284 |
<?php
|
285 |
} //ending form creation
|
289 |
$instance['limit'] = ($new_instance['limit']);
|
290 |
$instance['show_excerpt'] = ($new_instance['show_excerpt']);
|
291 |
$instance['post_thumb_op'] = ($new_instance['post_thumb_op']);
|
292 |
+
$instance['thumb_height'] = ($new_instance['thumb_height']);
|
293 |
+
$instance['thumb_width'] = ($new_instance['thumb_width']);
|
294 |
return $instance;
|
295 |
} //ending update
|
296 |
function widget($args, $instance) {
|
300 |
|
301 |
$crp_settings = crp_read_options();
|
302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
$exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
|
304 |
|
305 |
if( ( (is_single()) && (!is_single($exclude_on_post_ids)) ) || ( (is_page()) && (!is_page($exclude_on_post_ids)) ) ) {
|
306 |
+
|
307 |
+
$title = apply_filters('widget_title', empty($instance['title']) ? strip_tags($crp_settings['title']) : $instance['title']);
|
308 |
+
$limit = $instance['limit'];
|
309 |
+
if (empty($limit)) $limit = $crp_settings['limit'];
|
310 |
+
|
311 |
+
$show_excerpt = $instance['show_excerpt'];
|
312 |
+
$post_thumb_op = $instance['post_thumb_op'];
|
313 |
+
$thumb_height = $instance['thumb_height'];
|
314 |
+
$thumb_width = $instance['thumb_width'];
|
315 |
+
|
316 |
+
$output = $before_widget;
|
317 |
+
$output .= $before_title . $title . $after_title;
|
318 |
+
$output .= ald_crp('is_widget=1&limit='.$limit.'&show_excerpt='.$show_excerpt.'&post_thumb_op='.$post_thumb_op.'&thumb_height='.$thumb_height.'&thumb_width='.$thumb_width);
|
319 |
+
$output .= $after_widget;
|
320 |
+
|
321 |
echo $output;
|
322 |
}
|
323 |
|
331 |
add_action('init', 'init_ald_crp', 1);
|
332 |
|
333 |
|
334 |
+
/*********************************************************************
|
335 |
+
* Default options *
|
336 |
+
********************************************************************/
|
337 |
// Default Options
|
338 |
function crp_default_options() {
|
339 |
global $crp_url;
|
340 |
$title = __('<h3>Related Posts:</h3>',CRP_LOCAL_NAME);
|
341 |
+
$blank_output_text = __('No related posts founds',CRP_LOCAL_NAME);
|
342 |
$thumb_default = $crp_url.'/default.png';
|
343 |
// get relevant post types
|
344 |
$args = array (
|
361 |
'show_credit' => false, // Link to this plugin's page?
|
362 |
'match_content' => true, // Match against post content as well as title
|
363 |
'blank_output' => true, // Blank output?
|
364 |
+
'blank_output_text' => $blank_output_text, // Blank output text
|
365 |
'exclude_categories' => '', // Exclude these categories
|
366 |
'exclude_cat_slugs' => '', // Exclude these categories (slugs)
|
367 |
'exclude_post_ids' => '', // Comma separated list of page / post IDs that are to be excluded in the results
|
370 |
'after_list' => '</ul>', // After the entire list
|
371 |
'before_list_item' => '<li>', // Before each list item
|
372 |
'after_list_item' => '</li>', // After each list item
|
373 |
+
'post_thumb_op' => 'text_only', // Default option to display text and no thumbnails in posts
|
374 |
'thumb_height' => '50', // Height of thumbnails
|
375 |
'thumb_width' => '50', // Width of thumbnails
|
376 |
'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
|
377 |
'thumb_default' => $thumb_default, // Default thumbnail image
|
378 |
'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
|
379 |
'thumb_timthumb' => true, // Use timthumb
|
380 |
+
'thumb_timthumb_q' => '75', // Quality attribute for timthumb
|
381 |
'scan_images' => false, // Scan post for images
|
382 |
'show_excerpt' => false, // Show description in list item
|
383 |
'excerpt_length' => '10', // Length of characters
|
384 |
'title_length' => '60', // Limit length of post title
|
385 |
'post_types' => $post_types, // WordPress custom post types
|
386 |
'custom_CSS' => '', // Custom CSS to style the output
|
387 |
+
'limit_feed' => '5', // How many posts to display in feeds
|
388 |
+
'post_thumb_op_feed' => 'text_only', // Default option to display text and no thumbnails in Feeds
|
389 |
+
'thumb_height_feed' => '50', // Height of thumbnails in feed
|
390 |
+
'thumb_width_feed' => '50', // Width of thumbnails in feed
|
391 |
+
'show_excerpt_feed' => false, // Show description in list item in feed
|
392 |
+
'link_new_window' => false, // Open link in new window - Includes target="_blank" to links
|
393 |
+
'link_nofollow' => false, // Includes rel="nofollow" to links
|
394 |
);
|
395 |
return $crp_settings;
|
396 |
}
|
465 |
register_activation_hook(__FILE__,'ald_crp_activate');
|
466 |
}
|
467 |
|
468 |
+
/*********************************************************************
|
469 |
+
* Utility Functions *
|
470 |
+
********************************************************************/
|
471 |
+
// Filter function to resize post thumbnail. Filters: crp_postimage
|
472 |
+
function crp_scale_thumbs($postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q) {
|
473 |
global $crp_url;
|
474 |
|
475 |
if ($thumb_timthumb) {
|
476 |
+
$new_pi = $crp_url.'/timthumb/timthumb.php?src='.urlencode($postimage).'&w='.$thumb_width.'&h='.$thumb_height.'&zc=1&q='.$thumb_timthumb_q;
|
477 |
} else {
|
478 |
$new_pi = $postimage;
|
479 |
}
|
480 |
return $new_pi;
|
481 |
}
|
482 |
+
add_filter('crp_postimage', 'crp_scale_thumbs', 10, 5);
|
483 |
|
484 |
// Function to get the post thumbnail
|
485 |
+
function crp_get_the_post_thumbnail($args = array()) {
|
486 |
+
|
487 |
+
$defaults = array(
|
488 |
+
'postid' => '',
|
489 |
+
'thumb_height' => '50', // Max height of thumbnails
|
490 |
+
'thumb_width' => '50', // Max width of thumbnails
|
491 |
+
'thumb_meta' => 'post-image', // Meta field that is used to store the location of default thumbnail image
|
492 |
+
'thumb_default' => '', // Default thumbnail image
|
493 |
+
'thumb_default_show' => true, // Show default thumb if none found (if false, don't show thumb at all)
|
494 |
+
'thumb_timthumb' => true, // Use timthumb
|
495 |
+
'thumb_timthumb_q' => '75', // Quality attribute for timthumb
|
496 |
+
'scan_images' => false, // Scan post for images
|
497 |
+
'class' => 'crp_thumb', // Class of the thumbnail
|
498 |
+
'filter' => 'crp_postimage', // Class of the thumbnail
|
499 |
+
);
|
500 |
+
|
501 |
+
// Parse incomming $args into an array and merge it with $defaults
|
502 |
+
$args = wp_parse_args( $args, $defaults );
|
503 |
+
|
504 |
+
// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
|
505 |
+
extract( $args, EXTR_SKIP );
|
506 |
|
|
|
507 |
$result = get_post($postid);
|
508 |
+
|
509 |
$output = '';
|
510 |
$title = get_the_title($postid);
|
511 |
|
512 |
if (function_exists('has_post_thumbnail') && ( (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!='') || (wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) )!= false) ) ) {
|
513 |
$postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) );
|
514 |
+
|
515 |
+
if ( ($postimage[1] < $thumb_width) || ($postimage[2] < $thumb_height) ) $postimage = wp_get_attachment_image_src( get_post_thumbnail_id($result->ID) , 'full' );
|
516 |
+
$postimage = apply_filters( $filter, $postimage[0], $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q );
|
517 |
+
$output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
|
518 |
} else {
|
519 |
+
$postimage = get_post_meta($result->ID, $thumb_meta, true); // Check the post meta first
|
520 |
+
if (!$postimage && $scan_images) {
|
521 |
+
preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i', $result->post_content, $matches );
|
522 |
// any image there?
|
523 |
+
if (isset($matches[1][0]) && $matches[1][0]) {
|
524 |
+
if (((strpos($matches[1][0], parse_url(get_option('home'),PHP_URL_HOST)) !== false) && (strpos($matches[1][0], 'http://') !== false))|| ((strpos($matches[1][0], 'http://') === false))) {
|
525 |
$postimage = $matches[1][0]; // we need the first one only!
|
526 |
+
}
|
527 |
}
|
528 |
}
|
529 |
if (!$postimage) $postimage = get_post_meta($result->ID, '_video_thumbnail', true); // If no other thumbnail set, try to get the custom video thumbnail set by the Video Thumbnails plugin
|
530 |
+
if ($thumb_default_show && !$postimage) $postimage = $thumb_default; // If no thumb found and settings permit, use default thumb
|
531 |
if ($postimage) {
|
532 |
+
$postimage = apply_filters( $filter, $postimage, $thumb_width, $thumb_height, $thumb_timthumb, $thumb_timthumb_q );
|
533 |
+
$output .= '<img src="'.$postimage.'" alt="'.$title.'" title="'.$title.'" style="max-width:'.$thumb_width.'px;max-height:'.$thumb_height.'px;" border="0" class="'.$class.'" />';
|
|
|
|
|
|
|
534 |
}
|
535 |
}
|
536 |
|
578 |
return $content;
|
579 |
}
|
580 |
|
581 |
+
/*********************************************************************
|
582 |
+
* Admin Functions *
|
583 |
+
********************************************************************/
|
584 |
// This function adds an Options page in WP Admin
|
585 |
if (is_admin() || strstr($_SERVER['PHP_SELF'], 'wp-admin/')) {
|
586 |
require_once(ALD_CRP_DIR . "/admin.inc.php");
|
587 |
+
|
588 |
+
// Adding WordPress plugin action links
|
589 |
+
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'crp_plugin_actions_links' );
|
590 |
+
function crp_plugin_actions_links( $links ) {
|
591 |
+
|
592 |
+
return array_merge(
|
593 |
+
array(
|
594 |
+
'settings' => '<a href="' . admin_url( 'options-general.php?page=crp_options' ) . '">' . __('Settings', CRP_LOCAL_NAME ) . '</a>'
|
595 |
+
),
|
596 |
+
$links
|
597 |
+
);
|
598 |
+
|
599 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
600 |
|
601 |
+
// Add meta links
|
602 |
+
function crp_plugin_actions( $links, $file ) {
|
603 |
+
static $plugin;
|
604 |
+
if (!$plugin) $plugin = plugin_basename(__FILE__);
|
605 |
+
|
606 |
+
// create link
|
607 |
+
if ($file == $plugin) {
|
608 |
+
$links[] = '<a href="http://wordpress.org/support/plugin/contextual-related-posts">' . __('Support', CRP_LOCAL_NAME ) . '</a>';
|
609 |
+
$links[] = '<a href="http://ajaydsouza.com/donate/">' . __('Donate', CRP_LOCAL_NAME ) . '</a>';
|
610 |
+
}
|
611 |
+
return $links;
|
612 |
+
}
|
613 |
+
global $wp_version;
|
614 |
+
if ( version_compare( $wp_version, '2.8alpha', '>' ) )
|
615 |
+
add_filter( 'plugin_row_meta', 'crp_plugin_actions', 10, 2 ); // only 2.8 and higher
|
616 |
+
else add_filter( 'plugin_action_links', 'crp_plugin_actions', 10, 2 );
|
617 |
+
|
618 |
+
|
619 |
} // End admin.inc
|
620 |
|
621 |
?>
|
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:
|
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,93 +18,89 @@ msgstr ""
|
|
18 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: admin.inc.php:156
|
76 |
msgid "Recent developments"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: admin.inc.php:
|
80 |
msgid "General options"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin.inc.php:
|
84 |
msgid "Number of related posts to display: "
|
85 |
msgstr "Antal Lignende indlæg, der skal vises: "
|
86 |
|
87 |
-
#: admin.inc.php:
|
88 |
msgid "Related posts should be newer than:"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: admin.inc.php:
|
92 |
msgid "days"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: admin.inc.php:
|
96 |
msgid "Post types to include in results (including custom post types)"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin.inc.php:
|
100 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: admin.inc.php:
|
104 |
msgid "Find related posts based on content as well as title"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: admin.inc.php:
|
108 |
#, fuzzy
|
109 |
msgid ""
|
110 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -114,48 +110,48 @@ msgstr ""
|
|
114 |
"kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
|
115 |
"dette)"
|
116 |
|
117 |
-
#: admin.inc.php:
|
118 |
msgid "List of post or page IDs to exclude from the results: "
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin.inc.php:
|
122 |
msgid "Categories to exclude from the results: "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin.inc.php:
|
126 |
#, fuzzy
|
127 |
msgid "Add related posts to:"
|
128 |
msgstr "Tilføj Lignende indlæg til feeds"
|
129 |
|
130 |
-
#: admin.inc.php:
|
131 |
msgid "Posts"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: admin.inc.php:
|
135 |
msgid "Pages"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: admin.inc.php:
|
139 |
msgid "Home page"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: admin.inc.php:
|
143 |
msgid "Feeds"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: admin.inc.php:
|
147 |
msgid "Category archives"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: admin.inc.php:
|
151 |
msgid "Tag archives"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: admin.inc.php:
|
155 |
msgid "Other archives"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: admin.inc.php:
|
159 |
#, fuzzy
|
160 |
msgid ""
|
161 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -167,155 +163,176 @@ msgstr ""
|
|
167 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> til din skabelonfil, hvor du "
|
168 |
"ønsker de lignende indlæg vist"
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid "Add a link to the plugin page as a final item in the list"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
msgid " <em>Optional</em>"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: admin.inc.php:
|
179 |
#, fuzzy
|
180 |
-
msgid "Output
|
181 |
msgstr "Indstillinger for output:"
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
msgid "Title of related posts: "
|
185 |
msgstr "Titel på Lignende indlæg: "
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
msgid "When there are no posts, what should be shown?"
|
189 |
msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
msgid "Blank Output"
|
193 |
msgstr "Intet"
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
-
msgid "Display
|
197 |
-
msgstr "
|
198 |
|
199 |
-
#: admin.inc.php:
|
200 |
msgid "Show post excerpt in list?"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: admin.inc.php:
|
204 |
msgid "Length of excerpt (in words): "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin.inc.php:
|
208 |
msgid "Limit post title length (in characters)"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: admin.inc.php:
|
212 |
-
msgid ""
|
213 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
214 |
-
"separated list of IDs): "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
msgid "Customize the output:"
|
219 |
msgstr "Tilpas outputtet:"
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "HTML to display before the list of posts: "
|
223 |
msgstr "HTML, der skal vises før listen med indlæg: "
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "HTML to display before each list item: "
|
227 |
msgstr "HTML, der skal vises før hvert punkt på listen: "
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "HTML to display after each list item: "
|
231 |
msgstr "HTML, der skal vises efter hvert punkt på listen: "
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "HTML to display after the list of posts: "
|
235 |
msgstr "HTML, der skal vises efter listen med indlæg: "
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
msgid "Post thumbnail options:"
|
239 |
msgstr "Indstillinger for indlægsminiaturer:"
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Location of post thumbnail:"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
#, fuzzy
|
247 |
msgid "Display thumbnails inline with posts, before title"
|
248 |
msgstr "Vis miniaturer inline med indlæg"
|
249 |
|
250 |
-
#: admin.inc.php:
|
251 |
#, fuzzy
|
252 |
msgid "Display thumbnails inline with posts, after title"
|
253 |
msgstr "Vis miniaturer inline med indlæg"
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Display only thumbnails, no text"
|
257 |
msgstr "Vis kun miniaturer, ingen tekst"
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Do not display thumbnails, only text."
|
261 |
msgstr "Vis ikke miniaturer, kun tekst."
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Maximum width of the thumbnail: "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid "Maximum height of the thumbnail: "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin.inc.php:
|
272 |
msgid "Use timthumb to generate thumbnails? "
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid ""
|
277 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
278 |
"\">timthumb</a> will be used to generate thumbnails"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
#, fuzzy
|
283 |
msgid "Post thumbnail meta field name: "
|
284 |
msgstr "Indstillinger for indlægsminiaturer:"
|
285 |
|
286 |
-
#: admin.inc.php:
|
287 |
msgid ""
|
288 |
"The value of this field should contain the image source and is set in the "
|
289 |
"<em>Add New Post</em> screen"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin.inc.php:
|
293 |
msgid ""
|
294 |
"If the postmeta is not set, then should the plugin extract the first image "
|
295 |
"from the post?"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
msgid ""
|
300 |
"This can slow down the loading of your page if the first image in the "
|
301 |
"related posts is large in file-size"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Use default thumbnail? "
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid ""
|
310 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
311 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
msgid "Default thumbnail: "
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
#, fuzzy
|
320 |
msgid ""
|
321 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -326,135 +343,157 @@ msgstr ""
|
|
326 |
"indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
|
327 |
"findes, vil det vise standardbilledet specificeret nedenfor:"
|
328 |
|
329 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
msgid "Custom Styles"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: admin.inc.php:
|
334 |
msgid "Custom CSS to add to header:"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
msgid ""
|
339 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
340 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
341 |
"\">FAQ</a> for available CSS classes to style."
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin.inc.php:
|
345 |
#, fuzzy
|
346 |
msgid "Save Options"
|
347 |
msgstr "Indstillinger:"
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
#, fuzzy
|
351 |
msgid "Default Options"
|
352 |
msgstr "Indstillinger for output:"
|
353 |
|
354 |
-
#: admin.inc.php:
|
355 |
msgid "Do you want to set options to Default?"
|
356 |
msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
|
357 |
|
358 |
-
#: admin.inc.php:
|
359 |
msgid "Recreate Index"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid "Are you sure you want to recreate the index?"
|
364 |
msgstr "Er du sikker på, du ønsker at gendanne indekset?"
|
365 |
|
366 |
-
#: admin.inc.php:
|
367 |
#, fuzzy
|
368 |
msgid "Contextual Related Posts"
|
369 |
msgstr "Related Posts (Lignende indlæg)"
|
370 |
|
371 |
-
#: admin.inc.php:
|
372 |
msgid "Related Posts"
|
373 |
msgstr "Related Posts (Lignende indlæg)"
|
374 |
|
375 |
-
#: admin.inc.php:
|
376 |
msgid "plugin settings page"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin.inc.php:
|
380 |
msgid ""
|
381 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
382 |
"visit the "
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: admin.inc.php:
|
386 |
msgid " to configure."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: contextual-related-posts.php:
|
390 |
msgid "Powered by"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: contextual-related-posts.php:
|
394 |
-
msgid "No related posts found"
|
395 |
-
msgstr "Ingen lignende indlæg fundet"
|
396 |
-
|
397 |
-
#: contextual-related-posts.php:221
|
398 |
#, fuzzy
|
399 |
msgid "Display Related Posts"
|
400 |
msgstr "Vis \"Ingen lignende indlæg\""
|
401 |
|
402 |
-
#: contextual-related-posts.php:
|
403 |
msgid "Title"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: contextual-related-posts.php:
|
407 |
msgid "No. of posts"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
411 |
#, fuzzy
|
412 |
msgid "Thumbnail options"
|
413 |
msgstr "Indstillinger for indlægsminiaturer:"
|
414 |
|
415 |
-
#: contextual-related-posts.php:
|
416 |
#, fuzzy
|
417 |
msgid "Thumbnails inline, before title"
|
418 |
msgstr "Vis miniaturer inline med indlæg"
|
419 |
|
420 |
-
#: contextual-related-posts.php:
|
421 |
#, fuzzy
|
422 |
msgid "Thumbnails inline, after title"
|
423 |
msgstr "Vis miniaturer inline med indlæg"
|
424 |
|
425 |
-
#: contextual-related-posts.php:
|
426 |
#, fuzzy
|
427 |
msgid "Only thumbnails, no text"
|
428 |
msgstr "Vis kun miniaturer, ingen tekst"
|
429 |
|
430 |
-
#: contextual-related-posts.php:
|
431 |
#, fuzzy
|
432 |
msgid "No thumbnails, only text."
|
433 |
msgstr "Vis ikke miniaturer, kun tekst."
|
434 |
|
435 |
-
#: contextual-related-posts.php:
|
436 |
-
|
437 |
-
|
|
|
438 |
|
439 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
440 |
msgid "<h3>Related Posts:</h3>"
|
441 |
msgstr "<h3>Lignende indlæg:</h3>"
|
442 |
|
443 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
444 |
msgid "Settings"
|
445 |
msgstr "Opsætning"
|
446 |
|
447 |
-
#: contextual-related-posts.php:
|
448 |
msgid "Donate"
|
449 |
msgstr "Donation"
|
450 |
|
|
|
|
|
|
|
451 |
#~ msgid "Exclude Categories: "
|
452 |
#~ msgstr "Udelad kategorier: "
|
453 |
|
454 |
-
#, fuzzy
|
455 |
-
#~ msgid "Add related posts to pages"
|
456 |
-
#~ msgstr "Tilføj Lignende indlæg til feeds"
|
457 |
-
|
458 |
#~ msgid "Exclude Pages in Related Posts"
|
459 |
#~ msgstr "Udelad sider i Lignende indlæg"
|
460 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts 1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:32-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.4\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: admin.inc.php:93
|
22 |
msgid "Options saved successfully."
|
23 |
msgstr "Indstillingerne blev gemt."
|
24 |
|
25 |
+
#: admin.inc.php:109
|
26 |
msgid "Options set to Default."
|
27 |
msgstr "Indstillingerne sat til standardværdier."
|
28 |
|
29 |
+
#: admin.inc.php:124
|
30 |
msgid "Index recreated"
|
31 |
msgstr "Indeks blev gendannet"
|
32 |
|
33 |
+
#: admin.inc.php:137
|
34 |
#, fuzzy
|
35 |
msgid "Support the development"
|
36 |
msgstr "Støt udviklingen"
|
37 |
|
38 |
+
#: admin.inc.php:145
|
39 |
msgid "Enter amount in USD: "
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:149
|
43 |
msgid "Send your donation to the author of"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:160
|
47 |
msgid "Quick Links"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:162
|
51 |
#, fuzzy
|
52 |
msgid "Contextual Related Posts plugin page"
|
53 |
msgstr "Related Posts (Lignende indlæg)"
|
54 |
|
55 |
+
#: admin.inc.php:163
|
56 |
msgid "Other plugins"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: admin.inc.php:164
|
60 |
msgid "Ajay's blog"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
64 |
msgid "Support"
|
65 |
msgstr "Support"
|
66 |
|
67 |
+
#: admin.inc.php:166
|
68 |
msgid "Reviews"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
72 |
msgid "Recent developments"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: admin.inc.php:180
|
76 |
msgid "General options"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: admin.inc.php:182 admin.inc.php:354
|
80 |
msgid "Number of related posts to display: "
|
81 |
msgstr "Antal Lignende indlæg, der skal vises: "
|
82 |
|
83 |
+
#: admin.inc.php:185
|
84 |
msgid "Related posts should be newer than:"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin.inc.php:186
|
88 |
msgid "days"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin.inc.php:188
|
92 |
msgid "Post types to include in results (including custom post types)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: admin.inc.php:199
|
96 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: admin.inc.php:202
|
100 |
msgid "Find related posts based on content as well as title"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: admin.inc.php:203
|
104 |
#, fuzzy
|
105 |
msgid ""
|
106 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
110 |
"kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer "
|
111 |
"dette)"
|
112 |
|
113 |
+
#: admin.inc.php:205
|
114 |
msgid "List of post or page IDs to exclude from the results: "
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin.inc.php:208
|
118 |
msgid "Categories to exclude from the results: "
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin.inc.php:226
|
122 |
#, fuzzy
|
123 |
msgid "Add related posts to:"
|
124 |
msgstr "Tilføj Lignende indlæg til feeds"
|
125 |
|
126 |
+
#: admin.inc.php:228
|
127 |
msgid "Posts"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: admin.inc.php:229
|
131 |
msgid "Pages"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: admin.inc.php:230
|
135 |
msgid "Home page"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: admin.inc.php:231
|
139 |
msgid "Feeds"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: admin.inc.php:232
|
143 |
msgid "Category archives"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: admin.inc.php:233
|
147 |
msgid "Tag archives"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: admin.inc.php:234
|
151 |
msgid "Other archives"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: admin.inc.php:235
|
155 |
#, fuzzy
|
156 |
msgid ""
|
157 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
163 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> til din skabelonfil, hvor du "
|
164 |
"ønsker de lignende indlæg vist"
|
165 |
|
166 |
+
#: admin.inc.php:238
|
167 |
msgid "Add a link to the plugin page as a final item in the list"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: admin.inc.php:239
|
171 |
msgid " <em>Optional</em>"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: admin.inc.php:246
|
175 |
#, fuzzy
|
176 |
+
msgid "Output options"
|
177 |
msgstr "Indstillinger for output:"
|
178 |
|
179 |
+
#: admin.inc.php:248
|
180 |
msgid "Title of related posts: "
|
181 |
msgstr "Titel på Lignende indlæg: "
|
182 |
|
183 |
+
#: admin.inc.php:251
|
184 |
msgid "When there are no posts, what should be shown?"
|
185 |
msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
|
186 |
|
187 |
+
#: admin.inc.php:255
|
188 |
msgid "Blank Output"
|
189 |
msgstr "Intet"
|
190 |
|
191 |
+
#: admin.inc.php:259
|
192 |
+
msgid "Display:"
|
193 |
+
msgstr ""
|
194 |
|
195 |
+
#: admin.inc.php:263 admin.inc.php:357
|
196 |
msgid "Show post excerpt in list?"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: admin.inc.php:266
|
200 |
msgid "Length of excerpt (in words): "
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin.inc.php:269
|
204 |
msgid "Limit post title length (in characters)"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin.inc.php:272
|
208 |
+
msgid "Open links in new window"
|
|
|
|
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin.inc.php:275
|
212 |
+
msgid "Add nofollow attribute to links in the list"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: admin.inc.php:278
|
216 |
+
#, fuzzy
|
217 |
+
msgid "Exclude display of related posts on these posts / pages"
|
218 |
+
msgstr "Tilføj Lignende indlæg til feeds"
|
219 |
+
|
220 |
+
#: admin.inc.php:281
|
221 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: admin.inc.php:284
|
225 |
msgid "Customize the output:"
|
226 |
msgstr "Tilpas outputtet:"
|
227 |
|
228 |
+
#: admin.inc.php:286
|
229 |
msgid "HTML to display before the list of posts: "
|
230 |
msgstr "HTML, der skal vises før listen med indlæg: "
|
231 |
|
232 |
+
#: admin.inc.php:289
|
233 |
msgid "HTML to display before each list item: "
|
234 |
msgstr "HTML, der skal vises før hvert punkt på listen: "
|
235 |
|
236 |
+
#: admin.inc.php:292
|
237 |
msgid "HTML to display after each list item: "
|
238 |
msgstr "HTML, der skal vises efter hvert punkt på listen: "
|
239 |
|
240 |
+
#: admin.inc.php:295
|
241 |
msgid "HTML to display after the list of posts: "
|
242 |
msgstr "HTML, der skal vises efter listen med indlæg: "
|
243 |
|
244 |
+
#: admin.inc.php:298
|
245 |
msgid "Post thumbnail options:"
|
246 |
msgstr "Indstillinger for indlægsminiaturer:"
|
247 |
|
248 |
+
#: admin.inc.php:300 admin.inc.php:360
|
249 |
msgid "Location of post thumbnail:"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: admin.inc.php:304 admin.inc.php:364
|
253 |
#, fuzzy
|
254 |
msgid "Display thumbnails inline with posts, before title"
|
255 |
msgstr "Vis miniaturer inline med indlæg"
|
256 |
|
257 |
+
#: admin.inc.php:308 admin.inc.php:368
|
258 |
#, fuzzy
|
259 |
msgid "Display thumbnails inline with posts, after title"
|
260 |
msgstr "Vis miniaturer inline med indlæg"
|
261 |
|
262 |
+
#: admin.inc.php:312 admin.inc.php:372
|
263 |
msgid "Display only thumbnails, no text"
|
264 |
msgstr "Vis kun miniaturer, ingen tekst"
|
265 |
|
266 |
+
#: admin.inc.php:316 admin.inc.php:376
|
267 |
msgid "Do not display thumbnails, only text."
|
268 |
msgstr "Vis ikke miniaturer, kun tekst."
|
269 |
|
270 |
+
#: admin.inc.php:320 admin.inc.php:380
|
271 |
msgid "Maximum width of the thumbnail: "
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: admin.inc.php:323 admin.inc.php:383
|
275 |
msgid "Maximum height of the thumbnail: "
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin.inc.php:326
|
279 |
msgid "Use timthumb to generate thumbnails? "
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: admin.inc.php:327
|
283 |
msgid ""
|
284 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
285 |
"\">timthumb</a> will be used to generate thumbnails"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: admin.inc.php:329
|
289 |
+
msgid "Quality of thumbnails generated by timthumb"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: admin.inc.php:332
|
293 |
+
msgid ""
|
294 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
295 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin.inc.php:335
|
299 |
#, fuzzy
|
300 |
msgid "Post thumbnail meta field name: "
|
301 |
msgstr "Indstillinger for indlægsminiaturer:"
|
302 |
|
303 |
+
#: admin.inc.php:336
|
304 |
msgid ""
|
305 |
"The value of this field should contain the image source and is set in the "
|
306 |
"<em>Add New Post</em> screen"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin.inc.php:338
|
310 |
msgid ""
|
311 |
"If the postmeta is not set, then should the plugin extract the first image "
|
312 |
"from the post?"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin.inc.php:339
|
316 |
msgid ""
|
317 |
"This can slow down the loading of your page if the first image in the "
|
318 |
"related posts is large in file-size"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: admin.inc.php:341
|
322 |
msgid "Use default thumbnail? "
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: admin.inc.php:342
|
326 |
msgid ""
|
327 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
328 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: admin.inc.php:344
|
332 |
msgid "Default thumbnail: "
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:345
|
336 |
#, fuzzy
|
337 |
msgid ""
|
338 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
343 |
"indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
|
344 |
"findes, vil det vise standardbilledet specificeret nedenfor:"
|
345 |
|
346 |
+
#: admin.inc.php:350
|
347 |
+
#, fuzzy
|
348 |
+
msgid "Feed options"
|
349 |
+
msgstr "Indstillinger:"
|
350 |
+
|
351 |
+
#: admin.inc.php:352
|
352 |
+
msgid ""
|
353 |
+
"Below options override the related posts settings for your blog feed. These "
|
354 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
355 |
+
"Options tab."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: admin.inc.php:389
|
359 |
msgid "Custom Styles"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin.inc.php:391
|
363 |
msgid "Custom CSS to add to header:"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:394
|
367 |
msgid ""
|
368 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
369 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
370 |
"\">FAQ</a> for available CSS classes to style."
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:398
|
374 |
#, fuzzy
|
375 |
msgid "Save Options"
|
376 |
msgstr "Indstillinger:"
|
377 |
|
378 |
+
#: admin.inc.php:399
|
379 |
#, fuzzy
|
380 |
msgid "Default Options"
|
381 |
msgstr "Indstillinger for output:"
|
382 |
|
383 |
+
#: admin.inc.php:399
|
384 |
msgid "Do you want to set options to Default?"
|
385 |
msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
|
386 |
|
387 |
+
#: admin.inc.php:400
|
388 |
msgid "Recreate Index"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin.inc.php:400
|
392 |
msgid "Are you sure you want to recreate the index?"
|
393 |
msgstr "Er du sikker på, du ønsker at gendanne indekset?"
|
394 |
|
395 |
+
#: admin.inc.php:417
|
396 |
#, fuzzy
|
397 |
msgid "Contextual Related Posts"
|
398 |
msgstr "Related Posts (Lignende indlæg)"
|
399 |
|
400 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
401 |
msgid "Related Posts"
|
402 |
msgstr "Related Posts (Lignende indlæg)"
|
403 |
|
404 |
+
#: admin.inc.php:425
|
405 |
msgid "plugin settings page"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin.inc.php:430
|
409 |
msgid ""
|
410 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
411 |
"visit the "
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin.inc.php:430
|
415 |
msgid " to configure."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: contextual-related-posts.php:162
|
419 |
msgid "Powered by"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
423 |
#, fuzzy
|
424 |
msgid "Display Related Posts"
|
425 |
msgstr "Vis \"Ingen lignende indlæg\""
|
426 |
|
427 |
+
#: contextual-related-posts.php:252
|
428 |
msgid "Title"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: contextual-related-posts.php:257
|
432 |
msgid "No. of posts"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: contextual-related-posts.php:262
|
436 |
+
msgid " Show excerpt?"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: contextual-related-posts.php:266
|
440 |
#, fuzzy
|
441 |
msgid "Thumbnail options"
|
442 |
msgstr "Indstillinger for indlægsminiaturer:"
|
443 |
|
444 |
+
#: contextual-related-posts.php:268
|
445 |
#, fuzzy
|
446 |
msgid "Thumbnails inline, before title"
|
447 |
msgstr "Vis miniaturer inline med indlæg"
|
448 |
|
449 |
+
#: contextual-related-posts.php:269
|
450 |
#, fuzzy
|
451 |
msgid "Thumbnails inline, after title"
|
452 |
msgstr "Vis miniaturer inline med indlæg"
|
453 |
|
454 |
+
#: contextual-related-posts.php:270
|
455 |
#, fuzzy
|
456 |
msgid "Only thumbnails, no text"
|
457 |
msgstr "Vis kun miniaturer, ingen tekst"
|
458 |
|
459 |
+
#: contextual-related-posts.php:271
|
460 |
#, fuzzy
|
461 |
msgid "No thumbnails, only text."
|
462 |
msgstr "Vis ikke miniaturer, kun tekst."
|
463 |
|
464 |
+
#: contextual-related-posts.php:276
|
465 |
+
#, fuzzy
|
466 |
+
msgid "Thumbnail height"
|
467 |
+
msgstr "Indstillinger for indlægsminiaturer:"
|
468 |
|
469 |
+
#: contextual-related-posts.php:281
|
470 |
+
#, fuzzy
|
471 |
+
msgid "Thumbnail width"
|
472 |
+
msgstr "Indstillinger for indlægsminiaturer:"
|
473 |
+
|
474 |
+
#: contextual-related-posts.php:340
|
475 |
msgid "<h3>Related Posts:</h3>"
|
476 |
msgstr "<h3>Lignende indlæg:</h3>"
|
477 |
|
478 |
+
#: contextual-related-posts.php:341
|
479 |
+
#, fuzzy
|
480 |
+
msgid "No related posts founds"
|
481 |
+
msgstr "Ingen lignende indlæg fundet"
|
482 |
+
|
483 |
+
#: contextual-related-posts.php:594
|
484 |
msgid "Settings"
|
485 |
msgstr "Opsætning"
|
486 |
|
487 |
+
#: contextual-related-posts.php:609
|
488 |
msgid "Donate"
|
489 |
msgstr "Donation"
|
490 |
|
491 |
+
#~ msgid "Display \"No Related Posts\""
|
492 |
+
#~ msgstr "Vis \"Ingen lignende indlæg\""
|
493 |
+
|
494 |
#~ msgid "Exclude Categories: "
|
495 |
#~ msgstr "Udelad kategorier: "
|
496 |
|
|
|
|
|
|
|
|
|
497 |
#~ msgid "Exclude Pages in Related Posts"
|
498 |
#~ msgstr "Udelad sider i Lignende indlæg"
|
499 |
|
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -15,93 +15,89 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
70 |
-
msgstr "@ajaydsouza auf Twitter folgen"
|
71 |
-
|
72 |
-
#: admin.inc.php:156
|
73 |
msgid "Recent developments"
|
74 |
msgstr "Neueste Entwicklungen"
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "General options"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid "Number of related posts to display: "
|
82 |
msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Related posts should be newer than:"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "days"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Post types to include in results (including custom post types)"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Find related posts based on content as well as title"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
#, fuzzy
|
106 |
msgid ""
|
107 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -111,48 +107,48 @@ msgstr ""
|
|
111 |
"Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
|
112 |
"Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
|
113 |
|
114 |
-
#: admin.inc.php:
|
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 |
#, fuzzy
|
124 |
msgid "Add related posts to:"
|
125 |
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Posts"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid "Pages"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
msgid "Home page"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid "Feeds"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid "Category archives"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin.inc.php:
|
148 |
msgid "Tag archives"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: admin.inc.php:
|
152 |
msgid "Other archives"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin.inc.php:
|
156 |
#, fuzzy
|
157 |
msgid ""
|
158 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -164,131 +160,152 @@ msgstr ""
|
|
164 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> in das Template ein, in dem "
|
165 |
"die ähnlichen Beiträge aufgeliistet werden sollen"
|
166 |
|
167 |
-
#: admin.inc.php:
|
168 |
msgid "Add a link to the plugin page as a final item in the list"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: admin.inc.php:
|
172 |
msgid " <em>Optional</em>"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin.inc.php:
|
176 |
#, fuzzy
|
177 |
-
msgid "Output
|
178 |
msgstr "Ausgabeotionen:"
|
179 |
|
180 |
-
#: admin.inc.php:
|
181 |
msgid "Title of related posts: "
|
182 |
msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
|
183 |
|
184 |
-
#: admin.inc.php:
|
185 |
msgid "When there are no posts, what should be shown?"
|
186 |
msgstr ""
|
187 |
"Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
|
188 |
"werden?"
|
189 |
|
190 |
-
#: admin.inc.php:
|
191 |
msgid "Blank Output"
|
192 |
msgstr "Nichts"
|
193 |
|
194 |
-
#: admin.inc.php:
|
195 |
-
msgid "Display
|
196 |
-
msgstr "
|
197 |
|
198 |
-
#: admin.inc.php:
|
199 |
msgid "Show post excerpt in list?"
|
200 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
201 |
|
202 |
-
#: admin.inc.php:
|
203 |
msgid "Length of excerpt (in words): "
|
204 |
msgstr "Länge des Auszugs (in Worten): "
|
205 |
|
206 |
-
#: admin.inc.php:
|
207 |
msgid "Limit post title length (in characters)"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: admin.inc.php:
|
211 |
-
msgid ""
|
212 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
213 |
-
"separated list of IDs): "
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
msgid "Customize the output:"
|
218 |
msgstr "Die Ausgabe anpassen:"
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "HTML to display before the list of posts: "
|
222 |
msgstr "HTML vor der Beitragsliste: "
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "HTML to display before each list item: "
|
226 |
msgstr "HTML vor jedem Listenelement: "
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "HTML to display after each list item: "
|
230 |
msgstr "HTML nach jedem Listenelement: "
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "HTML to display after the list of posts: "
|
234 |
msgstr "HTML nach der Beitragsliste: "
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "Post thumbnail options:"
|
238 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Location of post thumbnail:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
#, fuzzy
|
246 |
msgid "Display thumbnails inline with posts, before title"
|
247 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
#, fuzzy
|
251 |
msgid "Display thumbnails inline with posts, after title"
|
252 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Display only thumbnails, no text"
|
256 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "Do not display thumbnails, only text."
|
260 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Maximum width of the thumbnail: "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Maximum height of the thumbnail: "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
msgid "Use timthumb to generate thumbnails? "
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
msgid ""
|
276 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
277 |
"\">timthumb</a> will be used to generate thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
#, fuzzy
|
282 |
msgid "Post thumbnail meta field name: "
|
283 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid ""
|
287 |
"The value of this field should contain the image source and is set in the "
|
288 |
"<em>Add New Post</em> screen"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
#, fuzzy
|
293 |
msgid ""
|
294 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -298,7 +315,7 @@ msgstr ""
|
|
298 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
299 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
300 |
|
301 |
-
#: admin.inc.php:
|
302 |
#, fuzzy
|
303 |
msgid ""
|
304 |
"This can slow down the loading of your page if the first image in the "
|
@@ -308,21 +325,21 @@ msgstr ""
|
|
308 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
309 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
310 |
|
311 |
-
#: admin.inc.php:
|
312 |
msgid "Use default thumbnail? "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin.inc.php:
|
316 |
msgid ""
|
317 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
318 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid "Default thumbnail: "
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
#, fuzzy
|
327 |
msgid ""
|
328 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -333,136 +350,161 @@ msgstr ""
|
|
333 |
"nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
|
334 |
"wird das unten spezifizierte Default-Thumbnail angezeigt:"
|
335 |
|
336 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
337 |
msgid "Custom Styles"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: admin.inc.php:
|
341 |
msgid "Custom CSS to add to header:"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin.inc.php:
|
345 |
msgid ""
|
346 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
347 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
348 |
"\">FAQ</a> for available CSS classes to style."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
#, fuzzy
|
353 |
msgid "Save Options"
|
354 |
msgstr "Optionen:"
|
355 |
|
356 |
-
#: admin.inc.php:
|
357 |
#, fuzzy
|
358 |
msgid "Default Options"
|
359 |
msgstr "Ausgabeotionen:"
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
msgid "Do you want to set options to Default?"
|
363 |
msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
|
364 |
|
365 |
-
#: admin.inc.php:
|
366 |
msgid "Recreate Index"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin.inc.php:
|
370 |
msgid "Are you sure you want to recreate the index?"
|
371 |
msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid "Contextual Related Posts"
|
375 |
msgstr "Contextual Related Posts"
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Related Posts"
|
379 |
msgstr "Related Posts"
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
#, fuzzy
|
383 |
msgid "plugin settings page"
|
384 |
msgstr "Plugin-Seite"
|
385 |
|
386 |
-
#: admin.inc.php:
|
387 |
msgid ""
|
388 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
389 |
"visit the "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
msgid " to configure."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: contextual-related-posts.php:
|
397 |
msgid "Powered by"
|
398 |
msgstr "Powered by"
|
399 |
|
400 |
-
#: contextual-related-posts.php:
|
401 |
-
msgid "No related posts found"
|
402 |
-
msgstr "Keine ähnlichen Beiträge gefunden"
|
403 |
-
|
404 |
-
#: contextual-related-posts.php:221
|
405 |
#, fuzzy
|
406 |
msgid "Display Related Posts"
|
407 |
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
408 |
|
409 |
-
#: contextual-related-posts.php:
|
410 |
msgid "Title"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: contextual-related-posts.php:
|
414 |
msgid "No. of posts"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
418 |
#, fuzzy
|
419 |
msgid "Thumbnail options"
|
420 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
421 |
|
422 |
-
#: contextual-related-posts.php:
|
423 |
#, fuzzy
|
424 |
msgid "Thumbnails inline, before title"
|
425 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
426 |
|
427 |
-
#: contextual-related-posts.php:
|
428 |
#, fuzzy
|
429 |
msgid "Thumbnails inline, after title"
|
430 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
431 |
|
432 |
-
#: contextual-related-posts.php:
|
433 |
#, fuzzy
|
434 |
msgid "Only thumbnails, no text"
|
435 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
436 |
|
437 |
-
#: contextual-related-posts.php:
|
438 |
#, fuzzy
|
439 |
msgid "No thumbnails, only text."
|
440 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
441 |
|
442 |
-
#: contextual-related-posts.php:
|
443 |
#, fuzzy
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
446 |
|
447 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
448 |
msgid "<h3>Related Posts:</h3>"
|
449 |
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
450 |
|
451 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
452 |
msgid "Settings"
|
453 |
msgstr "Einstellungen"
|
454 |
|
455 |
-
#: contextual-related-posts.php:
|
456 |
msgid "Donate"
|
457 |
msgstr "Spenden"
|
458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
#~ msgid "Exclude Categories: "
|
460 |
#~ msgstr "Kategorien ausschließen: "
|
461 |
|
462 |
-
#, fuzzy
|
463 |
-
#~ msgid "Add related posts to pages"
|
464 |
-
#~ msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
465 |
-
|
466 |
#~ msgid "plugin page"
|
467 |
#~ msgstr "Plugin-Seite"
|
468 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:33-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.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:93
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Optionen gespeichert."
|
21 |
|
22 |
+
#: admin.inc.php:109
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Index aufgefrischt"
|
29 |
|
30 |
+
#: admin.inc.php:137
|
31 |
msgid "Support the development"
|
32 |
msgstr "Unterstützen Sie die Entwicklung"
|
33 |
|
34 |
+
#: admin.inc.php:145
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Den Betrag in USD eingeben: "
|
37 |
|
38 |
+
#: admin.inc.php:149
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Schicken Sie eine Spende an den Autor von"
|
41 |
|
42 |
+
#: admin.inc.php:160
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Links"
|
46 |
|
47 |
+
#: admin.inc.php:162
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Contextual Related Posts "
|
51 |
|
52 |
+
#: admin.inc.php:163
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Weitere Plugins"
|
55 |
|
56 |
+
#: admin.inc.php:164
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Ajay's Blog"
|
59 |
|
60 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
61 |
msgid "Support"
|
62 |
msgstr "Support"
|
63 |
|
64 |
+
#: admin.inc.php:166
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Neueste Entwicklungen"
|
71 |
|
72 |
+
#: admin.inc.php:180
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:182 admin.inc.php:354
|
77 |
msgid "Number of related posts to display: "
|
78 |
msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
|
79 |
|
80 |
+
#: admin.inc.php:185
|
81 |
msgid "Related posts should be newer than:"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:186
|
85 |
msgid "days"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:188
|
89 |
msgid "Post types to include in results (including custom post types)"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:199
|
93 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:202
|
97 |
msgid "Find related posts based on content as well as title"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:203
|
101 |
#, fuzzy
|
102 |
msgid ""
|
103 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
107 |
"Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der "
|
108 |
"Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
|
109 |
|
110 |
+
#: admin.inc.php:205
|
111 |
msgid "List of post or page IDs to exclude from the results: "
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin.inc.php:208
|
115 |
msgid "Categories to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin.inc.php:226
|
119 |
#, fuzzy
|
120 |
msgid "Add related posts to:"
|
121 |
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
122 |
|
123 |
+
#: admin.inc.php:228
|
124 |
msgid "Posts"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:229
|
128 |
msgid "Pages"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:230
|
132 |
msgid "Home page"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin.inc.php:231
|
136 |
msgid "Feeds"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:232
|
140 |
msgid "Category archives"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin.inc.php:233
|
144 |
msgid "Tag archives"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin.inc.php:234
|
148 |
msgid "Other archives"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:235
|
152 |
#, fuzzy
|
153 |
msgid ""
|
154 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
160 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> in das Template ein, in dem "
|
161 |
"die ähnlichen Beiträge aufgeliistet werden sollen"
|
162 |
|
163 |
+
#: admin.inc.php:238
|
164 |
msgid "Add a link to the plugin page as a final item in the list"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin.inc.php:239
|
168 |
msgid " <em>Optional</em>"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin.inc.php:246
|
172 |
#, fuzzy
|
173 |
+
msgid "Output options"
|
174 |
msgstr "Ausgabeotionen:"
|
175 |
|
176 |
+
#: admin.inc.php:248
|
177 |
msgid "Title of related posts: "
|
178 |
msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
|
179 |
|
180 |
+
#: admin.inc.php:251
|
181 |
msgid "When there are no posts, what should be shown?"
|
182 |
msgstr ""
|
183 |
"Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt "
|
184 |
"werden?"
|
185 |
|
186 |
+
#: admin.inc.php:255
|
187 |
msgid "Blank Output"
|
188 |
msgstr "Nichts"
|
189 |
|
190 |
+
#: admin.inc.php:259
|
191 |
+
msgid "Display:"
|
192 |
+
msgstr ""
|
193 |
|
194 |
+
#: admin.inc.php:263 admin.inc.php:357
|
195 |
msgid "Show post excerpt in list?"
|
196 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
197 |
|
198 |
+
#: admin.inc.php:266
|
199 |
msgid "Length of excerpt (in words): "
|
200 |
msgstr "Länge des Auszugs (in Worten): "
|
201 |
|
202 |
+
#: admin.inc.php:269
|
203 |
msgid "Limit post title length (in characters)"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: admin.inc.php:272
|
207 |
+
msgid "Open links in new window"
|
|
|
|
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: admin.inc.php:275
|
211 |
+
msgid "Add nofollow attribute to links in the list"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: admin.inc.php:278
|
215 |
+
#, fuzzy
|
216 |
+
msgid "Exclude display of related posts on these posts / pages"
|
217 |
+
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
218 |
+
|
219 |
+
#: admin.inc.php:281
|
220 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: admin.inc.php:284
|
224 |
msgid "Customize the output:"
|
225 |
msgstr "Die Ausgabe anpassen:"
|
226 |
|
227 |
+
#: admin.inc.php:286
|
228 |
msgid "HTML to display before the list of posts: "
|
229 |
msgstr "HTML vor der Beitragsliste: "
|
230 |
|
231 |
+
#: admin.inc.php:289
|
232 |
msgid "HTML to display before each list item: "
|
233 |
msgstr "HTML vor jedem Listenelement: "
|
234 |
|
235 |
+
#: admin.inc.php:292
|
236 |
msgid "HTML to display after each list item: "
|
237 |
msgstr "HTML nach jedem Listenelement: "
|
238 |
|
239 |
+
#: admin.inc.php:295
|
240 |
msgid "HTML to display after the list of posts: "
|
241 |
msgstr "HTML nach der Beitragsliste: "
|
242 |
|
243 |
+
#: admin.inc.php:298
|
244 |
msgid "Post thumbnail options:"
|
245 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
246 |
|
247 |
+
#: admin.inc.php:300 admin.inc.php:360
|
248 |
msgid "Location of post thumbnail:"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin.inc.php:304 admin.inc.php:364
|
252 |
#, fuzzy
|
253 |
msgid "Display thumbnails inline with posts, before title"
|
254 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
255 |
|
256 |
+
#: admin.inc.php:308 admin.inc.php:368
|
257 |
#, fuzzy
|
258 |
msgid "Display thumbnails inline with posts, after title"
|
259 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
260 |
|
261 |
+
#: admin.inc.php:312 admin.inc.php:372
|
262 |
msgid "Display only thumbnails, no text"
|
263 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
264 |
|
265 |
+
#: admin.inc.php:316 admin.inc.php:376
|
266 |
msgid "Do not display thumbnails, only text."
|
267 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
268 |
|
269 |
+
#: admin.inc.php:320 admin.inc.php:380
|
270 |
msgid "Maximum width of the thumbnail: "
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:323 admin.inc.php:383
|
274 |
msgid "Maximum height of the thumbnail: "
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin.inc.php:326
|
278 |
msgid "Use timthumb to generate thumbnails? "
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin.inc.php:327
|
282 |
msgid ""
|
283 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
284 |
"\">timthumb</a> will be used to generate thumbnails"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: admin.inc.php:329
|
288 |
+
msgid "Quality of thumbnails generated by timthumb"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: admin.inc.php:332
|
292 |
+
msgid ""
|
293 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
294 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: admin.inc.php:335
|
298 |
#, fuzzy
|
299 |
msgid "Post thumbnail meta field name: "
|
300 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
301 |
|
302 |
+
#: admin.inc.php:336
|
303 |
msgid ""
|
304 |
"The value of this field should contain the image source and is set in the "
|
305 |
"<em>Add New Post</em> screen"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin.inc.php:338
|
309 |
#, fuzzy
|
310 |
msgid ""
|
311 |
"If the postmeta is not set, then should the plugin extract the first image "
|
315 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
316 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
317 |
|
318 |
+
#: admin.inc.php:339
|
319 |
#, fuzzy
|
320 |
msgid ""
|
321 |
"This can slow down the loading of your page if the first image in the "
|
325 |
"dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags "
|
326 |
"verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
327 |
|
328 |
+
#: admin.inc.php:341
|
329 |
msgid "Use default thumbnail? "
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: admin.inc.php:342
|
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 |
+
#: admin.inc.php:344
|
339 |
msgid "Default thumbnail: "
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin.inc.php:345
|
343 |
#, fuzzy
|
344 |
msgid ""
|
345 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
350 |
"nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, "
|
351 |
"wird das unten spezifizierte Default-Thumbnail angezeigt:"
|
352 |
|
353 |
+
#: admin.inc.php:350
|
354 |
+
#, fuzzy
|
355 |
+
msgid "Feed options"
|
356 |
+
msgstr "Optionen:"
|
357 |
+
|
358 |
+
#: admin.inc.php:352
|
359 |
+
msgid ""
|
360 |
+
"Below options override the related posts settings for your blog feed. These "
|
361 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
362 |
+
"Options tab."
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: admin.inc.php:389
|
366 |
msgid "Custom Styles"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: admin.inc.php:391
|
370 |
msgid "Custom CSS to add to header:"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:394
|
374 |
msgid ""
|
375 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
376 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
377 |
"\">FAQ</a> for available CSS classes to style."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin.inc.php:398
|
381 |
#, fuzzy
|
382 |
msgid "Save Options"
|
383 |
msgstr "Optionen:"
|
384 |
|
385 |
+
#: admin.inc.php:399
|
386 |
#, fuzzy
|
387 |
msgid "Default Options"
|
388 |
msgstr "Ausgabeotionen:"
|
389 |
|
390 |
+
#: admin.inc.php:399
|
391 |
msgid "Do you want to set options to Default?"
|
392 |
msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
|
393 |
|
394 |
+
#: admin.inc.php:400
|
395 |
msgid "Recreate Index"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin.inc.php:400
|
399 |
msgid "Are you sure you want to recreate the index?"
|
400 |
msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
|
401 |
|
402 |
+
#: admin.inc.php:417
|
403 |
msgid "Contextual Related Posts"
|
404 |
msgstr "Contextual Related Posts"
|
405 |
|
406 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
407 |
msgid "Related Posts"
|
408 |
msgstr "Related Posts"
|
409 |
|
410 |
+
#: admin.inc.php:425
|
411 |
#, fuzzy
|
412 |
msgid "plugin settings page"
|
413 |
msgstr "Plugin-Seite"
|
414 |
|
415 |
+
#: admin.inc.php:430
|
416 |
msgid ""
|
417 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
418 |
"visit the "
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin.inc.php:430
|
422 |
msgid " to configure."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: contextual-related-posts.php:162
|
426 |
msgid "Powered by"
|
427 |
msgstr "Powered by"
|
428 |
|
429 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
430 |
#, fuzzy
|
431 |
msgid "Display Related Posts"
|
432 |
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
433 |
|
434 |
+
#: contextual-related-posts.php:252
|
435 |
msgid "Title"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: contextual-related-posts.php:257
|
439 |
msgid "No. of posts"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: contextual-related-posts.php:262
|
443 |
+
#, fuzzy
|
444 |
+
msgid " Show excerpt?"
|
445 |
+
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
446 |
+
|
447 |
+
#: contextual-related-posts.php:266
|
448 |
#, fuzzy
|
449 |
msgid "Thumbnail options"
|
450 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
451 |
|
452 |
+
#: contextual-related-posts.php:268
|
453 |
#, fuzzy
|
454 |
msgid "Thumbnails inline, before title"
|
455 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
456 |
|
457 |
+
#: contextual-related-posts.php:269
|
458 |
#, fuzzy
|
459 |
msgid "Thumbnails inline, after title"
|
460 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
461 |
|
462 |
+
#: contextual-related-posts.php:270
|
463 |
#, fuzzy
|
464 |
msgid "Only thumbnails, no text"
|
465 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
466 |
|
467 |
+
#: contextual-related-posts.php:271
|
468 |
#, fuzzy
|
469 |
msgid "No thumbnails, only text."
|
470 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
471 |
|
472 |
+
#: contextual-related-posts.php:276
|
473 |
#, fuzzy
|
474 |
+
msgid "Thumbnail height"
|
475 |
+
msgstr "Optionen für die Beitrags-Thumbnails:"
|
476 |
|
477 |
+
#: contextual-related-posts.php:281
|
478 |
+
#, fuzzy
|
479 |
+
msgid "Thumbnail width"
|
480 |
+
msgstr "Optionen für die Beitrags-Thumbnails:"
|
481 |
+
|
482 |
+
#: contextual-related-posts.php:340
|
483 |
msgid "<h3>Related Posts:</h3>"
|
484 |
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
485 |
|
486 |
+
#: contextual-related-posts.php:341
|
487 |
+
#, fuzzy
|
488 |
+
msgid "No related posts founds"
|
489 |
+
msgstr "Keine ähnlichen Beiträge gefunden"
|
490 |
+
|
491 |
+
#: contextual-related-posts.php:594
|
492 |
msgid "Settings"
|
493 |
msgstr "Einstellungen"
|
494 |
|
495 |
+
#: contextual-related-posts.php:609
|
496 |
msgid "Donate"
|
497 |
msgstr "Spenden"
|
498 |
|
499 |
+
#~ msgid "Follow @ajaydsouza on Twitter"
|
500 |
+
#~ msgstr "@ajaydsouza auf Twitter folgen"
|
501 |
+
|
502 |
+
#~ msgid "Display \"No Related Posts\""
|
503 |
+
#~ msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
504 |
+
|
505 |
#~ msgid "Exclude Categories: "
|
506 |
#~ msgstr "Kategorien ausschließen: "
|
507 |
|
|
|
|
|
|
|
|
|
508 |
#~ msgid "plugin page"
|
509 |
#~ msgstr "Plugin-Seite"
|
510 |
|
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -15,403 +15,438 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: admin.inc.php:156
|
71 |
msgid "Recent developments"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin.inc.php:
|
75 |
msgid "General options"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "Number of related posts to display: "
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid "Related posts should be newer than:"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "days"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Post types to include in results (including custom post types)"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Find related posts based on content as well as title"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid ""
|
104 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
105 |
"plugin if you enable this)"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid "List of post or page IDs to exclude from the results: "
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
msgid "Categories to exclude from the results: "
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Add related posts to:"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Posts"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Pages"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid "Home page"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
msgid "Feeds"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: admin.inc.php:
|
137 |
msgid "Category archives"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: admin.inc.php:
|
141 |
msgid "Tag archives"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid "Other archives"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid ""
|
150 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
151 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
152 |
"you want it displayed"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin.inc.php:
|
156 |
msgid "Add a link to the plugin page as a final item in the list"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: admin.inc.php:
|
160 |
msgid " <em>Optional</em>"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: admin.inc.php:
|
164 |
-
msgid "Output
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin.inc.php:
|
168 |
msgid "Title of related posts: "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: admin.inc.php:
|
172 |
msgid "When there are no posts, what should be shown?"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin.inc.php:
|
176 |
msgid "Blank Output"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
-
msgid "Display
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
msgid "Show post excerpt in list?"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
msgid "Length of excerpt (in words): "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
msgid "Limit post title length (in characters)"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
-
msgid ""
|
197 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
198 |
-
"separated list of IDs): "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
msgid "Customize the output:"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: admin.inc.php:
|
206 |
msgid "HTML to display before the list of posts: "
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "HTML to display before each list item: "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
msgid "HTML to display after each list item: "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "HTML to display after the list of posts: "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Post thumbnail options:"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Location of post thumbnail:"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Display thumbnails inline with posts, before title"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Display thumbnails inline with posts, after title"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
msgid "Display only thumbnails, no text"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Do not display thumbnails, only text."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Maximum width of the thumbnail: "
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "Maximum height of the thumbnail: "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "Use timthumb to generate thumbnails? "
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid ""
|
259 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
260 |
"\">timthumb</a> will be used to generate thumbnails"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
msgid "Post thumbnail meta field name: "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid ""
|
269 |
"The value of this field should contain the image source and is set in the "
|
270 |
"<em>Add New Post</em> screen"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
msgid ""
|
275 |
"If the postmeta is not set, then should the plugin extract the first image "
|
276 |
"from the post?"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid ""
|
281 |
"This can slow down the loading of your page if the first image in the "
|
282 |
"related posts is large in file-size"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid "Use default thumbnail? "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: admin.inc.php:
|
290 |
msgid ""
|
291 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
292 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Default thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
msgid ""
|
301 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
302 |
"then it will check the meta field. If this is not available, then it will "
|
303 |
"show the default image as specified above"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgid "Custom Styles"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid "Custom CSS to add to header:"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
msgid ""
|
316 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
317 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
318 |
"\">FAQ</a> for available CSS classes to style."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid "Save Options"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
msgid "Default Options"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
msgid "Do you want to set options to Default?"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: admin.inc.php:
|
334 |
msgid "Recreate Index"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
msgid "Are you sure you want to recreate the index?"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid "Contextual Related Posts"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid "Related Posts"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
msgid "plugin settings page"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: admin.inc.php:
|
354 |
msgid ""
|
355 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
356 |
"visit the "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: admin.inc.php:
|
360 |
msgid " to configure."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: contextual-related-posts.php:
|
364 |
msgid "Powered by"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: contextual-related-posts.php:
|
368 |
-
msgid "No related posts found"
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: contextual-related-posts.php:221
|
372 |
msgid "Display Related Posts"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: contextual-related-posts.php:
|
376 |
msgid "Title"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: contextual-related-posts.php:
|
380 |
msgid "No. of posts"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
384 |
msgid "Thumbnail options"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: contextual-related-posts.php:
|
388 |
msgid "Thumbnails inline, before title"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: contextual-related-posts.php:
|
392 |
msgid "Thumbnails inline, after title"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: contextual-related-posts.php:
|
396 |
msgid "Only thumbnails, no text"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: contextual-related-posts.php:
|
400 |
msgid "No thumbnails, only text."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: contextual-related-posts.php:
|
404 |
-
msgid "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
408 |
msgid "<h3>Related Posts:</h3>"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
412 |
msgid "Settings"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: contextual-related-posts.php:
|
416 |
msgid "Donate"
|
417 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:33-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.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:93
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:109
|
23 |
msgid "Options set to Default."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Index recreated"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin.inc.php:137
|
31 |
msgid "Support the development"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin.inc.php:145
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.inc.php:149
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:160
|
43 |
msgid "Quick Links"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:162
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:163
|
51 |
msgid "Other plugins"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:164
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:166
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
67 |
msgid "Recent developments"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:180
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin.inc.php:182 admin.inc.php:354
|
75 |
msgid "Number of related posts to display: "
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:185
|
79 |
msgid "Related posts should be newer than:"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:186
|
83 |
msgid "days"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:188
|
87 |
msgid "Post types to include in results (including custom post types)"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:199
|
91 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: admin.inc.php:202
|
95 |
msgid "Find related posts based on content as well as title"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:203
|
99 |
msgid ""
|
100 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
101 |
"plugin if you enable this)"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:205
|
105 |
msgid "List of post or page IDs to exclude from the results: "
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:208
|
109 |
msgid "Categories to exclude from the results: "
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: admin.inc.php:226
|
113 |
msgid "Add related posts to:"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:228
|
117 |
msgid "Posts"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:229
|
121 |
msgid "Pages"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:230
|
125 |
msgid "Home page"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:231
|
129 |
msgid "Feeds"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:232
|
133 |
msgid "Category archives"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: admin.inc.php:233
|
137 |
msgid "Tag archives"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin.inc.php:234
|
141 |
msgid "Other archives"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:235
|
145 |
msgid ""
|
146 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
147 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
148 |
"you want it displayed"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:238
|
152 |
msgid "Add a link to the plugin page as a final item in the list"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:239
|
156 |
msgid " <em>Optional</em>"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin.inc.php:246
|
160 |
+
msgid "Output options"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin.inc.php:248
|
164 |
msgid "Title of related posts: "
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin.inc.php:251
|
168 |
msgid "When there are no posts, what should be shown?"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin.inc.php:255
|
172 |
msgid "Blank Output"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin.inc.php:259
|
176 |
+
msgid "Display:"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin.inc.php:263 admin.inc.php:357
|
180 |
msgid "Show post excerpt in list?"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin.inc.php:266
|
184 |
msgid "Length of excerpt (in words): "
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.inc.php:269
|
188 |
msgid "Limit post title length (in characters)"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin.inc.php:272
|
192 |
+
msgid "Open links in new window"
|
|
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: admin.inc.php:275
|
196 |
+
msgid "Add nofollow attribute to links in the list"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: admin.inc.php:278
|
200 |
+
msgid "Exclude display of related posts on these posts / pages"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: admin.inc.php:281
|
204 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: admin.inc.php:284
|
208 |
msgid "Customize the output:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin.inc.php:286
|
212 |
msgid "HTML to display before the list of posts: "
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: admin.inc.php:289
|
216 |
msgid "HTML to display before each list item: "
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: admin.inc.php:292
|
220 |
msgid "HTML to display after each list item: "
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: admin.inc.php:295
|
224 |
msgid "HTML to display after the list of posts: "
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: admin.inc.php:298
|
228 |
msgid "Post thumbnail options:"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: admin.inc.php:300 admin.inc.php:360
|
232 |
msgid "Location of post thumbnail:"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: admin.inc.php:304 admin.inc.php:364
|
236 |
msgid "Display thumbnails inline with posts, before title"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: admin.inc.php:308 admin.inc.php:368
|
240 |
msgid "Display thumbnails inline with posts, after title"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: admin.inc.php:312 admin.inc.php:372
|
244 |
msgid "Display only thumbnails, no text"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: admin.inc.php:316 admin.inc.php:376
|
248 |
msgid "Do not display thumbnails, only text."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin.inc.php:320 admin.inc.php:380
|
252 |
msgid "Maximum width of the thumbnail: "
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: admin.inc.php:323 admin.inc.php:383
|
256 |
msgid "Maximum height of the thumbnail: "
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin.inc.php:326
|
260 |
msgid "Use timthumb to generate thumbnails? "
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin.inc.php:327
|
264 |
msgid ""
|
265 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
266 |
"\">timthumb</a> will be used to generate thumbnails"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin.inc.php:329
|
270 |
+
msgid "Quality of thumbnails generated by timthumb"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: admin.inc.php:332
|
274 |
+
msgid ""
|
275 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
276 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: admin.inc.php:335
|
280 |
msgid "Post thumbnail meta field name: "
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: admin.inc.php:336
|
284 |
msgid ""
|
285 |
"The value of this field should contain the image source and is set in the "
|
286 |
"<em>Add New Post</em> screen"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin.inc.php:338
|
290 |
msgid ""
|
291 |
"If the postmeta is not set, then should the plugin extract the first image "
|
292 |
"from the post?"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin.inc.php:339
|
296 |
msgid ""
|
297 |
"This can slow down the loading of your page if the first image in the "
|
298 |
"related posts is large in file-size"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:341
|
302 |
msgid "Use default thumbnail? "
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:342
|
306 |
msgid ""
|
307 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
308 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: admin.inc.php:344
|
312 |
msgid "Default thumbnail: "
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin.inc.php:345
|
316 |
msgid ""
|
317 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
318 |
"then it will check the meta field. If this is not available, then it will "
|
319 |
"show the default image as specified above"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin.inc.php:350
|
323 |
+
msgid "Feed options"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: admin.inc.php:352
|
327 |
+
msgid ""
|
328 |
+
"Below options override the related posts settings for your blog feed. These "
|
329 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
330 |
+
"Options tab."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: admin.inc.php:389
|
334 |
msgid "Custom Styles"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: admin.inc.php:391
|
338 |
msgid "Custom CSS to add to header:"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:394
|
342 |
msgid ""
|
343 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
344 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
345 |
"\">FAQ</a> for available CSS classes to style."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: admin.inc.php:398
|
349 |
msgid "Save Options"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin.inc.php:399
|
353 |
msgid "Default Options"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin.inc.php:399
|
357 |
msgid "Do you want to set options to Default?"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin.inc.php:400
|
361 |
msgid "Recreate Index"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin.inc.php:400
|
365 |
msgid "Are you sure you want to recreate the index?"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin.inc.php:417
|
369 |
msgid "Contextual Related Posts"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
373 |
msgid "Related Posts"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin.inc.php:425
|
377 |
msgid "plugin settings page"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin.inc.php:430
|
381 |
msgid ""
|
382 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
383 |
"visit the "
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin.inc.php:430
|
387 |
msgid " to configure."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: contextual-related-posts.php:162
|
391 |
msgid "Powered by"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
395 |
msgid "Display Related Posts"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: contextual-related-posts.php:252
|
399 |
msgid "Title"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: contextual-related-posts.php:257
|
403 |
msgid "No. of posts"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: contextual-related-posts.php:262
|
407 |
+
msgid " Show excerpt?"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: contextual-related-posts.php:266
|
411 |
msgid "Thumbnail options"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: contextual-related-posts.php:268
|
415 |
msgid "Thumbnails inline, before title"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: contextual-related-posts.php:269
|
419 |
msgid "Thumbnails inline, after title"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: contextual-related-posts.php:270
|
423 |
msgid "Only thumbnails, no text"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: contextual-related-posts.php:271
|
427 |
msgid "No thumbnails, only text."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: contextual-related-posts.php:276
|
431 |
+
msgid "Thumbnail height"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: contextual-related-posts.php:281
|
435 |
+
msgid "Thumbnail width"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: contextual-related-posts.php:340
|
439 |
msgid "<h3>Related Posts:</h3>"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: contextual-related-posts.php:341
|
443 |
+
msgid "No related posts founds"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: contextual-related-posts.php:594
|
447 |
msgid "Settings"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: contextual-related-posts.php:609
|
451 |
msgid "Donate"
|
452 |
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -15,403 +15,438 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: admin.inc.php:156
|
71 |
msgid "Recent developments"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: admin.inc.php:
|
75 |
msgid "General options"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "Number of related posts to display: "
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid "Related posts should be newer than:"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "days"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "Post types to include in results (including custom post types)"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Find related posts based on content as well as title"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid ""
|
104 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
105 |
"plugin if you enable this)"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin.inc.php:
|
109 |
msgid "List of post or page IDs to exclude from the results: "
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin.inc.php:
|
113 |
msgid "Categories to exclude from the results: "
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin.inc.php:
|
117 |
msgid "Add related posts to:"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: admin.inc.php:
|
121 |
msgid "Posts"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Pages"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid "Home page"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
msgid "Feeds"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: admin.inc.php:
|
137 |
msgid "Category archives"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: admin.inc.php:
|
141 |
msgid "Tag archives"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid "Other archives"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid ""
|
150 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
151 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
152 |
"you want it displayed"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin.inc.php:
|
156 |
msgid "Add a link to the plugin page as a final item in the list"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: admin.inc.php:
|
160 |
msgid " <em>Optional</em>"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: admin.inc.php:
|
164 |
-
msgid "Output
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: admin.inc.php:
|
168 |
msgid "Title of related posts: "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: admin.inc.php:
|
172 |
msgid "When there are no posts, what should be shown?"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin.inc.php:
|
176 |
msgid "Blank Output"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
-
msgid "Display
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
msgid "Show post excerpt in list?"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
msgid "Length of excerpt (in words): "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
msgid "Limit post title length (in characters)"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
-
msgid ""
|
197 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
198 |
-
"separated list of IDs): "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
msgid "Customize the output:"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: admin.inc.php:
|
206 |
msgid "HTML to display before the list of posts: "
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
msgid "HTML to display before each list item: "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin.inc.php:
|
214 |
msgid "HTML to display after each list item: "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "HTML to display after the list of posts: "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "Post thumbnail options:"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "Location of post thumbnail:"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "Display thumbnails inline with posts, before title"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Display thumbnails inline with posts, after title"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
msgid "Display only thumbnails, no text"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
msgid "Do not display thumbnails, only text."
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin.inc.php:
|
246 |
msgid "Maximum width of the thumbnail: "
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
msgid "Maximum height of the thumbnail: "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "Use timthumb to generate thumbnails? "
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid ""
|
259 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
260 |
"\">timthumb</a> will be used to generate thumbnails"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
msgid "Post thumbnail meta field name: "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid ""
|
269 |
"The value of this field should contain the image source and is set in the "
|
270 |
"<em>Add New Post</em> screen"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
msgid ""
|
275 |
"If the postmeta is not set, then should the plugin extract the first image "
|
276 |
"from the post?"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin.inc.php:
|
280 |
msgid ""
|
281 |
"This can slow down the loading of your page if the first image in the "
|
282 |
"related posts is large in file-size"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid "Use default thumbnail? "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: admin.inc.php:
|
290 |
msgid ""
|
291 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
292 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin.inc.php:
|
296 |
msgid "Default thumbnail: "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
msgid ""
|
301 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
302 |
"then it will check the meta field. If this is not available, then it will "
|
303 |
"show the default image as specified above"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgid "Custom Styles"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid "Custom CSS to add to header:"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
msgid ""
|
316 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
317 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
318 |
"\">FAQ</a> for available CSS classes to style."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid "Save Options"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
msgid "Default Options"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin.inc.php:
|
330 |
msgid "Do you want to set options to Default?"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: admin.inc.php:
|
334 |
msgid "Recreate Index"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
msgid "Are you sure you want to recreate the index?"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid "Contextual Related Posts"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid "Related Posts"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin.inc.php:
|
350 |
msgid "plugin settings page"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: admin.inc.php:
|
354 |
msgid ""
|
355 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
356 |
"visit the "
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: admin.inc.php:
|
360 |
msgid " to configure."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: contextual-related-posts.php:
|
364 |
msgid "Powered by"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: contextual-related-posts.php:
|
368 |
-
msgid "No related posts found"
|
369 |
-
msgstr ""
|
370 |
-
|
371 |
-
#: contextual-related-posts.php:221
|
372 |
msgid "Display Related Posts"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: contextual-related-posts.php:
|
376 |
msgid "Title"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: contextual-related-posts.php:
|
380 |
msgid "No. of posts"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
384 |
msgid "Thumbnail options"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: contextual-related-posts.php:
|
388 |
msgid "Thumbnails inline, before title"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: contextual-related-posts.php:
|
392 |
msgid "Thumbnails inline, after title"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: contextual-related-posts.php:
|
396 |
msgid "Only thumbnails, no text"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: contextual-related-posts.php:
|
400 |
msgid "No thumbnails, only text."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: contextual-related-posts.php:
|
404 |
-
msgid "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
408 |
msgid "<h3>Related Posts:</h3>"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
412 |
msgid "Settings"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: contextual-related-posts.php:
|
416 |
msgid "Donate"
|
417 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:31-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.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:93
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin.inc.php:109
|
23 |
msgid "Options set to Default."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Index recreated"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin.inc.php:137
|
31 |
msgid "Support the development"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin.inc.php:145
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin.inc.php:149
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin.inc.php:160
|
43 |
msgid "Quick Links"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin.inc.php:162
|
47 |
msgid "Contextual Related Posts plugin page"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin.inc.php:163
|
51 |
msgid "Other plugins"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin.inc.php:164
|
55 |
msgid "Ajay's blog"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
59 |
msgid "Support"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:166
|
63 |
msgid "Reviews"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
67 |
msgid "Recent developments"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:180
|
71 |
msgid "General options"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: admin.inc.php:182 admin.inc.php:354
|
75 |
msgid "Number of related posts to display: "
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:185
|
79 |
msgid "Related posts should be newer than:"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: admin.inc.php:186
|
83 |
msgid "days"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:188
|
87 |
msgid "Post types to include in results (including custom post types)"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:199
|
91 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: admin.inc.php:202
|
95 |
msgid "Find related posts based on content as well as title"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:203
|
99 |
msgid ""
|
100 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
101 |
"plugin if you enable this)"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin.inc.php:205
|
105 |
msgid "List of post or page IDs to exclude from the results: "
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin.inc.php:208
|
109 |
msgid "Categories to exclude from the results: "
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: admin.inc.php:226
|
113 |
msgid "Add related posts to:"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:228
|
117 |
msgid "Posts"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:229
|
121 |
msgid "Pages"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:230
|
125 |
msgid "Home page"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:231
|
129 |
msgid "Feeds"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:232
|
133 |
msgid "Category archives"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: admin.inc.php:233
|
137 |
msgid "Tag archives"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin.inc.php:234
|
141 |
msgid "Other archives"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:235
|
145 |
msgid ""
|
146 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
147 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
148 |
"you want it displayed"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:238
|
152 |
msgid "Add a link to the plugin page as a final item in the list"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: admin.inc.php:239
|
156 |
msgid " <em>Optional</em>"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: admin.inc.php:246
|
160 |
+
msgid "Output options"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: admin.inc.php:248
|
164 |
msgid "Title of related posts: "
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: admin.inc.php:251
|
168 |
msgid "When there are no posts, what should be shown?"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: admin.inc.php:255
|
172 |
msgid "Blank Output"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin.inc.php:259
|
176 |
+
msgid "Display:"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin.inc.php:263 admin.inc.php:357
|
180 |
msgid "Show post excerpt in list?"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: admin.inc.php:266
|
184 |
msgid "Length of excerpt (in words): "
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: admin.inc.php:269
|
188 |
msgid "Limit post title length (in characters)"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: admin.inc.php:272
|
192 |
+
msgid "Open links in new window"
|
|
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: admin.inc.php:275
|
196 |
+
msgid "Add nofollow attribute to links in the list"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: admin.inc.php:278
|
200 |
+
msgid "Exclude display of related posts on these posts / pages"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: admin.inc.php:281
|
204 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: admin.inc.php:284
|
208 |
msgid "Customize the output:"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin.inc.php:286
|
212 |
msgid "HTML to display before the list of posts: "
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: admin.inc.php:289
|
216 |
msgid "HTML to display before each list item: "
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: admin.inc.php:292
|
220 |
msgid "HTML to display after each list item: "
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: admin.inc.php:295
|
224 |
msgid "HTML to display after the list of posts: "
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: admin.inc.php:298
|
228 |
msgid "Post thumbnail options:"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: admin.inc.php:300 admin.inc.php:360
|
232 |
msgid "Location of post thumbnail:"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: admin.inc.php:304 admin.inc.php:364
|
236 |
msgid "Display thumbnails inline with posts, before title"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: admin.inc.php:308 admin.inc.php:368
|
240 |
msgid "Display thumbnails inline with posts, after title"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: admin.inc.php:312 admin.inc.php:372
|
244 |
msgid "Display only thumbnails, no text"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: admin.inc.php:316 admin.inc.php:376
|
248 |
msgid "Do not display thumbnails, only text."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin.inc.php:320 admin.inc.php:380
|
252 |
msgid "Maximum width of the thumbnail: "
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: admin.inc.php:323 admin.inc.php:383
|
256 |
msgid "Maximum height of the thumbnail: "
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin.inc.php:326
|
260 |
msgid "Use timthumb to generate thumbnails? "
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin.inc.php:327
|
264 |
msgid ""
|
265 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
266 |
"\">timthumb</a> will be used to generate thumbnails"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin.inc.php:329
|
270 |
+
msgid "Quality of thumbnails generated by timthumb"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: admin.inc.php:332
|
274 |
+
msgid ""
|
275 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
276 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: admin.inc.php:335
|
280 |
msgid "Post thumbnail meta field name: "
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: admin.inc.php:336
|
284 |
msgid ""
|
285 |
"The value of this field should contain the image source and is set in the "
|
286 |
"<em>Add New Post</em> screen"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin.inc.php:338
|
290 |
msgid ""
|
291 |
"If the postmeta is not set, then should the plugin extract the first image "
|
292 |
"from the post?"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin.inc.php:339
|
296 |
msgid ""
|
297 |
"This can slow down the loading of your page if the first image in the "
|
298 |
"related posts is large in file-size"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin.inc.php:341
|
302 |
msgid "Use default thumbnail? "
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:342
|
306 |
msgid ""
|
307 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
308 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: admin.inc.php:344
|
312 |
msgid "Default thumbnail: "
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin.inc.php:345
|
316 |
msgid ""
|
317 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
318 |
"then it will check the meta field. If this is not available, then it will "
|
319 |
"show the default image as specified above"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin.inc.php:350
|
323 |
+
msgid "Feed options"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: admin.inc.php:352
|
327 |
+
msgid ""
|
328 |
+
"Below options override the related posts settings for your blog feed. These "
|
329 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
330 |
+
"Options tab."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: admin.inc.php:389
|
334 |
msgid "Custom Styles"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: admin.inc.php:391
|
338 |
msgid "Custom CSS to add to header:"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:394
|
342 |
msgid ""
|
343 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
344 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
345 |
"\">FAQ</a> for available CSS classes to style."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: admin.inc.php:398
|
349 |
msgid "Save Options"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin.inc.php:399
|
353 |
msgid "Default Options"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin.inc.php:399
|
357 |
msgid "Do you want to set options to Default?"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin.inc.php:400
|
361 |
msgid "Recreate Index"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin.inc.php:400
|
365 |
msgid "Are you sure you want to recreate the index?"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin.inc.php:417
|
369 |
msgid "Contextual Related Posts"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
373 |
msgid "Related Posts"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin.inc.php:425
|
377 |
msgid "plugin settings page"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin.inc.php:430
|
381 |
msgid ""
|
382 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
383 |
"visit the "
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin.inc.php:430
|
387 |
msgid " to configure."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: contextual-related-posts.php:162
|
391 |
msgid "Powered by"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
395 |
msgid "Display Related Posts"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: contextual-related-posts.php:252
|
399 |
msgid "Title"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: contextual-related-posts.php:257
|
403 |
msgid "No. of posts"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: contextual-related-posts.php:262
|
407 |
+
msgid " Show excerpt?"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: contextual-related-posts.php:266
|
411 |
msgid "Thumbnail options"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: contextual-related-posts.php:268
|
415 |
msgid "Thumbnails inline, before title"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: contextual-related-posts.php:269
|
419 |
msgid "Thumbnails inline, after title"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: contextual-related-posts.php:270
|
423 |
msgid "Only thumbnails, no text"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: contextual-related-posts.php:271
|
427 |
msgid "No thumbnails, only text."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: contextual-related-posts.php:276
|
431 |
+
msgid "Thumbnail height"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: contextual-related-posts.php:281
|
435 |
+
msgid "Thumbnail width"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: contextual-related-posts.php:340
|
439 |
msgid "<h3>Related Posts:</h3>"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: contextual-related-posts.php:341
|
443 |
+
msgid "No related posts founds"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: contextual-related-posts.php:594
|
447 |
msgid "Settings"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: contextual-related-posts.php:609
|
451 |
msgid "Donate"
|
452 |
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -15,93 +15,89 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
70 |
-
msgstr "Seguir @ajaydsouza en Twitter"
|
71 |
-
|
72 |
-
#: admin.inc.php:156
|
73 |
msgid "Recent developments"
|
74 |
msgstr "Desarrollos recientes"
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "General options"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid "Number of related posts to display: "
|
82 |
msgstr "Número de posts relacionados a mostrar:"
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Related posts should be newer than:"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "days"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Post types to include in results (including custom post types)"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Find related posts based on content as well as title"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
#, fuzzy
|
106 |
msgid ""
|
107 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -111,48 +107,48 @@ msgstr ""
|
|
111 |
"deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
|
112 |
"caché si activas esto)"
|
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 |
#, fuzzy
|
124 |
msgid "Add related posts to:"
|
125 |
msgstr "Agregar posts relacionados al feed"
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Posts"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid "Pages"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
msgid "Home page"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid "Feeds"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid "Category archives"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin.inc.php:
|
148 |
msgid "Tag archives"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: admin.inc.php:
|
152 |
msgid "Other archives"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin.inc.php:
|
156 |
#, fuzzy
|
157 |
msgid ""
|
158 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -163,129 +159,150 @@ msgstr ""
|
|
163 |
"favor agrega <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp"
|
164 |
"(); ?></code> a tu archivo de template donde quieras q se muestre"
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
msgid "Add a link to the plugin page as a final item in the list"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid " <em>Optional</em>"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
#, fuzzy
|
176 |
-
msgid "Output
|
177 |
msgstr "Opciones de Salida:"
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
msgid "Title of related posts: "
|
181 |
msgstr "Título de posts relacionados:"
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
msgid "When there are no posts, what should be shown?"
|
185 |
msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
msgid "Blank Output"
|
189 |
msgstr "Salida vacía"
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
-
msgid "Display
|
193 |
-
msgstr "
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
msgid "Show post excerpt in list?"
|
197 |
msgstr "¿Mostrar extracto con los items?"
|
198 |
|
199 |
-
#: admin.inc.php:
|
200 |
msgid "Length of excerpt (in words): "
|
201 |
msgstr "Tamaño del extracto (en palabras):"
|
202 |
|
203 |
-
#: admin.inc.php:
|
204 |
msgid "Limit post title length (in characters)"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin.inc.php:
|
208 |
-
msgid ""
|
209 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
210 |
-
"separated list of IDs): "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
msgid "Customize the output:"
|
215 |
msgstr "Personalizar la salida:"
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "HTML to display before the list of posts: "
|
219 |
msgstr "HTML a mostrar antes de todos los items:"
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "HTML to display before each list item: "
|
223 |
msgstr "HTML a mostrar antes de cada item:"
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "HTML to display after each list item: "
|
227 |
msgstr "HTML a mostrar despues de cada item:"
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "HTML to display after the list of posts: "
|
231 |
msgstr "HTML a mostrar despues de todos los items:"
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Post thumbnail options:"
|
235 |
msgstr "Opciones de miniaturas en el post:"
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
msgid "Location of post thumbnail:"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
#, fuzzy
|
243 |
msgid "Display thumbnails inline with posts, before title"
|
244 |
msgstr "Miniaturas en línea con los posts"
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
#, fuzzy
|
248 |
msgid "Display thumbnails inline with posts, after title"
|
249 |
msgstr "Miniaturas en línea con los posts"
|
250 |
|
251 |
-
#: admin.inc.php:
|
252 |
msgid "Display only thumbnails, no text"
|
253 |
msgstr "Solo miniaturas, sin texto"
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Do not display thumbnails, only text."
|
257 |
msgstr "No mostrar miniaturas, solo texto."
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Maximum width of the thumbnail: "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Maximum height of the thumbnail: "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid "Use timthumb to generate thumbnails? "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin.inc.php:
|
272 |
msgid ""
|
273 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
274 |
"\">timthumb</a> will be used to generate thumbnails"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
#, fuzzy
|
279 |
msgid "Post thumbnail meta field name: "
|
280 |
msgstr "Opciones de miniaturas en el post:"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid ""
|
284 |
"The value of this field should contain the image source and is set in the "
|
285 |
"<em>Add New Post</em> screen"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
#, fuzzy
|
290 |
msgid ""
|
291 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -295,7 +312,7 @@ msgstr ""
|
|
295 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
296 |
"tamaño"
|
297 |
|
298 |
-
#: admin.inc.php:
|
299 |
#, fuzzy
|
300 |
msgid ""
|
301 |
"This can slow down the loading of your page if the first image in the "
|
@@ -305,21 +322,21 @@ msgstr ""
|
|
305 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
306 |
"tamaño"
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid "Use default thumbnail? "
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid ""
|
314 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
315 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid "Default thumbnail: "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
#, fuzzy
|
324 |
msgid ""
|
325 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -330,136 +347,161 @@ msgstr ""
|
|
330 |
"ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
|
331 |
"la imágen padrón especificada a continuación:"
|
332 |
|
333 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
msgid "Custom Styles"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
msgid "Custom CSS to add to header:"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid ""
|
343 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
344 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
345 |
"\">FAQ</a> for available CSS classes to style."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: admin.inc.php:
|
349 |
#, fuzzy
|
350 |
msgid "Save Options"
|
351 |
msgstr "Opciones:"
|
352 |
|
353 |
-
#: admin.inc.php:
|
354 |
#, fuzzy
|
355 |
msgid "Default Options"
|
356 |
msgstr "Opciones de Salida:"
|
357 |
|
358 |
-
#: admin.inc.php:
|
359 |
msgid "Do you want to set options to Default?"
|
360 |
msgstr "¿Quieres resetear las opciones?"
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid "Recreate Index"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin.inc.php:
|
367 |
msgid "Are you sure you want to recreate the index?"
|
368 |
msgstr "¿Está seguro que quiere recrear el index?"
|
369 |
|
370 |
-
#: admin.inc.php:
|
371 |
msgid "Contextual Related Posts"
|
372 |
msgstr "Posts Relacionados Contextualmente"
|
373 |
|
374 |
-
#: admin.inc.php:
|
375 |
msgid "Related Posts"
|
376 |
msgstr "Post Relacionados"
|
377 |
|
378 |
-
#: admin.inc.php:
|
379 |
#, fuzzy
|
380 |
msgid "plugin settings page"
|
381 |
msgstr "sitio del plugin"
|
382 |
|
383 |
-
#: admin.inc.php:
|
384 |
msgid ""
|
385 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
386 |
"visit the "
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin.inc.php:
|
390 |
msgid " to configure."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: contextual-related-posts.php:
|
394 |
msgid "Powered by"
|
395 |
msgstr "Creado por"
|
396 |
|
397 |
-
#: contextual-related-posts.php:
|
398 |
-
msgid "No related posts found"
|
399 |
-
msgstr "No hay posts relacionados"
|
400 |
-
|
401 |
-
#: contextual-related-posts.php:221
|
402 |
#, fuzzy
|
403 |
msgid "Display Related Posts"
|
404 |
msgstr "Mostrar \"Posts No Relacionados\""
|
405 |
|
406 |
-
#: contextual-related-posts.php:
|
407 |
msgid "Title"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: contextual-related-posts.php:
|
411 |
msgid "No. of posts"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
415 |
#, fuzzy
|
416 |
msgid "Thumbnail options"
|
417 |
msgstr "Opciones de miniaturas en el post:"
|
418 |
|
419 |
-
#: contextual-related-posts.php:
|
420 |
#, fuzzy
|
421 |
msgid "Thumbnails inline, before title"
|
422 |
msgstr "Miniaturas en línea con los posts"
|
423 |
|
424 |
-
#: contextual-related-posts.php:
|
425 |
#, fuzzy
|
426 |
msgid "Thumbnails inline, after title"
|
427 |
msgstr "Miniaturas en línea con los posts"
|
428 |
|
429 |
-
#: contextual-related-posts.php:
|
430 |
#, fuzzy
|
431 |
msgid "Only thumbnails, no text"
|
432 |
msgstr "Solo miniaturas, sin texto"
|
433 |
|
434 |
-
#: contextual-related-posts.php:
|
435 |
#, fuzzy
|
436 |
msgid "No thumbnails, only text."
|
437 |
msgstr "No mostrar miniaturas, solo texto."
|
438 |
|
439 |
-
#: contextual-related-posts.php:
|
440 |
#, fuzzy
|
441 |
-
msgid "
|
442 |
-
msgstr "
|
443 |
|
444 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
445 |
msgid "<h3>Related Posts:</h3>"
|
446 |
msgstr "<h3>Post Relacionados:</h3>"
|
447 |
|
448 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
449 |
msgid "Settings"
|
450 |
msgstr "Opciones"
|
451 |
|
452 |
-
#: contextual-related-posts.php:
|
453 |
msgid "Donate"
|
454 |
msgstr "Donar"
|
455 |
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
#~ msgid "Exclude Categories: "
|
457 |
#~ msgstr "Excluir Categorías:"
|
458 |
|
459 |
-
#, fuzzy
|
460 |
-
#~ msgid "Add related posts to pages"
|
461 |
-
#~ msgstr "Agregar posts relacionados al feed"
|
462 |
-
|
463 |
#~ msgid "plugin page"
|
464 |
#~ msgstr "sitio del plugin"
|
465 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:33-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.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:93
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Opciones guardadas correctament."
|
21 |
|
22 |
+
#: admin.inc.php:109
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Restablecer opciones originales"
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Recrear el Index"
|
29 |
|
30 |
+
#: admin.inc.php:137
|
31 |
msgid "Support the development"
|
32 |
msgstr "Apoya el desarrollo"
|
33 |
|
34 |
+
#: admin.inc.php:145
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Ingresa monto en USD:"
|
37 |
|
38 |
+
#: admin.inc.php:149
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Enviar tu donación al autor de"
|
41 |
|
42 |
+
#: admin.inc.php:160
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Links rápidos"
|
46 |
|
47 |
+
#: admin.inc.php:162
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Posts relacionados contextualmente"
|
51 |
|
52 |
+
#: admin.inc.php:163
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Otros plugins"
|
55 |
|
56 |
+
#: admin.inc.php:164
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
61 |
msgid "Support"
|
62 |
msgstr "Soporte"
|
63 |
|
64 |
+
#: admin.inc.php:166
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Desarrollos recientes"
|
71 |
|
72 |
+
#: admin.inc.php:180
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:182 admin.inc.php:354
|
77 |
msgid "Number of related posts to display: "
|
78 |
msgstr "Número de posts relacionados a mostrar:"
|
79 |
|
80 |
+
#: admin.inc.php:185
|
81 |
msgid "Related posts should be newer than:"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:186
|
85 |
msgid "days"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:188
|
89 |
msgid "Post types to include in results (including custom post types)"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:199
|
93 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:202
|
97 |
msgid "Find related posts based on content as well as title"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:203
|
101 |
#, fuzzy
|
102 |
msgid ""
|
103 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
107 |
"deseleccionado, solo los títulos serán usados. (Recomiendo usar un plugin de "
|
108 |
"caché si activas esto)"
|
109 |
|
110 |
+
#: admin.inc.php:205
|
111 |
msgid "List of post or page IDs to exclude from the results: "
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin.inc.php:208
|
115 |
msgid "Categories to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin.inc.php:226
|
119 |
#, fuzzy
|
120 |
msgid "Add related posts to:"
|
121 |
msgstr "Agregar posts relacionados al feed"
|
122 |
|
123 |
+
#: admin.inc.php:228
|
124 |
msgid "Posts"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:229
|
128 |
msgid "Pages"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:230
|
132 |
msgid "Home page"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin.inc.php:231
|
136 |
msgid "Feeds"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:232
|
140 |
msgid "Category archives"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin.inc.php:233
|
144 |
msgid "Tag archives"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin.inc.php:234
|
148 |
msgid "Other archives"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:235
|
152 |
#, fuzzy
|
153 |
msgid ""
|
154 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
159 |
"favor agrega <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp"
|
160 |
"(); ?></code> a tu archivo de template donde quieras q se muestre"
|
161 |
|
162 |
+
#: admin.inc.php:238
|
163 |
msgid "Add a link to the plugin page as a final item in the list"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin.inc.php:239
|
167 |
msgid " <em>Optional</em>"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: admin.inc.php:246
|
171 |
#, fuzzy
|
172 |
+
msgid "Output options"
|
173 |
msgstr "Opciones de Salida:"
|
174 |
|
175 |
+
#: admin.inc.php:248
|
176 |
msgid "Title of related posts: "
|
177 |
msgstr "Título de posts relacionados:"
|
178 |
|
179 |
+
#: admin.inc.php:251
|
180 |
msgid "When there are no posts, what should be shown?"
|
181 |
msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
|
182 |
|
183 |
+
#: admin.inc.php:255
|
184 |
msgid "Blank Output"
|
185 |
msgstr "Salida vacía"
|
186 |
|
187 |
+
#: admin.inc.php:259
|
188 |
+
msgid "Display:"
|
189 |
+
msgstr ""
|
190 |
|
191 |
+
#: admin.inc.php:263 admin.inc.php:357
|
192 |
msgid "Show post excerpt in list?"
|
193 |
msgstr "¿Mostrar extracto con los items?"
|
194 |
|
195 |
+
#: admin.inc.php:266
|
196 |
msgid "Length of excerpt (in words): "
|
197 |
msgstr "Tamaño del extracto (en palabras):"
|
198 |
|
199 |
+
#: admin.inc.php:269
|
200 |
msgid "Limit post title length (in characters)"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin.inc.php:272
|
204 |
+
msgid "Open links in new window"
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin.inc.php:275
|
208 |
+
msgid "Add nofollow attribute to links in the list"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: admin.inc.php:278
|
212 |
+
#, fuzzy
|
213 |
+
msgid "Exclude display of related posts on these posts / pages"
|
214 |
+
msgstr "Agregar posts relacionados al feed"
|
215 |
+
|
216 |
+
#: admin.inc.php:281
|
217 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: admin.inc.php:284
|
221 |
msgid "Customize the output:"
|
222 |
msgstr "Personalizar la salida:"
|
223 |
|
224 |
+
#: admin.inc.php:286
|
225 |
msgid "HTML to display before the list of posts: "
|
226 |
msgstr "HTML a mostrar antes de todos los items:"
|
227 |
|
228 |
+
#: admin.inc.php:289
|
229 |
msgid "HTML to display before each list item: "
|
230 |
msgstr "HTML a mostrar antes de cada item:"
|
231 |
|
232 |
+
#: admin.inc.php:292
|
233 |
msgid "HTML to display after each list item: "
|
234 |
msgstr "HTML a mostrar despues de cada item:"
|
235 |
|
236 |
+
#: admin.inc.php:295
|
237 |
msgid "HTML to display after the list of posts: "
|
238 |
msgstr "HTML a mostrar despues de todos los items:"
|
239 |
|
240 |
+
#: admin.inc.php:298
|
241 |
msgid "Post thumbnail options:"
|
242 |
msgstr "Opciones de miniaturas en el post:"
|
243 |
|
244 |
+
#: admin.inc.php:300 admin.inc.php:360
|
245 |
msgid "Location of post thumbnail:"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin.inc.php:304 admin.inc.php:364
|
249 |
#, fuzzy
|
250 |
msgid "Display thumbnails inline with posts, before title"
|
251 |
msgstr "Miniaturas en línea con los posts"
|
252 |
|
253 |
+
#: admin.inc.php:308 admin.inc.php:368
|
254 |
#, fuzzy
|
255 |
msgid "Display thumbnails inline with posts, after title"
|
256 |
msgstr "Miniaturas en línea con los posts"
|
257 |
|
258 |
+
#: admin.inc.php:312 admin.inc.php:372
|
259 |
msgid "Display only thumbnails, no text"
|
260 |
msgstr "Solo miniaturas, sin texto"
|
261 |
|
262 |
+
#: admin.inc.php:316 admin.inc.php:376
|
263 |
msgid "Do not display thumbnails, only text."
|
264 |
msgstr "No mostrar miniaturas, solo texto."
|
265 |
|
266 |
+
#: admin.inc.php:320 admin.inc.php:380
|
267 |
msgid "Maximum width of the thumbnail: "
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:323 admin.inc.php:383
|
271 |
msgid "Maximum height of the thumbnail: "
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: admin.inc.php:326
|
275 |
msgid "Use timthumb to generate thumbnails? "
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin.inc.php:327
|
279 |
msgid ""
|
280 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
281 |
"\">timthumb</a> will be used to generate thumbnails"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin.inc.php:329
|
285 |
+
msgid "Quality of thumbnails generated by timthumb"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: admin.inc.php:332
|
289 |
+
msgid ""
|
290 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
291 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: admin.inc.php:335
|
295 |
#, fuzzy
|
296 |
msgid "Post thumbnail meta field name: "
|
297 |
msgstr "Opciones de miniaturas en el post:"
|
298 |
|
299 |
+
#: admin.inc.php:336
|
300 |
msgid ""
|
301 |
"The value of this field should contain the image source and is set in the "
|
302 |
"<em>Add New Post</em> screen"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:338
|
306 |
#, fuzzy
|
307 |
msgid ""
|
308 |
"If the postmeta is not set, then should the plugin extract the first image "
|
312 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
313 |
"tamaño"
|
314 |
|
315 |
+
#: admin.inc.php:339
|
316 |
#, fuzzy
|
317 |
msgid ""
|
318 |
"This can slow down the loading of your page if the first image in the "
|
322 |
"del post. Esto puede relentizar la carga si la primera imágen es de gran "
|
323 |
"tamaño"
|
324 |
|
325 |
+
#: admin.inc.php:341
|
326 |
msgid "Use default thumbnail? "
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:342
|
330 |
msgid ""
|
331 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
332 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:344
|
336 |
msgid "Default thumbnail: "
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin.inc.php:345
|
340 |
#, fuzzy
|
341 |
msgid ""
|
342 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
347 |
"ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
|
348 |
"la imágen padrón especificada a continuación:"
|
349 |
|
350 |
+
#: admin.inc.php:350
|
351 |
+
#, fuzzy
|
352 |
+
msgid "Feed options"
|
353 |
+
msgstr "Opciones:"
|
354 |
+
|
355 |
+
#: admin.inc.php:352
|
356 |
+
msgid ""
|
357 |
+
"Below options override the related posts settings for your blog feed. These "
|
358 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
359 |
+
"Options tab."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: admin.inc.php:389
|
363 |
msgid "Custom Styles"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:391
|
367 |
msgid "Custom CSS to add to header:"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: admin.inc.php:394
|
371 |
msgid ""
|
372 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
373 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
374 |
"\">FAQ</a> for available CSS classes to style."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:398
|
378 |
#, fuzzy
|
379 |
msgid "Save Options"
|
380 |
msgstr "Opciones:"
|
381 |
|
382 |
+
#: admin.inc.php:399
|
383 |
#, fuzzy
|
384 |
msgid "Default Options"
|
385 |
msgstr "Opciones de Salida:"
|
386 |
|
387 |
+
#: admin.inc.php:399
|
388 |
msgid "Do you want to set options to Default?"
|
389 |
msgstr "¿Quieres resetear las opciones?"
|
390 |
|
391 |
+
#: admin.inc.php:400
|
392 |
msgid "Recreate Index"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin.inc.php:400
|
396 |
msgid "Are you sure you want to recreate the index?"
|
397 |
msgstr "¿Está seguro que quiere recrear el index?"
|
398 |
|
399 |
+
#: admin.inc.php:417
|
400 |
msgid "Contextual Related Posts"
|
401 |
msgstr "Posts Relacionados Contextualmente"
|
402 |
|
403 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
404 |
msgid "Related Posts"
|
405 |
msgstr "Post Relacionados"
|
406 |
|
407 |
+
#: admin.inc.php:425
|
408 |
#, fuzzy
|
409 |
msgid "plugin settings page"
|
410 |
msgstr "sitio del plugin"
|
411 |
|
412 |
+
#: admin.inc.php:430
|
413 |
msgid ""
|
414 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
415 |
"visit the "
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin.inc.php:430
|
419 |
msgid " to configure."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: contextual-related-posts.php:162
|
423 |
msgid "Powered by"
|
424 |
msgstr "Creado por"
|
425 |
|
426 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
427 |
#, fuzzy
|
428 |
msgid "Display Related Posts"
|
429 |
msgstr "Mostrar \"Posts No Relacionados\""
|
430 |
|
431 |
+
#: contextual-related-posts.php:252
|
432 |
msgid "Title"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: contextual-related-posts.php:257
|
436 |
msgid "No. of posts"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: contextual-related-posts.php:262
|
440 |
+
#, fuzzy
|
441 |
+
msgid " Show excerpt?"
|
442 |
+
msgstr "¿Mostrar extracto con los items?"
|
443 |
+
|
444 |
+
#: contextual-related-posts.php:266
|
445 |
#, fuzzy
|
446 |
msgid "Thumbnail options"
|
447 |
msgstr "Opciones de miniaturas en el post:"
|
448 |
|
449 |
+
#: contextual-related-posts.php:268
|
450 |
#, fuzzy
|
451 |
msgid "Thumbnails inline, before title"
|
452 |
msgstr "Miniaturas en línea con los posts"
|
453 |
|
454 |
+
#: contextual-related-posts.php:269
|
455 |
#, fuzzy
|
456 |
msgid "Thumbnails inline, after title"
|
457 |
msgstr "Miniaturas en línea con los posts"
|
458 |
|
459 |
+
#: contextual-related-posts.php:270
|
460 |
#, fuzzy
|
461 |
msgid "Only thumbnails, no text"
|
462 |
msgstr "Solo miniaturas, sin texto"
|
463 |
|
464 |
+
#: contextual-related-posts.php:271
|
465 |
#, fuzzy
|
466 |
msgid "No thumbnails, only text."
|
467 |
msgstr "No mostrar miniaturas, solo texto."
|
468 |
|
469 |
+
#: contextual-related-posts.php:276
|
470 |
#, fuzzy
|
471 |
+
msgid "Thumbnail height"
|
472 |
+
msgstr "Opciones de miniaturas en el post:"
|
473 |
|
474 |
+
#: contextual-related-posts.php:281
|
475 |
+
#, fuzzy
|
476 |
+
msgid "Thumbnail width"
|
477 |
+
msgstr "Opciones de miniaturas en el post:"
|
478 |
+
|
479 |
+
#: contextual-related-posts.php:340
|
480 |
msgid "<h3>Related Posts:</h3>"
|
481 |
msgstr "<h3>Post Relacionados:</h3>"
|
482 |
|
483 |
+
#: contextual-related-posts.php:341
|
484 |
+
#, fuzzy
|
485 |
+
msgid "No related posts founds"
|
486 |
+
msgstr "No hay posts relacionados"
|
487 |
+
|
488 |
+
#: contextual-related-posts.php:594
|
489 |
msgid "Settings"
|
490 |
msgstr "Opciones"
|
491 |
|
492 |
+
#: contextual-related-posts.php:609
|
493 |
msgid "Donate"
|
494 |
msgstr "Donar"
|
495 |
|
496 |
+
#~ msgid "Follow @ajaydsouza on Twitter"
|
497 |
+
#~ msgstr "Seguir @ajaydsouza en Twitter"
|
498 |
+
|
499 |
+
#~ msgid "Display \"No Related Posts\""
|
500 |
+
#~ msgstr "Mostrar \"Posts No Relacionados\""
|
501 |
+
|
502 |
#~ msgid "Exclude Categories: "
|
503 |
#~ msgstr "Excluir Categorías:"
|
504 |
|
|
|
|
|
|
|
|
|
505 |
#~ msgid "plugin page"
|
506 |
#~ msgstr "sitio del plugin"
|
507 |
|
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:
|
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,93 +15,89 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
70 |
-
msgstr "Segui @ajaydsouza su Twitter"
|
71 |
-
|
72 |
-
#: admin.inc.php:156
|
73 |
msgid "Recent developments"
|
74 |
msgstr "Sviluppi recenti"
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "General options"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid "Number of related posts to display: "
|
82 |
msgstr "numero di articoli correlati da mostrare:"
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Related posts should be newer than:"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "days"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Post types to include in results (including custom post types)"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Find related posts based on content as well as title"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
#, fuzzy
|
106 |
msgid ""
|
107 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -111,48 +107,48 @@ msgstr ""
|
|
111 |
"disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
|
112 |
"preferibile attivare un plugin per la cache)"
|
113 |
|
114 |
-
#: admin.inc.php:
|
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 |
#, fuzzy
|
124 |
msgid "Add related posts to:"
|
125 |
msgstr "aggiungi gli articoli correlati al feed"
|
126 |
|
127 |
-
#: admin.inc.php:
|
128 |
msgid "Posts"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: admin.inc.php:
|
132 |
msgid "Pages"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: admin.inc.php:
|
136 |
msgid "Home page"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: admin.inc.php:
|
140 |
msgid "Feeds"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: admin.inc.php:
|
144 |
msgid "Category archives"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin.inc.php:
|
148 |
msgid "Tag archives"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: admin.inc.php:
|
152 |
msgid "Other archives"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: admin.inc.php:
|
156 |
#, fuzzy
|
157 |
msgid ""
|
158 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -163,129 +159,150 @@ msgstr ""
|
|
163 |
"inserisci <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp"
|
164 |
"(); ?></code> nel tuo template laddove desideri che siano visualizzati"
|
165 |
|
166 |
-
#: admin.inc.php:
|
167 |
msgid "Add a link to the plugin page as a final item in the list"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: admin.inc.php:
|
171 |
msgid " <em>Optional</em>"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: admin.inc.php:
|
175 |
#, fuzzy
|
176 |
-
msgid "Output
|
177 |
msgstr "Opzioni output:"
|
178 |
|
179 |
-
#: admin.inc.php:
|
180 |
msgid "Title of related posts: "
|
181 |
msgstr "titolo per gli articoli correlati:"
|
182 |
|
183 |
-
#: admin.inc.php:
|
184 |
msgid "When there are no posts, what should be shown?"
|
185 |
msgstr "Cosa desideri mostrare in assenza di articoli?"
|
186 |
|
187 |
-
#: admin.inc.php:
|
188 |
msgid "Blank Output"
|
189 |
msgstr "nulla"
|
190 |
|
191 |
-
#: admin.inc.php:
|
192 |
-
msgid "Display
|
193 |
-
msgstr "
|
194 |
|
195 |
-
#: admin.inc.php:
|
196 |
msgid "Show post excerpt in list?"
|
197 |
msgstr "Desideri mostrare gli estratti?"
|
198 |
|
199 |
-
#: admin.inc.php:
|
200 |
msgid "Length of excerpt (in words): "
|
201 |
msgstr "Lunghezza estratto (in parole): "
|
202 |
|
203 |
-
#: admin.inc.php:
|
204 |
msgid "Limit post title length (in characters)"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin.inc.php:
|
208 |
-
msgid ""
|
209 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
210 |
-
"separated list of IDs): "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
msgid "Customize the output:"
|
215 |
msgstr "Personalizzazione output:"
|
216 |
|
217 |
-
#: admin.inc.php:
|
218 |
msgid "HTML to display before the list of posts: "
|
219 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
220 |
|
221 |
-
#: admin.inc.php:
|
222 |
msgid "HTML to display before each list item: "
|
223 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
224 |
|
225 |
-
#: admin.inc.php:
|
226 |
msgid "HTML to display after each list item: "
|
227 |
msgstr "HTML da mostrare dopo ogni lista:"
|
228 |
|
229 |
-
#: admin.inc.php:
|
230 |
msgid "HTML to display after the list of posts: "
|
231 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
232 |
|
233 |
-
#: admin.inc.php:
|
234 |
msgid "Post thumbnail options:"
|
235 |
msgstr "Opzioni miniature articolo:"
|
236 |
|
237 |
-
#: admin.inc.php:
|
238 |
msgid "Location of post thumbnail:"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin.inc.php:
|
242 |
#, fuzzy
|
243 |
msgid "Display thumbnails inline with posts, before title"
|
244 |
msgstr "Mostra gli articoli con le miniature inline"
|
245 |
|
246 |
-
#: admin.inc.php:
|
247 |
#, fuzzy
|
248 |
msgid "Display thumbnails inline with posts, after title"
|
249 |
msgstr "Mostra gli articoli con le miniature inline"
|
250 |
|
251 |
-
#: admin.inc.php:
|
252 |
msgid "Display only thumbnails, no text"
|
253 |
msgstr "Mostra le sole miniature, nessun testo"
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Do not display thumbnails, only text."
|
257 |
msgstr "Non mostrare le miniature, solo testo."
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Maximum width of the thumbnail: "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid "Maximum height of the thumbnail: "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin.inc.php:
|
268 |
msgid "Use timthumb to generate thumbnails? "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin.inc.php:
|
272 |
msgid ""
|
273 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
274 |
"\">timthumb</a> will be used to generate thumbnails"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
#, fuzzy
|
279 |
msgid "Post thumbnail meta field name: "
|
280 |
msgstr "Opzioni miniature articolo:"
|
281 |
|
282 |
-
#: admin.inc.php:
|
283 |
msgid ""
|
284 |
"The value of this field should contain the image source and is set in the "
|
285 |
"<em>Add New Post</em> screen"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin.inc.php:
|
289 |
#, fuzzy
|
290 |
msgid ""
|
291 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -296,7 +313,7 @@ msgstr ""
|
|
296 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
297 |
"dimensioni"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
#, fuzzy
|
301 |
msgid ""
|
302 |
"This can slow down the loading of your page if the first image in the "
|
@@ -307,21 +324,21 @@ msgstr ""
|
|
307 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
308 |
"dimensioni"
|
309 |
|
310 |
-
#: admin.inc.php:
|
311 |
msgid "Use default thumbnail? "
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin.inc.php:
|
315 |
msgid ""
|
316 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
317 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin.inc.php:
|
321 |
msgid "Default thumbnail: "
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: admin.inc.php:
|
325 |
#, fuzzy
|
326 |
msgid ""
|
327 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -333,136 +350,161 @@ msgstr ""
|
|
333 |
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
334 |
"specificato qui sotto:"
|
335 |
|
336 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
337 |
msgid "Custom Styles"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: admin.inc.php:
|
341 |
msgid "Custom CSS to add to header:"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin.inc.php:
|
345 |
msgid ""
|
346 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
347 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
348 |
"\">FAQ</a> for available CSS classes to style."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
#, fuzzy
|
353 |
msgid "Save Options"
|
354 |
msgstr "Opzioni:"
|
355 |
|
356 |
-
#: admin.inc.php:
|
357 |
#, fuzzy
|
358 |
msgid "Default Options"
|
359 |
msgstr "Opzioni output:"
|
360 |
|
361 |
-
#: admin.inc.php:
|
362 |
msgid "Do you want to set options to Default?"
|
363 |
msgstr "Sei certo di volere impostare alle opzioni predefinite?"
|
364 |
|
365 |
-
#: admin.inc.php:
|
366 |
msgid "Recreate Index"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin.inc.php:
|
370 |
msgid "Are you sure you want to recreate the index?"
|
371 |
msgstr "Sei certo di volere ricreare l'indice?"
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid "Contextual Related Posts"
|
375 |
msgstr "Contextual Related Posts"
|
376 |
|
377 |
-
#: admin.inc.php:
|
378 |
msgid "Related Posts"
|
379 |
msgstr "Related Posts"
|
380 |
|
381 |
-
#: admin.inc.php:
|
382 |
#, fuzzy
|
383 |
msgid "plugin settings page"
|
384 |
msgstr "pagina plugin"
|
385 |
|
386 |
-
#: admin.inc.php:
|
387 |
msgid ""
|
388 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
389 |
"visit the "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin.inc.php:
|
393 |
msgid " to configure."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: contextual-related-posts.php:
|
397 |
msgid "Powered by"
|
398 |
msgstr "Powered by"
|
399 |
|
400 |
-
#: contextual-related-posts.php:
|
401 |
-
msgid "No related posts found"
|
402 |
-
msgstr "Non é stato trovato alcun articolo correlato"
|
403 |
-
|
404 |
-
#: contextual-related-posts.php:221
|
405 |
#, fuzzy
|
406 |
msgid "Display Related Posts"
|
407 |
msgstr "\"Nessun articolo correlato\""
|
408 |
|
409 |
-
#: contextual-related-posts.php:
|
410 |
msgid "Title"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: contextual-related-posts.php:
|
414 |
msgid "No. of posts"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
418 |
#, fuzzy
|
419 |
msgid "Thumbnail options"
|
420 |
msgstr "Opzioni miniature articolo:"
|
421 |
|
422 |
-
#: contextual-related-posts.php:
|
423 |
#, fuzzy
|
424 |
msgid "Thumbnails inline, before title"
|
425 |
msgstr "Mostra gli articoli con le miniature inline"
|
426 |
|
427 |
-
#: contextual-related-posts.php:
|
428 |
#, fuzzy
|
429 |
msgid "Thumbnails inline, after title"
|
430 |
msgstr "Mostra gli articoli con le miniature inline"
|
431 |
|
432 |
-
#: contextual-related-posts.php:
|
433 |
#, fuzzy
|
434 |
msgid "Only thumbnails, no text"
|
435 |
msgstr "Mostra le sole miniature, nessun testo"
|
436 |
|
437 |
-
#: contextual-related-posts.php:
|
438 |
#, fuzzy
|
439 |
msgid "No thumbnails, only text."
|
440 |
msgstr "Non mostrare le miniature, solo testo."
|
441 |
|
442 |
-
#: contextual-related-posts.php:
|
443 |
#, fuzzy
|
444 |
-
msgid "
|
445 |
-
msgstr "
|
446 |
|
447 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
448 |
msgid "<h3>Related Posts:</h3>"
|
449 |
msgstr "<h3>Related Posts:</h3>"
|
450 |
|
451 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
452 |
msgid "Settings"
|
453 |
msgstr "Impostazioni"
|
454 |
|
455 |
-
#: contextual-related-posts.php:
|
456 |
msgid "Donate"
|
457 |
msgstr "Donazioni"
|
458 |
|
|
|
|
|
|
|
|
|
|
|
|
|
459 |
#~ msgid "Exclude Categories: "
|
460 |
#~ msgstr "escludi le categorie:"
|
461 |
|
462 |
-
#, fuzzy
|
463 |
-
#~ msgid "Add related posts to pages"
|
464 |
-
#~ msgstr "aggiungi gli articoli correlati al feed"
|
465 |
-
|
466 |
#~ msgid "plugin page"
|
467 |
#~ msgstr "pagina plugin"
|
468 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:33-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.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:93
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Le opzioni sono state salvate correttamente."
|
21 |
|
22 |
+
#: admin.inc.php:109
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Opzioni impostate alle predefinite."
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Index recreated"
|
28 |
msgstr "E' stato ricreato l'indice"
|
29 |
|
30 |
+
#: admin.inc.php:137
|
31 |
msgid "Support the development"
|
32 |
msgstr "Sostieni lo sviluppo"
|
33 |
|
34 |
+
#: admin.inc.php:145
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Inserisci la cifra in USD: "
|
37 |
|
38 |
+
#: admin.inc.php:149
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Invia la tua donazione all'autore di"
|
41 |
|
42 |
+
#: admin.inc.php:160
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Collegamenti veloci"
|
46 |
|
47 |
+
#: admin.inc.php:162
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Contextual Related Posts "
|
51 |
|
52 |
+
#: admin.inc.php:163
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Altri plugin"
|
55 |
|
56 |
+
#: admin.inc.php:164
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Il blog di Ajay"
|
59 |
|
60 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
61 |
msgid "Support"
|
62 |
msgstr "Supporto"
|
63 |
|
64 |
+
#: admin.inc.php:166
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Sviluppi recenti"
|
71 |
|
72 |
+
#: admin.inc.php:180
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:182 admin.inc.php:354
|
77 |
msgid "Number of related posts to display: "
|
78 |
msgstr "numero di articoli correlati da mostrare:"
|
79 |
|
80 |
+
#: admin.inc.php:185
|
81 |
msgid "Related posts should be newer than:"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:186
|
85 |
msgid "days"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:188
|
89 |
msgid "Post types to include in results (including custom post types)"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:199
|
93 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:202
|
97 |
msgid "Find related posts based on content as well as title"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:203
|
101 |
#, fuzzy
|
102 |
msgid ""
|
103 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
107 |
"disattivata, verranno utilizzati i soli titoli dei post. (in questo caso é "
|
108 |
"preferibile attivare un plugin per la cache)"
|
109 |
|
110 |
+
#: admin.inc.php:205
|
111 |
msgid "List of post or page IDs to exclude from the results: "
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: admin.inc.php:208
|
115 |
msgid "Categories to exclude from the results: "
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: admin.inc.php:226
|
119 |
#, fuzzy
|
120 |
msgid "Add related posts to:"
|
121 |
msgstr "aggiungi gli articoli correlati al feed"
|
122 |
|
123 |
+
#: admin.inc.php:228
|
124 |
msgid "Posts"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin.inc.php:229
|
128 |
msgid "Pages"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin.inc.php:230
|
132 |
msgid "Home page"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin.inc.php:231
|
136 |
msgid "Feeds"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin.inc.php:232
|
140 |
msgid "Category archives"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin.inc.php:233
|
144 |
msgid "Tag archives"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin.inc.php:234
|
148 |
msgid "Other archives"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: admin.inc.php:235
|
152 |
#, fuzzy
|
153 |
msgid ""
|
154 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
159 |
"inserisci <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp"
|
160 |
"(); ?></code> nel tuo template laddove desideri che siano visualizzati"
|
161 |
|
162 |
+
#: admin.inc.php:238
|
163 |
msgid "Add a link to the plugin page as a final item in the list"
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: admin.inc.php:239
|
167 |
msgid " <em>Optional</em>"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: admin.inc.php:246
|
171 |
#, fuzzy
|
172 |
+
msgid "Output options"
|
173 |
msgstr "Opzioni output:"
|
174 |
|
175 |
+
#: admin.inc.php:248
|
176 |
msgid "Title of related posts: "
|
177 |
msgstr "titolo per gli articoli correlati:"
|
178 |
|
179 |
+
#: admin.inc.php:251
|
180 |
msgid "When there are no posts, what should be shown?"
|
181 |
msgstr "Cosa desideri mostrare in assenza di articoli?"
|
182 |
|
183 |
+
#: admin.inc.php:255
|
184 |
msgid "Blank Output"
|
185 |
msgstr "nulla"
|
186 |
|
187 |
+
#: admin.inc.php:259
|
188 |
+
msgid "Display:"
|
189 |
+
msgstr ""
|
190 |
|
191 |
+
#: admin.inc.php:263 admin.inc.php:357
|
192 |
msgid "Show post excerpt in list?"
|
193 |
msgstr "Desideri mostrare gli estratti?"
|
194 |
|
195 |
+
#: admin.inc.php:266
|
196 |
msgid "Length of excerpt (in words): "
|
197 |
msgstr "Lunghezza estratto (in parole): "
|
198 |
|
199 |
+
#: admin.inc.php:269
|
200 |
msgid "Limit post title length (in characters)"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin.inc.php:272
|
204 |
+
msgid "Open links in new window"
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin.inc.php:275
|
208 |
+
msgid "Add nofollow attribute to links in the list"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: admin.inc.php:278
|
212 |
+
#, fuzzy
|
213 |
+
msgid "Exclude display of related posts on these posts / pages"
|
214 |
+
msgstr "aggiungi gli articoli correlati al feed"
|
215 |
+
|
216 |
+
#: admin.inc.php:281
|
217 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: admin.inc.php:284
|
221 |
msgid "Customize the output:"
|
222 |
msgstr "Personalizzazione output:"
|
223 |
|
224 |
+
#: admin.inc.php:286
|
225 |
msgid "HTML to display before the list of posts: "
|
226 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
227 |
|
228 |
+
#: admin.inc.php:289
|
229 |
msgid "HTML to display before each list item: "
|
230 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
231 |
|
232 |
+
#: admin.inc.php:292
|
233 |
msgid "HTML to display after each list item: "
|
234 |
msgstr "HTML da mostrare dopo ogni lista:"
|
235 |
|
236 |
+
#: admin.inc.php:295
|
237 |
msgid "HTML to display after the list of posts: "
|
238 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
239 |
|
240 |
+
#: admin.inc.php:298
|
241 |
msgid "Post thumbnail options:"
|
242 |
msgstr "Opzioni miniature articolo:"
|
243 |
|
244 |
+
#: admin.inc.php:300 admin.inc.php:360
|
245 |
msgid "Location of post thumbnail:"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: admin.inc.php:304 admin.inc.php:364
|
249 |
#, fuzzy
|
250 |
msgid "Display thumbnails inline with posts, before title"
|
251 |
msgstr "Mostra gli articoli con le miniature inline"
|
252 |
|
253 |
+
#: admin.inc.php:308 admin.inc.php:368
|
254 |
#, fuzzy
|
255 |
msgid "Display thumbnails inline with posts, after title"
|
256 |
msgstr "Mostra gli articoli con le miniature inline"
|
257 |
|
258 |
+
#: admin.inc.php:312 admin.inc.php:372
|
259 |
msgid "Display only thumbnails, no text"
|
260 |
msgstr "Mostra le sole miniature, nessun testo"
|
261 |
|
262 |
+
#: admin.inc.php:316 admin.inc.php:376
|
263 |
msgid "Do not display thumbnails, only text."
|
264 |
msgstr "Non mostrare le miniature, solo testo."
|
265 |
|
266 |
+
#: admin.inc.php:320 admin.inc.php:380
|
267 |
msgid "Maximum width of the thumbnail: "
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: admin.inc.php:323 admin.inc.php:383
|
271 |
msgid "Maximum height of the thumbnail: "
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: admin.inc.php:326
|
275 |
msgid "Use timthumb to generate thumbnails? "
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin.inc.php:327
|
279 |
msgid ""
|
280 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
281 |
"\">timthumb</a> will be used to generate thumbnails"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin.inc.php:329
|
285 |
+
msgid "Quality of thumbnails generated by timthumb"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: admin.inc.php:332
|
289 |
+
msgid ""
|
290 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
291 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: admin.inc.php:335
|
295 |
#, fuzzy
|
296 |
msgid "Post thumbnail meta field name: "
|
297 |
msgstr "Opzioni miniature articolo:"
|
298 |
|
299 |
+
#: admin.inc.php:336
|
300 |
msgid ""
|
301 |
"The value of this field should contain the image source and is set in the "
|
302 |
"<em>Add New Post</em> screen"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin.inc.php:338
|
306 |
#, fuzzy
|
307 |
msgid ""
|
308 |
"If the postmeta is not set, then should the plugin extract the first image "
|
313 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
314 |
"dimensioni"
|
315 |
|
316 |
+
#: admin.inc.php:339
|
317 |
#, fuzzy
|
318 |
msgid ""
|
319 |
"This can slow down the loading of your page if the first image in the "
|
324 |
"tuo articolo nel caso in cui la prima immagine corelata fosse di grandi "
|
325 |
"dimensioni"
|
326 |
|
327 |
+
#: admin.inc.php:341
|
328 |
msgid "Use default thumbnail? "
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: admin.inc.php:342
|
332 |
msgid ""
|
333 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
334 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: admin.inc.php:344
|
338 |
msgid "Default thumbnail: "
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: admin.inc.php:345
|
342 |
#, fuzzy
|
343 |
msgid ""
|
344 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
350 |
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
351 |
"specificato qui sotto:"
|
352 |
|
353 |
+
#: admin.inc.php:350
|
354 |
+
#, fuzzy
|
355 |
+
msgid "Feed options"
|
356 |
+
msgstr "Opzioni:"
|
357 |
+
|
358 |
+
#: admin.inc.php:352
|
359 |
+
msgid ""
|
360 |
+
"Below options override the related posts settings for your blog feed. These "
|
361 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
362 |
+
"Options tab."
|
363 |
+
msgstr ""
|
364 |
+
|
365 |
+
#: admin.inc.php:389
|
366 |
msgid "Custom Styles"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: admin.inc.php:391
|
370 |
msgid "Custom CSS to add to header:"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin.inc.php:394
|
374 |
msgid ""
|
375 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
376 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
377 |
"\">FAQ</a> for available CSS classes to style."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin.inc.php:398
|
381 |
#, fuzzy
|
382 |
msgid "Save Options"
|
383 |
msgstr "Opzioni:"
|
384 |
|
385 |
+
#: admin.inc.php:399
|
386 |
#, fuzzy
|
387 |
msgid "Default Options"
|
388 |
msgstr "Opzioni output:"
|
389 |
|
390 |
+
#: admin.inc.php:399
|
391 |
msgid "Do you want to set options to Default?"
|
392 |
msgstr "Sei certo di volere impostare alle opzioni predefinite?"
|
393 |
|
394 |
+
#: admin.inc.php:400
|
395 |
msgid "Recreate Index"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin.inc.php:400
|
399 |
msgid "Are you sure you want to recreate the index?"
|
400 |
msgstr "Sei certo di volere ricreare l'indice?"
|
401 |
|
402 |
+
#: admin.inc.php:417
|
403 |
msgid "Contextual Related Posts"
|
404 |
msgstr "Contextual Related Posts"
|
405 |
|
406 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
407 |
msgid "Related Posts"
|
408 |
msgstr "Related Posts"
|
409 |
|
410 |
+
#: admin.inc.php:425
|
411 |
#, fuzzy
|
412 |
msgid "plugin settings page"
|
413 |
msgstr "pagina plugin"
|
414 |
|
415 |
+
#: admin.inc.php:430
|
416 |
msgid ""
|
417 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
418 |
"visit the "
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin.inc.php:430
|
422 |
msgid " to configure."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: contextual-related-posts.php:162
|
426 |
msgid "Powered by"
|
427 |
msgstr "Powered by"
|
428 |
|
429 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
430 |
#, fuzzy
|
431 |
msgid "Display Related Posts"
|
432 |
msgstr "\"Nessun articolo correlato\""
|
433 |
|
434 |
+
#: contextual-related-posts.php:252
|
435 |
msgid "Title"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: contextual-related-posts.php:257
|
439 |
msgid "No. of posts"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: contextual-related-posts.php:262
|
443 |
+
#, fuzzy
|
444 |
+
msgid " Show excerpt?"
|
445 |
+
msgstr "Desideri mostrare gli estratti?"
|
446 |
+
|
447 |
+
#: contextual-related-posts.php:266
|
448 |
#, fuzzy
|
449 |
msgid "Thumbnail options"
|
450 |
msgstr "Opzioni miniature articolo:"
|
451 |
|
452 |
+
#: contextual-related-posts.php:268
|
453 |
#, fuzzy
|
454 |
msgid "Thumbnails inline, before title"
|
455 |
msgstr "Mostra gli articoli con le miniature inline"
|
456 |
|
457 |
+
#: contextual-related-posts.php:269
|
458 |
#, fuzzy
|
459 |
msgid "Thumbnails inline, after title"
|
460 |
msgstr "Mostra gli articoli con le miniature inline"
|
461 |
|
462 |
+
#: contextual-related-posts.php:270
|
463 |
#, fuzzy
|
464 |
msgid "Only thumbnails, no text"
|
465 |
msgstr "Mostra le sole miniature, nessun testo"
|
466 |
|
467 |
+
#: contextual-related-posts.php:271
|
468 |
#, fuzzy
|
469 |
msgid "No thumbnails, only text."
|
470 |
msgstr "Non mostrare le miniature, solo testo."
|
471 |
|
472 |
+
#: contextual-related-posts.php:276
|
473 |
#, fuzzy
|
474 |
+
msgid "Thumbnail height"
|
475 |
+
msgstr "Opzioni miniature articolo:"
|
476 |
|
477 |
+
#: contextual-related-posts.php:281
|
478 |
+
#, fuzzy
|
479 |
+
msgid "Thumbnail width"
|
480 |
+
msgstr "Opzioni miniature articolo:"
|
481 |
+
|
482 |
+
#: contextual-related-posts.php:340
|
483 |
msgid "<h3>Related Posts:</h3>"
|
484 |
msgstr "<h3>Related Posts:</h3>"
|
485 |
|
486 |
+
#: contextual-related-posts.php:341
|
487 |
+
#, fuzzy
|
488 |
+
msgid "No related posts founds"
|
489 |
+
msgstr "Non é stato trovato alcun articolo correlato"
|
490 |
+
|
491 |
+
#: contextual-related-posts.php:594
|
492 |
msgid "Settings"
|
493 |
msgstr "Impostazioni"
|
494 |
|
495 |
+
#: contextual-related-posts.php:609
|
496 |
msgid "Donate"
|
497 |
msgstr "Donazioni"
|
498 |
|
499 |
+
#~ msgid "Follow @ajaydsouza on Twitter"
|
500 |
+
#~ msgstr "Segui @ajaydsouza su Twitter"
|
501 |
+
|
502 |
+
#~ msgid "Display \"No Related Posts\""
|
503 |
+
#~ msgstr "\"Nessun articolo correlato\""
|
504 |
+
|
505 |
#~ msgid "Exclude Categories: "
|
506 |
#~ msgstr "escludi le categorie:"
|
507 |
|
|
|
|
|
|
|
|
|
508 |
#~ msgid "plugin page"
|
509 |
#~ msgstr "pagina plugin"
|
510 |
|
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:
|
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,93 +17,89 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
72 |
-
msgstr "Volg @ajaydsouza via Twitter"
|
73 |
-
|
74 |
-
#: admin.inc.php:156
|
75 |
msgid "Recent developments"
|
76 |
msgstr "Recente ontwikkelingen"
|
77 |
|
78 |
-
#: admin.inc.php:
|
79 |
msgid "General options"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: admin.inc.php:
|
83 |
msgid "Number of related posts to display: "
|
84 |
msgstr "Aantal weer te geven gerelateerde berichten:"
|
85 |
|
86 |
-
#: admin.inc.php:
|
87 |
msgid "Related posts should be newer than:"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: admin.inc.php:
|
91 |
msgid "days"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin.inc.php:
|
95 |
msgid "Post types to include in results (including custom post types)"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin.inc.php:
|
99 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin.inc.php:
|
103 |
msgid "Find related posts based on content as well as title"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin.inc.php:
|
107 |
#, fuzzy
|
108 |
msgid ""
|
109 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -113,48 +109,48 @@ msgstr ""
|
|
113 |
"niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
|
114 |
"gebruik van een caching plugin aan wanneer je dit inschakelt)"
|
115 |
|
116 |
-
#: admin.inc.php:
|
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 |
#, fuzzy
|
126 |
msgid "Add related posts to:"
|
127 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
128 |
|
129 |
-
#: admin.inc.php:
|
130 |
msgid "Posts"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin.inc.php:
|
134 |
msgid "Pages"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: admin.inc.php:
|
138 |
msgid "Home page"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin.inc.php:
|
142 |
msgid "Feeds"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: admin.inc.php:
|
146 |
msgid "Category archives"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: admin.inc.php:
|
150 |
msgid "Tag archives"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin.inc.php:
|
154 |
msgid "Other archives"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin.inc.php:
|
158 |
#, fuzzy
|
159 |
msgid ""
|
160 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -166,129 +162,150 @@ msgstr ""
|
|
166 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> toevoegen aan je sjabloon "
|
167 |
"bestand waar je het wilt laten weergeven"
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
msgid "Add a link to the plugin page as a final item in the list"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid " <em>Optional</em>"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
#, fuzzy
|
179 |
-
msgid "Output
|
180 |
msgstr "Output Opties:"
|
181 |
|
182 |
-
#: admin.inc.php:
|
183 |
msgid "Title of related posts: "
|
184 |
msgstr "Titel van gerelateerde berichten:"
|
185 |
|
186 |
-
#: admin.inc.php:
|
187 |
msgid "When there are no posts, what should be shown?"
|
188 |
msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
|
189 |
|
190 |
-
#: admin.inc.php:
|
191 |
msgid "Blank Output"
|
192 |
msgstr "Lege Output"
|
193 |
|
194 |
-
#: admin.inc.php:
|
195 |
-
msgid "Display
|
196 |
-
msgstr "
|
197 |
|
198 |
-
#: admin.inc.php:
|
199 |
msgid "Show post excerpt in list?"
|
200 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
201 |
|
202 |
-
#: admin.inc.php:
|
203 |
msgid "Length of excerpt (in words): "
|
204 |
msgstr "Lengte van uittreksel (in woorden):"
|
205 |
|
206 |
-
#: admin.inc.php:
|
207 |
msgid "Limit post title length (in characters)"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: admin.inc.php:
|
211 |
-
msgid ""
|
212 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
213 |
-
"separated list of IDs): "
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
msgid "Customize the output:"
|
218 |
msgstr "Aanpassen van de output:"
|
219 |
|
220 |
-
#: admin.inc.php:
|
221 |
msgid "HTML to display before the list of posts: "
|
222 |
msgstr "Weer te geven HTML voor de berichtenlijst:"
|
223 |
|
224 |
-
#: admin.inc.php:
|
225 |
msgid "HTML to display before each list item: "
|
226 |
msgstr "Weer te geven HTML voor elk item in de lijst:"
|
227 |
|
228 |
-
#: admin.inc.php:
|
229 |
msgid "HTML to display after each list item: "
|
230 |
msgstr "Weer te geven HTML na elk item in de lijst:"
|
231 |
|
232 |
-
#: admin.inc.php:
|
233 |
msgid "HTML to display after the list of posts: "
|
234 |
msgstr "Weer te geven HTML na de berichtenlijst:"
|
235 |
|
236 |
-
#: admin.inc.php:
|
237 |
msgid "Post thumbnail options:"
|
238 |
msgstr "Berichtopties miniatuurafbeelding:"
|
239 |
|
240 |
-
#: admin.inc.php:
|
241 |
msgid "Location of post thumbnail:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin.inc.php:
|
245 |
#, fuzzy
|
246 |
msgid "Display thumbnails inline with posts, before title"
|
247 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
248 |
|
249 |
-
#: admin.inc.php:
|
250 |
#, fuzzy
|
251 |
msgid "Display thumbnails inline with posts, after title"
|
252 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
253 |
|
254 |
-
#: admin.inc.php:
|
255 |
msgid "Display only thumbnails, no text"
|
256 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
257 |
|
258 |
-
#: admin.inc.php:
|
259 |
msgid "Do not display thumbnails, only text."
|
260 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
261 |
|
262 |
-
#: admin.inc.php:
|
263 |
msgid "Maximum width of the thumbnail: "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin.inc.php:
|
267 |
msgid "Maximum height of the thumbnail: "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin.inc.php:
|
271 |
msgid "Use timthumb to generate thumbnails? "
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: admin.inc.php:
|
275 |
msgid ""
|
276 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
277 |
"\">timthumb</a> will be used to generate thumbnails"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
#, fuzzy
|
282 |
msgid "Post thumbnail meta field name: "
|
283 |
msgstr "Berichtopties miniatuurafbeelding:"
|
284 |
|
285 |
-
#: admin.inc.php:
|
286 |
msgid ""
|
287 |
"The value of this field should contain the image source and is set in the "
|
288 |
"<em>Add New Post</em> screen"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: admin.inc.php:
|
292 |
#, fuzzy
|
293 |
msgid ""
|
294 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -298,7 +315,7 @@ msgstr ""
|
|
298 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
299 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
300 |
|
301 |
-
#: admin.inc.php:
|
302 |
#, fuzzy
|
303 |
msgid ""
|
304 |
"This can slow down the loading of your page if the first image in the "
|
@@ -308,21 +325,21 @@ msgstr ""
|
|
308 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
309 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
310 |
|
311 |
-
#: admin.inc.php:
|
312 |
msgid "Use default thumbnail? "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin.inc.php:
|
316 |
msgid ""
|
317 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
318 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid "Default thumbnail: "
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
#, fuzzy
|
327 |
msgid ""
|
328 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -334,136 +351,161 @@ msgstr ""
|
|
334 |
"miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
|
335 |
"hieronder aangegeven:"
|
336 |
|
337 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
msgid "Custom Styles"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid "Custom CSS to add to header:"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin.inc.php:
|
346 |
msgid ""
|
347 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
348 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
349 |
"\">FAQ</a> for available CSS classes to style."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin.inc.php:
|
353 |
#, fuzzy
|
354 |
msgid "Save Options"
|
355 |
msgstr "Opties:"
|
356 |
|
357 |
-
#: admin.inc.php:
|
358 |
#, fuzzy
|
359 |
msgid "Default Options"
|
360 |
msgstr "Output Opties:"
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid "Do you want to set options to Default?"
|
364 |
msgstr "Wil je opties terug naar standaard instellen?"
|
365 |
|
366 |
-
#: admin.inc.php:
|
367 |
msgid "Recreate Index"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin.inc.php:
|
371 |
msgid "Are you sure you want to recreate the index?"
|
372 |
msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
|
373 |
|
374 |
-
#: admin.inc.php:
|
375 |
msgid "Contextual Related Posts"
|
376 |
msgstr "Contextual Related Posts"
|
377 |
|
378 |
-
#: admin.inc.php:
|
379 |
msgid "Related Posts"
|
380 |
msgstr "Gerelateerde Berichten"
|
381 |
|
382 |
-
#: admin.inc.php:
|
383 |
#, fuzzy
|
384 |
msgid "plugin settings page"
|
385 |
msgstr "plugin pagina"
|
386 |
|
387 |
-
#: admin.inc.php:
|
388 |
msgid ""
|
389 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
390 |
"visit the "
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin.inc.php:
|
394 |
msgid " to configure."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: contextual-related-posts.php:
|
398 |
msgid "Powered by"
|
399 |
msgstr "Powered by"
|
400 |
|
401 |
-
#: contextual-related-posts.php:
|
402 |
-
msgid "No related posts found"
|
403 |
-
msgstr "Geen gerelateerde berichten gevonden"
|
404 |
-
|
405 |
-
#: contextual-related-posts.php:221
|
406 |
#, fuzzy
|
407 |
msgid "Display Related Posts"
|
408 |
msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
409 |
|
410 |
-
#: contextual-related-posts.php:
|
411 |
msgid "Title"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: contextual-related-posts.php:
|
415 |
msgid "No. of posts"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
419 |
#, fuzzy
|
420 |
msgid "Thumbnail options"
|
421 |
msgstr "Berichtopties miniatuurafbeelding:"
|
422 |
|
423 |
-
#: contextual-related-posts.php:
|
424 |
#, fuzzy
|
425 |
msgid "Thumbnails inline, before title"
|
426 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
427 |
|
428 |
-
#: contextual-related-posts.php:
|
429 |
#, fuzzy
|
430 |
msgid "Thumbnails inline, after title"
|
431 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
432 |
|
433 |
-
#: contextual-related-posts.php:
|
434 |
#, fuzzy
|
435 |
msgid "Only thumbnails, no text"
|
436 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
437 |
|
438 |
-
#: contextual-related-posts.php:
|
439 |
#, fuzzy
|
440 |
msgid "No thumbnails, only text."
|
441 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
442 |
|
443 |
-
#: contextual-related-posts.php:
|
444 |
#, fuzzy
|
445 |
-
msgid "
|
446 |
-
msgstr "
|
447 |
|
448 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
449 |
msgid "<h3>Related Posts:</h3>"
|
450 |
msgstr "<h3>Gerelateerde Berichten:</h3>"
|
451 |
|
452 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
453 |
msgid "Settings"
|
454 |
msgstr "Instellingen"
|
455 |
|
456 |
-
#: contextual-related-posts.php:
|
457 |
msgid "Donate"
|
458 |
msgstr "Doneren"
|
459 |
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
#~ msgid "Exclude Categories: "
|
461 |
#~ msgstr "Uitsluiten Categorieën"
|
462 |
|
463 |
-
#, fuzzy
|
464 |
-
#~ msgid "Add related posts to pages"
|
465 |
-
#~ msgstr "Voeg gerelateerde berichten toe aan feed"
|
466 |
-
|
467 |
#~ msgid "plugin page"
|
468 |
#~ msgstr "plugin pagina"
|
469 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:33-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.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin.inc.php:93
|
21 |
msgid "Options saved successfully."
|
22 |
msgstr "Opties succesvol opgeslagen."
|
23 |
|
24 |
+
#: admin.inc.php:109
|
25 |
msgid "Options set to Default."
|
26 |
msgstr "Opties ingesteld op standaard."
|
27 |
|
28 |
+
#: admin.inc.php:124
|
29 |
msgid "Index recreated"
|
30 |
msgstr "Index opnieuw gemaakt"
|
31 |
|
32 |
+
#: admin.inc.php:137
|
33 |
msgid "Support the development"
|
34 |
msgstr "Ondersteun de ontwikkeling"
|
35 |
|
36 |
+
#: admin.inc.php:145
|
37 |
msgid "Enter amount in USD: "
|
38 |
msgstr "Voer het bedrag in USD in:"
|
39 |
|
40 |
+
#: admin.inc.php:149
|
41 |
msgid "Send your donation to the author of"
|
42 |
msgstr "Stuur je donatie aan de auteur van"
|
43 |
|
44 |
+
#: admin.inc.php:160
|
45 |
#, fuzzy
|
46 |
msgid "Quick Links"
|
47 |
msgstr "Quick links"
|
48 |
|
49 |
+
#: admin.inc.php:162
|
50 |
#, fuzzy
|
51 |
msgid "Contextual Related Posts plugin page"
|
52 |
msgstr "Contextual Related Posts "
|
53 |
|
54 |
+
#: admin.inc.php:163
|
55 |
msgid "Other plugins"
|
56 |
msgstr "Andere plugins"
|
57 |
|
58 |
+
#: admin.inc.php:164
|
59 |
msgid "Ajay's blog"
|
60 |
msgstr "Ajay's blog"
|
61 |
|
62 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
63 |
msgid "Support"
|
64 |
msgstr "Ondersteuning"
|
65 |
|
66 |
+
#: admin.inc.php:166
|
67 |
msgid "Reviews"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
71 |
msgid "Recent developments"
|
72 |
msgstr "Recente ontwikkelingen"
|
73 |
|
74 |
+
#: admin.inc.php:180
|
75 |
msgid "General options"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: admin.inc.php:182 admin.inc.php:354
|
79 |
msgid "Number of related posts to display: "
|
80 |
msgstr "Aantal weer te geven gerelateerde berichten:"
|
81 |
|
82 |
+
#: admin.inc.php:185
|
83 |
msgid "Related posts should be newer than:"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: admin.inc.php:186
|
87 |
msgid "days"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin.inc.php:188
|
91 |
msgid "Post types to include in results (including custom post types)"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: admin.inc.php:199
|
95 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin.inc.php:202
|
99 |
msgid "Find related posts based on content as well as title"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin.inc.php:203
|
103 |
#, fuzzy
|
104 |
msgid ""
|
105 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
109 |
"niet geselecteerd worden er alleen berichttitels gebruikt. (Ik beveel het "
|
110 |
"gebruik van een caching plugin aan wanneer je dit inschakelt)"
|
111 |
|
112 |
+
#: admin.inc.php:205
|
113 |
msgid "List of post or page IDs to exclude from the results: "
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: admin.inc.php:208
|
117 |
msgid "Categories to exclude from the results: "
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: admin.inc.php:226
|
121 |
#, fuzzy
|
122 |
msgid "Add related posts to:"
|
123 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
124 |
|
125 |
+
#: admin.inc.php:228
|
126 |
msgid "Posts"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: admin.inc.php:229
|
130 |
msgid "Pages"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: admin.inc.php:230
|
134 |
msgid "Home page"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: admin.inc.php:231
|
138 |
msgid "Feeds"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: admin.inc.php:232
|
142 |
msgid "Category archives"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: admin.inc.php:233
|
146 |
msgid "Tag archives"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: admin.inc.php:234
|
150 |
msgid "Other archives"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin.inc.php:235
|
154 |
#, fuzzy
|
155 |
msgid ""
|
156 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
162 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> toevoegen aan je sjabloon "
|
163 |
"bestand waar je het wilt laten weergeven"
|
164 |
|
165 |
+
#: admin.inc.php:238
|
166 |
msgid "Add a link to the plugin page as a final item in the list"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: admin.inc.php:239
|
170 |
msgid " <em>Optional</em>"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: admin.inc.php:246
|
174 |
#, fuzzy
|
175 |
+
msgid "Output options"
|
176 |
msgstr "Output Opties:"
|
177 |
|
178 |
+
#: admin.inc.php:248
|
179 |
msgid "Title of related posts: "
|
180 |
msgstr "Titel van gerelateerde berichten:"
|
181 |
|
182 |
+
#: admin.inc.php:251
|
183 |
msgid "When there are no posts, what should be shown?"
|
184 |
msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
|
185 |
|
186 |
+
#: admin.inc.php:255
|
187 |
msgid "Blank Output"
|
188 |
msgstr "Lege Output"
|
189 |
|
190 |
+
#: admin.inc.php:259
|
191 |
+
msgid "Display:"
|
192 |
+
msgstr ""
|
193 |
|
194 |
+
#: admin.inc.php:263 admin.inc.php:357
|
195 |
msgid "Show post excerpt in list?"
|
196 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
197 |
|
198 |
+
#: admin.inc.php:266
|
199 |
msgid "Length of excerpt (in words): "
|
200 |
msgstr "Lengte van uittreksel (in woorden):"
|
201 |
|
202 |
+
#: admin.inc.php:269
|
203 |
msgid "Limit post title length (in characters)"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: admin.inc.php:272
|
207 |
+
msgid "Open links in new window"
|
|
|
|
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: admin.inc.php:275
|
211 |
+
msgid "Add nofollow attribute to links in the list"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: admin.inc.php:278
|
215 |
+
#, fuzzy
|
216 |
+
msgid "Exclude display of related posts on these posts / pages"
|
217 |
+
msgstr "Voeg gerelateerde berichten toe aan feed"
|
218 |
+
|
219 |
+
#: admin.inc.php:281
|
220 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: admin.inc.php:284
|
224 |
msgid "Customize the output:"
|
225 |
msgstr "Aanpassen van de output:"
|
226 |
|
227 |
+
#: admin.inc.php:286
|
228 |
msgid "HTML to display before the list of posts: "
|
229 |
msgstr "Weer te geven HTML voor de berichtenlijst:"
|
230 |
|
231 |
+
#: admin.inc.php:289
|
232 |
msgid "HTML to display before each list item: "
|
233 |
msgstr "Weer te geven HTML voor elk item in de lijst:"
|
234 |
|
235 |
+
#: admin.inc.php:292
|
236 |
msgid "HTML to display after each list item: "
|
237 |
msgstr "Weer te geven HTML na elk item in de lijst:"
|
238 |
|
239 |
+
#: admin.inc.php:295
|
240 |
msgid "HTML to display after the list of posts: "
|
241 |
msgstr "Weer te geven HTML na de berichtenlijst:"
|
242 |
|
243 |
+
#: admin.inc.php:298
|
244 |
msgid "Post thumbnail options:"
|
245 |
msgstr "Berichtopties miniatuurafbeelding:"
|
246 |
|
247 |
+
#: admin.inc.php:300 admin.inc.php:360
|
248 |
msgid "Location of post thumbnail:"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin.inc.php:304 admin.inc.php:364
|
252 |
#, fuzzy
|
253 |
msgid "Display thumbnails inline with posts, before title"
|
254 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
255 |
|
256 |
+
#: admin.inc.php:308 admin.inc.php:368
|
257 |
#, fuzzy
|
258 |
msgid "Display thumbnails inline with posts, after title"
|
259 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
260 |
|
261 |
+
#: admin.inc.php:312 admin.inc.php:372
|
262 |
msgid "Display only thumbnails, no text"
|
263 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
264 |
|
265 |
+
#: admin.inc.php:316 admin.inc.php:376
|
266 |
msgid "Do not display thumbnails, only text."
|
267 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
268 |
|
269 |
+
#: admin.inc.php:320 admin.inc.php:380
|
270 |
msgid "Maximum width of the thumbnail: "
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin.inc.php:323 admin.inc.php:383
|
274 |
msgid "Maximum height of the thumbnail: "
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin.inc.php:326
|
278 |
msgid "Use timthumb to generate thumbnails? "
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin.inc.php:327
|
282 |
msgid ""
|
283 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
284 |
"\">timthumb</a> will be used to generate thumbnails"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: admin.inc.php:329
|
288 |
+
msgid "Quality of thumbnails generated by timthumb"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: admin.inc.php:332
|
292 |
+
msgid ""
|
293 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
294 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: admin.inc.php:335
|
298 |
#, fuzzy
|
299 |
msgid "Post thumbnail meta field name: "
|
300 |
msgstr "Berichtopties miniatuurafbeelding:"
|
301 |
|
302 |
+
#: admin.inc.php:336
|
303 |
msgid ""
|
304 |
"The value of this field should contain the image source and is set in the "
|
305 |
"<em>Add New Post</em> screen"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin.inc.php:338
|
309 |
#, fuzzy
|
310 |
msgid ""
|
311 |
"If the postmeta is not set, then should the plugin extract the first image "
|
315 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
316 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
317 |
|
318 |
+
#: admin.inc.php:339
|
319 |
#, fuzzy
|
320 |
msgid ""
|
321 |
"This can slow down the loading of your page if the first image in the "
|
325 |
"het bericht uitpakken. Dit kan het laden van uw bericht vertragen, indien "
|
326 |
"het eerste beeld in de gerelateerde berichten groot is qua bestandsgrootte"
|
327 |
|
328 |
+
#: admin.inc.php:341
|
329 |
msgid "Use default thumbnail? "
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: admin.inc.php:342
|
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 |
+
#: admin.inc.php:344
|
339 |
msgid "Default thumbnail: "
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin.inc.php:345
|
343 |
#, fuzzy
|
344 |
msgid ""
|
345 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
351 |
"miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
|
352 |
"hieronder aangegeven:"
|
353 |
|
354 |
+
#: admin.inc.php:350
|
355 |
+
#, fuzzy
|
356 |
+
msgid "Feed options"
|
357 |
+
msgstr "Opties:"
|
358 |
+
|
359 |
+
#: admin.inc.php:352
|
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:389
|
367 |
msgid "Custom Styles"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: admin.inc.php:391
|
371 |
msgid "Custom CSS to add to header:"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin.inc.php:394
|
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:398
|
382 |
#, fuzzy
|
383 |
msgid "Save Options"
|
384 |
msgstr "Opties:"
|
385 |
|
386 |
+
#: admin.inc.php:399
|
387 |
#, fuzzy
|
388 |
msgid "Default Options"
|
389 |
msgstr "Output Opties:"
|
390 |
|
391 |
+
#: admin.inc.php:399
|
392 |
msgid "Do you want to set options to Default?"
|
393 |
msgstr "Wil je opties terug naar standaard instellen?"
|
394 |
|
395 |
+
#: admin.inc.php:400
|
396 |
msgid "Recreate Index"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin.inc.php:400
|
400 |
msgid "Are you sure you want to recreate the index?"
|
401 |
msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
|
402 |
|
403 |
+
#: admin.inc.php:417
|
404 |
msgid "Contextual Related Posts"
|
405 |
msgstr "Contextual Related Posts"
|
406 |
|
407 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
408 |
msgid "Related Posts"
|
409 |
msgstr "Gerelateerde Berichten"
|
410 |
|
411 |
+
#: admin.inc.php:425
|
412 |
#, fuzzy
|
413 |
msgid "plugin settings page"
|
414 |
msgstr "plugin pagina"
|
415 |
|
416 |
+
#: admin.inc.php:430
|
417 |
msgid ""
|
418 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
419 |
"visit the "
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin.inc.php:430
|
423 |
msgid " to configure."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: contextual-related-posts.php:162
|
427 |
msgid "Powered by"
|
428 |
msgstr "Powered by"
|
429 |
|
430 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
431 |
#, fuzzy
|
432 |
msgid "Display Related Posts"
|
433 |
msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
434 |
|
435 |
+
#: contextual-related-posts.php:252
|
436 |
msgid "Title"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: contextual-related-posts.php:257
|
440 |
msgid "No. of posts"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: contextual-related-posts.php:262
|
444 |
+
#, fuzzy
|
445 |
+
msgid " Show excerpt?"
|
446 |
+
msgstr "Laat bericht uittreksel zien in lijst?"
|
447 |
+
|
448 |
+
#: contextual-related-posts.php:266
|
449 |
#, fuzzy
|
450 |
msgid "Thumbnail options"
|
451 |
msgstr "Berichtopties miniatuurafbeelding:"
|
452 |
|
453 |
+
#: contextual-related-posts.php:268
|
454 |
#, fuzzy
|
455 |
msgid "Thumbnails inline, before title"
|
456 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
457 |
|
458 |
+
#: contextual-related-posts.php:269
|
459 |
#, fuzzy
|
460 |
msgid "Thumbnails inline, after title"
|
461 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
462 |
|
463 |
+
#: contextual-related-posts.php:270
|
464 |
#, fuzzy
|
465 |
msgid "Only thumbnails, no text"
|
466 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
467 |
|
468 |
+
#: contextual-related-posts.php:271
|
469 |
#, fuzzy
|
470 |
msgid "No thumbnails, only text."
|
471 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
472 |
|
473 |
+
#: contextual-related-posts.php:276
|
474 |
#, fuzzy
|
475 |
+
msgid "Thumbnail height"
|
476 |
+
msgstr "Berichtopties miniatuurafbeelding:"
|
477 |
|
478 |
+
#: contextual-related-posts.php:281
|
479 |
+
#, fuzzy
|
480 |
+
msgid "Thumbnail width"
|
481 |
+
msgstr "Berichtopties miniatuurafbeelding:"
|
482 |
+
|
483 |
+
#: contextual-related-posts.php:340
|
484 |
msgid "<h3>Related Posts:</h3>"
|
485 |
msgstr "<h3>Gerelateerde Berichten:</h3>"
|
486 |
|
487 |
+
#: contextual-related-posts.php:341
|
488 |
+
#, fuzzy
|
489 |
+
msgid "No related posts founds"
|
490 |
+
msgstr "Geen gerelateerde berichten gevonden"
|
491 |
+
|
492 |
+
#: contextual-related-posts.php:594
|
493 |
msgid "Settings"
|
494 |
msgstr "Instellingen"
|
495 |
|
496 |
+
#: contextual-related-posts.php:609
|
497 |
msgid "Donate"
|
498 |
msgstr "Doneren"
|
499 |
|
500 |
+
#~ msgid "Follow @ajaydsouza on Twitter"
|
501 |
+
#~ msgstr "Volg @ajaydsouza via Twitter"
|
502 |
+
|
503 |
+
#~ msgid "Display \"No Related Posts\""
|
504 |
+
#~ msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
505 |
+
|
506 |
#~ msgid "Exclude Categories: "
|
507 |
#~ msgstr "Uitsluiten Categorieën"
|
508 |
|
|
|
|
|
|
|
|
|
509 |
#~ msgid "plugin page"
|
510 |
#~ msgstr "plugin pagina"
|
511 |
|
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -15,93 +15,89 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
70 |
-
msgstr "Следовать @ajaydsouza на Твиттере"
|
71 |
-
|
72 |
-
#: admin.inc.php:156
|
73 |
msgid "Recent developments"
|
74 |
msgstr "Последние разработки"
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "General options"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid "Number of related posts to display: "
|
82 |
msgstr "Количество отображаемых похожих постов:"
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Related posts should be newer than:"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "days"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Post types to include in results (including custom post types)"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Find related posts based on content as well as title"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
#, fuzzy
|
106 |
msgid ""
|
107 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
@@ -112,48 +108,48 @@ msgstr ""
|
|
112 |
"сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
|
113 |
"опцию)"
|
114 |
|
115 |
-
#: admin.inc.php:
|
116 |
msgid "List of post or page IDs to exclude from the results: "
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: admin.inc.php:
|
120 |
msgid "Categories to exclude from the results: "
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: admin.inc.php:
|
124 |
#, fuzzy
|
125 |
msgid "Add related posts to:"
|
126 |
msgstr "Добавить похожие посты в фид"
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid "Posts"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
msgid "Pages"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: admin.inc.php:
|
137 |
msgid "Home page"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: admin.inc.php:
|
141 |
msgid "Feeds"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid "Category archives"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid "Tag archives"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin.inc.php:
|
153 |
msgid "Other archives"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: admin.inc.php:
|
157 |
#, fuzzy
|
158 |
msgid ""
|
159 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
@@ -165,129 +161,150 @@ msgstr ""
|
|
165 |
"('echo_ald_crp')) echo_ald_crp(); ?></code>, в отображаемый шаблон на "
|
166 |
"вашем сайте"
|
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 |
#, fuzzy
|
178 |
-
msgid "Output
|
179 |
msgstr "Опции вывода:"
|
180 |
|
181 |
-
#: admin.inc.php:
|
182 |
msgid "Title of related posts: "
|
183 |
msgstr "Названия связанных постов:"
|
184 |
|
185 |
-
#: admin.inc.php:
|
186 |
msgid "When there are no posts, what should be shown?"
|
187 |
msgstr "Когда нет сообщений, что должно быть показано?"
|
188 |
|
189 |
-
#: admin.inc.php:
|
190 |
msgid "Blank Output"
|
191 |
msgstr "Пустой выход"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
-
msgid "Display
|
195 |
-
msgstr "
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
msgid "Show post excerpt in list?"
|
199 |
msgstr "Показать выдержки из поста в списке?"
|
200 |
|
201 |
-
#: admin.inc.php:
|
202 |
msgid "Length of excerpt (in words): "
|
203 |
msgstr "Длина выдержки (в словах):"
|
204 |
|
205 |
-
#: admin.inc.php:
|
206 |
msgid "Limit post title length (in characters)"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin.inc.php:
|
210 |
-
msgid ""
|
211 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
212 |
-
"separated list of IDs): "
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
msgid "Customize the output:"
|
217 |
msgstr "Настройки выхода:"
|
218 |
|
219 |
-
#: admin.inc.php:
|
220 |
msgid "HTML to display before the list of posts: "
|
221 |
msgstr "HTML для показа перед списком сообщений: "
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
msgid "HTML to display before each list item: "
|
225 |
msgstr "HTML для показа перед каждым элементом списка: "
|
226 |
|
227 |
-
#: admin.inc.php:
|
228 |
msgid "HTML to display after each list item: "
|
229 |
msgstr "HTML для отображения после каждого элемента списка: "
|
230 |
|
231 |
-
#: admin.inc.php:
|
232 |
msgid "HTML to display after the list of posts: "
|
233 |
msgstr "HTML для отображения после списка сообщений: "
|
234 |
|
235 |
-
#: admin.inc.php:
|
236 |
msgid "Post thumbnail options:"
|
237 |
msgstr "Опции изображения поста:"
|
238 |
|
239 |
-
#: admin.inc.php:
|
240 |
msgid "Location of post thumbnail:"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: admin.inc.php:
|
244 |
#, fuzzy
|
245 |
msgid "Display thumbnails inline with posts, before title"
|
246 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
247 |
|
248 |
-
#: admin.inc.php:
|
249 |
#, fuzzy
|
250 |
msgid "Display thumbnails inline with posts, after title"
|
251 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
252 |
|
253 |
-
#: admin.inc.php:
|
254 |
msgid "Display only thumbnails, no text"
|
255 |
msgstr "Показывать только изображения, без текста"
|
256 |
|
257 |
-
#: admin.inc.php:
|
258 |
msgid "Do not display thumbnails, only text."
|
259 |
msgstr "Не показывать изображения, только текст"
|
260 |
|
261 |
-
#: admin.inc.php:
|
262 |
msgid "Maximum width of the thumbnail: "
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin.inc.php:
|
266 |
msgid "Maximum height of the thumbnail: "
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: admin.inc.php:
|
270 |
msgid "Use timthumb to generate thumbnails? "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin.inc.php:
|
274 |
msgid ""
|
275 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
276 |
"\">timthumb</a> will be used to generate thumbnails"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
#, fuzzy
|
281 |
msgid "Post thumbnail meta field name: "
|
282 |
msgstr "Опции изображения поста:"
|
283 |
|
284 |
-
#: admin.inc.php:
|
285 |
msgid ""
|
286 |
"The value of this field should contain the image source and is set in the "
|
287 |
"<em>Add New Post</em> screen"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: admin.inc.php:
|
291 |
#, fuzzy
|
292 |
msgid ""
|
293 |
"If the postmeta is not set, then should the plugin extract the first image "
|
@@ -296,7 +313,7 @@ msgstr ""
|
|
296 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
297 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
298 |
|
299 |
-
#: admin.inc.php:
|
300 |
#, fuzzy
|
301 |
msgid ""
|
302 |
"This can slow down the loading of your page if the first image in the "
|
@@ -305,21 +322,21 @@ msgstr ""
|
|
305 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
306 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid "Use default thumbnail? "
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin.inc.php:
|
313 |
msgid ""
|
314 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
315 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin.inc.php:
|
319 |
msgid "Default thumbnail: "
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin.inc.php:
|
323 |
#, fuzzy
|
324 |
msgid ""
|
325 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
@@ -330,136 +347,161 @@ msgstr ""
|
|
330 |
"обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
|
331 |
"плагин будет показывать изображение по умолчанию, как указано ниже:"
|
332 |
|
333 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
msgid "Custom Styles"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin.inc.php:
|
338 |
msgid "Custom CSS to add to header:"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: admin.inc.php:
|
342 |
msgid ""
|
343 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
344 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
345 |
"\">FAQ</a> for available CSS classes to style."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: admin.inc.php:
|
349 |
#, fuzzy
|
350 |
msgid "Save Options"
|
351 |
msgstr "Опции:"
|
352 |
|
353 |
-
#: admin.inc.php:
|
354 |
#, fuzzy
|
355 |
msgid "Default Options"
|
356 |
msgstr "Опции вывода:"
|
357 |
|
358 |
-
#: admin.inc.php:
|
359 |
msgid "Do you want to set options to Default?"
|
360 |
msgstr "Вы хотите задать параметры по умолчанию?"
|
361 |
|
362 |
-
#: admin.inc.php:
|
363 |
msgid "Recreate Index"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin.inc.php:
|
367 |
msgid "Are you sure you want to recreate the index?"
|
368 |
msgstr "Вы уверены, что хотите воссоздать индекс?"
|
369 |
|
370 |
-
#: admin.inc.php:
|
371 |
msgid "Contextual Related Posts"
|
372 |
msgstr "Контекстные похожие посты"
|
373 |
|
374 |
-
#: admin.inc.php:
|
375 |
msgid "Related Posts"
|
376 |
msgstr "Похожие посты"
|
377 |
|
378 |
-
#: admin.inc.php:
|
379 |
#, fuzzy
|
380 |
msgid "plugin settings page"
|
381 |
msgstr "Страница плагина"
|
382 |
|
383 |
-
#: admin.inc.php:
|
384 |
msgid ""
|
385 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
386 |
"visit the "
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin.inc.php:
|
390 |
msgid " to configure."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: contextual-related-posts.php:
|
394 |
msgid "Powered by"
|
395 |
msgstr "Автор:"
|
396 |
|
397 |
-
#: contextual-related-posts.php:
|
398 |
-
msgid "No related posts found"
|
399 |
-
msgstr "Не найдены похожие посты"
|
400 |
-
|
401 |
-
#: contextual-related-posts.php:221
|
402 |
#, fuzzy
|
403 |
msgid "Display Related Posts"
|
404 |
msgstr "Показывать \"Нет похожих постов\""
|
405 |
|
406 |
-
#: contextual-related-posts.php:
|
407 |
msgid "Title"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: contextual-related-posts.php:
|
411 |
msgid "No. of posts"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
415 |
#, fuzzy
|
416 |
msgid "Thumbnail options"
|
417 |
msgstr "Опции изображения поста:"
|
418 |
|
419 |
-
#: contextual-related-posts.php:
|
420 |
#, fuzzy
|
421 |
msgid "Thumbnails inline, before title"
|
422 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
423 |
|
424 |
-
#: contextual-related-posts.php:
|
425 |
#, fuzzy
|
426 |
msgid "Thumbnails inline, after title"
|
427 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
428 |
|
429 |
-
#: contextual-related-posts.php:
|
430 |
#, fuzzy
|
431 |
msgid "Only thumbnails, no text"
|
432 |
msgstr "Показывать только изображения, без текста"
|
433 |
|
434 |
-
#: contextual-related-posts.php:
|
435 |
#, fuzzy
|
436 |
msgid "No thumbnails, only text."
|
437 |
msgstr "Не показывать изображения, только текст"
|
438 |
|
439 |
-
#: contextual-related-posts.php:
|
440 |
#, fuzzy
|
441 |
-
msgid "
|
442 |
-
msgstr "
|
443 |
|
444 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
445 |
msgid "<h3>Related Posts:</h3>"
|
446 |
msgstr "<h3>Похожие посты:</h3>"
|
447 |
|
448 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
449 |
msgid "Settings"
|
450 |
msgstr "Настройки"
|
451 |
|
452 |
-
#: contextual-related-posts.php:
|
453 |
msgid "Donate"
|
454 |
msgstr "Пожертвование"
|
455 |
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
#~ msgid "Exclude Categories: "
|
457 |
#~ msgstr "Исключить категории:"
|
458 |
|
459 |
-
#, fuzzy
|
460 |
-
#~ msgid "Add related posts to pages"
|
461 |
-
#~ msgstr "Добавить похожие посты в фид"
|
462 |
-
|
463 |
#~ msgid "plugin page"
|
464 |
#~ msgstr "Страница плагина"
|
465 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:33-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.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:93
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "Настройки сохранены успешно."
|
21 |
|
22 |
+
#: admin.inc.php:109
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "Опции возвращены к стандартным"
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Index recreated"
|
28 |
msgstr "Индекс воссоздан"
|
29 |
|
30 |
+
#: admin.inc.php:137
|
31 |
msgid "Support the development"
|
32 |
msgstr "Поддержка развития проекта"
|
33 |
|
34 |
+
#: admin.inc.php:145
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "Введите сумму в долларах США:"
|
37 |
|
38 |
+
#: admin.inc.php:149
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "Отправить пожертвование автору"
|
41 |
|
42 |
+
#: admin.inc.php:160
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "Быстрые ссылки"
|
46 |
|
47 |
+
#: admin.inc.php:162
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "Контекстные похожие посты"
|
51 |
|
52 |
+
#: admin.inc.php:163
|
53 |
msgid "Other plugins"
|
54 |
msgstr "Другие плагины"
|
55 |
|
56 |
+
#: admin.inc.php:164
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Блог автора (Ajay, английский язык)"
|
59 |
|
60 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
61 |
msgid "Support"
|
62 |
msgstr "Поддержка"
|
63 |
|
64 |
+
#: admin.inc.php:166
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
69 |
msgid "Recent developments"
|
70 |
msgstr "Последние разработки"
|
71 |
|
72 |
+
#: admin.inc.php:180
|
73 |
msgid "General options"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin.inc.php:182 admin.inc.php:354
|
77 |
msgid "Number of related posts to display: "
|
78 |
msgstr "Количество отображаемых похожих постов:"
|
79 |
|
80 |
+
#: admin.inc.php:185
|
81 |
msgid "Related posts should be newer than:"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:186
|
85 |
msgid "days"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:188
|
89 |
msgid "Post types to include in results (including custom post types)"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin.inc.php:199
|
93 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin.inc.php:202
|
97 |
msgid "Find related posts based on content as well as title"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: admin.inc.php:203
|
101 |
#, fuzzy
|
102 |
msgid ""
|
103 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
108 |
"сообщений. (Я рекомендую использовать плагин кэширования, если вы включите "
|
109 |
"опцию)"
|
110 |
|
111 |
+
#: admin.inc.php:205
|
112 |
msgid "List of post or page IDs to exclude from the results: "
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: admin.inc.php:208
|
116 |
msgid "Categories to exclude from the results: "
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: admin.inc.php:226
|
120 |
#, fuzzy
|
121 |
msgid "Add related posts to:"
|
122 |
msgstr "Добавить похожие посты в фид"
|
123 |
|
124 |
+
#: admin.inc.php:228
|
125 |
msgid "Posts"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:229
|
129 |
msgid "Pages"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:230
|
133 |
msgid "Home page"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: admin.inc.php:231
|
137 |
msgid "Feeds"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin.inc.php:232
|
141 |
msgid "Category archives"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:233
|
145 |
msgid "Tag archives"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:234
|
149 |
msgid "Other archives"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: admin.inc.php:235
|
153 |
#, fuzzy
|
154 |
msgid ""
|
155 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
161 |
"('echo_ald_crp')) echo_ald_crp(); ?></code>, в отображаемый шаблон на "
|
162 |
"вашем сайте"
|
163 |
|
164 |
+
#: admin.inc.php:238
|
165 |
msgid "Add a link to the plugin page as a final item in the list"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin.inc.php:239
|
169 |
msgid " <em>Optional</em>"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: admin.inc.php:246
|
173 |
#, fuzzy
|
174 |
+
msgid "Output options"
|
175 |
msgstr "Опции вывода:"
|
176 |
|
177 |
+
#: admin.inc.php:248
|
178 |
msgid "Title of related posts: "
|
179 |
msgstr "Названия связанных постов:"
|
180 |
|
181 |
+
#: admin.inc.php:251
|
182 |
msgid "When there are no posts, what should be shown?"
|
183 |
msgstr "Когда нет сообщений, что должно быть показано?"
|
184 |
|
185 |
+
#: admin.inc.php:255
|
186 |
msgid "Blank Output"
|
187 |
msgstr "Пустой выход"
|
188 |
|
189 |
+
#: admin.inc.php:259
|
190 |
+
msgid "Display:"
|
191 |
+
msgstr ""
|
192 |
|
193 |
+
#: admin.inc.php:263 admin.inc.php:357
|
194 |
msgid "Show post excerpt in list?"
|
195 |
msgstr "Показать выдержки из поста в списке?"
|
196 |
|
197 |
+
#: admin.inc.php:266
|
198 |
msgid "Length of excerpt (in words): "
|
199 |
msgstr "Длина выдержки (в словах):"
|
200 |
|
201 |
+
#: admin.inc.php:269
|
202 |
msgid "Limit post title length (in characters)"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: admin.inc.php:272
|
206 |
+
msgid "Open links in new window"
|
|
|
|
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: admin.inc.php:275
|
210 |
+
msgid "Add nofollow attribute to links in the list"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: admin.inc.php:278
|
214 |
+
#, fuzzy
|
215 |
+
msgid "Exclude display of related posts on these posts / pages"
|
216 |
+
msgstr "Добавить похожие посты в фид"
|
217 |
+
|
218 |
+
#: admin.inc.php:281
|
219 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: admin.inc.php:284
|
223 |
msgid "Customize the output:"
|
224 |
msgstr "Настройки выхода:"
|
225 |
|
226 |
+
#: admin.inc.php:286
|
227 |
msgid "HTML to display before the list of posts: "
|
228 |
msgstr "HTML для показа перед списком сообщений: "
|
229 |
|
230 |
+
#: admin.inc.php:289
|
231 |
msgid "HTML to display before each list item: "
|
232 |
msgstr "HTML для показа перед каждым элементом списка: "
|
233 |
|
234 |
+
#: admin.inc.php:292
|
235 |
msgid "HTML to display after each list item: "
|
236 |
msgstr "HTML для отображения после каждого элемента списка: "
|
237 |
|
238 |
+
#: admin.inc.php:295
|
239 |
msgid "HTML to display after the list of posts: "
|
240 |
msgstr "HTML для отображения после списка сообщений: "
|
241 |
|
242 |
+
#: admin.inc.php:298
|
243 |
msgid "Post thumbnail options:"
|
244 |
msgstr "Опции изображения поста:"
|
245 |
|
246 |
+
#: admin.inc.php:300 admin.inc.php:360
|
247 |
msgid "Location of post thumbnail:"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin.inc.php:304 admin.inc.php:364
|
251 |
#, fuzzy
|
252 |
msgid "Display thumbnails inline with posts, before title"
|
253 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
254 |
|
255 |
+
#: admin.inc.php:308 admin.inc.php:368
|
256 |
#, fuzzy
|
257 |
msgid "Display thumbnails inline with posts, after title"
|
258 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
259 |
|
260 |
+
#: admin.inc.php:312 admin.inc.php:372
|
261 |
msgid "Display only thumbnails, no text"
|
262 |
msgstr "Показывать только изображения, без текста"
|
263 |
|
264 |
+
#: admin.inc.php:316 admin.inc.php:376
|
265 |
msgid "Do not display thumbnails, only text."
|
266 |
msgstr "Не показывать изображения, только текст"
|
267 |
|
268 |
+
#: admin.inc.php:320 admin.inc.php:380
|
269 |
msgid "Maximum width of the thumbnail: "
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin.inc.php:323 admin.inc.php:383
|
273 |
msgid "Maximum height of the thumbnail: "
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin.inc.php:326
|
277 |
msgid "Use timthumb to generate thumbnails? "
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin.inc.php:327
|
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:329
|
287 |
+
msgid "Quality of thumbnails generated by timthumb"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: admin.inc.php:332
|
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:335
|
297 |
#, fuzzy
|
298 |
msgid "Post thumbnail meta field name: "
|
299 |
msgstr "Опции изображения поста:"
|
300 |
|
301 |
+
#: admin.inc.php:336
|
302 |
msgid ""
|
303 |
"The value of this field should contain the image source and is set in the "
|
304 |
"<em>Add New Post</em> screen"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: admin.inc.php:338
|
308 |
#, fuzzy
|
309 |
msgid ""
|
310 |
"If the postmeta is not set, then should the plugin extract the first image "
|
313 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
314 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
315 |
|
316 |
+
#: admin.inc.php:339
|
317 |
#, fuzzy
|
318 |
msgid ""
|
319 |
"This can slow down the loading of your page if the first image in the "
|
322 |
"Если postmeta не установлен, то плагин скачает первое изображение поста. Это "
|
323 |
"может замедлить загрузку сообщения (если изображение слишком велико)"
|
324 |
|
325 |
+
#: admin.inc.php:341
|
326 |
msgid "Use default thumbnail? "
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin.inc.php:342
|
330 |
msgid ""
|
331 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
332 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: admin.inc.php:344
|
336 |
msgid "Default thumbnail: "
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin.inc.php:345
|
340 |
#, fuzzy
|
341 |
msgid ""
|
342 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
347 |
"обнаружатся, то плагин проверит мета-данные. Если они будут недоступны, то "
|
348 |
"плагин будет показывать изображение по умолчанию, как указано ниже:"
|
349 |
|
350 |
+
#: admin.inc.php:350
|
351 |
+
#, fuzzy
|
352 |
+
msgid "Feed options"
|
353 |
+
msgstr "Опции:"
|
354 |
+
|
355 |
+
#: admin.inc.php:352
|
356 |
+
msgid ""
|
357 |
+
"Below options override the related posts settings for your blog feed. These "
|
358 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
359 |
+
"Options tab."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: admin.inc.php:389
|
363 |
msgid "Custom Styles"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin.inc.php:391
|
367 |
msgid "Custom CSS to add to header:"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: admin.inc.php:394
|
371 |
msgid ""
|
372 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
373 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
374 |
"\">FAQ</a> for available CSS classes to style."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin.inc.php:398
|
378 |
#, fuzzy
|
379 |
msgid "Save Options"
|
380 |
msgstr "Опции:"
|
381 |
|
382 |
+
#: admin.inc.php:399
|
383 |
#, fuzzy
|
384 |
msgid "Default Options"
|
385 |
msgstr "Опции вывода:"
|
386 |
|
387 |
+
#: admin.inc.php:399
|
388 |
msgid "Do you want to set options to Default?"
|
389 |
msgstr "Вы хотите задать параметры по умолчанию?"
|
390 |
|
391 |
+
#: admin.inc.php:400
|
392 |
msgid "Recreate Index"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin.inc.php:400
|
396 |
msgid "Are you sure you want to recreate the index?"
|
397 |
msgstr "Вы уверены, что хотите воссоздать индекс?"
|
398 |
|
399 |
+
#: admin.inc.php:417
|
400 |
msgid "Contextual Related Posts"
|
401 |
msgstr "Контекстные похожие посты"
|
402 |
|
403 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
404 |
msgid "Related Posts"
|
405 |
msgstr "Похожие посты"
|
406 |
|
407 |
+
#: admin.inc.php:425
|
408 |
#, fuzzy
|
409 |
msgid "plugin settings page"
|
410 |
msgstr "Страница плагина"
|
411 |
|
412 |
+
#: admin.inc.php:430
|
413 |
msgid ""
|
414 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
415 |
"visit the "
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin.inc.php:430
|
419 |
msgid " to configure."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: contextual-related-posts.php:162
|
423 |
msgid "Powered by"
|
424 |
msgstr "Автор:"
|
425 |
|
426 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
427 |
#, fuzzy
|
428 |
msgid "Display Related Posts"
|
429 |
msgstr "Показывать \"Нет похожих постов\""
|
430 |
|
431 |
+
#: contextual-related-posts.php:252
|
432 |
msgid "Title"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: contextual-related-posts.php:257
|
436 |
msgid "No. of posts"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: contextual-related-posts.php:262
|
440 |
+
#, fuzzy
|
441 |
+
msgid " Show excerpt?"
|
442 |
+
msgstr "Показать выдержки из поста в списке?"
|
443 |
+
|
444 |
+
#: contextual-related-posts.php:266
|
445 |
#, fuzzy
|
446 |
msgid "Thumbnail options"
|
447 |
msgstr "Опции изображения поста:"
|
448 |
|
449 |
+
#: contextual-related-posts.php:268
|
450 |
#, fuzzy
|
451 |
msgid "Thumbnails inline, before title"
|
452 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
453 |
|
454 |
+
#: contextual-related-posts.php:269
|
455 |
#, fuzzy
|
456 |
msgid "Thumbnails inline, after title"
|
457 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
458 |
|
459 |
+
#: contextual-related-posts.php:270
|
460 |
#, fuzzy
|
461 |
msgid "Only thumbnails, no text"
|
462 |
msgstr "Показывать только изображения, без текста"
|
463 |
|
464 |
+
#: contextual-related-posts.php:271
|
465 |
#, fuzzy
|
466 |
msgid "No thumbnails, only text."
|
467 |
msgstr "Не показывать изображения, только текст"
|
468 |
|
469 |
+
#: contextual-related-posts.php:276
|
470 |
#, fuzzy
|
471 |
+
msgid "Thumbnail height"
|
472 |
+
msgstr "Опции изображения поста:"
|
473 |
|
474 |
+
#: contextual-related-posts.php:281
|
475 |
+
#, fuzzy
|
476 |
+
msgid "Thumbnail width"
|
477 |
+
msgstr "Опции изображения поста:"
|
478 |
+
|
479 |
+
#: contextual-related-posts.php:340
|
480 |
msgid "<h3>Related Posts:</h3>"
|
481 |
msgstr "<h3>Похожие посты:</h3>"
|
482 |
|
483 |
+
#: contextual-related-posts.php:341
|
484 |
+
#, fuzzy
|
485 |
+
msgid "No related posts founds"
|
486 |
+
msgstr "Не найдены похожие посты"
|
487 |
+
|
488 |
+
#: contextual-related-posts.php:594
|
489 |
msgid "Settings"
|
490 |
msgstr "Настройки"
|
491 |
|
492 |
+
#: contextual-related-posts.php:609
|
493 |
msgid "Donate"
|
494 |
msgstr "Пожертвование"
|
495 |
|
496 |
+
#~ msgid "Follow @ajaydsouza on Twitter"
|
497 |
+
#~ msgstr "Следовать @ajaydsouza на Твиттере"
|
498 |
+
|
499 |
+
#~ msgid "Display \"No Related Posts\""
|
500 |
+
#~ msgstr "Показывать \"Нет похожих постов\""
|
501 |
+
|
502 |
#~ msgid "Exclude Categories: "
|
503 |
#~ msgstr "Исключить категории:"
|
504 |
|
|
|
|
|
|
|
|
|
505 |
#~ msgid "plugin page"
|
506 |
#~ msgstr "Страница плагина"
|
507 |
|
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -15,141 +15,137 @@ msgstr ""
|
|
15 |
"X-Generator: Poedit 1.5.4\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 "Follow @ajaydsouza on Twitter"
|
70 |
-
msgstr "在推特上关注 @ajaydsouza"
|
71 |
-
|
72 |
-
#: admin.inc.php:156
|
73 |
msgid "Recent developments"
|
74 |
msgstr "最新开发"
|
75 |
|
76 |
-
#: admin.inc.php:
|
77 |
msgid "General options"
|
78 |
msgstr "一般设置"
|
79 |
|
80 |
-
#: admin.inc.php:
|
81 |
msgid "Number of related posts to display: "
|
82 |
msgstr "相关日志数量:"
|
83 |
|
84 |
-
#: admin.inc.php:
|
85 |
msgid "Related posts should be newer than:"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin.inc.php:
|
89 |
msgid "days"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin.inc.php:
|
93 |
msgid "Post types to include in results (including custom post types)"
|
94 |
msgstr "被索引的日志类型(包含自定义日志类型)"
|
95 |
|
96 |
-
#: admin.inc.php:
|
97 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
98 |
msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
|
99 |
|
100 |
-
#: admin.inc.php:
|
101 |
msgid "Find related posts based on content as well as title"
|
102 |
msgstr "根据标题和正文内容索引"
|
103 |
|
104 |
-
#: admin.inc.php:
|
105 |
msgid ""
|
106 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
107 |
"plugin if you enable this)"
|
108 |
msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
|
109 |
|
110 |
-
#: admin.inc.php:
|
111 |
msgid "List of post or page IDs to exclude from the results: "
|
112 |
msgstr "排除的文章或页面 ID:"
|
113 |
|
114 |
-
#: admin.inc.php:
|
115 |
#, fuzzy
|
116 |
msgid "Categories to exclude from the results: "
|
117 |
msgstr "排除的文章或页面 ID:"
|
118 |
|
119 |
-
#: admin.inc.php:
|
120 |
#, fuzzy
|
121 |
msgid "Add related posts to:"
|
122 |
msgstr "添加相关日志到 feed 里"
|
123 |
|
124 |
-
#: admin.inc.php:
|
125 |
msgid "Posts"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: admin.inc.php:
|
129 |
msgid "Pages"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin.inc.php:
|
133 |
msgid "Home page"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: admin.inc.php:
|
137 |
msgid "Feeds"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: admin.inc.php:
|
141 |
msgid "Category archives"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: admin.inc.php:
|
145 |
msgid "Tag archives"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: admin.inc.php:
|
149 |
msgid "Other archives"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: admin.inc.php:
|
153 |
msgid ""
|
154 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
155 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
@@ -158,109 +154,121 @@ msgstr ""
|
|
158 |
"假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code><?php "
|
159 |
"if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code>"
|
160 |
|
161 |
-
#: admin.inc.php:
|
162 |
msgid "Add a link to the plugin page as a final item in the list"
|
163 |
msgstr "在相关日志后添加插件页面的链接"
|
164 |
|
165 |
-
#: admin.inc.php:
|
166 |
msgid " <em>Optional</em>"
|
167 |
msgstr " <em>可选</em>"
|
168 |
|
169 |
-
#: admin.inc.php:
|
170 |
-
|
|
|
171 |
msgstr "显示设置"
|
172 |
|
173 |
-
#: admin.inc.php:
|
174 |
msgid "Title of related posts: "
|
175 |
msgstr "相关日志的标题:"
|
176 |
|
177 |
-
#: admin.inc.php:
|
178 |
msgid "When there are no posts, what should be shown?"
|
179 |
msgstr "当不存在相关日志时,显示什么?"
|
180 |
|
181 |
-
#: admin.inc.php:
|
182 |
msgid "Blank Output"
|
183 |
msgstr "不显示"
|
184 |
|
185 |
-
#: admin.inc.php:
|
186 |
-
msgid "Display
|
187 |
-
msgstr "
|
188 |
|
189 |
-
#: admin.inc.php:
|
190 |
msgid "Show post excerpt in list?"
|
191 |
msgstr "是否显示日志摘要?"
|
192 |
|
193 |
-
#: admin.inc.php:
|
194 |
msgid "Length of excerpt (in words): "
|
195 |
msgstr "摘要长度(词数):"
|
196 |
|
197 |
-
#: admin.inc.php:
|
198 |
msgid "Limit post title length (in characters)"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: admin.inc.php:
|
202 |
-
msgid ""
|
203 |
-
"Exclude display of related posts on these posts / pages (Enter comma "
|
204 |
-
"separated list of IDs): "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
msgid "Customize the output:"
|
209 |
msgstr "自定义显示:"
|
210 |
|
211 |
-
#: admin.inc.php:
|
212 |
msgid "HTML to display before the list of posts: "
|
213 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
214 |
|
215 |
-
#: admin.inc.php:
|
216 |
msgid "HTML to display before each list item: "
|
217 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
218 |
|
219 |
-
#: admin.inc.php:
|
220 |
msgid "HTML to display after each list item: "
|
221 |
msgstr "显示在日志列表前面的 HTML 标签:"
|
222 |
|
223 |
-
#: admin.inc.php:
|
224 |
msgid "HTML to display after the list of posts: "
|
225 |
msgstr "显示在日志列表后面的 HTML 标签:"
|
226 |
|
227 |
-
#: admin.inc.php:
|
228 |
msgid "Post thumbnail options:"
|
229 |
msgstr "日志缩略图设置:"
|
230 |
|
231 |
-
#: admin.inc.php:
|
232 |
msgid "Location of post thumbnail:"
|
233 |
msgstr "日志缩略图位置:"
|
234 |
|
235 |
-
#: admin.inc.php:
|
236 |
msgid "Display thumbnails inline with posts, before title"
|
237 |
msgstr "在标题前显示缩略图"
|
238 |
|
239 |
-
#: admin.inc.php:
|
240 |
msgid "Display thumbnails inline with posts, after title"
|
241 |
msgstr "在标题后显示缩略图"
|
242 |
|
243 |
-
#: admin.inc.php:
|
244 |
msgid "Display only thumbnails, no text"
|
245 |
msgstr "不显示文本,只显示缩略图"
|
246 |
|
247 |
-
#: admin.inc.php:
|
248 |
msgid "Do not display thumbnails, only text."
|
249 |
msgstr "不显示缩略图,只显示文本"
|
250 |
|
251 |
-
#: admin.inc.php:
|
252 |
msgid "Maximum width of the thumbnail: "
|
253 |
msgstr "缩略图最大宽度"
|
254 |
|
255 |
-
#: admin.inc.php:
|
256 |
msgid "Maximum height of the thumbnail: "
|
257 |
msgstr "缩略图最大高度"
|
258 |
|
259 |
-
#: admin.inc.php:
|
260 |
msgid "Use timthumb to generate thumbnails? "
|
261 |
msgstr "是否使用 timthumb 生成缩略图?"
|
262 |
|
263 |
-
#: admin.inc.php:
|
264 |
msgid ""
|
265 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
266 |
"\">timthumb</a> will be used to generate thumbnails"
|
@@ -268,44 +276,54 @@ msgstr ""
|
|
268 |
"勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
269 |
"\">timthumb</a> 生成缩略图"
|
270 |
|
271 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
msgid "Post thumbnail meta field name: "
|
273 |
msgstr "日志缩略图自定义栏目的名称:"
|
274 |
|
275 |
-
#: admin.inc.php:
|
276 |
msgid ""
|
277 |
"The value of this field should contain the image source and is set in the "
|
278 |
"<em>Add New Post</em> screen"
|
279 |
msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
|
280 |
|
281 |
-
#: admin.inc.php:
|
282 |
msgid ""
|
283 |
"If the postmeta is not set, then should the plugin extract the first image "
|
284 |
"from the post?"
|
285 |
msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
|
286 |
|
287 |
-
#: admin.inc.php:
|
288 |
msgid ""
|
289 |
"This can slow down the loading of your page if the first image in the "
|
290 |
"related posts is large in file-size"
|
291 |
msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
|
292 |
|
293 |
-
#: admin.inc.php:
|
294 |
msgid "Use default thumbnail? "
|
295 |
msgstr "是否使用默认缩略图?"
|
296 |
|
297 |
-
#: admin.inc.php:
|
298 |
msgid ""
|
299 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
300 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
301 |
msgstr ""
|
302 |
"勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
|
303 |
|
304 |
-
#: admin.inc.php:
|
305 |
msgid "Default thumbnail: "
|
306 |
msgstr "默认缩略图:"
|
307 |
|
308 |
-
#: admin.inc.php:
|
309 |
msgid ""
|
310 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
311 |
"then it will check the meta field. If this is not available, then it will "
|
@@ -314,15 +332,27 @@ msgstr ""
|
|
314 |
"本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
|
315 |
"示上面默认图像"
|
316 |
|
317 |
-
#: admin.inc.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
msgid "Custom Styles"
|
319 |
msgstr "自定义样式"
|
320 |
|
321 |
-
#: admin.inc.php:
|
322 |
msgid "Custom CSS to add to header:"
|
323 |
msgstr "添加自定义 CSS 到 header:"
|
324 |
|
325 |
-
#: admin.inc.php:
|
326 |
#, fuzzy
|
327 |
msgid ""
|
328 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
@@ -332,113 +362,127 @@ msgstr ""
|
|
332 |
"不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
|
333 |
"extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
|
334 |
|
335 |
-
#: admin.inc.php:
|
336 |
msgid "Save Options"
|
337 |
msgstr "保存设置"
|
338 |
|
339 |
-
#: admin.inc.php:
|
340 |
msgid "Default Options"
|
341 |
msgstr "默认设置"
|
342 |
|
343 |
-
#: admin.inc.php:
|
344 |
msgid "Do you want to set options to Default?"
|
345 |
msgstr "是否要重置设置?"
|
346 |
|
347 |
-
#: admin.inc.php:
|
348 |
msgid "Recreate Index"
|
349 |
msgstr "重建索引"
|
350 |
|
351 |
-
#: admin.inc.php:
|
352 |
msgid "Are you sure you want to recreate the index?"
|
353 |
msgstr "是否要重建索引?"
|
354 |
|
355 |
-
#: admin.inc.php:
|
356 |
msgid "Contextual Related Posts"
|
357 |
msgstr "Contextual Related Posts"
|
358 |
|
359 |
-
#: admin.inc.php:
|
360 |
msgid "Related Posts"
|
361 |
msgstr "相关日志"
|
362 |
|
363 |
-
#: admin.inc.php:
|
364 |
msgid "plugin settings page"
|
365 |
msgstr "插件设置页面"
|
366 |
|
367 |
-
#: admin.inc.php:
|
368 |
msgid ""
|
369 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
370 |
"visit the "
|
371 |
msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
|
372 |
|
373 |
-
#: admin.inc.php:
|
374 |
msgid " to configure."
|
375 |
msgstr "设置插件。"
|
376 |
|
377 |
-
#: contextual-related-posts.php:
|
378 |
msgid "Powered by"
|
379 |
msgstr "插件作者:"
|
380 |
|
381 |
-
#: contextual-related-posts.php:
|
382 |
-
msgid "No related posts found"
|
383 |
-
msgstr "没有发现相关日志"
|
384 |
-
|
385 |
-
#: contextual-related-posts.php:221
|
386 |
msgid "Display Related Posts"
|
387 |
msgstr "显示相关日志"
|
388 |
|
389 |
-
#: contextual-related-posts.php:
|
390 |
msgid "Title"
|
391 |
msgstr "标题"
|
392 |
|
393 |
-
#: contextual-related-posts.php:
|
394 |
msgid "No. of posts"
|
395 |
msgstr "日志数量"
|
396 |
|
397 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
398 |
msgid "Thumbnail options"
|
399 |
msgstr "缩略图设置:"
|
400 |
|
401 |
-
#: contextual-related-posts.php:
|
402 |
msgid "Thumbnails inline, before title"
|
403 |
msgstr "在标题前显示缩略图"
|
404 |
|
405 |
-
#: contextual-related-posts.php:
|
406 |
msgid "Thumbnails inline, after title"
|
407 |
msgstr "在标题后显示缩略图"
|
408 |
|
409 |
-
#: contextual-related-posts.php:
|
410 |
msgid "Only thumbnails, no text"
|
411 |
msgstr "不显示文本,只显示缩略图"
|
412 |
|
413 |
-
#: contextual-related-posts.php:
|
414 |
msgid "No thumbnails, only text."
|
415 |
msgstr "不显示缩略图,只显示文本"
|
416 |
|
417 |
-
#: contextual-related-posts.php:
|
418 |
-
|
419 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
|
421 |
-
#: contextual-related-posts.php:
|
422 |
msgid "<h3>Related Posts:</h3>"
|
423 |
msgstr "<h3>相关日志:</h3>"
|
424 |
|
425 |
-
#: contextual-related-posts.php:
|
|
|
|
|
|
|
|
|
|
|
426 |
msgid "Settings"
|
427 |
msgstr "设置"
|
428 |
|
429 |
-
#: contextual-related-posts.php:
|
430 |
msgid "Donate"
|
431 |
msgstr "捐赠"
|
432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
433 |
#~ msgid "Exclude Categories: "
|
434 |
#~ msgstr "排除的分类 ID:"
|
435 |
|
436 |
#~ msgid "Add related posts to the post content on single posts"
|
437 |
#~ msgstr "添加相关日志到文章里"
|
438 |
|
439 |
-
#~ msgid "Add related posts to pages"
|
440 |
-
#~ msgstr "添加相关日志到页面里"
|
441 |
-
|
442 |
#~ msgid "plugin page"
|
443 |
#~ msgstr "插件页面"
|
444 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-01-06 12:33-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.4\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: admin.inc.php:93
|
19 |
msgid "Options saved successfully."
|
20 |
msgstr "成功保存设置。"
|
21 |
|
22 |
+
#: admin.inc.php:109
|
23 |
msgid "Options set to Default."
|
24 |
msgstr "已重置设置。"
|
25 |
|
26 |
+
#: admin.inc.php:124
|
27 |
msgid "Index recreated"
|
28 |
msgstr "已重新创建索引"
|
29 |
|
30 |
+
#: admin.inc.php:137
|
31 |
msgid "Support the development"
|
32 |
msgstr "支持开发"
|
33 |
|
34 |
+
#: admin.inc.php:145
|
35 |
msgid "Enter amount in USD: "
|
36 |
msgstr "输入美元金额:"
|
37 |
|
38 |
+
#: admin.inc.php:149
|
39 |
msgid "Send your donation to the author of"
|
40 |
msgstr "捐赠给作者"
|
41 |
|
42 |
+
#: admin.inc.php:160
|
43 |
#, fuzzy
|
44 |
msgid "Quick Links"
|
45 |
msgstr "快捷链接"
|
46 |
|
47 |
+
#: admin.inc.php:162
|
48 |
#, fuzzy
|
49 |
msgid "Contextual Related Posts plugin page"
|
50 |
msgstr "相关日志"
|
51 |
|
52 |
+
#: admin.inc.php:163
|
53 |
msgid "Other plugins"
|
54 |
msgstr "其他插件"
|
55 |
|
56 |
+
#: admin.inc.php:164
|
57 |
msgid "Ajay's blog"
|
58 |
msgstr "Ajay 的博客"
|
59 |
|
60 |
+
#: admin.inc.php:165 contextual-related-posts.php:608
|
61 |
msgid "Support"
|
62 |
msgstr "技术支持"
|
63 |
|
64 |
+
#: admin.inc.php:166
|
65 |
msgid "Reviews"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin.inc.php:170
|
|
|
|
|
|
|
|
|
69 |
msgid "Recent developments"
|
70 |
msgstr "最新开发"
|
71 |
|
72 |
+
#: admin.inc.php:180
|
73 |
msgid "General options"
|
74 |
msgstr "一般设置"
|
75 |
|
76 |
+
#: admin.inc.php:182 admin.inc.php:354
|
77 |
msgid "Number of related posts to display: "
|
78 |
msgstr "相关日志数量:"
|
79 |
|
80 |
+
#: admin.inc.php:185
|
81 |
msgid "Related posts should be newer than:"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin.inc.php:186
|
85 |
msgid "days"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin.inc.php:188
|
89 |
msgid "Post types to include in results (including custom post types)"
|
90 |
msgstr "被索引的日志类型(包含自定义日志类型)"
|
91 |
|
92 |
+
#: admin.inc.php:199
|
93 |
msgid "Use CTRL on Windows and COMMAND on Mac to select multiple items"
|
94 |
msgstr "在 Windows 上使用 CTRL ,或在 Mac 上使用 COMMAND 进行多选"
|
95 |
|
96 |
+
#: admin.inc.php:202
|
97 |
msgid "Find related posts based on content as well as title"
|
98 |
msgstr "根据标题和正文内容索引"
|
99 |
|
100 |
+
#: admin.inc.php:203
|
101 |
msgid ""
|
102 |
"If unchecked, only posts titles are used. (I recommend using a caching "
|
103 |
"plugin if you enable this)"
|
104 |
msgstr "假如没有勾选此项,则只从标题索引。(推荐已经开启缓存的用户勾选使用)"
|
105 |
|
106 |
+
#: admin.inc.php:205
|
107 |
msgid "List of post or page IDs to exclude from the results: "
|
108 |
msgstr "排除的文章或页面 ID:"
|
109 |
|
110 |
+
#: admin.inc.php:208
|
111 |
#, fuzzy
|
112 |
msgid "Categories to exclude from the results: "
|
113 |
msgstr "排除的文章或页面 ID:"
|
114 |
|
115 |
+
#: admin.inc.php:226
|
116 |
#, fuzzy
|
117 |
msgid "Add related posts to:"
|
118 |
msgstr "添加相关日志到 feed 里"
|
119 |
|
120 |
+
#: admin.inc.php:228
|
121 |
msgid "Posts"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: admin.inc.php:229
|
125 |
msgid "Pages"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: admin.inc.php:230
|
129 |
msgid "Home page"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin.inc.php:231
|
133 |
msgid "Feeds"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: admin.inc.php:232
|
137 |
msgid "Category archives"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin.inc.php:233
|
141 |
msgid "Tag archives"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: admin.inc.php:234
|
145 |
msgid "Other archives"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: admin.inc.php:235
|
149 |
msgid ""
|
150 |
"If you choose to disable this, please add <code><?php if(function_exists"
|
151 |
"('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where "
|
154 |
"假如没有勾选此项,请在模板文件中找到需要显示的地方,添加代码 <code><?php "
|
155 |
"if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code>"
|
156 |
|
157 |
+
#: admin.inc.php:238
|
158 |
msgid "Add a link to the plugin page as a final item in the list"
|
159 |
msgstr "在相关日志后添加插件页面的链接"
|
160 |
|
161 |
+
#: admin.inc.php:239
|
162 |
msgid " <em>Optional</em>"
|
163 |
msgstr " <em>可选</em>"
|
164 |
|
165 |
+
#: admin.inc.php:246
|
166 |
+
#, fuzzy
|
167 |
+
msgid "Output options"
|
168 |
msgstr "显示设置"
|
169 |
|
170 |
+
#: admin.inc.php:248
|
171 |
msgid "Title of related posts: "
|
172 |
msgstr "相关日志的标题:"
|
173 |
|
174 |
+
#: admin.inc.php:251
|
175 |
msgid "When there are no posts, what should be shown?"
|
176 |
msgstr "当不存在相关日志时,显示什么?"
|
177 |
|
178 |
+
#: admin.inc.php:255
|
179 |
msgid "Blank Output"
|
180 |
msgstr "不显示"
|
181 |
|
182 |
+
#: admin.inc.php:259
|
183 |
+
msgid "Display:"
|
184 |
+
msgstr ""
|
185 |
|
186 |
+
#: admin.inc.php:263 admin.inc.php:357
|
187 |
msgid "Show post excerpt in list?"
|
188 |
msgstr "是否显示日志摘要?"
|
189 |
|
190 |
+
#: admin.inc.php:266
|
191 |
msgid "Length of excerpt (in words): "
|
192 |
msgstr "摘要长度(词数):"
|
193 |
|
194 |
+
#: admin.inc.php:269
|
195 |
msgid "Limit post title length (in characters)"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: admin.inc.php:272
|
199 |
+
msgid "Open links in new window"
|
|
|
|
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: admin.inc.php:275
|
203 |
+
msgid "Add nofollow attribute to links in the list"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: admin.inc.php:278
|
207 |
+
#, fuzzy
|
208 |
+
msgid "Exclude display of related posts on these posts / pages"
|
209 |
+
msgstr "添加相关日志到页面里"
|
210 |
+
|
211 |
+
#: admin.inc.php:281
|
212 |
+
msgid "Enter comma separated list of IDs. e.g. 188,320,500"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: admin.inc.php:284
|
216 |
msgid "Customize the output:"
|
217 |
msgstr "自定义显示:"
|
218 |
|
219 |
+
#: admin.inc.php:286
|
220 |
msgid "HTML to display before the list of posts: "
|
221 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
222 |
|
223 |
+
#: admin.inc.php:289
|
224 |
msgid "HTML to display before each list item: "
|
225 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
226 |
|
227 |
+
#: admin.inc.php:292
|
228 |
msgid "HTML to display after each list item: "
|
229 |
msgstr "显示在日志列表前面的 HTML 标签:"
|
230 |
|
231 |
+
#: admin.inc.php:295
|
232 |
msgid "HTML to display after the list of posts: "
|
233 |
msgstr "显示在日志列表后面的 HTML 标签:"
|
234 |
|
235 |
+
#: admin.inc.php:298
|
236 |
msgid "Post thumbnail options:"
|
237 |
msgstr "日志缩略图设置:"
|
238 |
|
239 |
+
#: admin.inc.php:300 admin.inc.php:360
|
240 |
msgid "Location of post thumbnail:"
|
241 |
msgstr "日志缩略图位置:"
|
242 |
|
243 |
+
#: admin.inc.php:304 admin.inc.php:364
|
244 |
msgid "Display thumbnails inline with posts, before title"
|
245 |
msgstr "在标题前显示缩略图"
|
246 |
|
247 |
+
#: admin.inc.php:308 admin.inc.php:368
|
248 |
msgid "Display thumbnails inline with posts, after title"
|
249 |
msgstr "在标题后显示缩略图"
|
250 |
|
251 |
+
#: admin.inc.php:312 admin.inc.php:372
|
252 |
msgid "Display only thumbnails, no text"
|
253 |
msgstr "不显示文本,只显示缩略图"
|
254 |
|
255 |
+
#: admin.inc.php:316 admin.inc.php:376
|
256 |
msgid "Do not display thumbnails, only text."
|
257 |
msgstr "不显示缩略图,只显示文本"
|
258 |
|
259 |
+
#: admin.inc.php:320 admin.inc.php:380
|
260 |
msgid "Maximum width of the thumbnail: "
|
261 |
msgstr "缩略图最大宽度"
|
262 |
|
263 |
+
#: admin.inc.php:323 admin.inc.php:383
|
264 |
msgid "Maximum height of the thumbnail: "
|
265 |
msgstr "缩略图最大高度"
|
266 |
|
267 |
+
#: admin.inc.php:326
|
268 |
msgid "Use timthumb to generate thumbnails? "
|
269 |
msgstr "是否使用 timthumb 生成缩略图?"
|
270 |
|
271 |
+
#: admin.inc.php:327
|
272 |
msgid ""
|
273 |
"If checked, <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
274 |
"\">timthumb</a> will be used to generate thumbnails"
|
276 |
"勾选此项,将使用 <a href=\"http://www.binarymoon.co.uk/projects/timthumb/"
|
277 |
"\">timthumb</a> 生成缩略图"
|
278 |
|
279 |
+
#: admin.inc.php:329
|
280 |
+
msgid "Quality of thumbnails generated by timthumb"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: admin.inc.php:332
|
284 |
+
msgid ""
|
285 |
+
"Enter values between 0 and 100 only. 100 is highest quality, however, it is "
|
286 |
+
"also the highest file size. Suggested maximum value is 95. CRP default is 75."
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: admin.inc.php:335
|
290 |
msgid "Post thumbnail meta field name: "
|
291 |
msgstr "日志缩略图自定义栏目的名称:"
|
292 |
|
293 |
+
#: admin.inc.php:336
|
294 |
msgid ""
|
295 |
"The value of this field should contain the image source and is set in the "
|
296 |
"<em>Add New Post</em> screen"
|
297 |
msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
|
298 |
|
299 |
+
#: admin.inc.php:338
|
300 |
msgid ""
|
301 |
"If the postmeta is not set, then should the plugin extract the first image "
|
302 |
"from the post?"
|
303 |
msgstr "假如缩略图自定义栏目没有填写,是否使用日志的第一张图片?"
|
304 |
|
305 |
+
#: admin.inc.php:339
|
306 |
msgid ""
|
307 |
"This can slow down the loading of your page if the first image in the "
|
308 |
"related posts is large in file-size"
|
309 |
msgstr "勾选此项,若相关的日志中第一张图片过大,则页面载入速度会减慢。"
|
310 |
|
311 |
+
#: admin.inc.php:341
|
312 |
msgid "Use default thumbnail? "
|
313 |
msgstr "是否使用默认缩略图?"
|
314 |
|
315 |
+
#: admin.inc.php:342
|
316 |
msgid ""
|
317 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
318 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
319 |
msgstr ""
|
320 |
"勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
|
321 |
|
322 |
+
#: admin.inc.php:344
|
323 |
msgid "Default thumbnail: "
|
324 |
msgstr "默认缩略图:"
|
325 |
|
326 |
+
#: admin.inc.php:345
|
327 |
msgid ""
|
328 |
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
329 |
"then it will check the meta field. If this is not available, then it will "
|
332 |
"本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
|
333 |
"示上面默认图像"
|
334 |
|
335 |
+
#: admin.inc.php:350
|
336 |
+
#, fuzzy
|
337 |
+
msgid "Feed options"
|
338 |
+
msgstr "一般设置"
|
339 |
+
|
340 |
+
#: admin.inc.php:352
|
341 |
+
msgid ""
|
342 |
+
"Below options override the related posts settings for your blog feed. These "
|
343 |
+
"only apply if you have selected to add related posts to Feeds in the General "
|
344 |
+
"Options tab."
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: admin.inc.php:389
|
348 |
msgid "Custom Styles"
|
349 |
msgstr "自定义样式"
|
350 |
|
351 |
+
#: admin.inc.php:391
|
352 |
msgid "Custom CSS to add to header:"
|
353 |
msgstr "添加自定义 CSS 到 header:"
|
354 |
|
355 |
+
#: admin.inc.php:394
|
356 |
#, fuzzy
|
357 |
msgid ""
|
358 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
362 |
"不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
|
363 |
"extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
|
364 |
|
365 |
+
#: admin.inc.php:398
|
366 |
msgid "Save Options"
|
367 |
msgstr "保存设置"
|
368 |
|
369 |
+
#: admin.inc.php:399
|
370 |
msgid "Default Options"
|
371 |
msgstr "默认设置"
|
372 |
|
373 |
+
#: admin.inc.php:399
|
374 |
msgid "Do you want to set options to Default?"
|
375 |
msgstr "是否要重置设置?"
|
376 |
|
377 |
+
#: admin.inc.php:400
|
378 |
msgid "Recreate Index"
|
379 |
msgstr "重建索引"
|
380 |
|
381 |
+
#: admin.inc.php:400
|
382 |
msgid "Are you sure you want to recreate the index?"
|
383 |
msgstr "是否要重建索引?"
|
384 |
|
385 |
+
#: admin.inc.php:417
|
386 |
msgid "Contextual Related Posts"
|
387 |
msgstr "Contextual Related Posts"
|
388 |
|
389 |
+
#: admin.inc.php:417 contextual-related-posts.php:240
|
390 |
msgid "Related Posts"
|
391 |
msgstr "相关日志"
|
392 |
|
393 |
+
#: admin.inc.php:425
|
394 |
msgid "plugin settings page"
|
395 |
msgstr "插件设置页面"
|
396 |
|
397 |
+
#: admin.inc.php:430
|
398 |
msgid ""
|
399 |
"Contextual Related Posts plugin has just been installed / upgraded. Please "
|
400 |
"visit the "
|
401 |
msgstr "Contextual Related Posts 插件已经安装/升级完毕。请访问"
|
402 |
|
403 |
+
#: admin.inc.php:430
|
404 |
msgid " to configure."
|
405 |
msgstr "设置插件。"
|
406 |
|
407 |
+
#: contextual-related-posts.php:162
|
408 |
msgid "Powered by"
|
409 |
msgstr "插件作者:"
|
410 |
|
411 |
+
#: contextual-related-posts.php:239
|
|
|
|
|
|
|
|
|
412 |
msgid "Display Related Posts"
|
413 |
msgstr "显示相关日志"
|
414 |
|
415 |
+
#: contextual-related-posts.php:252
|
416 |
msgid "Title"
|
417 |
msgstr "标题"
|
418 |
|
419 |
+
#: contextual-related-posts.php:257
|
420 |
msgid "No. of posts"
|
421 |
msgstr "日志数量"
|
422 |
|
423 |
+
#: contextual-related-posts.php:262
|
424 |
+
msgid " Show excerpt?"
|
425 |
+
msgstr "是否显示日志摘要?"
|
426 |
+
|
427 |
+
#: contextual-related-posts.php:266
|
428 |
msgid "Thumbnail options"
|
429 |
msgstr "缩略图设置:"
|
430 |
|
431 |
+
#: contextual-related-posts.php:268
|
432 |
msgid "Thumbnails inline, before title"
|
433 |
msgstr "在标题前显示缩略图"
|
434 |
|
435 |
+
#: contextual-related-posts.php:269
|
436 |
msgid "Thumbnails inline, after title"
|
437 |
msgstr "在标题后显示缩略图"
|
438 |
|
439 |
+
#: contextual-related-posts.php:270
|
440 |
msgid "Only thumbnails, no text"
|
441 |
msgstr "不显示文本,只显示缩略图"
|
442 |
|
443 |
+
#: contextual-related-posts.php:271
|
444 |
msgid "No thumbnails, only text."
|
445 |
msgstr "不显示缩略图,只显示文本"
|
446 |
|
447 |
+
#: contextual-related-posts.php:276
|
448 |
+
#, fuzzy
|
449 |
+
msgid "Thumbnail height"
|
450 |
+
msgstr "缩略图设置:"
|
451 |
+
|
452 |
+
#: contextual-related-posts.php:281
|
453 |
+
#, fuzzy
|
454 |
+
msgid "Thumbnail width"
|
455 |
+
msgstr "缩略图设置:"
|
456 |
|
457 |
+
#: contextual-related-posts.php:340
|
458 |
msgid "<h3>Related Posts:</h3>"
|
459 |
msgstr "<h3>相关日志:</h3>"
|
460 |
|
461 |
+
#: contextual-related-posts.php:341
|
462 |
+
#, fuzzy
|
463 |
+
msgid "No related posts founds"
|
464 |
+
msgstr "没有发现相关日志"
|
465 |
+
|
466 |
+
#: contextual-related-posts.php:594
|
467 |
msgid "Settings"
|
468 |
msgstr "设置"
|
469 |
|
470 |
+
#: contextual-related-posts.php:609
|
471 |
msgid "Donate"
|
472 |
msgstr "捐赠"
|
473 |
|
474 |
+
#~ msgid "Follow @ajaydsouza on Twitter"
|
475 |
+
#~ msgstr "在推特上关注 @ajaydsouza"
|
476 |
+
|
477 |
+
#~ msgid "Display \"No Related Posts\""
|
478 |
+
#~ msgstr "显示 \"没有相关日志\""
|
479 |
+
|
480 |
#~ msgid "Exclude Categories: "
|
481 |
#~ msgstr "排除的分类 ID:"
|
482 |
|
483 |
#~ msgid "Add related posts to the post content on single posts"
|
484 |
#~ msgstr "添加相关日志到文章里"
|
485 |
|
|
|
|
|
|
|
486 |
#~ msgid "plugin page"
|
487 |
#~ msgstr "插件页面"
|
488 |
|
readme.txt
CHANGED
@@ -28,20 +28,33 @@ The list is based on the content of the title and/or content of the posts which
|
|
28 |
* Support for WordPress post thumbnails
|
29 |
* Auto-extract the first image in your post to be displayed as a thumbnail
|
30 |
* Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>
|
31 |
-
* Use timthumb to resize images
|
32 |
* Display excerpts in post. You can select the length of the excerpt in words
|
33 |
* Output wrapped in CSS classes that allows you to style the list. You can enter your custom CSS styles from within WordPress Admin area
|
34 |
* Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
|
35 |
|
36 |
== Upgrade Notice ==
|
37 |
|
38 |
-
= 1.8.
|
39 |
-
*
|
|
|
|
|
|
|
|
|
40 |
Refer to Changelog for more information
|
41 |
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
= 1.8.4 =
|
46 |
* Added: Option to exclude display of related posts on certain posts/pages. This option is available under "Output Options"
|
47 |
* Added: Options to display related posts on home page, category archives, tag archives and other archives
|
@@ -188,9 +201,10 @@ Refer to Changelog for more information
|
|
188 |
|
189 |
== Screenshots ==
|
190 |
|
191 |
-
1. CRP options in WP-Admin - General
|
192 |
-
2. CRP options in WP-Admin - Output
|
193 |
-
3. CRP options in WP-Admin -
|
|
|
194 |
|
195 |
|
196 |
== Frequently Asked Questions ==
|
@@ -246,7 +260,6 @@ Below are a few features that I plan on implementing in future versions of the p
|
|
246 |
* Shortcode support
|
247 |
* Exclude display on select categories and tags
|
248 |
* Restrict related posts to same category
|
249 |
-
* Caching related posts
|
250 |
* Better relevance tweaking
|
251 |
* Limit characters in content that is compared
|
252 |
* Improved Custom post support
|
28 |
* Support for WordPress post thumbnails
|
29 |
* Auto-extract the first image in your post to be displayed as a thumbnail
|
30 |
* Manually enter the URL of the thumbnail via <a href="http://codex.wordpress.org/Custom_Fields">WordPress meta fields</a>
|
31 |
+
* Use timthumb to resize images or use your own filter function to resize post images
|
32 |
* Display excerpts in post. You can select the length of the excerpt in words
|
33 |
* Output wrapped in CSS classes that allows you to style the list. You can enter your custom CSS styles from within WordPress Admin area
|
34 |
* Customise which HTML tags to use for displaying the output in case you don't prefer the default `list` format
|
35 |
|
36 |
== Upgrade Notice ==
|
37 |
|
38 |
+
= 1.8.5 =
|
39 |
+
* New options to open links in new window and add `rel="nofollow"`;
|
40 |
+
quality setting for thumbnails when using timthumb;
|
41 |
+
custom text for no related posts;
|
42 |
+
new options for related posts in feeds;
|
43 |
+
thumbnail height and width can be configured for widgets;
|
44 |
Refer to Changelog for more information
|
45 |
|
46 |
|
47 |
== Changelog ==
|
48 |
|
49 |
+
= 1.8.5 =
|
50 |
+
* Added: Option to open links in new window - Find this under Output Options
|
51 |
+
* Added: Option to add <code>rel="nofollow"</code> to links - Find this under Output Options
|
52 |
+
* Added: Option to set quality of thumbnails - Find this under Output Options
|
53 |
+
* Added: Custom text to display if no related posts are found - Find this under Output Options
|
54 |
+
* Added: Thumbnail height and width can now be configured for the widget
|
55 |
+
* Fixed: Filter (<code>crp_postimage</code>) added for WordPress Post Thumbnails to allow you to modify your image with your own script. Plugin comes inbuilt with thumbnail resizing using timthumb
|
56 |
+
* Fixed: PHP notices when WP_DEBUG is set to true
|
57 |
+
|
58 |
= 1.8.4 =
|
59 |
* Added: Option to exclude display of related posts on certain posts/pages. This option is available under "Output Options"
|
60 |
* Added: Options to display related posts on home page, category archives, tag archives and other archives
|
201 |
|
202 |
== Screenshots ==
|
203 |
|
204 |
+
1. CRP options in WP-Admin - General options
|
205 |
+
2. CRP options in WP-Admin - Output options
|
206 |
+
3. CRP options in WP-Admin - Feed options
|
207 |
+
4. CRP options in WP-Admin - Custom styles
|
208 |
|
209 |
|
210 |
== Frequently Asked Questions ==
|
260 |
* Shortcode support
|
261 |
* Exclude display on select categories and tags
|
262 |
* Restrict related posts to same category
|
|
|
263 |
* Better relevance tweaking
|
264 |
* Limit characters in content that is compared
|
265 |
* Improved Custom post support
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|
screenshot-4.png
ADDED
Binary file
|