Version Description
- Fixed: Custom output was not detecting styles properly
- Fixed: Incorrect XHTML code was being generated when using special characters in the post title
Download this release
Release Info
Developer | Ajay |
Plugin | Contextual Related Posts |
Version | 1.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 1.6.1
- contextual-related-posts.php +3 -4
- languages/crp-da_DK.mo +0 -0
- languages/crp-da_DK.po +9 -18
- languages/crp-de_DE.mo +0 -0
- languages/crp-de_DE.po +237 -0
- languages/crp-en_US.mo +0 -0
- languages/crp-en_US.po +7 -7
- languages/crp-en_US.pot +7 -7
- languages/crp-it_IT.mo +0 -0
- languages/crp-it_IT.po +24 -28
- readme.txt +4 -0
contextual-related-posts.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Contextual Related Posts
|
4 |
-
Version: 1.6
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
|
6 |
Description: Show user defined number of contextually related posts. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>. <a href="options-general.php?page=crp_options">Configure...</a>
|
7 |
Author: Ajay D'Souza
|
@@ -85,7 +85,7 @@ function ald_crp() {
|
|
85 |
foreach($searches as $search) {
|
86 |
$categorys = get_the_category($search->ID); //Fetch categories of the plugin
|
87 |
$p_in_c = false; // Variable to check if post exists in a particular category
|
88 |
-
$title =
|
89 |
foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
|
90 |
$p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
|
91 |
if ($p_in_c) break; // End loop if post found in category
|
@@ -129,10 +129,9 @@ function ald_crp() {
|
|
129 |
}
|
130 |
$output .= $crp_settings['after_list'];
|
131 |
}else{
|
132 |
-
$output = '<div id="crp_related">';
|
133 |
$output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.__('No related posts found',CRP_LOCAL_NAME).'</p>';
|
134 |
}
|
135 |
-
if ((strpos($output, '
|
136 |
$output = '<div id="crp_related">';
|
137 |
$output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.__('No related posts found',CRP_LOCAL_NAME).'</p>';
|
138 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Contextual Related Posts
|
4 |
+
Version: 1.6.1
|
5 |
Plugin URI: http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/
|
6 |
Description: Show user defined number of contextually related posts. Based on the plugin by <a href="http://weblogtoolscollection.com">Mark Ghosh</a>. <a href="options-general.php?page=crp_options">Configure...</a>
|
7 |
Author: Ajay D'Souza
|
85 |
foreach($searches as $search) {
|
86 |
$categorys = get_the_category($search->ID); //Fetch categories of the plugin
|
87 |
$p_in_c = false; // Variable to check if post exists in a particular category
|
88 |
+
$title = get_the_title($search->ID);
|
89 |
foreach ($categorys as $cat) { // Loop to check if post exists in excluded category
|
90 |
$p_in_c = (in_array($cat->cat_ID, $exclude_categories)) ? true : false;
|
91 |
if ($p_in_c) break; // End loop if post found in category
|
129 |
}
|
130 |
$output .= $crp_settings['after_list'];
|
131 |
}else{
|
|
|
132 |
$output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.__('No related posts found',CRP_LOCAL_NAME).'</p>';
|
133 |
}
|
134 |
+
if ((strpos($output, $crp_settings['before_list_item'])) === false) {
|
135 |
$output = '<div id="crp_related">';
|
136 |
$output .= ($crp_settings['blank_output']) ? ' ' : '<p>'.__('No related posts found',CRP_LOCAL_NAME).'</p>';
|
137 |
}
|
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: 2010-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
@@ -14,8 +14,8 @@ msgstr ""
|
|
14 |
"X-Poedit-Country: DENMARK\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;_nc:1,2;_n_noop:1,2\n"
|
17 |
-
"X-Poedit-Basepath:
|
18 |
-
"X-Poedit-SearchPath-0:
|
19 |
|
20 |
#: admin.inc.php:50
|
21 |
msgid "Options saved successfully."
|
@@ -221,33 +221,24 @@ msgstr "Related Posts (Lignende indlæg)"
|
|
221 |
msgid "Powered by"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: contextual-related-posts.php:
|
225 |
-
#: contextual-related-posts.php:
|
226 |
msgid "No related posts found"
|
227 |
msgstr "Ingen lignende indlæg fundet"
|
228 |
|
229 |
-
#: contextual-related-posts.php:
|
230 |
msgid "<h3>Related Posts:</h3>"
|
231 |
msgstr "<h3>Lignende indlæg:</h3>"
|
232 |
|
233 |
-
#: contextual-related-posts.php:
|
234 |
msgid "Settings"
|
235 |
msgstr "Opsætning"
|
236 |
|
237 |
-
#: contextual-related-posts.php:
|
238 |
msgid "Support"
|
239 |
msgstr "Support"
|
240 |
|
241 |
-
#: contextual-related-posts.php:
|
242 |
msgid "Donate"
|
243 |
msgstr "Donation"
|
244 |
|
245 |
-
#~ msgid "If you find "
|
246 |
-
#~ msgstr "Hvis du finder "
|
247 |
-
#~ msgid "useful, please do"
|
248 |
-
#~ msgstr "brugbar, så venligst"
|
249 |
-
#~ msgid "drop in your contribution"
|
250 |
-
#~ msgstr "giv et bidrag"
|
251 |
-
#~ msgid "Some reasons why you should."
|
252 |
-
#~ msgstr "Nogle grunde til, du skulle gøre det."
|
253 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts 1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-02-06 18:36+0530\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"
|
14 |
"X-Poedit-Country: DENMARK\n"
|
15 |
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_c;_e;__ngettext:1,2;__ngettext_noop:1,2;_n:1,2;_nc:1,2;_n_noop:1,2\n"
|
17 |
+
"X-Poedit-Basepath: ../\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: admin.inc.php:50
|
21 |
msgid "Options saved successfully."
|
221 |
msgid "Powered by"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: contextual-related-posts.php:132
|
225 |
+
#: contextual-related-posts.php:136
|
226 |
msgid "No related posts found"
|
227 |
msgstr "Ingen lignende indlæg fundet"
|
228 |
|
229 |
+
#: contextual-related-posts.php:169
|
230 |
msgid "<h3>Related Posts:</h3>"
|
231 |
msgstr "<h3>Lignende indlæg:</h3>"
|
232 |
|
233 |
+
#: contextual-related-posts.php:267
|
234 |
msgid "Settings"
|
235 |
msgstr "Opsætning"
|
236 |
|
237 |
+
#: contextual-related-posts.php:268
|
238 |
msgid "Support"
|
239 |
msgstr "Support"
|
240 |
|
241 |
+
#: contextual-related-posts.php:269
|
242 |
msgid "Donate"
|
243 |
msgstr "Donation"
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/crp-de_DE.mo
ADDED
Binary file
|
languages/crp-de_DE.po
ADDED
@@ -0,0 +1,237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-02-06 18:35+0530\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
+
"Language-Team: <me@ajaydsouza.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: English\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;_c;__ngettext\n"
|
14 |
+
"X-Poedit-Basepath: ../\n"
|
15 |
+
"X-Poedit-SearchPath-0: .\n"
|
16 |
+
|
17 |
+
#: admin.inc.php:50
|
18 |
+
msgid "Options saved successfully."
|
19 |
+
msgstr "Optionen gespeichert."
|
20 |
+
|
21 |
+
#: admin.inc.php:59
|
22 |
+
msgid "Options set to Default."
|
23 |
+
msgstr "Optionen auf die Voreinstellungen zurückgesetzt."
|
24 |
+
|
25 |
+
#: admin.inc.php:74
|
26 |
+
msgid "Index recreated"
|
27 |
+
msgstr "Index aufgefrischt"
|
28 |
+
|
29 |
+
#: admin.inc.php:86
|
30 |
+
msgid "Options:"
|
31 |
+
msgstr "Optionen:"
|
32 |
+
|
33 |
+
#: admin.inc.php:91
|
34 |
+
msgid "Number of related posts to display: "
|
35 |
+
msgstr "Maximale Anzahl der angezeigten ähnlichen Beiträge: "
|
36 |
+
|
37 |
+
#: admin.inc.php:95
|
38 |
+
msgid "Exclude Categories: "
|
39 |
+
msgstr "Kategorien ausschließen: "
|
40 |
+
|
41 |
+
#: admin.inc.php:113
|
42 |
+
msgid "Add related posts to the post content on single posts. <br />If you choose to disable this, please add <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where you want it displayed"
|
43 |
+
msgstr "Ähnliche Beiträge am Ende jedes Einzelbeitrags auflisten.<br />Wenn Sie das deaktivieren wollen, fügen Sie <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code> in das Template ein, in dem die ähnlichen Beiträge aufgeliistet werden sollen"
|
44 |
+
|
45 |
+
#: admin.inc.php:119
|
46 |
+
msgid "Add related posts to pages. <br />If you choose to disable this, please add <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code> to your template file where you want it displayed"
|
47 |
+
msgstr "Ähnliche Beiträge auch in statischen Seiten auflisten.<br />Wenn Sie das deaktivieren wollen, fügen Sie <code><?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?></code> in das Template ein, in dem die ähnlichen Beiträge aufgeliistet werden sollen"
|
48 |
+
|
49 |
+
#: admin.inc.php:125
|
50 |
+
msgid "Add related posts to feed"
|
51 |
+
msgstr "Ähnliche Beiträge auch in die Feeds aufnehmen"
|
52 |
+
|
53 |
+
#: admin.inc.php:131
|
54 |
+
msgid "Find related posts based on content as well as title. If unchecked, only posts titles are used. (I recommend using a caching plugin if you enable this)"
|
55 |
+
msgstr "Ähnliche Beiträge sowohl im Beitragstitel als auch im Beitragsinhalt suchen. Bei Deaktivierung wird nur in den Beittragstiteln gesucht. (Im Falle der Aktivierung wird empfohlen, ein Cache-Plugin einzusetzen)"
|
56 |
+
|
57 |
+
#: admin.inc.php:137
|
58 |
+
msgid "Exclude Pages in Related Posts"
|
59 |
+
msgstr "Statische Seiten in ähnlichen Beiträgen ausschließen"
|
60 |
+
|
61 |
+
#: admin.inc.php:143
|
62 |
+
msgid "Append link to this plugin as item. Optional, but would be nice to give me some link love"
|
63 |
+
msgstr "Einen Link auf dieses Plugin an die Beitragsliste anhängen. Optional, aber es wäre nett, wenn Sie diesen Punkt aktivieren würden."
|
64 |
+
|
65 |
+
#: admin.inc.php:147
|
66 |
+
msgid "Output Options:"
|
67 |
+
msgstr "Ausgabeotionen:"
|
68 |
+
|
69 |
+
#: admin.inc.php:151
|
70 |
+
msgid "Title of related posts: "
|
71 |
+
msgstr "Überschrift über der Liste der ähnlichen Beiträge: "
|
72 |
+
|
73 |
+
#: admin.inc.php:155
|
74 |
+
msgid "When there are no posts, what should be shown?"
|
75 |
+
msgstr "Wenn keine ähnlichen Beiträge gefunden werden, was soll dann angezeigt werden?"
|
76 |
+
|
77 |
+
#: admin.inc.php:158
|
78 |
+
msgid "Blank Output"
|
79 |
+
msgstr "Nichts"
|
80 |
+
|
81 |
+
#: admin.inc.php:162
|
82 |
+
msgid "Display \"No Related Posts\""
|
83 |
+
msgstr "\"Keine ähnlichen Beiträge\" anzeigen"
|
84 |
+
|
85 |
+
#: admin.inc.php:168
|
86 |
+
msgid "Show post excerpt in list?"
|
87 |
+
msgstr "Auszug des Beitrags in der Liste anzeigen?"
|
88 |
+
|
89 |
+
#: admin.inc.php:173
|
90 |
+
msgid "Length of excerpt (in words): "
|
91 |
+
msgstr "Länge des Auszugs (in Worten): "
|
92 |
+
|
93 |
+
#: admin.inc.php:177
|
94 |
+
msgid "Customize the output:"
|
95 |
+
msgstr "Die Ausgabe anpassen:"
|
96 |
+
|
97 |
+
#: admin.inc.php:180
|
98 |
+
msgid "HTML to display before the list of posts: "
|
99 |
+
msgstr "HTML vor der Beitragsliste: "
|
100 |
+
|
101 |
+
#: admin.inc.php:186
|
102 |
+
msgid "HTML to display before each list item: "
|
103 |
+
msgstr "HTML vor jedem Listenelement: "
|
104 |
+
|
105 |
+
#: admin.inc.php:192
|
106 |
+
msgid "HTML to display after each list item: "
|
107 |
+
msgstr "HTML nach jedem Listenelement: "
|
108 |
+
|
109 |
+
#: admin.inc.php:198
|
110 |
+
msgid "HTML to display after the list of posts: "
|
111 |
+
msgstr "HTML nach der Beitragsliste: "
|
112 |
+
|
113 |
+
#: admin.inc.php:202
|
114 |
+
msgid "Post thumbnail options:"
|
115 |
+
msgstr "Optionen für die Beitrags-Thumbnails:"
|
116 |
+
|
117 |
+
#: admin.inc.php:206
|
118 |
+
msgid "Display thumbnails inline with posts"
|
119 |
+
msgstr "Thumbnails und Beitragstitel anzeigen"
|
120 |
+
|
121 |
+
#: admin.inc.php:210
|
122 |
+
msgid "Display only thumbnails, no text"
|
123 |
+
msgstr "Nur Thumbnails, keine Beitragstitel anzeigen"
|
124 |
+
|
125 |
+
#: admin.inc.php:214
|
126 |
+
msgid "Do not display thumbnails, only text."
|
127 |
+
msgstr "Keine Thumbnails, nur Beitragstitel anzeigen"
|
128 |
+
|
129 |
+
#: admin.inc.php:219
|
130 |
+
msgid "Post thumbnail meta field (the meta should point contain the image source): "
|
131 |
+
msgstr "Meta-Feld des Beitrags-Thumbnails (der Wert sollte auf das Bild zeigen): "
|
132 |
+
|
133 |
+
#: admin.inc.php:226
|
134 |
+
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
135 |
+
msgstr "Wenn 'Postmeta' nicht gesetzt ist, dann soll das Plugin das erste Bild aus dem jeweiligen Beitrag verwenden. Das kann allerdings das Laden des Beitrags verlangsamen, wenn die Bilddateien der ähnlichen Beiträge groß sind!"
|
136 |
+
|
137 |
+
#: admin.inc.php:229
|
138 |
+
msgid "Thumbnail dimensions:"
|
139 |
+
msgstr "Größe der Thumbnails:"
|
140 |
+
|
141 |
+
#: admin.inc.php:231
|
142 |
+
msgid "Max width: "
|
143 |
+
msgstr "Maximale Breite: "
|
144 |
+
|
145 |
+
#: admin.inc.php:236
|
146 |
+
msgid "Max height: "
|
147 |
+
msgstr "Maximale Höhe: "
|
148 |
+
|
149 |
+
#: admin.inc.php:240
|
150 |
+
msgid "The plugin will first check if the post contains a thumbnail. If it doesn't then it will check the meta field. If this is not available, then it will show the default image as specified below:"
|
151 |
+
msgstr "Das Plugin prüft zunächst, ob der Beitrag einen Thumbnail enthält. Wenn nicht, wird das Meta-Feld überprüft. Wenn auch dieses nicht vorhanden ist, wird das unten spezifizierte Default-Thumbnail angezeigt:"
|
152 |
+
|
153 |
+
#: admin.inc.php:245
|
154 |
+
msgid "Do you want to set options to Default?"
|
155 |
+
msgstr "Wollen Sie die Optionen auf die Voreinstellungen zurücksetzen?"
|
156 |
+
|
157 |
+
#: admin.inc.php:246
|
158 |
+
msgid "Are you sure you want to recreate the index?"
|
159 |
+
msgstr "Sind Sie sicher, einen neuen Index zu erzeugen?"
|
160 |
+
|
161 |
+
#: admin.inc.php:254
|
162 |
+
msgid "Quick links"
|
163 |
+
msgstr "Links"
|
164 |
+
|
165 |
+
#: admin.inc.php:256
|
166 |
+
msgid "Contextual Related Posts "
|
167 |
+
msgstr "Contextual Related Posts "
|
168 |
+
|
169 |
+
#: admin.inc.php:256
|
170 |
+
msgid "plugin page"
|
171 |
+
msgstr "Plugin-Seite"
|
172 |
+
|
173 |
+
#: admin.inc.php:257
|
174 |
+
msgid "Other plugins"
|
175 |
+
msgstr "Weitere Plugins"
|
176 |
+
|
177 |
+
#: admin.inc.php:258
|
178 |
+
msgid "Ajay's blog"
|
179 |
+
msgstr "Ajay's Blog"
|
180 |
+
|
181 |
+
#: admin.inc.php:259
|
182 |
+
msgid "Support forum"
|
183 |
+
msgstr "Support Forum"
|
184 |
+
|
185 |
+
#: admin.inc.php:260
|
186 |
+
msgid "Follow @ajaydsouza on Twitter"
|
187 |
+
msgstr "@ajaydsouza auf Twitter folgen"
|
188 |
+
|
189 |
+
#: admin.inc.php:264
|
190 |
+
msgid "Recent developments"
|
191 |
+
msgstr "Neueste Entwicklungen"
|
192 |
+
|
193 |
+
#: admin.inc.php:269
|
194 |
+
msgid "Support the development"
|
195 |
+
msgstr "Unterstützen Sie die Entwicklung"
|
196 |
+
|
197 |
+
#: admin.inc.php:277
|
198 |
+
msgid "Enter amount in USD: "
|
199 |
+
msgstr "Den Betrag in USD eingeben: "
|
200 |
+
|
201 |
+
#: admin.inc.php:281
|
202 |
+
msgid "Send your donation to the author of"
|
203 |
+
msgstr "Schicken Sie eine Spende an den Autor von"
|
204 |
+
|
205 |
+
#: admin.inc.php:309
|
206 |
+
msgid "Contextual Related Posts"
|
207 |
+
msgstr "Contextual Related Posts"
|
208 |
+
|
209 |
+
#: admin.inc.php:309
|
210 |
+
msgid "Related Posts"
|
211 |
+
msgstr "Related Posts"
|
212 |
+
|
213 |
+
#: contextual-related-posts.php:127
|
214 |
+
msgid "Powered by"
|
215 |
+
msgstr "Powered by"
|
216 |
+
|
217 |
+
#: contextual-related-posts.php:132
|
218 |
+
#: contextual-related-posts.php:136
|
219 |
+
msgid "No related posts found"
|
220 |
+
msgstr "Keine ähnlichen Beiträge gefunden"
|
221 |
+
|
222 |
+
#: contextual-related-posts.php:169
|
223 |
+
msgid "<h3>Related Posts:</h3>"
|
224 |
+
msgstr "<h3>Ähnliche Beiträge:</h3>"
|
225 |
+
|
226 |
+
#: contextual-related-posts.php:267
|
227 |
+
msgid "Settings"
|
228 |
+
msgstr "Einstellungen"
|
229 |
+
|
230 |
+
#: contextual-related-posts.php:268
|
231 |
+
msgid "Support"
|
232 |
+
msgstr "Support"
|
233 |
+
|
234 |
+
#: contextual-related-posts.php:269
|
235 |
+
msgid "Donate"
|
236 |
+
msgstr "Spenden"
|
237 |
+
|
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: 2010-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -214,24 +214,24 @@ msgstr ""
|
|
214 |
msgid "Powered by"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: contextual-related-posts.php:
|
218 |
-
#: contextual-related-posts.php:
|
219 |
msgid "No related posts found"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: contextual-related-posts.php:
|
223 |
msgid "<h3>Related Posts:</h3>"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: contextual-related-posts.php:
|
227 |
msgid "Settings"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: contextual-related-posts.php:
|
231 |
msgid "Support"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: contextual-related-posts.php:
|
235 |
msgid "Donate"
|
236 |
msgstr ""
|
237 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-02-06 18:34+0530\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
214 |
msgid "Powered by"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: contextual-related-posts.php:132
|
218 |
+
#: contextual-related-posts.php:136
|
219 |
msgid "No related posts found"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: contextual-related-posts.php:169
|
223 |
msgid "<h3>Related Posts:</h3>"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: contextual-related-posts.php:267
|
227 |
msgid "Settings"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: contextual-related-posts.php:268
|
231 |
msgid "Support"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: contextual-related-posts.php:269
|
235 |
msgid "Donate"
|
236 |
msgstr ""
|
237 |
|
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: 2010-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
@@ -214,24 +214,24 @@ msgstr ""
|
|
214 |
msgid "Powered by"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: contextual-related-posts.php:
|
218 |
-
#: contextual-related-posts.php:
|
219 |
msgid "No related posts found"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: contextual-related-posts.php:
|
223 |
msgid "<h3>Related Posts:</h3>"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: contextual-related-posts.php:
|
227 |
msgid "Settings"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: contextual-related-posts.php:
|
231 |
msgid "Support"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: contextual-related-posts.php:
|
235 |
msgid "Donate"
|
236 |
msgstr ""
|
237 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-02-06 18:34+0530\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: <me@ajaydsouza.com>\n"
|
214 |
msgid "Powered by"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: contextual-related-posts.php:132
|
218 |
+
#: contextual-related-posts.php:136
|
219 |
msgid "No related posts found"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: contextual-related-posts.php:169
|
223 |
msgid "<h3>Related Posts:</h3>"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: contextual-related-posts.php:267
|
227 |
msgid "Settings"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: contextual-related-posts.php:268
|
231 |
msgid "Support"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: contextual-related-posts.php:269
|
235 |
msgid "Donate"
|
236 |
msgstr ""
|
237 |
|
languages/crp-it_IT.mo
CHANGED
Binary file
|
languages/crp-it_IT.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -61,7 +61,7 @@ msgstr "Escludi le pagine da Related Posts"
|
|
61 |
|
62 |
#: admin.inc.php:143
|
63 |
msgid "Append link to this plugin as item. Optional, but would be nice to give me some link love"
|
64 |
-
msgstr ""
|
65 |
|
66 |
#: admin.inc.php:147
|
67 |
msgid "Output Options:"
|
@@ -85,11 +85,11 @@ msgstr "\"Nessun articolo correlato\""
|
|
85 |
|
86 |
#: admin.inc.php:168
|
87 |
msgid "Show post excerpt in list?"
|
88 |
-
msgstr ""
|
89 |
|
90 |
#: admin.inc.php:173
|
91 |
msgid "Length of excerpt (in words): "
|
92 |
-
msgstr ""
|
93 |
|
94 |
#: admin.inc.php:177
|
95 |
msgid "Customize the output:"
|
@@ -133,7 +133,7 @@ msgstr "Campo meta per le miniature (il valore deve puntare alla immagine):"
|
|
133 |
|
134 |
#: admin.inc.php:226
|
135 |
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
136 |
-
msgstr ""
|
137 |
|
138 |
#: admin.inc.php:229
|
139 |
msgid "Thumbnail dimensions:"
|
@@ -161,55 +161,51 @@ msgstr "Sei certo di volere ricreare l'indice?"
|
|
161 |
|
162 |
#: admin.inc.php:254
|
163 |
msgid "Quick links"
|
164 |
-
msgstr ""
|
165 |
|
166 |
#: admin.inc.php:256
|
167 |
-
#, fuzzy
|
168 |
msgid "Contextual Related Posts "
|
169 |
-
msgstr "Related Posts"
|
170 |
|
171 |
#: admin.inc.php:256
|
172 |
msgid "plugin page"
|
173 |
-
msgstr ""
|
174 |
|
175 |
#: admin.inc.php:257
|
176 |
msgid "Other plugins"
|
177 |
-
msgstr ""
|
178 |
|
179 |
#: admin.inc.php:258
|
180 |
msgid "Ajay's blog"
|
181 |
-
msgstr ""
|
182 |
|
183 |
#: admin.inc.php:259
|
184 |
-
#, fuzzy
|
185 |
msgid "Support forum"
|
186 |
-
msgstr "
|
187 |
|
188 |
#: admin.inc.php:260
|
189 |
msgid "Follow @ajaydsouza on Twitter"
|
190 |
-
msgstr ""
|
191 |
|
192 |
#: admin.inc.php:264
|
193 |
msgid "Recent developments"
|
194 |
-
msgstr ""
|
195 |
|
196 |
#: admin.inc.php:269
|
197 |
-
#, fuzzy
|
198 |
msgid "Support the development"
|
199 |
msgstr "Sostieni lo sviluppo"
|
200 |
|
201 |
#: admin.inc.php:277
|
202 |
msgid "Enter amount in USD: "
|
203 |
-
msgstr ""
|
204 |
|
205 |
#: admin.inc.php:281
|
206 |
msgid "Send your donation to the author of"
|
207 |
-
msgstr ""
|
208 |
|
209 |
#: admin.inc.php:309
|
210 |
-
#, fuzzy
|
211 |
msgid "Contextual Related Posts"
|
212 |
-
msgstr "Related Posts"
|
213 |
|
214 |
#: admin.inc.php:309
|
215 |
msgid "Related Posts"
|
@@ -217,26 +213,26 @@ msgstr "Related Posts"
|
|
217 |
|
218 |
#: contextual-related-posts.php:127
|
219 |
msgid "Powered by"
|
220 |
-
msgstr ""
|
221 |
|
222 |
-
#: contextual-related-posts.php:
|
223 |
-
#: contextual-related-posts.php:
|
224 |
msgid "No related posts found"
|
225 |
msgstr "Non é stato trovato alcun articolo correlato"
|
226 |
|
227 |
-
#: contextual-related-posts.php:
|
228 |
msgid "<h3>Related Posts:</h3>"
|
229 |
msgstr "<h3>Related Posts:</h3>"
|
230 |
|
231 |
-
#: contextual-related-posts.php:
|
232 |
msgid "Settings"
|
233 |
msgstr "Impostazioni"
|
234 |
|
235 |
-
#: contextual-related-posts.php:
|
236 |
msgid "Support"
|
237 |
msgstr "Supporto"
|
238 |
|
239 |
-
#: contextual-related-posts.php:
|
240 |
msgid "Donate"
|
241 |
msgstr "Donazioni"
|
242 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-02-06 18:35+0530\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
61 |
|
62 |
#: admin.inc.php:143
|
63 |
msgid "Append link to this plugin as item. Optional, but would be nice to give me some link love"
|
64 |
+
msgstr "Inserisci link di credito. Facoltativo, ma gradito"
|
65 |
|
66 |
#: admin.inc.php:147
|
67 |
msgid "Output Options:"
|
85 |
|
86 |
#: admin.inc.php:168
|
87 |
msgid "Show post excerpt in list?"
|
88 |
+
msgstr "Desideri mostrare gli estratti?"
|
89 |
|
90 |
#: admin.inc.php:173
|
91 |
msgid "Length of excerpt (in words): "
|
92 |
+
msgstr "Lunghezza estratto (in parole): "
|
93 |
|
94 |
#: admin.inc.php:177
|
95 |
msgid "Customize the output:"
|
133 |
|
134 |
#: admin.inc.php:226
|
135 |
msgid "If the postmeta is not set, then should the plugin extract the first image from the post. This can slow down the loading of your post if the first image in the related posts is large in file-size"
|
136 |
+
msgstr "Se il postmeta non fosse stato impostato, il plugin estrarrà dall'articolo la prima immagine. Questa operazione potrebbe rallentare il caricamento del tuo articolo nel caso in cui la prima immagine corelata fosse di grandi dimensioni"
|
137 |
|
138 |
#: admin.inc.php:229
|
139 |
msgid "Thumbnail dimensions:"
|
161 |
|
162 |
#: admin.inc.php:254
|
163 |
msgid "Quick links"
|
164 |
+
msgstr "Collegamenti veloci"
|
165 |
|
166 |
#: admin.inc.php:256
|
|
|
167 |
msgid "Contextual Related Posts "
|
168 |
+
msgstr "Contextual Related Posts "
|
169 |
|
170 |
#: admin.inc.php:256
|
171 |
msgid "plugin page"
|
172 |
+
msgstr "pagina plugin"
|
173 |
|
174 |
#: admin.inc.php:257
|
175 |
msgid "Other plugins"
|
176 |
+
msgstr "Altri plugin"
|
177 |
|
178 |
#: admin.inc.php:258
|
179 |
msgid "Ajay's blog"
|
180 |
+
msgstr "Il blog di Ajay"
|
181 |
|
182 |
#: admin.inc.php:259
|
|
|
183 |
msgid "Support forum"
|
184 |
+
msgstr "Forum di supporto"
|
185 |
|
186 |
#: admin.inc.php:260
|
187 |
msgid "Follow @ajaydsouza on Twitter"
|
188 |
+
msgstr "Segui @ajaydsouza su Twitter"
|
189 |
|
190 |
#: admin.inc.php:264
|
191 |
msgid "Recent developments"
|
192 |
+
msgstr "Sviluppi recenti"
|
193 |
|
194 |
#: admin.inc.php:269
|
|
|
195 |
msgid "Support the development"
|
196 |
msgstr "Sostieni lo sviluppo"
|
197 |
|
198 |
#: admin.inc.php:277
|
199 |
msgid "Enter amount in USD: "
|
200 |
+
msgstr "Inserisci la cifra in USD: "
|
201 |
|
202 |
#: admin.inc.php:281
|
203 |
msgid "Send your donation to the author of"
|
204 |
+
msgstr "Invia la tua donazione all'autore di"
|
205 |
|
206 |
#: admin.inc.php:309
|
|
|
207 |
msgid "Contextual Related Posts"
|
208 |
+
msgstr "Contextual Related Posts"
|
209 |
|
210 |
#: admin.inc.php:309
|
211 |
msgid "Related Posts"
|
213 |
|
214 |
#: contextual-related-posts.php:127
|
215 |
msgid "Powered by"
|
216 |
+
msgstr "Powered by"
|
217 |
|
218 |
+
#: contextual-related-posts.php:132
|
219 |
+
#: contextual-related-posts.php:136
|
220 |
msgid "No related posts found"
|
221 |
msgstr "Non é stato trovato alcun articolo correlato"
|
222 |
|
223 |
+
#: contextual-related-posts.php:169
|
224 |
msgid "<h3>Related Posts:</h3>"
|
225 |
msgstr "<h3>Related Posts:</h3>"
|
226 |
|
227 |
+
#: contextual-related-posts.php:267
|
228 |
msgid "Settings"
|
229 |
msgstr "Impostazioni"
|
230 |
|
231 |
+
#: contextual-related-posts.php:268
|
232 |
msgid "Support"
|
233 |
msgstr "Supporto"
|
234 |
|
235 |
+
#: contextual-related-posts.php:269
|
236 |
msgid "Donate"
|
237 |
msgstr "Donazioni"
|
238 |
|
readme.txt
CHANGED
@@ -32,6 +32,10 @@ Now, you can choose to exclude posts from certain categories as well as exclude
|
|
32 |
|
33 |
== Changelog ==
|
34 |
|
|
|
|
|
|
|
|
|
35 |
= 1.6 =
|
36 |
* New: The plugin extracts the first image in the post and displays that if the post thumbnail and the post-image meta field is missing
|
37 |
* New: Display excerpts in the list
|
32 |
|
33 |
== Changelog ==
|
34 |
|
35 |
+
= 1.6.1 =
|
36 |
+
* Fixed: Custom output was not detecting styles properly
|
37 |
+
* Fixed: Incorrect XHTML code was being generated when using special characters in the post title
|
38 |
+
|
39 |
= 1.6 =
|
40 |
* New: The plugin extracts the first image in the post and displays that if the post thumbnail and the post-image meta field is missing
|
41 |
* New: Display excerpts in the list
|