Contextual Related Posts - Version 1.5.1

Version Description

  • Fixed: Numeric options were not being saved correctly
Download this release

Release Info

Developer Ajay
Plugin Icon 128x128 Contextual Related Posts
Version 1.5.1
Comparing to
See all releases

Code changes from version 1.5 to 1.5.1

admin.inc.php CHANGED
@@ -25,7 +25,7 @@ function crp_options() {
25
 
26
  if($_POST['crp_save']){
27
  $crp_settings[title] = ($_POST['title']);
28
- $crp_settings[limit] = ((is_int($_POST['limit'])) ? ($_POST['limit']) : 5);
29
  $crp_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
30
  $crp_settings[add_to_content] = (($_POST['add_to_content']) ? true : false);
31
  $crp_settings[add_to_page] = (($_POST['add_to_page']) ? true : false);
@@ -40,8 +40,8 @@ function crp_options() {
40
  $crp_settings[after_list_item] = $_POST['after_list_item'];
41
  $crp_settings[thumb_meta] = $_POST['thumb_meta'];
42
  $crp_settings[thumb_default] = $_POST['thumb_default'];
43
- $crp_settings[thumb_height] = ((is_int($_POST['thumb_height'])) ? ($_POST['thumb_height']) : 100);
44
- $crp_settings[thumb_width] = ((is_int($_POST['thumb_width'])) ? ($_POST['thumb_width']) : 100);
45
 
46
 
47
  $exclude_categories_slugs = explode(", ",$crp_settings[exclude_cat_slugs]);
25
 
26
  if($_POST['crp_save']){
27
  $crp_settings[title] = ($_POST['title']);
28
+ $crp_settings[limit] = intval($_POST['limit']);
29
  $crp_settings[exclude_cat_slugs] = ($_POST['exclude_cat_slugs']);
30
  $crp_settings[add_to_content] = (($_POST['add_to_content']) ? true : false);
31
  $crp_settings[add_to_page] = (($_POST['add_to_page']) ? true : false);
40
  $crp_settings[after_list_item] = $_POST['after_list_item'];
41
  $crp_settings[thumb_meta] = $_POST['thumb_meta'];
42
  $crp_settings[thumb_default] = $_POST['thumb_default'];
43
+ $crp_settings[thumb_height] = intval($_POST['thumb_height']);
44
+ $crp_settings[thumb_width] = intval($_POST['thumb_width']);
45
 
46
 
47
  $exclude_categories_slugs = explode(", ",$crp_settings[exclude_cat_slugs]);
contextual-related-posts.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
- Version: 1.5
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
1
  <?php
2
  /*
3
  Plugin Name: Contextual Related Posts
4
+ Version: 1.5.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
languages/crp-da_DK.mo CHANGED
Binary file
languages/crp-da_DK.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Contextual Related Posts 1.4.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-12-24 17:05+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"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -14,180 +14,179 @@ 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: ../\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: admin.inc.php:58
21
  msgid "Options saved successfully."
22
  msgstr "Indstillingerne blev gemt."
23
 
24
- #: admin.inc.php:67
25
  msgid "Options set to Default."
26
  msgstr "Indstillingerne sat til standardværdier."
27
 
28
- #: admin.inc.php:82
29
  msgid "Index recreated"
30
  msgstr "Indeks blev gendannet"
31
 
32
- #: admin.inc.php:93
33
  msgid "Support the Development"
34
  msgstr "Støt udviklingen"
35
 
36
- #: admin.inc.php:97
37
  msgid "If you find "
38
  msgstr "Hvis du finder "
39
 
40
- #: admin.inc.php:99
41
  msgid "useful, please do"
42
  msgstr "brugbar, så venligst"
43
 
44
- #: admin.inc.php:100
45
  msgid "drop in your contribution"
46
  msgstr "giv et bidrag"
47
 
48
- #: admin.inc.php:101
49
  msgid "Some reasons why you should."
50
  msgstr "Nogle grunde til, du skulle gøre det."
51
 
52
- #: admin.inc.php:108
53
  msgid "Options:"
54
  msgstr "Indstillinger:"
55
 
56
- #: admin.inc.php:113
57
  msgid "Number of related posts to display: "
58
  msgstr "Antal Lignende indlæg, der skal vises: "
59
 
60
- #: admin.inc.php:117
61
  msgid "Exclude Categories: "
62
  msgstr "Udelad kategorier: "
63
 
64
- #: admin.inc.php:135
65
  msgid "Add related posts to the post content on single posts. <br />If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
66
  msgstr "Tilføj Lignende indlæg til indlæggenes indhold i enkelt-indlæg. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
67
 
68
- #: admin.inc.php:141
69
  msgid "Add related posts to pages. <br />If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
70
  msgstr "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
71
 
72
- #: admin.inc.php:147
73
  msgid "Add related posts to feed"
74
  msgstr "Tilføj Lignende indlæg til feeds"
75
 
76
- #: admin.inc.php:153
77
  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)"
78
  msgstr "Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer dette)"
79
 
80
- #: admin.inc.php:159
81
  msgid "Exclude Pages in Related Posts"
82
  msgstr "Udelad sider i Lignende indlæg"
83
 
84
- #: admin.inc.php:163
85
- #, fuzzy
86
  msgid "Output Options:"
87
- msgstr "Indstillinger:"
88
 
89
- #: admin.inc.php:167
90
  msgid "Title of related posts: "
91
  msgstr "Titel på Lignende indlæg: "
92
 
93
- #: admin.inc.php:171
94
  msgid "When there are no posts, what should be shown?"
95
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
96
 
97
- #: admin.inc.php:174
98
  msgid "Blank Output"
99
  msgstr "Intet"
100
 
101
- #: admin.inc.php:178
102
  msgid "Display \"No Related Posts\""
103
  msgstr "Vis \"Ingen lignende indlæg\""
104
 
105
- #: admin.inc.php:181
106
  msgid "Customize the output:"
107
- msgstr ""
108
 
109
- #: admin.inc.php:184
110
  msgid "HTML to display before the list of posts: "
111
- msgstr ""
112
 
113
- #: admin.inc.php:190
114
  msgid "HTML to display before each list item: "
115
- msgstr ""
116
 
117
- #: admin.inc.php:196
118
  msgid "HTML to display after each list item: "
119
- msgstr ""
120
 
121
- #: admin.inc.php:202
122
  msgid "HTML to display after the list of posts: "
123
- msgstr ""
124
 
125
- #: admin.inc.php:206
126
  msgid "Post thumbnail options:"
127
- msgstr ""
128
 
129
- #: admin.inc.php:210
130
  msgid "Display thumbnails inline with posts"
131
- msgstr ""
132
 
133
- #: admin.inc.php:214
134
  msgid "Display only thumbnails, no text"
135
- msgstr ""
136
 
137
- #: admin.inc.php:218
138
  msgid "Do not display thumbnails, only text."
139
- msgstr ""
140
 
141
- #: admin.inc.php:223
142
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
143
- msgstr ""
144
 
145
- #: admin.inc.php:227
146
  msgid "Thumbnail dimensions:"
147
- msgstr ""
148
 
149
- #: admin.inc.php:229
150
  msgid "Max width: "
151
- msgstr ""
152
 
153
- #: admin.inc.php:234
154
  msgid "Max height: "
155
- msgstr ""
156
 
157
- #: admin.inc.php:238
158
  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:"
159
- msgstr ""
160
 
161
- #: admin.inc.php:243
162
  msgid "Do you want to set options to Default?"
163
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
164
 
165
- #: admin.inc.php:244
166
  msgid "Are you sure you want to recreate the index?"
167
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
168
 
169
- #: admin.inc.php:269
170
  msgid "Related Posts"
171
- msgstr "Lignende indlæg"
172
 
173
- #: contextual-related-posts.php:107
174
- #: contextual-related-posts.php:111
175
  msgid "No related posts found"
176
  msgstr "Ingen lignende indlæg fundet"
177
 
178
- #: contextual-related-posts.php:143
179
  msgid "<h3>Related Posts:</h3>"
180
  msgstr "<h3>Lignende indlæg:</h3>"
181
 
182
- #: contextual-related-posts.php:218
183
  msgid "Settings"
184
  msgstr "Opsætning"
185
 
186
- #: contextual-related-posts.php:219
187
  msgid "Support"
188
  msgstr "Support"
189
 
190
- #: contextual-related-posts.php:220
191
  msgid "Donate"
192
  msgstr "Donation"
193
 
1
  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-01-09 10:16+0100\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\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: d:\\wordpress\\plugins\\contextual-related-posts\n"
18
+ "X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\contextual-related-posts\n"
19
 
20
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:58
21
  msgid "Options saved successfully."
22
  msgstr "Indstillingerne blev gemt."
23
 
24
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:67
25
  msgid "Options set to Default."
26
  msgstr "Indstillingerne sat til standardværdier."
27
 
28
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:82
29
  msgid "Index recreated"
30
  msgstr "Indeks blev gendannet"
31
 
32
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:93
33
  msgid "Support the Development"
34
  msgstr "Støt udviklingen"
35
 
36
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:97
37
  msgid "If you find "
38
  msgstr "Hvis du finder "
39
 
40
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:99
41
  msgid "useful, please do"
42
  msgstr "brugbar, så venligst"
43
 
44
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:100
45
  msgid "drop in your contribution"
46
  msgstr "giv et bidrag"
47
 
48
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:101
49
  msgid "Some reasons why you should."
50
  msgstr "Nogle grunde til, du skulle gøre det."
51
 
52
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:108
53
  msgid "Options:"
54
  msgstr "Indstillinger:"
55
 
56
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:113
57
  msgid "Number of related posts to display: "
58
  msgstr "Antal Lignende indlæg, der skal vises: "
59
 
60
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:117
61
  msgid "Exclude Categories: "
62
  msgstr "Udelad kategorier: "
63
 
64
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:135
65
  msgid "Add related posts to the post content on single posts. <br />If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
66
  msgstr "Tilføj Lignende indlæg til indlæggenes indhold i enkelt-indlæg. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
67
 
68
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:141
69
  msgid "Add related posts to pages. <br />If you choose to disable this, please add <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> to your template file where you want it displayed"
70
  msgstr "Tilføj Lignende indlæg til statiske sider. <br />Hvis du vælger at deaktivere dette, skal du tilføje <code>&lt;?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?&gt;</code> til din skabelonfil, hvor du ønsker de lignende indlæg vist"
71
 
72
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:147
73
  msgid "Add related posts to feed"
74
  msgstr "Tilføj Lignende indlæg til feeds"
75
 
76
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:153
77
  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)"
78
  msgstr "Find Lignende indlæg ud fra såvel indhold som titel. Hvis umarkeret, bruges kun indlæggenes titler (jeg anbefaler et cache-plugin, hvis du aktiverer dette)"
79
 
80
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:159
81
  msgid "Exclude Pages in Related Posts"
82
  msgstr "Udelad sider i Lignende indlæg"
83
 
84
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:163
 
85
  msgid "Output Options:"
86
+ msgstr "Indstillinger for output:"
87
 
88
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:167
89
  msgid "Title of related posts: "
90
  msgstr "Titel på Lignende indlæg: "
91
 
92
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:171
93
  msgid "When there are no posts, what should be shown?"
94
  msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
95
 
96
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:174
97
  msgid "Blank Output"
98
  msgstr "Intet"
99
 
100
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:178
101
  msgid "Display \"No Related Posts\""
102
  msgstr "Vis \"Ingen lignende indlæg\""
103
 
104
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:181
105
  msgid "Customize the output:"
106
+ msgstr "Tilpas outputtet:"
107
 
108
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:184
109
  msgid "HTML to display before the list of posts: "
110
+ msgstr "HTML, der skal vises før listen med indlæg: "
111
 
112
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:190
113
  msgid "HTML to display before each list item: "
114
+ msgstr "HTML, der skal vises før hvert punkt på listen: "
115
 
116
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:196
117
  msgid "HTML to display after each list item: "
118
+ msgstr "HTML, der skal vises efter hvert punkt på listen: "
119
 
120
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:202
121
  msgid "HTML to display after the list of posts: "
122
+ msgstr "HTML, der skal vises efter listen med indlæg: "
123
 
124
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:206
125
  msgid "Post thumbnail options:"
126
+ msgstr "Indstillinger for indlægsminiaturer:"
127
 
128
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:210
129
  msgid "Display thumbnails inline with posts"
130
+ msgstr "Vis miniaturer inline med indlæg"
131
 
132
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:214
133
  msgid "Display only thumbnails, no text"
134
+ msgstr "Vis kun miniaturer, ingen tekst"
135
 
136
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:218
137
  msgid "Do not display thumbnails, only text."
138
+ msgstr "Vis ikke miniaturer, kun tekst."
139
 
140
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:223
141
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
142
+ msgstr "Metafelt for indlægsminiaturer (metafeltet skal indeholde URL&#39;en til billedet): "
143
 
144
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:227
145
  msgid "Thumbnail dimensions:"
146
+ msgstr "Miniaturedimensioner:"
147
 
148
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:229
149
  msgid "Max width: "
150
+ msgstr "Max bredde: "
151
 
152
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:234
153
  msgid "Max height: "
154
+ msgstr "Max højde: "
155
 
156
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:238
157
  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:"
158
+ msgstr "Pluginnet tjekker først, om indlægget indeholder en miniature. Hvis indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke findes, vil det vise standardbilledet specificeret nedenfor:"
159
 
160
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:243
161
  msgid "Do you want to set options to Default?"
162
  msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
163
 
164
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:244
165
  msgid "Are you sure you want to recreate the index?"
166
  msgstr "Er du sikker på, du ønsker at gendanne indekset?"
167
 
168
+ #: d:\wordpress\plugins\contextual-related-posts/admin.inc.php:269
169
  msgid "Related Posts"
170
+ msgstr "Related Posts (Lignende indlæg)"
171
 
172
+ #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:107
173
+ #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:111
174
  msgid "No related posts found"
175
  msgstr "Ingen lignende indlæg fundet"
176
 
177
+ #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:143
178
  msgid "<h3>Related Posts:</h3>"
179
  msgstr "<h3>Lignende indlæg:</h3>"
180
 
181
+ #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:218
182
  msgid "Settings"
183
  msgstr "Opsætning"
184
 
185
+ #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:219
186
  msgid "Support"
187
  msgstr "Support"
188
 
189
+ #: d:\wordpress\plugins\contextual-related-posts/contextual-related-posts.php:220
190
  msgid "Donate"
191
  msgstr "Donation"
192
 
languages/crp-it_IT.mo CHANGED
Binary file
languages/crp-it_IT.po CHANGED
@@ -4,7 +4,7 @@ msgstr ""
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2009-12-24 17:05+0530\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"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -80,9 +80,8 @@ msgid "Exclude Pages in Related Posts"
80
  msgstr "Escludi le pagine da Related Posts"
81
 
82
  #: admin.inc.php:163
83
- #, fuzzy
84
  msgid "Output Options:"
85
- msgstr "Opzioni:"
86
 
87
  #: admin.inc.php:167
88
  msgid "Title of related posts: "
@@ -102,59 +101,59 @@ msgstr "\"Nessun articolo correlato\""
102
 
103
  #: admin.inc.php:181
104
  msgid "Customize the output:"
105
- msgstr ""
106
 
107
  #: admin.inc.php:184
108
  msgid "HTML to display before the list of posts: "
109
- msgstr ""
110
 
111
  #: admin.inc.php:190
112
  msgid "HTML to display before each list item: "
113
- msgstr ""
114
 
115
  #: admin.inc.php:196
116
  msgid "HTML to display after each list item: "
117
- msgstr ""
118
 
119
  #: admin.inc.php:202
120
  msgid "HTML to display after the list of posts: "
121
- msgstr ""
122
 
123
  #: admin.inc.php:206
124
  msgid "Post thumbnail options:"
125
- msgstr ""
126
 
127
  #: admin.inc.php:210
128
  msgid "Display thumbnails inline with posts"
129
- msgstr ""
130
 
131
  #: admin.inc.php:214
132
  msgid "Display only thumbnails, no text"
133
- msgstr ""
134
 
135
  #: admin.inc.php:218
136
  msgid "Do not display thumbnails, only text."
137
- msgstr ""
138
 
139
  #: admin.inc.php:223
140
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
141
- msgstr ""
142
 
143
  #: admin.inc.php:227
144
  msgid "Thumbnail dimensions:"
145
- msgstr ""
146
 
147
  #: admin.inc.php:229
148
  msgid "Max width: "
149
- msgstr ""
150
 
151
  #: admin.inc.php:234
152
  msgid "Max height: "
153
- msgstr ""
154
 
155
  #: admin.inc.php:238
156
  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:"
157
- msgstr ""
158
 
159
  #: admin.inc.php:243
160
  msgid "Do you want to set options to Default?"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2009-12-24 17:05+0530\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Gianni Diurno (aka gidibao) <gidibao@gmail.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"
80
  msgstr "Escludi le pagine da Related Posts"
81
 
82
  #: admin.inc.php:163
 
83
  msgid "Output Options:"
84
+ msgstr "Opzioni output:"
85
 
86
  #: admin.inc.php:167
87
  msgid "Title of related posts: "
101
 
102
  #: admin.inc.php:181
103
  msgid "Customize the output:"
104
+ msgstr "Personalizzazione output:"
105
 
106
  #: admin.inc.php:184
107
  msgid "HTML to display before the list of posts: "
108
+ msgstr "HTML da mostrare davanti alla lista degli articoli:"
109
 
110
  #: admin.inc.php:190
111
  msgid "HTML to display before each list item: "
112
+ msgstr "HTML da mostrare davanti ad ogni singola lista:"
113
 
114
  #: admin.inc.php:196
115
  msgid "HTML to display after each list item: "
116
+ msgstr "HTML da mostrare dopo ogni lista:"
117
 
118
  #: admin.inc.php:202
119
  msgid "HTML to display after the list of posts: "
120
+ msgstr "HTML da mostrare dopo la lista degli articoli:"
121
 
122
  #: admin.inc.php:206
123
  msgid "Post thumbnail options:"
124
+ msgstr "Opzioni miniature articolo:"
125
 
126
  #: admin.inc.php:210
127
  msgid "Display thumbnails inline with posts"
128
+ msgstr "Mostra gli articoli con le miniature inline"
129
 
130
  #: admin.inc.php:214
131
  msgid "Display only thumbnails, no text"
132
+ msgstr "Mostra le sole miniature, nessun testo"
133
 
134
  #: admin.inc.php:218
135
  msgid "Do not display thumbnails, only text."
136
+ msgstr "Non mostrare le miniature, solo testo."
137
 
138
  #: admin.inc.php:223
139
  msgid "Post thumbnail meta field (the meta should point contain the image source): "
140
+ msgstr "Campo meta per le miniature (il valore deve puntare alla immagine):"
141
 
142
  #: admin.inc.php:227
143
  msgid "Thumbnail dimensions:"
144
+ msgstr "Dimensione miniature:"
145
 
146
  #: admin.inc.php:229
147
  msgid "Max width: "
148
+ msgstr "Larghezza massima:"
149
 
150
  #: admin.inc.php:234
151
  msgid "Max height: "
152
+ msgstr "Altezza massima:"
153
 
154
  #: admin.inc.php:238
155
  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:"
156
+ msgstr "Come prima operazione, il plugin controllerà la presenza di una miniatura nell'articolo. Nel caso in cui non fosse presente, verificherà il campo meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come specificato qui sotto:"
157
 
158
  #: admin.inc.php:243
159
  msgid "Do you want to set options to Default?"
readme.txt CHANGED
@@ -31,6 +31,9 @@ Now, you can choose to exclude posts from certain categories as well as exclude
31
 
32
  == Changelog ==
33
 
 
 
 
34
  = 1.5 =
35
  * Added an Option to display post thumbnails
36
  * The output can be completely customised now
31
 
32
  == Changelog ==
33
 
34
+ = 1.5.1 =
35
+ * Fixed: Numeric options were not being saved correctly
36
+
37
  = 1.5 =
38
  * Added an Option to display post thumbnails
39
  * The output can be completely customised now