Version Description
- Minor performance improvements + a fix for potential SQL vulnerability
=
Download this release
Release Info
Developer | Ajay |
Plugin | Contextual Related Posts |
Version | 1.8.10.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.10.1 to 1.8.10.2
- admin.inc.php +2 -2
- contextual-related-posts.php +27 -18
- languages/crp-de_DE.mo +0 -0
- languages/crp-de_DE.po +20 -20
- languages/crp-en_US.mo +0 -0
- languages/crp-en_US.po +20 -20
- languages/crp-en_US.pot +20 -20
- languages/crp-es_ES.mo +0 -0
- languages/crp-es_ES.po +20 -20
- languages/crp-fr_FR.mo +0 -0
- languages/crp-fr_FR.po +21 -21
- languages/crp-it_IT.mo +0 -0
- languages/crp-it_IT.po +20 -20
- languages/crp-lt_LT.mo +0 -0
- languages/crp-lt_LT.po +20 -20
- languages/crp-nl_NL.mo +0 -0
- languages/crp-nl_NL.po +20 -20
- languages/crp-ru_RU.mo +0 -0
- languages/crp-ru_RU.po +20 -20
- languages/crp-zh_CN.mo +0 -0
- languages/crp-zh_CN.po +20 -20
- readme.txt +7 -6
admin.inc.php
CHANGED
@@ -27,8 +27,8 @@ function crp_options() {
|
|
27 |
$crp_settings['title'] = wp_kses_post($_POST['title']);
|
28 |
$crp_settings['limit'] = intval($_POST['limit']);
|
29 |
$crp_settings['daily_range'] = intval($_POST['daily_range']);
|
30 |
-
$crp_settings['exclude_on_post_ids'] = wp_kses_post($_POST['exclude_on_post_ids']);
|
31 |
-
$crp_settings['exclude_post_ids'] = wp_kses_post($_POST['exclude_post_ids']);
|
32 |
$crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
|
33 |
$crp_settings['match_content_words'] = intval($_POST['match_content_words']);
|
34 |
$crp_settings['cache'] = (isset($_POST['cache']) ? true : false);
|
27 |
$crp_settings['title'] = wp_kses_post($_POST['title']);
|
28 |
$crp_settings['limit'] = intval($_POST['limit']);
|
29 |
$crp_settings['daily_range'] = intval($_POST['daily_range']);
|
30 |
+
$crp_settings['exclude_on_post_ids'] = $_POST['exclude_on_post_ids'] == '' ? '' : implode(',', array_map('intval', explode(",", $_POST['exclude_on_post_ids']))); // wp_kses_post($_POST['exclude_on_post_ids']);
|
31 |
+
$crp_settings['exclude_post_ids'] = $_POST['exclude_post_ids'] == '' ? '' : implode(',', array_map('intval', explode(",", $_POST['exclude_post_ids']))); // wp_kses_post($_POST['exclude_post_ids']);
|
32 |
$crp_settings['match_content'] = (isset($_POST['match_content']) ? true : false);
|
33 |
$crp_settings['match_content_words'] = intval($_POST['match_content_words']);
|
34 |
$crp_settings['cache'] = (isset($_POST['cache']) ? true : false);
|
contextual-related-posts.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Contextual Related Posts
|
4 |
-
Version: 1.8.10.
|
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
|
@@ -200,25 +200,34 @@ function get_crp_posts($postid = FALSE, $limit = FALSE, $strict_limit = TRUE) {
|
|
200 |
|
201 |
// Create the SQL query to fetch the related posts from the database
|
202 |
if ((is_int($post->ID))&&($stuff != '')) {
|
203 |
-
$
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
if ($crp_settings['exclude_post_ids']!='') $sql .= "AND ID NOT IN (".$crp_settings['exclude_post_ids'].") ";
|
211 |
-
$sql .= "AND ( ";
|
212 |
$multiple = false;
|
213 |
foreach ($post_types as $post_type) {
|
214 |
if ( $multiple ) $sql .= ' OR ';
|
215 |
-
$sql .= " post_type = '
|
216 |
$multiple = true;
|
|
|
217 |
}
|
218 |
-
$
|
219 |
-
$sql .= "LIMIT "
|
220 |
|
221 |
-
$results = $wpdb->get_results($sql);
|
222 |
} else {
|
223 |
$results = false;
|
224 |
}
|
@@ -243,7 +252,7 @@ function ald_crp_content($content) {
|
|
243 |
$exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
|
244 |
//$p_in_c = (in_array($post->ID, $exclude_on_post_ids)) ? true : false;
|
245 |
if (in_array($post->ID, $exclude_on_post_ids)) return $content; // Exit without adding related posts
|
246 |
-
|
247 |
|
248 |
if((is_single())&&($crp_settings['add_to_content'])) {
|
249 |
return $content.ald_crp('is_widget=0');
|
@@ -422,8 +431,8 @@ function init_ald_crp(){
|
|
422 |
register_widget('WidgetCRP');
|
423 |
}
|
424 |
}
|
425 |
-
add_action('
|
426 |
-
|
427 |
|
428 |
/*********************************************************************
|
429 |
* Shortcode functions *
|
@@ -706,7 +715,7 @@ function crp_get_the_post_thumbnail($args = array()) {
|
|
706 |
}
|
707 |
}
|
708 |
|
709 |
-
return
|
710 |
}
|
711 |
|
712 |
|
@@ -733,7 +742,7 @@ function crp_get_first_image( $postID ) {
|
|
733 |
foreach ( $attachments as $attachment ) {
|
734 |
$image_attributes = wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) ? wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) : wp_get_attachment_image_src( $attachment->ID, 'full' );
|
735 |
|
736 |
-
return
|
737 |
}
|
738 |
} else {
|
739 |
return false;
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Contextual Related Posts
|
4 |
+
Version: 1.8.10.2
|
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
|
200 |
|
201 |
// Create the SQL query to fetch the related posts from the database
|
202 |
if ((is_int($post->ID))&&($stuff != '')) {
|
203 |
+
$args = array(
|
204 |
+
$stuff,
|
205 |
+
$now,
|
206 |
+
$current_date,
|
207 |
+
$post->ID,
|
208 |
+
);
|
209 |
+
$sql = "
|
210 |
+
SELECT DISTINCT ID
|
211 |
+
FROM ".$wpdb->posts."
|
212 |
+
WHERE MATCH (post_title,post_content) AGAINST ('%s')
|
213 |
+
AND post_date < '%s'
|
214 |
+
AND post_date >= '%s'
|
215 |
+
AND post_status = 'publish'
|
216 |
+
AND ID != %d
|
217 |
+
";
|
218 |
if ($crp_settings['exclude_post_ids']!='') $sql .= "AND ID NOT IN (".$crp_settings['exclude_post_ids'].") ";
|
219 |
+
$sql .= " AND ( ";
|
220 |
$multiple = false;
|
221 |
foreach ($post_types as $post_type) {
|
222 |
if ( $multiple ) $sql .= ' OR ';
|
223 |
+
$sql .= " post_type = '%s'";
|
224 |
$multiple = true;
|
225 |
+
$args[] = $post_type; // Add the post types to the $args array
|
226 |
}
|
227 |
+
$args[] = $limit;
|
228 |
+
$sql .= " ) LIMIT %d";
|
229 |
|
230 |
+
$results = $wpdb->get_results($wpdb->prepare($sql, $args));
|
231 |
} else {
|
232 |
$results = false;
|
233 |
}
|
252 |
$exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']);
|
253 |
//$p_in_c = (in_array($post->ID, $exclude_on_post_ids)) ? true : false;
|
254 |
if (in_array($post->ID, $exclude_on_post_ids)) return $content; // Exit without adding related posts
|
255 |
+
if ( !in_the_loop() ) return $content;
|
256 |
|
257 |
if((is_single())&&($crp_settings['add_to_content'])) {
|
258 |
return $content.ald_crp('is_widget=0');
|
431 |
register_widget('WidgetCRP');
|
432 |
}
|
433 |
}
|
434 |
+
add_action('widgets_init', 'init_ald_crp');
|
435 |
+
|
436 |
|
437 |
/*********************************************************************
|
438 |
* Shortcode functions *
|
715 |
}
|
716 |
}
|
717 |
|
718 |
+
return apply_filters('crp_get_the_post_thumbnail',$output);
|
719 |
}
|
720 |
|
721 |
|
742 |
foreach ( $attachments as $attachment ) {
|
743 |
$image_attributes = wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) ? wp_get_attachment_image_src( $attachment->ID, 'thumbnail' ) : wp_get_attachment_image_src( $attachment->ID, 'full' );
|
744 |
|
745 |
+
return apply_filters('crp_get_first_image',$image_attributes[0],$postID);
|
746 |
}
|
747 |
} else {
|
748 |
return false;
|
languages/crp-de_DE.mo
CHANGED
Binary file
|
languages/crp-de_DE.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -61,7 +61,7 @@ msgstr "Ajay's Blog"
|
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
65 |
msgid "Support"
|
66 |
msgstr "Support"
|
67 |
|
@@ -489,7 +489,7 @@ msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
|
|
489 |
msgid "Contextual Related Posts"
|
490 |
msgstr "Contextual Related Posts"
|
491 |
|
492 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
493 |
msgid "Related Posts"
|
494 |
msgstr "Related Posts"
|
495 |
|
@@ -526,82 +526,82 @@ msgstr ""
|
|
526 |
msgid "Powered by"
|
527 |
msgstr "Powered by"
|
528 |
|
529 |
-
#: contextual-related-posts.php:
|
530 |
#, fuzzy
|
531 |
msgid "Display Related Posts"
|
532 |
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
533 |
|
534 |
-
#: contextual-related-posts.php:
|
535 |
msgid "Title"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: contextual-related-posts.php:
|
539 |
msgid "No. of posts"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: contextual-related-posts.php:
|
543 |
#, fuzzy
|
544 |
msgid " Show excerpt?"
|
545 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
546 |
|
547 |
-
#: contextual-related-posts.php:
|
548 |
msgid " Show author?"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: contextual-related-posts.php:
|
552 |
#, fuzzy
|
553 |
msgid " Show date?"
|
554 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
555 |
|
556 |
-
#: contextual-related-posts.php:
|
557 |
#, fuzzy
|
558 |
msgid "Thumbnail options"
|
559 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
560 |
|
561 |
-
#: contextual-related-posts.php:
|
562 |
#, fuzzy
|
563 |
msgid "Thumbnails inline, before title"
|
564 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
565 |
|
566 |
-
#: contextual-related-posts.php:
|
567 |
#, fuzzy
|
568 |
msgid "Thumbnails inline, after title"
|
569 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
570 |
|
571 |
-
#: contextual-related-posts.php:
|
572 |
#, fuzzy
|
573 |
msgid "Only thumbnails, no text"
|
574 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
575 |
|
576 |
-
#: contextual-related-posts.php:
|
577 |
#, fuzzy
|
578 |
msgid "No thumbnails, only text."
|
579 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
580 |
|
581 |
-
#: contextual-related-posts.php:
|
582 |
#, fuzzy
|
583 |
msgid "Thumbnail height"
|
584 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
585 |
|
586 |
-
#: contextual-related-posts.php:
|
587 |
#, fuzzy
|
588 |
msgid "Thumbnail width"
|
589 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
590 |
|
591 |
-
#: contextual-related-posts.php:
|
592 |
msgid "<h3>Related Posts:</h3>"
|
593 |
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
594 |
|
595 |
-
#: contextual-related-posts.php:
|
596 |
#, fuzzy
|
597 |
msgid "No related posts found"
|
598 |
msgstr "Keine ähnlichen Beiträge gefunden"
|
599 |
|
600 |
-
#: contextual-related-posts.php:
|
601 |
msgid "Settings"
|
602 |
msgstr "Einstellungen"
|
603 |
|
604 |
-
#: contextual-related-posts.php:
|
605 |
msgid "Donate"
|
606 |
msgstr "Spenden"
|
607 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:44-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
65 |
msgid "Support"
|
66 |
msgstr "Support"
|
67 |
|
489 |
msgid "Contextual Related Posts"
|
490 |
msgstr "Contextual Related Posts"
|
491 |
|
492 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
493 |
msgid "Related Posts"
|
494 |
msgstr "Related Posts"
|
495 |
|
526 |
msgid "Powered by"
|
527 |
msgstr "Powered by"
|
528 |
|
529 |
+
#: contextual-related-posts.php:322
|
530 |
#, fuzzy
|
531 |
msgid "Display Related Posts"
|
532 |
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
533 |
|
534 |
+
#: contextual-related-posts.php:337
|
535 |
msgid "Title"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: contextual-related-posts.php:342
|
539 |
msgid "No. of posts"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: contextual-related-posts.php:347
|
543 |
#, fuzzy
|
544 |
msgid " Show excerpt?"
|
545 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
546 |
|
547 |
+
#: contextual-related-posts.php:352
|
548 |
msgid " Show author?"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: contextual-related-posts.php:357
|
552 |
#, fuzzy
|
553 |
msgid " Show date?"
|
554 |
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
555 |
|
556 |
+
#: contextual-related-posts.php:361
|
557 |
#, fuzzy
|
558 |
msgid "Thumbnail options"
|
559 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
560 |
|
561 |
+
#: contextual-related-posts.php:363
|
562 |
#, fuzzy
|
563 |
msgid "Thumbnails inline, before title"
|
564 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
565 |
|
566 |
+
#: contextual-related-posts.php:364
|
567 |
#, fuzzy
|
568 |
msgid "Thumbnails inline, after title"
|
569 |
msgstr "Thumbnails und Beitragstitel anzeigen"
|
570 |
|
571 |
+
#: contextual-related-posts.php:365
|
572 |
#, fuzzy
|
573 |
msgid "Only thumbnails, no text"
|
574 |
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
575 |
|
576 |
+
#: contextual-related-posts.php:366
|
577 |
#, fuzzy
|
578 |
msgid "No thumbnails, only text."
|
579 |
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
580 |
|
581 |
+
#: contextual-related-posts.php:371
|
582 |
#, fuzzy
|
583 |
msgid "Thumbnail height"
|
584 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
585 |
|
586 |
+
#: contextual-related-posts.php:376
|
587 |
#, fuzzy
|
588 |
msgid "Thumbnail width"
|
589 |
msgstr "Optionen für die Beitrags-Thumbnails:"
|
590 |
|
591 |
+
#: contextual-related-posts.php:472
|
592 |
msgid "<h3>Related Posts:</h3>"
|
593 |
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
594 |
|
595 |
+
#: contextual-related-posts.php:473
|
596 |
#, fuzzy
|
597 |
msgid "No related posts found"
|
598 |
msgstr "Keine ähnlichen Beiträge gefunden"
|
599 |
|
600 |
+
#: contextual-related-posts.php:817
|
601 |
msgid "Settings"
|
602 |
msgstr "Einstellungen"
|
603 |
|
604 |
+
#: contextual-related-posts.php:840
|
605 |
msgid "Donate"
|
606 |
msgstr "Spenden"
|
607 |
|
languages/crp-en_US.mo
CHANGED
Binary file
|
languages/crp-en_US.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -59,7 +59,7 @@ msgstr ""
|
|
59 |
msgid "FAQ"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
63 |
msgid "Support"
|
64 |
msgstr ""
|
65 |
|
@@ -452,7 +452,7 @@ msgstr ""
|
|
452 |
msgid "Contextual Related Posts"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
456 |
msgid "Related Posts"
|
457 |
msgstr ""
|
458 |
|
@@ -488,70 +488,70 @@ msgstr ""
|
|
488 |
msgid "Powered by"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: contextual-related-posts.php:
|
492 |
msgid "Display Related Posts"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: contextual-related-posts.php:
|
496 |
msgid "Title"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: contextual-related-posts.php:
|
500 |
msgid "No. of posts"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: contextual-related-posts.php:
|
504 |
msgid " Show excerpt?"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: contextual-related-posts.php:
|
508 |
msgid " Show author?"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: contextual-related-posts.php:
|
512 |
msgid " Show date?"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: contextual-related-posts.php:
|
516 |
msgid "Thumbnail options"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: contextual-related-posts.php:
|
520 |
msgid "Thumbnails inline, before title"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: contextual-related-posts.php:
|
524 |
msgid "Thumbnails inline, after title"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: contextual-related-posts.php:
|
528 |
msgid "Only thumbnails, no text"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: contextual-related-posts.php:
|
532 |
msgid "No thumbnails, only text."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: contextual-related-posts.php:
|
536 |
msgid "Thumbnail height"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: contextual-related-posts.php:
|
540 |
msgid "Thumbnail width"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: contextual-related-posts.php:
|
544 |
msgid "<h3>Related Posts:</h3>"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: contextual-related-posts.php:
|
548 |
msgid "No related posts found"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: contextual-related-posts.php:
|
552 |
msgid "Settings"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: contextual-related-posts.php:
|
556 |
msgid "Donate"
|
557 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:44-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
59 |
msgid "FAQ"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
63 |
msgid "Support"
|
64 |
msgstr ""
|
65 |
|
452 |
msgid "Contextual Related Posts"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
456 |
msgid "Related Posts"
|
457 |
msgstr ""
|
458 |
|
488 |
msgid "Powered by"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: contextual-related-posts.php:322
|
492 |
msgid "Display Related Posts"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: contextual-related-posts.php:337
|
496 |
msgid "Title"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: contextual-related-posts.php:342
|
500 |
msgid "No. of posts"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: contextual-related-posts.php:347
|
504 |
msgid " Show excerpt?"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: contextual-related-posts.php:352
|
508 |
msgid " Show author?"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: contextual-related-posts.php:357
|
512 |
msgid " Show date?"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: contextual-related-posts.php:361
|
516 |
msgid "Thumbnail options"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: contextual-related-posts.php:363
|
520 |
msgid "Thumbnails inline, before title"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: contextual-related-posts.php:364
|
524 |
msgid "Thumbnails inline, after title"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: contextual-related-posts.php:365
|
528 |
msgid "Only thumbnails, no text"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: contextual-related-posts.php:366
|
532 |
msgid "No thumbnails, only text."
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: contextual-related-posts.php:371
|
536 |
msgid "Thumbnail height"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: contextual-related-posts.php:376
|
540 |
msgid "Thumbnail width"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: contextual-related-posts.php:472
|
544 |
msgid "<h3>Related Posts:</h3>"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: contextual-related-posts.php:473
|
548 |
msgid "No related posts found"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: contextual-related-posts.php:817
|
552 |
msgid "Settings"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: contextual-related-posts.php:840
|
556 |
msgid "Donate"
|
557 |
msgstr ""
|
languages/crp-en_US.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -59,7 +59,7 @@ msgstr ""
|
|
59 |
msgid "FAQ"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
63 |
msgid "Support"
|
64 |
msgstr ""
|
65 |
|
@@ -452,7 +452,7 @@ msgstr ""
|
|
452 |
msgid "Contextual Related Posts"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
456 |
msgid "Related Posts"
|
457 |
msgstr ""
|
458 |
|
@@ -488,70 +488,70 @@ msgstr ""
|
|
488 |
msgid "Powered by"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: contextual-related-posts.php:
|
492 |
msgid "Display Related Posts"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: contextual-related-posts.php:
|
496 |
msgid "Title"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: contextual-related-posts.php:
|
500 |
msgid "No. of posts"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: contextual-related-posts.php:
|
504 |
msgid " Show excerpt?"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: contextual-related-posts.php:
|
508 |
msgid " Show author?"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: contextual-related-posts.php:
|
512 |
msgid " Show date?"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: contextual-related-posts.php:
|
516 |
msgid "Thumbnail options"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: contextual-related-posts.php:
|
520 |
msgid "Thumbnails inline, before title"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: contextual-related-posts.php:
|
524 |
msgid "Thumbnails inline, after title"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: contextual-related-posts.php:
|
528 |
msgid "Only thumbnails, no text"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: contextual-related-posts.php:
|
532 |
msgid "No thumbnails, only text."
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: contextual-related-posts.php:
|
536 |
msgid "Thumbnail height"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: contextual-related-posts.php:
|
540 |
msgid "Thumbnail width"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: contextual-related-posts.php:
|
544 |
msgid "<h3>Related Posts:</h3>"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: contextual-related-posts.php:
|
548 |
msgid "No related posts found"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: contextual-related-posts.php:
|
552 |
msgid "Settings"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: contextual-related-posts.php:
|
556 |
msgid "Donate"
|
557 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:44-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
59 |
msgid "FAQ"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
63 |
msgid "Support"
|
64 |
msgstr ""
|
65 |
|
452 |
msgid "Contextual Related Posts"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
456 |
msgid "Related Posts"
|
457 |
msgstr ""
|
458 |
|
488 |
msgid "Powered by"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: contextual-related-posts.php:322
|
492 |
msgid "Display Related Posts"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: contextual-related-posts.php:337
|
496 |
msgid "Title"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: contextual-related-posts.php:342
|
500 |
msgid "No. of posts"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: contextual-related-posts.php:347
|
504 |
msgid " Show excerpt?"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: contextual-related-posts.php:352
|
508 |
msgid " Show author?"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: contextual-related-posts.php:357
|
512 |
msgid " Show date?"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: contextual-related-posts.php:361
|
516 |
msgid "Thumbnail options"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: contextual-related-posts.php:363
|
520 |
msgid "Thumbnails inline, before title"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: contextual-related-posts.php:364
|
524 |
msgid "Thumbnails inline, after title"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: contextual-related-posts.php:365
|
528 |
msgid "Only thumbnails, no text"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: contextual-related-posts.php:366
|
532 |
msgid "No thumbnails, only text."
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: contextual-related-posts.php:371
|
536 |
msgid "Thumbnail height"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: contextual-related-posts.php:376
|
540 |
msgid "Thumbnail width"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: contextual-related-posts.php:472
|
544 |
msgid "<h3>Related Posts:</h3>"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: contextual-related-posts.php:473
|
548 |
msgid "No related posts found"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: contextual-related-posts.php:817
|
552 |
msgid "Settings"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: contextual-related-posts.php:840
|
556 |
msgid "Donate"
|
557 |
msgstr ""
|
languages/crp-es_ES.mo
CHANGED
Binary file
|
languages/crp-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -61,7 +61,7 @@ msgstr ""
|
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
65 |
msgid "Support"
|
66 |
msgstr "Soporte"
|
67 |
|
@@ -486,7 +486,7 @@ msgstr "¿Está seguro que quiere recrear el index?"
|
|
486 |
msgid "Contextual Related Posts"
|
487 |
msgstr "Posts Relacionados Contextualmente"
|
488 |
|
489 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
490 |
msgid "Related Posts"
|
491 |
msgstr "Post Relacionados"
|
492 |
|
@@ -523,82 +523,82 @@ msgstr ""
|
|
523 |
msgid "Powered by"
|
524 |
msgstr "Creado por"
|
525 |
|
526 |
-
#: contextual-related-posts.php:
|
527 |
#, fuzzy
|
528 |
msgid "Display Related Posts"
|
529 |
msgstr "Mostrar \"Posts No Relacionados\""
|
530 |
|
531 |
-
#: contextual-related-posts.php:
|
532 |
msgid "Title"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: contextual-related-posts.php:
|
536 |
msgid "No. of posts"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: contextual-related-posts.php:
|
540 |
#, fuzzy
|
541 |
msgid " Show excerpt?"
|
542 |
msgstr "¿Mostrar extracto con los items?"
|
543 |
|
544 |
-
#: contextual-related-posts.php:
|
545 |
msgid " Show author?"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: contextual-related-posts.php:
|
549 |
#, fuzzy
|
550 |
msgid " Show date?"
|
551 |
msgstr "¿Mostrar extracto con los items?"
|
552 |
|
553 |
-
#: contextual-related-posts.php:
|
554 |
#, fuzzy
|
555 |
msgid "Thumbnail options"
|
556 |
msgstr "Opciones de miniaturas en el post:"
|
557 |
|
558 |
-
#: contextual-related-posts.php:
|
559 |
#, fuzzy
|
560 |
msgid "Thumbnails inline, before title"
|
561 |
msgstr "Miniaturas en línea con los posts"
|
562 |
|
563 |
-
#: contextual-related-posts.php:
|
564 |
#, fuzzy
|
565 |
msgid "Thumbnails inline, after title"
|
566 |
msgstr "Miniaturas en línea con los posts"
|
567 |
|
568 |
-
#: contextual-related-posts.php:
|
569 |
#, fuzzy
|
570 |
msgid "Only thumbnails, no text"
|
571 |
msgstr "Solo miniaturas, sin texto"
|
572 |
|
573 |
-
#: contextual-related-posts.php:
|
574 |
#, fuzzy
|
575 |
msgid "No thumbnails, only text."
|
576 |
msgstr "No mostrar miniaturas, solo texto."
|
577 |
|
578 |
-
#: contextual-related-posts.php:
|
579 |
#, fuzzy
|
580 |
msgid "Thumbnail height"
|
581 |
msgstr "Opciones de miniaturas en el post:"
|
582 |
|
583 |
-
#: contextual-related-posts.php:
|
584 |
#, fuzzy
|
585 |
msgid "Thumbnail width"
|
586 |
msgstr "Opciones de miniaturas en el post:"
|
587 |
|
588 |
-
#: contextual-related-posts.php:
|
589 |
msgid "<h3>Related Posts:</h3>"
|
590 |
msgstr "<h3>Post Relacionados:</h3>"
|
591 |
|
592 |
-
#: contextual-related-posts.php:
|
593 |
#, fuzzy
|
594 |
msgid "No related posts found"
|
595 |
msgstr "No hay posts relacionados"
|
596 |
|
597 |
-
#: contextual-related-posts.php:
|
598 |
msgid "Settings"
|
599 |
msgstr "Opciones"
|
600 |
|
601 |
-
#: contextual-related-posts.php:
|
602 |
msgid "Donate"
|
603 |
msgstr "Donar"
|
604 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:44-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
65 |
msgid "Support"
|
66 |
msgstr "Soporte"
|
67 |
|
486 |
msgid "Contextual Related Posts"
|
487 |
msgstr "Posts Relacionados Contextualmente"
|
488 |
|
489 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
490 |
msgid "Related Posts"
|
491 |
msgstr "Post Relacionados"
|
492 |
|
523 |
msgid "Powered by"
|
524 |
msgstr "Creado por"
|
525 |
|
526 |
+
#: contextual-related-posts.php:322
|
527 |
#, fuzzy
|
528 |
msgid "Display Related Posts"
|
529 |
msgstr "Mostrar \"Posts No Relacionados\""
|
530 |
|
531 |
+
#: contextual-related-posts.php:337
|
532 |
msgid "Title"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: contextual-related-posts.php:342
|
536 |
msgid "No. of posts"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: contextual-related-posts.php:347
|
540 |
#, fuzzy
|
541 |
msgid " Show excerpt?"
|
542 |
msgstr "¿Mostrar extracto con los items?"
|
543 |
|
544 |
+
#: contextual-related-posts.php:352
|
545 |
msgid " Show author?"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: contextual-related-posts.php:357
|
549 |
#, fuzzy
|
550 |
msgid " Show date?"
|
551 |
msgstr "¿Mostrar extracto con los items?"
|
552 |
|
553 |
+
#: contextual-related-posts.php:361
|
554 |
#, fuzzy
|
555 |
msgid "Thumbnail options"
|
556 |
msgstr "Opciones de miniaturas en el post:"
|
557 |
|
558 |
+
#: contextual-related-posts.php:363
|
559 |
#, fuzzy
|
560 |
msgid "Thumbnails inline, before title"
|
561 |
msgstr "Miniaturas en línea con los posts"
|
562 |
|
563 |
+
#: contextual-related-posts.php:364
|
564 |
#, fuzzy
|
565 |
msgid "Thumbnails inline, after title"
|
566 |
msgstr "Miniaturas en línea con los posts"
|
567 |
|
568 |
+
#: contextual-related-posts.php:365
|
569 |
#, fuzzy
|
570 |
msgid "Only thumbnails, no text"
|
571 |
msgstr "Solo miniaturas, sin texto"
|
572 |
|
573 |
+
#: contextual-related-posts.php:366
|
574 |
#, fuzzy
|
575 |
msgid "No thumbnails, only text."
|
576 |
msgstr "No mostrar miniaturas, solo texto."
|
577 |
|
578 |
+
#: contextual-related-posts.php:371
|
579 |
#, fuzzy
|
580 |
msgid "Thumbnail height"
|
581 |
msgstr "Opciones de miniaturas en el post:"
|
582 |
|
583 |
+
#: contextual-related-posts.php:376
|
584 |
#, fuzzy
|
585 |
msgid "Thumbnail width"
|
586 |
msgstr "Opciones de miniaturas en el post:"
|
587 |
|
588 |
+
#: contextual-related-posts.php:472
|
589 |
msgid "<h3>Related Posts:</h3>"
|
590 |
msgstr "<h3>Post Relacionados:</h3>"
|
591 |
|
592 |
+
#: contextual-related-posts.php:473
|
593 |
#, fuzzy
|
594 |
msgid "No related posts found"
|
595 |
msgstr "No hay posts relacionados"
|
596 |
|
597 |
+
#: contextual-related-posts.php:817
|
598 |
msgid "Settings"
|
599 |
msgstr "Opciones"
|
600 |
|
601 |
+
#: contextual-related-posts.php:840
|
602 |
msgid "Donate"
|
603 |
msgstr "Donar"
|
604 |
|
languages/crp-fr_FR.mo
CHANGED
Binary file
|
languages/crp-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
-
"PO-Revision-Date: 2013-11-
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Olivier Copetto <olivier@copetto.com>\n"
|
9 |
"Language: fr\n"
|
@@ -59,7 +59,7 @@ msgstr "Blog d'Ajay"
|
|
59 |
msgid "FAQ"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
63 |
msgid "Support"
|
64 |
msgstr "Support"
|
65 |
|
@@ -502,7 +502,7 @@ msgstr "Etes vous certain de vouloir recréer l'index ?"
|
|
502 |
msgid "Contextual Related Posts"
|
503 |
msgstr "Contextual Related Posts"
|
504 |
|
505 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
506 |
msgid "Related Posts"
|
507 |
msgstr "Related Posts"
|
508 |
|
@@ -542,71 +542,71 @@ msgstr ""
|
|
542 |
msgid "Powered by"
|
543 |
msgstr "Propulsé par"
|
544 |
|
545 |
-
#: contextual-related-posts.php:
|
546 |
msgid "Display Related Posts"
|
547 |
msgstr "Afficher les articles similaires"
|
548 |
|
549 |
-
#: contextual-related-posts.php:
|
550 |
msgid "Title"
|
551 |
msgstr "Titre"
|
552 |
|
553 |
-
#: contextual-related-posts.php:
|
554 |
msgid "No. of posts"
|
555 |
msgstr "Nombre d'articles"
|
556 |
|
557 |
-
#: contextual-related-posts.php:
|
558 |
msgid " Show excerpt?"
|
559 |
msgstr " Voir l'extrait ?"
|
560 |
|
561 |
-
#: contextual-related-posts.php:
|
562 |
msgid " Show author?"
|
563 |
msgstr " Afficher l'auteur ?"
|
564 |
|
565 |
-
#: contextual-related-posts.php:
|
566 |
msgid " Show date?"
|
567 |
msgstr " Afficher la date ?"
|
568 |
|
569 |
-
#: contextual-related-posts.php:
|
570 |
msgid "Thumbnail options"
|
571 |
msgstr "Options des vignettes"
|
572 |
|
573 |
-
#: contextual-related-posts.php:
|
574 |
msgid "Thumbnails inline, before title"
|
575 |
msgstr "Vignettes en ligne, avant le titre"
|
576 |
|
577 |
-
#: contextual-related-posts.php:
|
578 |
msgid "Thumbnails inline, after title"
|
579 |
msgstr "Vignettes en ligne, après le titre"
|
580 |
|
581 |
-
#: contextual-related-posts.php:
|
582 |
msgid "Only thumbnails, no text"
|
583 |
msgstr "Seulement les vignettes, aucun texte."
|
584 |
|
585 |
-
#: contextual-related-posts.php:
|
586 |
msgid "No thumbnails, only text."
|
587 |
msgstr "Aucunes vignettes, texte seulement."
|
588 |
|
589 |
-
#: contextual-related-posts.php:
|
590 |
msgid "Thumbnail height"
|
591 |
msgstr "Hauteur de la vignette"
|
592 |
|
593 |
-
#: contextual-related-posts.php:
|
594 |
msgid "Thumbnail width"
|
595 |
msgstr "Largeur de la vignette"
|
596 |
|
597 |
-
#: contextual-related-posts.php:
|
598 |
msgid "<h3>Related Posts:</h3>"
|
599 |
msgstr "<h3>Articles similaires :</h3>"
|
600 |
|
601 |
-
#: contextual-related-posts.php:
|
602 |
msgid "No related posts found"
|
603 |
msgstr "Aucun article similaire trouvé."
|
604 |
|
605 |
-
#: contextual-related-posts.php:
|
606 |
msgid "Settings"
|
607 |
msgstr "Réglages"
|
608 |
|
609 |
-
#: contextual-related-posts.php:
|
610 |
msgid "Donate"
|
611 |
msgstr "Faire un don"
|
612 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:44-0000\n"
|
6 |
+
"PO-Revision-Date: 2013-11-20 23:47-0000\n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Olivier Copetto <olivier@copetto.com>\n"
|
9 |
"Language: fr\n"
|
59 |
msgid "FAQ"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
63 |
msgid "Support"
|
64 |
msgstr "Support"
|
65 |
|
502 |
msgid "Contextual Related Posts"
|
503 |
msgstr "Contextual Related Posts"
|
504 |
|
505 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
506 |
msgid "Related Posts"
|
507 |
msgstr "Related Posts"
|
508 |
|
542 |
msgid "Powered by"
|
543 |
msgstr "Propulsé par"
|
544 |
|
545 |
+
#: contextual-related-posts.php:322
|
546 |
msgid "Display Related Posts"
|
547 |
msgstr "Afficher les articles similaires"
|
548 |
|
549 |
+
#: contextual-related-posts.php:337
|
550 |
msgid "Title"
|
551 |
msgstr "Titre"
|
552 |
|
553 |
+
#: contextual-related-posts.php:342
|
554 |
msgid "No. of posts"
|
555 |
msgstr "Nombre d'articles"
|
556 |
|
557 |
+
#: contextual-related-posts.php:347
|
558 |
msgid " Show excerpt?"
|
559 |
msgstr " Voir l'extrait ?"
|
560 |
|
561 |
+
#: contextual-related-posts.php:352
|
562 |
msgid " Show author?"
|
563 |
msgstr " Afficher l'auteur ?"
|
564 |
|
565 |
+
#: contextual-related-posts.php:357
|
566 |
msgid " Show date?"
|
567 |
msgstr " Afficher la date ?"
|
568 |
|
569 |
+
#: contextual-related-posts.php:361
|
570 |
msgid "Thumbnail options"
|
571 |
msgstr "Options des vignettes"
|
572 |
|
573 |
+
#: contextual-related-posts.php:363
|
574 |
msgid "Thumbnails inline, before title"
|
575 |
msgstr "Vignettes en ligne, avant le titre"
|
576 |
|
577 |
+
#: contextual-related-posts.php:364
|
578 |
msgid "Thumbnails inline, after title"
|
579 |
msgstr "Vignettes en ligne, après le titre"
|
580 |
|
581 |
+
#: contextual-related-posts.php:365
|
582 |
msgid "Only thumbnails, no text"
|
583 |
msgstr "Seulement les vignettes, aucun texte."
|
584 |
|
585 |
+
#: contextual-related-posts.php:366
|
586 |
msgid "No thumbnails, only text."
|
587 |
msgstr "Aucunes vignettes, texte seulement."
|
588 |
|
589 |
+
#: contextual-related-posts.php:371
|
590 |
msgid "Thumbnail height"
|
591 |
msgstr "Hauteur de la vignette"
|
592 |
|
593 |
+
#: contextual-related-posts.php:376
|
594 |
msgid "Thumbnail width"
|
595 |
msgstr "Largeur de la vignette"
|
596 |
|
597 |
+
#: contextual-related-posts.php:472
|
598 |
msgid "<h3>Related Posts:</h3>"
|
599 |
msgstr "<h3>Articles similaires :</h3>"
|
600 |
|
601 |
+
#: contextual-related-posts.php:473
|
602 |
msgid "No related posts found"
|
603 |
msgstr "Aucun article similaire trouvé."
|
604 |
|
605 |
+
#: contextual-related-posts.php:817
|
606 |
msgid "Settings"
|
607 |
msgstr "Réglages"
|
608 |
|
609 |
+
#: contextual-related-posts.php:840
|
610 |
msgid "Donate"
|
611 |
msgstr "Faire un don"
|
612 |
|
languages/crp-it_IT.mo
CHANGED
Binary file
|
languages/crp-it_IT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
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"
|
@@ -61,7 +61,7 @@ msgstr "Il blog di Ajay"
|
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
65 |
msgid "Support"
|
66 |
msgstr "Supporto"
|
67 |
|
@@ -489,7 +489,7 @@ msgstr "Sei certo di volere ricreare l'indice?"
|
|
489 |
msgid "Contextual Related Posts"
|
490 |
msgstr "Contextual Related Posts"
|
491 |
|
492 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
493 |
msgid "Related Posts"
|
494 |
msgstr "Related Posts"
|
495 |
|
@@ -526,82 +526,82 @@ msgstr ""
|
|
526 |
msgid "Powered by"
|
527 |
msgstr "Powered by"
|
528 |
|
529 |
-
#: contextual-related-posts.php:
|
530 |
#, fuzzy
|
531 |
msgid "Display Related Posts"
|
532 |
msgstr "\"Nessun articolo correlato\""
|
533 |
|
534 |
-
#: contextual-related-posts.php:
|
535 |
msgid "Title"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: contextual-related-posts.php:
|
539 |
msgid "No. of posts"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: contextual-related-posts.php:
|
543 |
#, fuzzy
|
544 |
msgid " Show excerpt?"
|
545 |
msgstr "Desideri mostrare gli estratti?"
|
546 |
|
547 |
-
#: contextual-related-posts.php:
|
548 |
msgid " Show author?"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: contextual-related-posts.php:
|
552 |
#, fuzzy
|
553 |
msgid " Show date?"
|
554 |
msgstr "Desideri mostrare gli estratti?"
|
555 |
|
556 |
-
#: contextual-related-posts.php:
|
557 |
#, fuzzy
|
558 |
msgid "Thumbnail options"
|
559 |
msgstr "Opzioni miniature articolo:"
|
560 |
|
561 |
-
#: contextual-related-posts.php:
|
562 |
#, fuzzy
|
563 |
msgid "Thumbnails inline, before title"
|
564 |
msgstr "Mostra gli articoli con le miniature inline"
|
565 |
|
566 |
-
#: contextual-related-posts.php:
|
567 |
#, fuzzy
|
568 |
msgid "Thumbnails inline, after title"
|
569 |
msgstr "Mostra gli articoli con le miniature inline"
|
570 |
|
571 |
-
#: contextual-related-posts.php:
|
572 |
#, fuzzy
|
573 |
msgid "Only thumbnails, no text"
|
574 |
msgstr "Mostra le sole miniature, nessun testo"
|
575 |
|
576 |
-
#: contextual-related-posts.php:
|
577 |
#, fuzzy
|
578 |
msgid "No thumbnails, only text."
|
579 |
msgstr "Non mostrare le miniature, solo testo."
|
580 |
|
581 |
-
#: contextual-related-posts.php:
|
582 |
#, fuzzy
|
583 |
msgid "Thumbnail height"
|
584 |
msgstr "Opzioni miniature articolo:"
|
585 |
|
586 |
-
#: contextual-related-posts.php:
|
587 |
#, fuzzy
|
588 |
msgid "Thumbnail width"
|
589 |
msgstr "Opzioni miniature articolo:"
|
590 |
|
591 |
-
#: contextual-related-posts.php:
|
592 |
msgid "<h3>Related Posts:</h3>"
|
593 |
msgstr "<h3>Related Posts:</h3>"
|
594 |
|
595 |
-
#: contextual-related-posts.php:
|
596 |
#, fuzzy
|
597 |
msgid "No related posts found"
|
598 |
msgstr "Non é stato trovato alcun articolo correlato"
|
599 |
|
600 |
-
#: contextual-related-posts.php:
|
601 |
msgid "Settings"
|
602 |
msgstr "Impostazioni"
|
603 |
|
604 |
-
#: contextual-related-posts.php:
|
605 |
msgid "Donate"
|
606 |
msgstr "Donazioni"
|
607 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:44-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"
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
65 |
msgid "Support"
|
66 |
msgstr "Supporto"
|
67 |
|
489 |
msgid "Contextual Related Posts"
|
490 |
msgstr "Contextual Related Posts"
|
491 |
|
492 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
493 |
msgid "Related Posts"
|
494 |
msgstr "Related Posts"
|
495 |
|
526 |
msgid "Powered by"
|
527 |
msgstr "Powered by"
|
528 |
|
529 |
+
#: contextual-related-posts.php:322
|
530 |
#, fuzzy
|
531 |
msgid "Display Related Posts"
|
532 |
msgstr "\"Nessun articolo correlato\""
|
533 |
|
534 |
+
#: contextual-related-posts.php:337
|
535 |
msgid "Title"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: contextual-related-posts.php:342
|
539 |
msgid "No. of posts"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: contextual-related-posts.php:347
|
543 |
#, fuzzy
|
544 |
msgid " Show excerpt?"
|
545 |
msgstr "Desideri mostrare gli estratti?"
|
546 |
|
547 |
+
#: contextual-related-posts.php:352
|
548 |
msgid " Show author?"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: contextual-related-posts.php:357
|
552 |
#, fuzzy
|
553 |
msgid " Show date?"
|
554 |
msgstr "Desideri mostrare gli estratti?"
|
555 |
|
556 |
+
#: contextual-related-posts.php:361
|
557 |
#, fuzzy
|
558 |
msgid "Thumbnail options"
|
559 |
msgstr "Opzioni miniature articolo:"
|
560 |
|
561 |
+
#: contextual-related-posts.php:363
|
562 |
#, fuzzy
|
563 |
msgid "Thumbnails inline, before title"
|
564 |
msgstr "Mostra gli articoli con le miniature inline"
|
565 |
|
566 |
+
#: contextual-related-posts.php:364
|
567 |
#, fuzzy
|
568 |
msgid "Thumbnails inline, after title"
|
569 |
msgstr "Mostra gli articoli con le miniature inline"
|
570 |
|
571 |
+
#: contextual-related-posts.php:365
|
572 |
#, fuzzy
|
573 |
msgid "Only thumbnails, no text"
|
574 |
msgstr "Mostra le sole miniature, nessun testo"
|
575 |
|
576 |
+
#: contextual-related-posts.php:366
|
577 |
#, fuzzy
|
578 |
msgid "No thumbnails, only text."
|
579 |
msgstr "Non mostrare le miniature, solo testo."
|
580 |
|
581 |
+
#: contextual-related-posts.php:371
|
582 |
#, fuzzy
|
583 |
msgid "Thumbnail height"
|
584 |
msgstr "Opzioni miniature articolo:"
|
585 |
|
586 |
+
#: contextual-related-posts.php:376
|
587 |
#, fuzzy
|
588 |
msgid "Thumbnail width"
|
589 |
msgstr "Opzioni miniature articolo:"
|
590 |
|
591 |
+
#: contextual-related-posts.php:472
|
592 |
msgid "<h3>Related Posts:</h3>"
|
593 |
msgstr "<h3>Related Posts:</h3>"
|
594 |
|
595 |
+
#: contextual-related-posts.php:473
|
596 |
#, fuzzy
|
597 |
msgid "No related posts found"
|
598 |
msgstr "Non é stato trovato alcun articolo correlato"
|
599 |
|
600 |
+
#: contextual-related-posts.php:817
|
601 |
msgid "Settings"
|
602 |
msgstr "Impostazioni"
|
603 |
|
604 |
+
#: contextual-related-posts.php:840
|
605 |
msgid "Donate"
|
606 |
msgstr "Donazioni"
|
607 |
|
languages/crp-lt_LT.mo
CHANGED
Binary file
|
languages/crp-lt_LT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -59,7 +59,7 @@ msgstr "Ajay blogs"
|
|
59 |
msgid "FAQ"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
63 |
msgid "Support"
|
64 |
msgstr "atbalstīt"
|
65 |
|
@@ -467,7 +467,7 @@ msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
|
|
467 |
msgid "Contextual Related Posts"
|
468 |
msgstr "Konteksta Related Posts"
|
469 |
|
470 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
471 |
msgid "Related Posts"
|
472 |
msgstr "Related Posts"
|
473 |
|
@@ -503,72 +503,72 @@ msgstr ""
|
|
503 |
msgid "Powered by"
|
504 |
msgstr "Powered by"
|
505 |
|
506 |
-
#: contextual-related-posts.php:
|
507 |
msgid "Display Related Posts"
|
508 |
msgstr "Displeja Related Posts"
|
509 |
|
510 |
-
#: contextual-related-posts.php:
|
511 |
msgid "Title"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: contextual-related-posts.php:
|
515 |
msgid "No. of posts"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: contextual-related-posts.php:
|
519 |
msgid " Show excerpt?"
|
520 |
msgstr "Rādīt izvilkumu?"
|
521 |
|
522 |
-
#: contextual-related-posts.php:
|
523 |
msgid " Show author?"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: contextual-related-posts.php:
|
527 |
#, fuzzy
|
528 |
msgid " Show date?"
|
529 |
msgstr "Rādīt izvilkumu?"
|
530 |
|
531 |
-
#: contextual-related-posts.php:
|
532 |
msgid "Thumbnail options"
|
533 |
msgstr "sīktēlu iespējas"
|
534 |
|
535 |
-
#: contextual-related-posts.php:
|
536 |
msgid "Thumbnails inline, before title"
|
537 |
msgstr "Sīktēli inline, pirms virsraksta"
|
538 |
|
539 |
-
#: contextual-related-posts.php:
|
540 |
msgid "Thumbnails inline, after title"
|
541 |
msgstr "Sīktēli inline, pēc nosaukuma"
|
542 |
|
543 |
-
#: contextual-related-posts.php:
|
544 |
msgid "Only thumbnails, no text"
|
545 |
msgstr "Tikai sīktēlus, bez teksta"
|
546 |
|
547 |
-
#: contextual-related-posts.php:
|
548 |
msgid "No thumbnails, only text."
|
549 |
msgstr "Nav sīktēlus, tikai tekstu."
|
550 |
|
551 |
-
#: contextual-related-posts.php:
|
552 |
msgid "Thumbnail height"
|
553 |
msgstr "sīktēls augstums"
|
554 |
|
555 |
-
#: contextual-related-posts.php:
|
556 |
msgid "Thumbnail width"
|
557 |
msgstr "Thumbnail platums"
|
558 |
|
559 |
-
#: contextual-related-posts.php:
|
560 |
msgid "<h3>Related Posts:</h3>"
|
561 |
msgstr "<h3>saistīta posts:</h3>"
|
562 |
|
563 |
-
#: contextual-related-posts.php:
|
564 |
msgid "No related posts found"
|
565 |
msgstr "Nr saistītus amatus atrasts"
|
566 |
|
567 |
-
#: contextual-related-posts.php:
|
568 |
msgid "Settings"
|
569 |
msgstr "iestatījumi"
|
570 |
|
571 |
-
#: contextual-related-posts.php:
|
572 |
msgid "Donate"
|
573 |
msgstr "ziedot"
|
574 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:45-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
59 |
msgid "FAQ"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
63 |
msgid "Support"
|
64 |
msgstr "atbalstīt"
|
65 |
|
467 |
msgid "Contextual Related Posts"
|
468 |
msgstr "Konteksta Related Posts"
|
469 |
|
470 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
471 |
msgid "Related Posts"
|
472 |
msgstr "Related Posts"
|
473 |
|
503 |
msgid "Powered by"
|
504 |
msgstr "Powered by"
|
505 |
|
506 |
+
#: contextual-related-posts.php:322
|
507 |
msgid "Display Related Posts"
|
508 |
msgstr "Displeja Related Posts"
|
509 |
|
510 |
+
#: contextual-related-posts.php:337
|
511 |
msgid "Title"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: contextual-related-posts.php:342
|
515 |
msgid "No. of posts"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: contextual-related-posts.php:347
|
519 |
msgid " Show excerpt?"
|
520 |
msgstr "Rādīt izvilkumu?"
|
521 |
|
522 |
+
#: contextual-related-posts.php:352
|
523 |
msgid " Show author?"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: contextual-related-posts.php:357
|
527 |
#, fuzzy
|
528 |
msgid " Show date?"
|
529 |
msgstr "Rādīt izvilkumu?"
|
530 |
|
531 |
+
#: contextual-related-posts.php:361
|
532 |
msgid "Thumbnail options"
|
533 |
msgstr "sīktēlu iespējas"
|
534 |
|
535 |
+
#: contextual-related-posts.php:363
|
536 |
msgid "Thumbnails inline, before title"
|
537 |
msgstr "Sīktēli inline, pirms virsraksta"
|
538 |
|
539 |
+
#: contextual-related-posts.php:364
|
540 |
msgid "Thumbnails inline, after title"
|
541 |
msgstr "Sīktēli inline, pēc nosaukuma"
|
542 |
|
543 |
+
#: contextual-related-posts.php:365
|
544 |
msgid "Only thumbnails, no text"
|
545 |
msgstr "Tikai sīktēlus, bez teksta"
|
546 |
|
547 |
+
#: contextual-related-posts.php:366
|
548 |
msgid "No thumbnails, only text."
|
549 |
msgstr "Nav sīktēlus, tikai tekstu."
|
550 |
|
551 |
+
#: contextual-related-posts.php:371
|
552 |
msgid "Thumbnail height"
|
553 |
msgstr "sīktēls augstums"
|
554 |
|
555 |
+
#: contextual-related-posts.php:376
|
556 |
msgid "Thumbnail width"
|
557 |
msgstr "Thumbnail platums"
|
558 |
|
559 |
+
#: contextual-related-posts.php:472
|
560 |
msgid "<h3>Related Posts:</h3>"
|
561 |
msgstr "<h3>saistīta posts:</h3>"
|
562 |
|
563 |
+
#: contextual-related-posts.php:473
|
564 |
msgid "No related posts found"
|
565 |
msgstr "Nr saistītus amatus atrasts"
|
566 |
|
567 |
+
#: contextual-related-posts.php:817
|
568 |
msgid "Settings"
|
569 |
msgstr "iestatījumi"
|
570 |
|
571 |
+
#: contextual-related-posts.php:840
|
572 |
msgid "Donate"
|
573 |
msgstr "ziedot"
|
574 |
|
languages/crp-nl_NL.mo
CHANGED
Binary file
|
languages/crp-nl_NL.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
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"
|
@@ -63,7 +63,7 @@ msgstr "Ajay's blog"
|
|
63 |
msgid "FAQ"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
67 |
msgid "Support"
|
68 |
msgstr "Ondersteuning"
|
69 |
|
@@ -490,7 +490,7 @@ msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
|
|
490 |
msgid "Contextual Related Posts"
|
491 |
msgstr "Contextual Related Posts"
|
492 |
|
493 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
494 |
msgid "Related Posts"
|
495 |
msgstr "Gerelateerde Berichten"
|
496 |
|
@@ -527,82 +527,82 @@ msgstr ""
|
|
527 |
msgid "Powered by"
|
528 |
msgstr "Powered by"
|
529 |
|
530 |
-
#: contextual-related-posts.php:
|
531 |
#, fuzzy
|
532 |
msgid "Display Related Posts"
|
533 |
msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
534 |
|
535 |
-
#: contextual-related-posts.php:
|
536 |
msgid "Title"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: contextual-related-posts.php:
|
540 |
msgid "No. of posts"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: contextual-related-posts.php:
|
544 |
#, fuzzy
|
545 |
msgid " Show excerpt?"
|
546 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
547 |
|
548 |
-
#: contextual-related-posts.php:
|
549 |
msgid " Show author?"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: contextual-related-posts.php:
|
553 |
#, fuzzy
|
554 |
msgid " Show date?"
|
555 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
556 |
|
557 |
-
#: contextual-related-posts.php:
|
558 |
#, fuzzy
|
559 |
msgid "Thumbnail options"
|
560 |
msgstr "Berichtopties miniatuurafbeelding:"
|
561 |
|
562 |
-
#: contextual-related-posts.php:
|
563 |
#, fuzzy
|
564 |
msgid "Thumbnails inline, before title"
|
565 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
566 |
|
567 |
-
#: contextual-related-posts.php:
|
568 |
#, fuzzy
|
569 |
msgid "Thumbnails inline, after title"
|
570 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
571 |
|
572 |
-
#: contextual-related-posts.php:
|
573 |
#, fuzzy
|
574 |
msgid "Only thumbnails, no text"
|
575 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
576 |
|
577 |
-
#: contextual-related-posts.php:
|
578 |
#, fuzzy
|
579 |
msgid "No thumbnails, only text."
|
580 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
581 |
|
582 |
-
#: contextual-related-posts.php:
|
583 |
#, fuzzy
|
584 |
msgid "Thumbnail height"
|
585 |
msgstr "Berichtopties miniatuurafbeelding:"
|
586 |
|
587 |
-
#: contextual-related-posts.php:
|
588 |
#, fuzzy
|
589 |
msgid "Thumbnail width"
|
590 |
msgstr "Berichtopties miniatuurafbeelding:"
|
591 |
|
592 |
-
#: contextual-related-posts.php:
|
593 |
msgid "<h3>Related Posts:</h3>"
|
594 |
msgstr "<h3>Gerelateerde Berichten:</h3>"
|
595 |
|
596 |
-
#: contextual-related-posts.php:
|
597 |
#, fuzzy
|
598 |
msgid "No related posts found"
|
599 |
msgstr "Geen gerelateerde berichten gevonden"
|
600 |
|
601 |
-
#: contextual-related-posts.php:
|
602 |
msgid "Settings"
|
603 |
msgstr "Instellingen"
|
604 |
|
605 |
-
#: contextual-related-posts.php:
|
606 |
msgid "Donate"
|
607 |
msgstr "Doneren"
|
608 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:45-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"
|
63 |
msgid "FAQ"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
67 |
msgid "Support"
|
68 |
msgstr "Ondersteuning"
|
69 |
|
490 |
msgid "Contextual Related Posts"
|
491 |
msgstr "Contextual Related Posts"
|
492 |
|
493 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
494 |
msgid "Related Posts"
|
495 |
msgstr "Gerelateerde Berichten"
|
496 |
|
527 |
msgid "Powered by"
|
528 |
msgstr "Powered by"
|
529 |
|
530 |
+
#: contextual-related-posts.php:322
|
531 |
#, fuzzy
|
532 |
msgid "Display Related Posts"
|
533 |
msgstr "Weergave \"Geen Gerelateerde Berichten\""
|
534 |
|
535 |
+
#: contextual-related-posts.php:337
|
536 |
msgid "Title"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: contextual-related-posts.php:342
|
540 |
msgid "No. of posts"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: contextual-related-posts.php:347
|
544 |
#, fuzzy
|
545 |
msgid " Show excerpt?"
|
546 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
547 |
|
548 |
+
#: contextual-related-posts.php:352
|
549 |
msgid " Show author?"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: contextual-related-posts.php:357
|
553 |
#, fuzzy
|
554 |
msgid " Show date?"
|
555 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
556 |
|
557 |
+
#: contextual-related-posts.php:361
|
558 |
#, fuzzy
|
559 |
msgid "Thumbnail options"
|
560 |
msgstr "Berichtopties miniatuurafbeelding:"
|
561 |
|
562 |
+
#: contextual-related-posts.php:363
|
563 |
#, fuzzy
|
564 |
msgid "Thumbnails inline, before title"
|
565 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
566 |
|
567 |
+
#: contextual-related-posts.php:364
|
568 |
#, fuzzy
|
569 |
msgid "Thumbnails inline, after title"
|
570 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
571 |
|
572 |
+
#: contextual-related-posts.php:365
|
573 |
#, fuzzy
|
574 |
msgid "Only thumbnails, no text"
|
575 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
576 |
|
577 |
+
#: contextual-related-posts.php:366
|
578 |
#, fuzzy
|
579 |
msgid "No thumbnails, only text."
|
580 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
581 |
|
582 |
+
#: contextual-related-posts.php:371
|
583 |
#, fuzzy
|
584 |
msgid "Thumbnail height"
|
585 |
msgstr "Berichtopties miniatuurafbeelding:"
|
586 |
|
587 |
+
#: contextual-related-posts.php:376
|
588 |
#, fuzzy
|
589 |
msgid "Thumbnail width"
|
590 |
msgstr "Berichtopties miniatuurafbeelding:"
|
591 |
|
592 |
+
#: contextual-related-posts.php:472
|
593 |
msgid "<h3>Related Posts:</h3>"
|
594 |
msgstr "<h3>Gerelateerde Berichten:</h3>"
|
595 |
|
596 |
+
#: contextual-related-posts.php:473
|
597 |
#, fuzzy
|
598 |
msgid "No related posts found"
|
599 |
msgstr "Geen gerelateerde berichten gevonden"
|
600 |
|
601 |
+
#: contextual-related-posts.php:817
|
602 |
msgid "Settings"
|
603 |
msgstr "Instellingen"
|
604 |
|
605 |
+
#: contextual-related-posts.php:840
|
606 |
msgid "Donate"
|
607 |
msgstr "Doneren"
|
608 |
|
languages/crp-ru_RU.mo
CHANGED
Binary file
|
languages/crp-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -61,7 +61,7 @@ msgstr "Блог автора (Ajay, английский язык)"
|
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
65 |
msgid "Support"
|
66 |
msgstr "Поддержка"
|
67 |
|
@@ -486,7 +486,7 @@ msgstr "Вы уверены, что хотите воссоздать индек
|
|
486 |
msgid "Contextual Related Posts"
|
487 |
msgstr "Контекстные похожие посты"
|
488 |
|
489 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
490 |
msgid "Related Posts"
|
491 |
msgstr "Похожие посты"
|
492 |
|
@@ -523,82 +523,82 @@ msgstr ""
|
|
523 |
msgid "Powered by"
|
524 |
msgstr "Автор:"
|
525 |
|
526 |
-
#: contextual-related-posts.php:
|
527 |
#, fuzzy
|
528 |
msgid "Display Related Posts"
|
529 |
msgstr "Показывать \"Нет похожих постов\""
|
530 |
|
531 |
-
#: contextual-related-posts.php:
|
532 |
msgid "Title"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: contextual-related-posts.php:
|
536 |
msgid "No. of posts"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: contextual-related-posts.php:
|
540 |
#, fuzzy
|
541 |
msgid " Show excerpt?"
|
542 |
msgstr "Показать выдержки из поста в списке?"
|
543 |
|
544 |
-
#: contextual-related-posts.php:
|
545 |
msgid " Show author?"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: contextual-related-posts.php:
|
549 |
#, fuzzy
|
550 |
msgid " Show date?"
|
551 |
msgstr "Показать выдержки из поста в списке?"
|
552 |
|
553 |
-
#: contextual-related-posts.php:
|
554 |
#, fuzzy
|
555 |
msgid "Thumbnail options"
|
556 |
msgstr "Опции изображения поста:"
|
557 |
|
558 |
-
#: contextual-related-posts.php:
|
559 |
#, fuzzy
|
560 |
msgid "Thumbnails inline, before title"
|
561 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
562 |
|
563 |
-
#: contextual-related-posts.php:
|
564 |
#, fuzzy
|
565 |
msgid "Thumbnails inline, after title"
|
566 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
567 |
|
568 |
-
#: contextual-related-posts.php:
|
569 |
#, fuzzy
|
570 |
msgid "Only thumbnails, no text"
|
571 |
msgstr "Показывать только изображения, без текста"
|
572 |
|
573 |
-
#: contextual-related-posts.php:
|
574 |
#, fuzzy
|
575 |
msgid "No thumbnails, only text."
|
576 |
msgstr "Не показывать изображения, только текст"
|
577 |
|
578 |
-
#: contextual-related-posts.php:
|
579 |
#, fuzzy
|
580 |
msgid "Thumbnail height"
|
581 |
msgstr "Опции изображения поста:"
|
582 |
|
583 |
-
#: contextual-related-posts.php:
|
584 |
#, fuzzy
|
585 |
msgid "Thumbnail width"
|
586 |
msgstr "Опции изображения поста:"
|
587 |
|
588 |
-
#: contextual-related-posts.php:
|
589 |
msgid "<h3>Related Posts:</h3>"
|
590 |
msgstr "<h3>Похожие посты:</h3>"
|
591 |
|
592 |
-
#: contextual-related-posts.php:
|
593 |
#, fuzzy
|
594 |
msgid "No related posts found"
|
595 |
msgstr "Не найдены похожие посты"
|
596 |
|
597 |
-
#: contextual-related-posts.php:
|
598 |
msgid "Settings"
|
599 |
msgstr "Настройки"
|
600 |
|
601 |
-
#: contextual-related-posts.php:
|
602 |
msgid "Donate"
|
603 |
msgstr "Пожертвование"
|
604 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:45-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
65 |
msgid "Support"
|
66 |
msgstr "Поддержка"
|
67 |
|
486 |
msgid "Contextual Related Posts"
|
487 |
msgstr "Контекстные похожие посты"
|
488 |
|
489 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
490 |
msgid "Related Posts"
|
491 |
msgstr "Похожие посты"
|
492 |
|
523 |
msgid "Powered by"
|
524 |
msgstr "Автор:"
|
525 |
|
526 |
+
#: contextual-related-posts.php:322
|
527 |
#, fuzzy
|
528 |
msgid "Display Related Posts"
|
529 |
msgstr "Показывать \"Нет похожих постов\""
|
530 |
|
531 |
+
#: contextual-related-posts.php:337
|
532 |
msgid "Title"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: contextual-related-posts.php:342
|
536 |
msgid "No. of posts"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: contextual-related-posts.php:347
|
540 |
#, fuzzy
|
541 |
msgid " Show excerpt?"
|
542 |
msgstr "Показать выдержки из поста в списке?"
|
543 |
|
544 |
+
#: contextual-related-posts.php:352
|
545 |
msgid " Show author?"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: contextual-related-posts.php:357
|
549 |
#, fuzzy
|
550 |
msgid " Show date?"
|
551 |
msgstr "Показать выдержки из поста в списке?"
|
552 |
|
553 |
+
#: contextual-related-posts.php:361
|
554 |
#, fuzzy
|
555 |
msgid "Thumbnail options"
|
556 |
msgstr "Опции изображения поста:"
|
557 |
|
558 |
+
#: contextual-related-posts.php:363
|
559 |
#, fuzzy
|
560 |
msgid "Thumbnails inline, before title"
|
561 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
562 |
|
563 |
+
#: contextual-related-posts.php:364
|
564 |
#, fuzzy
|
565 |
msgid "Thumbnails inline, after title"
|
566 |
msgstr "Показать эскизы в соответствии с сообщениями"
|
567 |
|
568 |
+
#: contextual-related-posts.php:365
|
569 |
#, fuzzy
|
570 |
msgid "Only thumbnails, no text"
|
571 |
msgstr "Показывать только изображения, без текста"
|
572 |
|
573 |
+
#: contextual-related-posts.php:366
|
574 |
#, fuzzy
|
575 |
msgid "No thumbnails, only text."
|
576 |
msgstr "Не показывать изображения, только текст"
|
577 |
|
578 |
+
#: contextual-related-posts.php:371
|
579 |
#, fuzzy
|
580 |
msgid "Thumbnail height"
|
581 |
msgstr "Опции изображения поста:"
|
582 |
|
583 |
+
#: contextual-related-posts.php:376
|
584 |
#, fuzzy
|
585 |
msgid "Thumbnail width"
|
586 |
msgstr "Опции изображения поста:"
|
587 |
|
588 |
+
#: contextual-related-posts.php:472
|
589 |
msgid "<h3>Related Posts:</h3>"
|
590 |
msgstr "<h3>Похожие посты:</h3>"
|
591 |
|
592 |
+
#: contextual-related-posts.php:473
|
593 |
#, fuzzy
|
594 |
msgid "No related posts found"
|
595 |
msgstr "Не найдены похожие посты"
|
596 |
|
597 |
+
#: contextual-related-posts.php:817
|
598 |
msgid "Settings"
|
599 |
msgstr "Настройки"
|
600 |
|
601 |
+
#: contextual-related-posts.php:840
|
602 |
msgid "Donate"
|
603 |
msgstr "Пожертвование"
|
604 |
|
languages/crp-zh_CN.mo
CHANGED
Binary file
|
languages/crp-zh_CN.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2013-11-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -61,7 +61,7 @@ msgstr "Ajay 的博客"
|
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin.inc.php:181 contextual-related-posts.php:
|
65 |
msgid "Support"
|
66 |
msgstr "技术支持"
|
67 |
|
@@ -475,7 +475,7 @@ msgstr "是否要重建索引?"
|
|
475 |
msgid "Contextual Related Posts"
|
476 |
msgstr "Contextual Related Posts"
|
477 |
|
478 |
-
#: admin.inc.php:493 contextual-related-posts.php:
|
479 |
msgid "Related Posts"
|
480 |
msgstr "相关日志"
|
481 |
|
@@ -511,75 +511,75 @@ msgstr ""
|
|
511 |
msgid "Powered by"
|
512 |
msgstr "插件作者:"
|
513 |
|
514 |
-
#: contextual-related-posts.php:
|
515 |
msgid "Display Related Posts"
|
516 |
msgstr "显示相关日志"
|
517 |
|
518 |
-
#: contextual-related-posts.php:
|
519 |
msgid "Title"
|
520 |
msgstr "标题"
|
521 |
|
522 |
-
#: contextual-related-posts.php:
|
523 |
msgid "No. of posts"
|
524 |
msgstr "日志数量"
|
525 |
|
526 |
-
#: contextual-related-posts.php:
|
527 |
msgid " Show excerpt?"
|
528 |
msgstr "是否显示日志摘要?"
|
529 |
|
530 |
-
#: contextual-related-posts.php:
|
531 |
msgid " Show author?"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: contextual-related-posts.php:
|
535 |
#, fuzzy
|
536 |
msgid " Show date?"
|
537 |
msgstr "是否显示日志摘要?"
|
538 |
|
539 |
-
#: contextual-related-posts.php:
|
540 |
msgid "Thumbnail options"
|
541 |
msgstr "缩略图设置:"
|
542 |
|
543 |
-
#: contextual-related-posts.php:
|
544 |
msgid "Thumbnails inline, before title"
|
545 |
msgstr "在标题前显示缩略图"
|
546 |
|
547 |
-
#: contextual-related-posts.php:
|
548 |
msgid "Thumbnails inline, after title"
|
549 |
msgstr "在标题后显示缩略图"
|
550 |
|
551 |
-
#: contextual-related-posts.php:
|
552 |
msgid "Only thumbnails, no text"
|
553 |
msgstr "不显示文本,只显示缩略图"
|
554 |
|
555 |
-
#: contextual-related-posts.php:
|
556 |
msgid "No thumbnails, only text."
|
557 |
msgstr "不显示缩略图,只显示文本"
|
558 |
|
559 |
-
#: contextual-related-posts.php:
|
560 |
#, fuzzy
|
561 |
msgid "Thumbnail height"
|
562 |
msgstr "缩略图设置:"
|
563 |
|
564 |
-
#: contextual-related-posts.php:
|
565 |
#, fuzzy
|
566 |
msgid "Thumbnail width"
|
567 |
msgstr "缩略图设置:"
|
568 |
|
569 |
-
#: contextual-related-posts.php:
|
570 |
msgid "<h3>Related Posts:</h3>"
|
571 |
msgstr "<h3>相关日志:</h3>"
|
572 |
|
573 |
-
#: contextual-related-posts.php:
|
574 |
#, fuzzy
|
575 |
msgid "No related posts found"
|
576 |
msgstr "没有发现相关日志"
|
577 |
|
578 |
-
#: contextual-related-posts.php:
|
579 |
msgid "Settings"
|
580 |
msgstr "设置"
|
581 |
|
582 |
-
#: contextual-related-posts.php:
|
583 |
msgid "Donate"
|
584 |
msgstr "捐赠"
|
585 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2013-11-20 23:45-0000\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
61 |
msgid "FAQ"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin.inc.php:181 contextual-related-posts.php:839
|
65 |
msgid "Support"
|
66 |
msgstr "技术支持"
|
67 |
|
475 |
msgid "Contextual Related Posts"
|
476 |
msgstr "Contextual Related Posts"
|
477 |
|
478 |
+
#: admin.inc.php:493 contextual-related-posts.php:323
|
479 |
msgid "Related Posts"
|
480 |
msgstr "相关日志"
|
481 |
|
511 |
msgid "Powered by"
|
512 |
msgstr "插件作者:"
|
513 |
|
514 |
+
#: contextual-related-posts.php:322
|
515 |
msgid "Display Related Posts"
|
516 |
msgstr "显示相关日志"
|
517 |
|
518 |
+
#: contextual-related-posts.php:337
|
519 |
msgid "Title"
|
520 |
msgstr "标题"
|
521 |
|
522 |
+
#: contextual-related-posts.php:342
|
523 |
msgid "No. of posts"
|
524 |
msgstr "日志数量"
|
525 |
|
526 |
+
#: contextual-related-posts.php:347
|
527 |
msgid " Show excerpt?"
|
528 |
msgstr "是否显示日志摘要?"
|
529 |
|
530 |
+
#: contextual-related-posts.php:352
|
531 |
msgid " Show author?"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: contextual-related-posts.php:357
|
535 |
#, fuzzy
|
536 |
msgid " Show date?"
|
537 |
msgstr "是否显示日志摘要?"
|
538 |
|
539 |
+
#: contextual-related-posts.php:361
|
540 |
msgid "Thumbnail options"
|
541 |
msgstr "缩略图设置:"
|
542 |
|
543 |
+
#: contextual-related-posts.php:363
|
544 |
msgid "Thumbnails inline, before title"
|
545 |
msgstr "在标题前显示缩略图"
|
546 |
|
547 |
+
#: contextual-related-posts.php:364
|
548 |
msgid "Thumbnails inline, after title"
|
549 |
msgstr "在标题后显示缩略图"
|
550 |
|
551 |
+
#: contextual-related-posts.php:365
|
552 |
msgid "Only thumbnails, no text"
|
553 |
msgstr "不显示文本,只显示缩略图"
|
554 |
|
555 |
+
#: contextual-related-posts.php:366
|
556 |
msgid "No thumbnails, only text."
|
557 |
msgstr "不显示缩略图,只显示文本"
|
558 |
|
559 |
+
#: contextual-related-posts.php:371
|
560 |
#, fuzzy
|
561 |
msgid "Thumbnail height"
|
562 |
msgstr "缩略图设置:"
|
563 |
|
564 |
+
#: contextual-related-posts.php:376
|
565 |
#, fuzzy
|
566 |
msgid "Thumbnail width"
|
567 |
msgstr "缩略图设置:"
|
568 |
|
569 |
+
#: contextual-related-posts.php:472
|
570 |
msgid "<h3>Related Posts:</h3>"
|
571 |
msgstr "<h3>相关日志:</h3>"
|
572 |
|
573 |
+
#: contextual-related-posts.php:473
|
574 |
#, fuzzy
|
575 |
msgid "No related posts found"
|
576 |
msgstr "没有发现相关日志"
|
577 |
|
578 |
+
#: contextual-related-posts.php:817
|
579 |
msgid "Settings"
|
580 |
msgstr "设置"
|
581 |
|
582 |
+
#: contextual-related-posts.php:840
|
583 |
msgid "Donate"
|
584 |
msgstr "捐赠"
|
585 |
|
readme.txt
CHANGED
@@ -45,16 +45,17 @@ If you have been using this plugin and find this useful, do consider making a do
|
|
45 |
|
46 |
== Upgrade Notice ==
|
47 |
|
48 |
-
= 1.8.10.
|
49 |
-
*
|
50 |
-
Refer the Changelog for more information
|
51 |
|
52 |
-
= 1.8.10 =
|
53 |
-
* New features; Modified widget class to `crp_related_widget`; Updated timthumb; Modified format of author name that is displayed;
|
54 |
-
Refer the Changelog for more information
|
55 |
|
56 |
== Changelog ==
|
57 |
|
|
|
|
|
|
|
|
|
|
|
58 |
= 1.8.10.1 =
|
59 |
* Fixed: Manual install caused a PHP error in 1.8.10
|
60 |
|
45 |
|
46 |
== Upgrade Notice ==
|
47 |
|
48 |
+
= 1.8.10.2 =
|
49 |
+
* Minor performance improvements + a fix for potential SQL vulnerability
|
|
|
50 |
|
|
|
|
|
|
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 1.8.10.2 =
|
55 |
+
* Fixed: Potential SQL vulnerability - Thanks to <a href="http://www.flynsarmy.com/">flynsarmy</a> for highlighting this
|
56 |
+
* Modified: Minor performance improvements in initialisation of the widget
|
57 |
+
* Modified: Plugin now checks if it is within the loop when any option under "Add related posts to:" is selected. Minor performance increase to avoid the plugin being called unnecessarily in secondary loops.
|
58 |
+
|
59 |
= 1.8.10.1 =
|
60 |
* Fixed: Manual install caused a PHP error in 1.8.10
|
61 |
|