CommentLuv - Version 2.92.4

Version Description

  • updated : make ajax fetch more secure
Download this release

Release Info

Developer commentluv
Plugin Icon 128x128 CommentLuv
Version 2.92.4
Comparing to
See all releases

Code changes from version 2.92.3 to 2.92.4

commentluv.php CHANGED
@@ -2,7 +2,7 @@
2
  Plugin Name: CommentLuv
3
  Plugin URI: http://comluv.com/
4
  Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
5
- Version: 2.92.3
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
@@ -28,7 +28,7 @@
28
  var $plugin_url;
29
  var $plugin_dir;
30
  var $db_option = 'commentluv_options';
31
- var $version = "2.92.3";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
@@ -87,7 +87,7 @@
87
  add_filter ( 'plugin_action_links', array (&$this, 'plugin_action_link' ), - 10, 2 ); // add a settings page link to the plugin description. use 2 for allowed vars
88
  // add_filter ( 'found_posts', array(&$this,'send_feed'),-1,2); // sends post titles and urls only - deprecated in 2.90.9.9
89
  add_filter ( 'kindergarten_html', array(&$this,'kindergarten_html')); // for cleaning html
90
-
91
  //$this->check_version();
92
  if(!isset($options['enable']) || ( isset($options['enable']) && $options['enable'] != 'no')){
93
  $this->setup_hooks();
@@ -533,7 +533,12 @@
533
  * handles all ajax requests, receives 'do' as POST var and calls relevant function
534
  *
535
  */
536
- function do_ajax(){
 
 
 
 
 
537
  switch($_POST['do']){
538
  case 'fetch' :
539
  $this->fetch_feed();
@@ -554,7 +559,7 @@
554
  */
555
  function do_click(){
556
  $cid = intval($_POST['cid']);
557
- $nonce = $_POST['nonce'];
558
  $url = $_POST['url'];
559
  if(!wp_verify_nonce($nonce,$cid)){
560
  exit;
@@ -801,7 +806,10 @@
801
  // check nonce
802
  $checknonce = check_ajax_referer('fetch',false,false);
803
  if(!$checknonce){
804
- die(' error! not authorized '.$_REQUEST['_ajax_nonce']);
 
 
 
805
  }
806
  if(!defined('DOING_AJAX')){
807
  define('DOING_AJAX',true);
@@ -1685,7 +1693,7 @@
1685
  <br /><strong>(<?php _e('Prevents spammer abuse',$this->plugin_domain);?>)</strong>
1686
 
1687
  </td>
1688
-
1689
  <td>
1690
  <select name="<?php echo $dbo;?>[hide_link_no_url_match]">
1691
  <option value="nothing" <?php selected($o['hide_link_no_url_match'],'nothing',true);?>><?php _e('Nothing',$this->plugin_domain);?></option>
@@ -1697,9 +1705,9 @@
1697
  <br /><strong>(<?php _e('Prevents users from adding fake author URLs to get around Akismet',$this->plugin_domain);?>)</strong>
1698
 
1699
  </td>
1700
-
1701
- <td>
1702
- <input type="checkbox" name="<?php echo $dbo;?>[allow_jpc]" <?php if(isset($o['allow_jpc'])) checked($o['allow_jpc'],'on');?> value="on"/><label for="<?php echo $dbo;?>[allow_jpc]"> <?php _e('Allow Jetpack comments module to activate?',$pd);?></label>
1703
  </td>
1704
  </tr>
1705
  <tr>
2
  Plugin Name: CommentLuv
3
  Plugin URI: http://comluv.com/
4
  Description: Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
5
+ Version: 2.92.4
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
28
  var $plugin_url;
29
  var $plugin_dir;
30
  var $db_option = 'commentluv_options';
31
+ var $version = "2.92.4";
32
  var $slug = 'commentluv-options';
33
  var $localize;
34
  var $is_commentluv_request = false;
87
  add_filter ( 'plugin_action_links', array (&$this, 'plugin_action_link' ), - 10, 2 ); // add a settings page link to the plugin description. use 2 for allowed vars
88
  // add_filter ( 'found_posts', array(&$this,'send_feed'),-1,2); // sends post titles and urls only - deprecated in 2.90.9.9
89
  add_filter ( 'kindergarten_html', array(&$this,'kindergarten_html')); // for cleaning html
90
+
91
  //$this->check_version();
92
  if(!isset($options['enable']) || ( isset($options['enable']) && $options['enable'] != 'no')){
93
  $this->setup_hooks();
533
  * handles all ajax requests, receives 'do' as POST var and calls relevant function
534
  *
535
  */
536
+ function do_ajax(){
537
+ $oldchecknonce = $_POST['_ajax_nonce'];
538
+ $newchecknonce = preg_replace("/[^A-Za-z0-9 ]/", '', $oldchecknonce);
539
+ if($oldchecknonce != $newchecknonce){
540
+ die('error! nonce malformed');
541
+ }
542
  switch($_POST['do']){
543
  case 'fetch' :
544
  $this->fetch_feed();
559
  */
560
  function do_click(){
561
  $cid = intval($_POST['cid']);
562
+ $nonce = $_POST['_ajax_nonce'];
563
  $url = $_POST['url'];
564
  if(!wp_verify_nonce($nonce,$cid)){
565
  exit;
806
  // check nonce
807
  $checknonce = check_ajax_referer('fetch',false,false);
808
  if(!$checknonce){
809
+ die(' error! not authorized '.strip_tags($_REQUEST['_ajax_nonce']));
810
+ }
811
+ if(!$_POST['url']){
812
+ die('no url');
813
  }
814
  if(!defined('DOING_AJAX')){
815
  define('DOING_AJAX',true);
1693
  <br /><strong>(<?php _e('Prevents spammer abuse',$this->plugin_domain);?>)</strong>
1694
 
1695
  </td>
1696
+
1697
  <td>
1698
  <select name="<?php echo $dbo;?>[hide_link_no_url_match]">
1699
  <option value="nothing" <?php selected($o['hide_link_no_url_match'],'nothing',true);?>><?php _e('Nothing',$this->plugin_domain);?></option>
1705
  <br /><strong>(<?php _e('Prevents users from adding fake author URLs to get around Akismet',$this->plugin_domain);?>)</strong>
1706
 
1707
  </td>
1708
+
1709
+ <td>
1710
+ <input type="checkbox" name="<?php echo $dbo;?>[allow_jpc]" <?php if(isset($o['allow_jpc'])) checked($o['allow_jpc'],'on');?> value="on"/><label for="<?php echo $dbo;?>[allow_jpc]"> <?php _e('Allow Jetpack comments module to activate?',$pd);?></label>
1711
  </td>
1712
  </tr>
1713
  <tr>
js/commentluv.js CHANGED
@@ -1,4 +1,4 @@
1
- // commentluv 2.90.9.1
2
  jQuery(document).ready(function(){
3
  // get the form object and fields
4
  var formObj = jQuery('#cl_post_title').parents('form');
@@ -36,7 +36,7 @@ jQuery(document).ready(function(){
36
  jQuery.ajax({
37
  url: cl_settings['api_url'],
38
  type: 'POST',
39
- data: {'action': 'cl_ajax','cid': data[1],'nonce':data[0],'cl_prem':jQuery(this).hasClass('p'),'url': jQuery(this).attr('href'),'do':'click'}
40
  });
41
  jQuery(this).attr('target','_blank');
42
  return true;
1
+ // commentluv 2.92.4
2
  jQuery(document).ready(function(){
3
  // get the form object and fields
4
  var formObj = jQuery('#cl_post_title').parents('form');
36
  jQuery.ajax({
37
  url: cl_settings['api_url'],
38
  type: 'POST',
39
+ data: {'action': 'cl_ajax','cid': data[1],'_ajax_nonce':data[0],'cl_prem':jQuery(this).hasClass('p'),'url': jQuery(this).attr('href'),'do':'click'}
40
  });
41
  jQuery(this).attr('target','_blank');
42
  return true;
lang/commentluv-sk_SK.mo ADDED
Binary file
lang/commentluv-sk_SK.po ADDED
@@ -0,0 +1,632 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: \n"
5
+ "PO-Revision-Date: \n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=iso-8859-1\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.5.4\n"
12
+
13
+ #: ../commentluv.php:48
14
+ msgid "CommentLuv requires Wordpress 3.0 or newer."
15
+ msgstr "CommentLuv vyzaduje Wordpress 3.0 alebo novsi."
16
+
17
+ #: ../commentluv.php:48
18
+ msgid "Please Update!"
19
+ msgstr "Aktualizujte prosim!"
20
+
21
+ #: ../commentluv.php:217
22
+ msgid ""
23
+ "Please enter a URL and then click the CommentLuv checkbox if you want to add "
24
+ "your last blog post"
25
+ msgstr ""
26
+ "Zadajte prosim URL a kliknite na policko CommentLuv, ak chcete pridat svoj "
27
+ "posledny prispevok do blogu"
28
+
29
+ #: ../commentluv.php:218
30
+ msgid "Please use http:// in front of your url"
31
+ msgstr "Prosim, pouzite http:// v prednej casti vasho url"
32
+
33
+ #: ../commentluv.php:219
34
+ msgid ""
35
+ "You need to visit your profile in the dashboard and update your details with "
36
+ "your site URL"
37
+ msgstr ""
38
+ "Musite navstivit svoj profil v palubnej doske a aktualizovat svoje udaje s "
39
+ "URL stranky"
40
+
41
+ #: ../commentluv.php:220
42
+ msgid "No info was available or an error occured"
43
+ msgstr "Ziadne informacie neboli k dispozicii, alebo doslo k chybe"
44
+
45
+ #: ../commentluv.php:243
46
+ msgid "Please wait"
47
+ msgstr "Prosim cakajte"
48
+
49
+ #: ../commentluv.php:243
50
+ msgid "Please check your inbox, an email will be sent to"
51
+ msgstr "Skontrolujte prosim schranky, bude e-mail bude odoslany"
52
+
53
+ #: ../commentluv.php:243
54
+ msgid "in the next few minutes with a confirmation link"
55
+ msgstr "V najblizsich niekolkych minutach s potvrdzovaci odkaz"
56
+
57
+ #: ../commentluv.php:243
58
+ msgid "An error happened with the request. Try signing up at the site"
59
+ msgstr "doslo k chybe so ziadostou. Skuste sa prihlasit sa na mieste"
60
+
61
+ #: ../commentluv.php:272
62
+ msgid ""
63
+ "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
64
+ msgstr ""
65
+ "Vasa Wordpress instalacie chyba <strong> wp_commentmeta </ ??strong> stola!"
66
+
67
+ #: ../commentluv.php:272
68
+ msgid ""
69
+ " CommentLuv cannot work without this table please see this wordpress forum "
70
+ "post to learn how to add one ->"
71
+ msgstr ""
72
+ "CommentLuv nemoze fungovat bez tejto tabulke najdete na tejto wordpress fora "
73
+ "prispevok sa dozviete, ako pridat jeden ->"
74
+
75
+ #: ../commentluv.php:272
76
+ msgid "Missing wp_commentmeta table"
77
+ msgstr "Chybajuce wp_commentmeta tabulku"
78
+
79
+ #: ../commentluv.php:365
80
+ msgid "Twice Monthly"
81
+ msgstr "Dvakrat mesacne"
82
+
83
+ #: ../commentluv.php:392
84
+ msgid "CommentLuv is enabled"
85
+ msgstr "CommentLuv je povolene"
86
+
87
+ #: ../commentluv.php:433
88
+ msgid "Show more posts"
89
+ msgstr "Zobrazit dalsie prispevky"
90
+
91
+ #: ../commentluv.php:523
92
+ msgid "I have only commented on this post"
93
+ msgstr "som len komentar k tomuto prispevku"
94
+
95
+ #: ../commentluv.php:526
96
+ msgid ""
97
+ "If I had made more comments on this site, you would see more of my other "
98
+ "posts here"
99
+ msgstr ""
100
+ "Ak som urobil dalsie pripomienky k tejto stranke, mali by ste vidiet viac z "
101
+ "mojich dalsich prispevkov tu"
102
+
103
+ #: ../commentluv.php:551
104
+ msgid "User has not saved a description in their profile page"
105
+ msgstr "Uzivatel nie je ulozeny popis vo svojom profile"
106
+
107
+ #: ../commentluv.php:563
108
+ msgid "is the administrator of this site"
109
+ msgstr "je spravca tohto webu"
110
+
111
+ #: ../commentluv.php:565
112
+ msgid "is a registered member of my site"
113
+ msgstr "je registrovanym clenom mojej stranky"
114
+
115
+ #: ../commentluv.php:568 ../commentluv.php:587
116
+ msgid "Clicks on this link on this comment"
117
+ msgstr "Kliknutie na tento odkaz na tento komentar"
118
+
119
+ #: ../commentluv.php:568 ../commentluv.php:588
120
+ msgid "approved comments on this site"
121
+ msgstr "schvalene pripomienky k tejto stranke"
122
+
123
+ #: ../commentluv.php:568 ../commentluv.php:589
124
+ msgid "Some other posts I have commented on"
125
+ msgstr "Niektore ine prispevky, ktore som komentoval"
126
+
127
+ #: ../commentluv.php:568
128
+ msgid "Some of my other posts"
129
+ msgstr "Niektore z mojich dalsich prispevkov"
130
+
131
+ #: ../commentluv.php:581
132
+ msgid "has not registered on this site"
133
+ msgstr "nie je registrovany na tychto strankach"
134
+
135
+ #: ../commentluv.php:703
136
+ msgid "Could not get posts for home blog"
137
+ msgstr "Nepodarilo sa ziskat prispevky pre domace blogu"
138
+
139
+ #: ../commentluv.php:759
140
+ msgid ""
141
+ "If you are registered, you need to log in to get 10 posts to choose from"
142
+ msgstr ""
143
+ "Ak ste registrovany, je nutne sa prihlasit do dostat 10 prispevkov z coho "
144
+ "vyberat"
145
+
146
+ #: ../commentluv.php:783 ../commentluv.php:1235
147
+ msgid "Register"
148
+ msgstr "Registracia"
149
+
150
+ #: ../commentluv.php:788
151
+ msgid "recently posted"
152
+ msgstr "nedavno vyslany"
153
+
154
+ #: ../commentluv.php:789
155
+ msgid ""
156
+ "If you register as a user on my site, you can get your 10 most recent blog "
157
+ "posts to choose from in this box."
158
+ msgstr ""
159
+ "Ak sa zaregistrujete ako uzivatel na mojom webe, mozete dostat svoje 10 "
160
+ "najnovsich prispevkov do blogu na vyber v tejto kolonke."
161
+
162
+ #: ../commentluv.php:790
163
+ msgid ""
164
+ "If this user had registered to my site then they could get 10 last posts to "
165
+ "choose from when they comment and you would be able to see a list of their "
166
+ "recent posts in this panel"
167
+ msgstr ""
168
+ "Ak tento pouzivatel si zaregistroval na moje stranky a potom sa im podarilo "
169
+ "dostat 10 posledne prispevky na vyber, ked komentovat a mali by ste byt "
170
+ "schopni vidiet zoznam svojich nedavnych prispevkov v tomto paneli"
171
+
172
+ #: ../commentluv.php:971
173
+ msgid "Settings"
174
+ msgstr "Nastavenia"
175
+
176
+ #: ../commentluv.php:1010
177
+ msgid "No Posts Were Found!"
178
+ msgstr "Ziadne prispevky neboli najdene!"
179
+
180
+ #: ../commentluv.php:1050
181
+ msgid ""
182
+ "There is a new version of Commentluv available, please upgrade by visiting "
183
+ "this site"
184
+ msgstr ""
185
+ "K dispozicii je nova verzia k dispozicii CommentLuv, aktualizujte prosim "
186
+ "navstevou tychto stranok"
187
+
188
+ #: ../commentluv.php:1053
189
+ msgid "Dismiss notice"
190
+ msgstr "Zavriet oznamenia"
191
+
192
+ #: ../commentluv.php:1080
193
+ msgid "CommentLuv Settings v"
194
+ msgstr "CommentLuv Nastavenie v"
195
+
196
+ #: ../commentluv.php:1090
197
+ msgid "Important!"
198
+ msgstr "Dolezite!"
199
+
200
+ #: ../commentluv.php:1090
201
+ msgid "Subscription Information"
202
+ msgstr "Informacie predplatneho"
203
+
204
+ #: ../commentluv.php:1095
205
+ msgid "CommentLuv 3.0 Premium is coming soon!"
206
+ msgstr "CommentLuv 3,0 Premium sa blizi!"
207
+
208
+ #: ../commentluv.php:1096
209
+ msgid ""
210
+ "I promise not to sell your details or send you spam. You will ONLY receive "
211
+ "emails about plugin updates."
212
+ msgstr ""
213
+ "Slubujem, ze nebudem predavat svoje udaje alebo vam zasleme spamu. Budete "
214
+ "iba dostavat e-maily o pluginov aktualizacie."
215
+
216
+ #: ../commentluv.php:1099
217
+ msgid ""
218
+ "There is a premium version of CommentLuv coming that will have much more "
219
+ "control of how the plugin works as well as exclusive features like keyword "
220
+ "name, inline registration and much much more!. Signup to find out as soon as "
221
+ "it is ready"
222
+ msgstr ""
223
+ "Je profesionalna verzia CommentLuv zasielane, ktora bude mat ovela vacsiu "
224
+ "kontrolu toho, ako plugin funguje rovnako ako exkluzivne funkcie, ako je "
225
+ "nazov klucoveho, inline registraciu a ovela ovela viac!. Prihlasenie zistit, "
226
+ "akonahle je pripraveny"
227
+
228
+ #: ../commentluv.php:1102
229
+ msgid ""
230
+ "You have already subscribed, if you have not received the verification "
231
+ "within 12 hours, please click the button to resend or try the form at"
232
+ msgstr ""
233
+ "uz odobera, ak ste nedostali overenie do 12 hodin, kliknite na tlacidlo "
234
+ "znova odoslat, alebo skuste formular na"
235
+
236
+ #: ../commentluv.php:1102
237
+ msgid "Resend Verification"
238
+ msgstr "Znovu odoslat overovaci"
239
+
240
+ #: ../commentluv.php:1104
241
+ msgid "Click to register now!"
242
+ msgstr "Kliknite pre zaregistruj sa hned!"
243
+
244
+ #: ../commentluv.php:1119
245
+ msgid "Primary Setting"
246
+ msgstr "Primarny nastavenia"
247
+
248
+ #: ../commentluv.php:1119 ../commentluv.php:1153 ../commentluv.php:1212
249
+ #: ../commentluv.php:1268 ../commentluv.php:1299
250
+ msgid "Help Video"
251
+ msgstr "Pomocnik Video"
252
+
253
+ #: ../commentluv.php:1123
254
+ msgid "Enable CommentLuv?"
255
+ msgstr "Povolit CommentLuv?"
256
+
257
+ #: ../commentluv.php:1124
258
+ msgid "Yes"
259
+ msgstr "Ano"
260
+
261
+ #: ../commentluv.php:1125
262
+ msgid "No"
263
+ msgstr "Nie"
264
+
265
+ #: ../commentluv.php:1130
266
+ msgid "On Posts"
267
+ msgstr "On prispevky"
268
+
269
+ #: ../commentluv.php:1131
270
+ msgid "On Pages"
271
+ msgstr "na strankach"
272
+
273
+ #: ../commentluv.php:1132
274
+ msgid "On Both"
275
+ msgstr "On Both"
276
+
277
+ #: ../commentluv.php:1137
278
+ msgid "On by default?"
279
+ msgstr "Zapnute v predvolenom nastaveni?"
280
+
281
+ #: ../commentluv.php:1141
282
+ msgid "On for admin?"
283
+ msgstr "On pre admin?"
284
+
285
+ #: ../commentluv.php:1153
286
+ msgid "Appearance"
287
+ msgstr "Vzhlad"
288
+
289
+ #: ../commentluv.php:1157
290
+ msgid "Badge"
291
+ msgstr "odznak"
292
+
293
+ #: ../commentluv.php:1158
294
+ msgid "Custom Image URL"
295
+ msgstr "Vlastne URL obrazku"
296
+
297
+ #: ../commentluv.php:1159
298
+ msgid "Use Text"
299
+ msgstr "Pouzit text"
300
+
301
+ #: ../commentluv.php:1167
302
+ msgid "Default"
303
+ msgstr "Predvoleny"
304
+
305
+ #: ../commentluv.php:1168
306
+ msgid "White"
307
+ msgstr "White"
308
+
309
+ #: ../commentluv.php:1169
310
+ msgid "Black"
311
+ msgstr "Black"
312
+
313
+ #: ../commentluv.php:1170
314
+ msgid "None"
315
+ msgstr "Ziadne"
316
+
317
+ #: ../commentluv.php:1187
318
+ msgid "Link to Commentluv?"
319
+ msgstr "Odkaz na CommentLuv?"
320
+
321
+ #: ../commentluv.php:1194
322
+ msgid "Enable info panel?"
323
+ msgstr "Povolit info panel?"
324
+
325
+ #: ../commentluv.php:1195
326
+ msgid "Info panel background color"
327
+ msgstr "Info panel Farba pozadia"
328
+
329
+ #: ../commentluv.php:1196
330
+ msgid "Info panel text color"
331
+ msgstr "Info panel Farba textu"
332
+
333
+ #: ../commentluv.php:1202
334
+ msgid "Example text and background color"
335
+ msgstr "Priklad farba textu a pozadia"
336
+
337
+ #: ../commentluv.php:1212
338
+ msgid "Messages"
339
+ msgstr "Spravy"
340
+
341
+ #: ../commentluv.php:1219
342
+ msgid "Text to be displayed in the comment"
343
+ msgstr "Text, ktory sa zobrazi v komentari"
344
+
345
+ #: ../commentluv.php:1222
346
+ msgid "[name] = The users name"
347
+ msgstr "[name] = The uzivatelov nazov"
348
+
349
+ #: ../commentluv.php:1222
350
+ msgid "[lastpost] = The last blog post link"
351
+ msgstr "[lastpost] = Posledny blog post link"
352
+
353
+ #: ../commentluv.php:1229
354
+ msgid "Message for unregistered user in the drop down box"
355
+ msgstr "Sprava pre neregistrovanych uzivatelov v rozbalovacom zozname"
356
+
357
+ #: ../commentluv.php:1230 ../commentluv.php:1254
358
+ msgid "Message will not be shown if you do not have registrations enabled"
359
+ msgstr "Sprava nebude zobrazene, ak nemate registracii povolene"
360
+
361
+ #: ../commentluv.php:1234
362
+ msgid "Your register link code"
363
+ msgstr "Vas register kodu"
364
+
365
+ #: ../commentluv.php:1244
366
+ msgid ""
367
+ "You have NOT set your blog to allow registrations, you can do that in "
368
+ "Settings/General"
369
+ msgstr ""
370
+ "Nemate NIE JE nastaveny svoj blog, aby registracia, mozete to urobit v "
371
+ "Nastavenia / Vseobecne"
372
+
373
+ #: ../commentluv.php:1245
374
+ msgid "here"
375
+ msgstr "tu"
376
+
377
+ #: ../commentluv.php:1253
378
+ msgid "Message for unregistered user in the info panel"
379
+ msgstr "Sprava pre neregistrovanych uzivatelov v informacnom paneli"
380
+
381
+ #: ../commentluv.php:1268
382
+ msgid "Operational Settings"
383
+ msgstr "Operacny Settings"
384
+
385
+ #: ../commentluv.php:1275
386
+ msgid "Who to give 10 last posts to choose from when they comment?"
387
+ msgstr "Kto dat 10 posledne prispevky na vyber, ked komentovat?"
388
+
389
+ #: ../commentluv.php:1276
390
+ msgid "Only Registered Members"
391
+ msgstr "Len Registrovani clenovia"
392
+
393
+ #: ../commentluv.php:1277
394
+ msgid "Everybody"
395
+ msgstr "Vsetci"
396
+
397
+ #: ../commentluv.php:1278
398
+ msgid "Nobody"
399
+ msgstr "Nikto"
400
+
401
+ #: ../commentluv.php:1285
402
+ msgid "Whose links should be dofollow?"
403
+ msgstr "Ci odkazy by mali byt DoFollow?"
404
+
405
+ #: ../commentluv.php:1286
406
+ msgid "Only Registered Members Links"
407
+ msgstr "Iba Registrovani clenovia odkazy"
408
+
409
+ #: ../commentluv.php:1287
410
+ msgid "Everybody gets dofollow links"
411
+ msgstr "Kazdy dostane DoFollow odkazy"
412
+
413
+ #: ../commentluv.php:1288
414
+ msgid "Nobody gets dofollow links"
415
+ msgstr "Nikto sa DoFollow odkazy"
416
+
417
+ #: ../commentluv.php:1299
418
+ msgid "Technical Settings"
419
+ msgstr "Technicke Settings"
420
+
421
+ #: ../commentluv.php:1299
422
+ msgid "Click to open technical settings"
423
+ msgstr "Otvorit technicke nastavenia"
424
+
425
+ #: ../commentluv.php:1306
426
+ msgid "Please check the help video for this section before changing settings"
427
+ msgstr ""
428
+ "Skontrolujte prosim napovedu video k tejto casti pred zmenou nastavenia"
429
+
430
+ #: ../commentluv.php:1307
431
+ msgid ""
432
+ "In most cases, you will NOT need to change the settings in this box unless "
433
+ "you have a custom comment form, template or you are using minifying or "
434
+ "caching plugins"
435
+ msgstr ""
436
+ "Vo vacsine pripadov, nebudete musiet zmenit nastavenie v tomto poli, ak "
437
+ "nemate vlastny komentar formulare, sablony, alebo pouzivate Minifikace alebo "
438
+ "ukladanie do vyrovnavacej pamate pluginy"
439
+
440
+ #: ../commentluv.php:1312
441
+ msgid "Compatibility"
442
+ msgstr "kompatibilita"
443
+
444
+ #: ../commentluv.php:1316
445
+ msgid "Use manual insert of badge code?"
446
+ msgstr "Pouzit rucne vlozku odznak kodu?"
447
+
448
+ #: ../commentluv.php:1320
449
+ msgid "Enable minifying compatibility?"
450
+ msgstr "Povolit Minifikace kompatibility?"
451
+
452
+ #: ../commentluv.php:1321
453
+ msgid "For caching plugins (places localized code in footer)"
454
+ msgstr ""
455
+ "Pre ukladanie do vyrovnavacej pamate pluginov (miesta lokalizovana kod do "
456
+ "paty)"
457
+
458
+ #: ../commentluv.php:1326
459
+ msgid "API URL"
460
+ msgstr "API URL"
461
+
462
+ #: ../commentluv.php:1330
463
+ msgid "URL to use for API"
464
+ msgstr "URL pouzit pre API"
465
+
466
+ #: ../commentluv.php:1334
467
+ msgid "Comment Form Field Values"
468
+ msgstr "Komentar hodnoty tvoria pole"
469
+
470
+ #: ../commentluv.php:1337
471
+ msgid "Authors Name field name"
472
+ msgstr "Autori pola Nazov nazov"
473
+
474
+ #: ../commentluv.php:1342
475
+ msgid "Email field name"
476
+ msgstr "Email nazov pola"
477
+
478
+ #: ../commentluv.php:1347
479
+ msgid "Authors URL field name"
480
+ msgstr "Autori URL nazov pola"
481
+
482
+ #: ../commentluv.php:1352
483
+ msgid "Comment Text Area name"
484
+ msgstr "Komentar Text Area meno"
485
+
486
+ #: ../commentluv.php:1357
487
+ msgid "Diagnostics Info"
488
+ msgstr "Diagnostika Info"
489
+
490
+ #: ../commentluv.php:1375
491
+ msgid "You can copy this information and send it to me if I request it"
492
+ msgstr "Mozete kopirovat tuto informaciu a poslat na mna, ci budem chciet"
493
+
494
+ #: ../commentluv.php:1382
495
+ msgid "Save Settings"
496
+ msgstr "Ulozit nastavenia"
497
+
498
+ #: ../commentluv.php:1384
499
+ msgid "Reset Settings"
500
+ msgstr "Obnovit nastavenia"
501
+
502
+ #: ../commentluv.php:1387
503
+ msgid "Are you sure you want to reset your settings? Press OK to continue"
504
+ msgstr "Ste si isti, ze chcete obnovit nastavenia? Stlacte OK pre pokracovanie"
505
+
506
+ #: ../commentluv.php:1390
507
+ msgid "Reset"
508
+ msgstr "Reset"
509
+
510
+ #: ../commentluv.php:1398
511
+ msgid "Plugin Info"
512
+ msgstr "Plugin Info"
513
+
514
+ #: ../commentluv.php:1401
515
+ msgid "Start Here"
516
+ msgstr "Start Here"
517
+
518
+ #: ../commentluv.php:1402
519
+ msgid "Author"
520
+ msgstr "Autor"
521
+
522
+ #: ../commentluv.php:1403
523
+ msgid "Home Page"
524
+ msgstr "Home Page"
525
+
526
+ #: ../commentluv.php:1403
527
+ msgid "Visit www.commentluv.com!"
528
+ msgstr "Navstivit www.commentluv.com!"
529
+
530
+ #: ../commentluv.php:1404
531
+ msgid "Social"
532
+ msgstr "socialne"
533
+
534
+ #: ../commentluv.php:1405
535
+ msgid "Help"
536
+ msgstr "Pomocnik"
537
+
538
+ #: ../commentluv.php:1405
539
+ msgid "Help Desk"
540
+ msgstr "Help Desk"
541
+
542
+ #: ../commentluv.php:1406
543
+ msgid "Do you like this plugin?"
544
+ msgstr "Paci sa vam tento plugin?"
545
+
546
+ #: ../commentluv.php:1408
547
+ msgid "News"
548
+ msgstr "Spravy"
549
+
550
+ #: ../commentluv.php:1414
551
+ msgid "Thanks to the following for translations"
552
+ msgstr "Vdaka nasledujucich pre preklady"
553
+
554
+ #: ../commentluv.php:1415
555
+ msgid "Italian"
556
+ msgstr "talianskej"
557
+
558
+ #: ../commentluv.php:1416
559
+ msgid "Dutch"
560
+ msgstr "Dutch"
561
+
562
+ #: ../commentluv.php:1417
563
+ msgid "Polish"
564
+ msgstr "polska"
565
+
566
+ #: ../commentluv.php:1418
567
+ msgid "Georgian"
568
+ msgstr "gruzinskej"
569
+
570
+ #: ../commentluv.php:1419
571
+ msgid "Lithuanian"
572
+ msgstr "litovske"
573
+
574
+ #: ../commentluv.php:1420
575
+ msgid "Portuguese"
576
+ msgstr "Portugalske"
577
+
578
+ #: ../commentluv.php:1421
579
+ msgid "Malaysian"
580
+ msgstr "Malajzia"
581
+
582
+ #: ../commentluv.php:1422
583
+ msgid "Hindi"
584
+ msgstr "Hindcina"
585
+
586
+ #: ../commentluv.php:1423
587
+ msgid "Russian"
588
+ msgstr "rusky"
589
+
590
+ #: ../commentluv.php:1424
591
+ msgid "Chinese"
592
+ msgstr "Cinan"
593
+
594
+ #: ../commentluv.php:1425
595
+ msgid "Hebrew"
596
+ msgstr "hebrejsky"
597
+
598
+ #: ../commentluv.php:1426
599
+ msgid "French"
600
+ msgstr "francuzsky"
601
+
602
+ #: ../commentluv.php:1428
603
+ msgid "Romanian"
604
+ msgstr "rumunsky"
605
+
606
+ #: ../commentluv.php:1429
607
+ msgid "German"
608
+ msgstr "Nemec"
609
+
610
+ #: ../commentluv.php:1430
611
+ msgid "Arabic"
612
+ msgstr "arabsky"
613
+
614
+ #: ../commentluv.php:1432
615
+ msgid "Want your link here?"
616
+ msgstr "Chcete sem svoj odkaz?"
617
+
618
+ #: ../commentluv.php:1432
619
+ msgid "How To Submit A Translation"
620
+ msgstr "Ako podat preklad"
621
+
622
+ #: ../commentluv.php:1433
623
+ msgid "Special thanks go to the following"
624
+ msgstr "Zvlastne podakovanie patri nasledujucim"
625
+
626
+ #: ../commentluv.php:1434
627
+ msgid "CSS Help"
628
+ msgstr "CSS Help"
629
+
630
+ #: ../commentluv.php:1435
631
+ msgid "Badge GFX"
632
+ msgstr "Odznak GFX"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link:http://comluv.com/about/donate
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.0
6
  Tested up to: 3.5
7
- Stable tag: 2.92.3
8
 
9
  Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
10
 
@@ -55,7 +55,7 @@ Bengali [Amrik Virdi](http://www.monetizeblogging.com/ "Bengali Translation")
55
  Hebrew [Tobi](http://makemoneyim.com/ "Hebrew Translation")
56
  Vietnamese [Xman](http://thegioimanguon.com "Vietnamese Translation")
57
  Hungarian [Bruno](http://no1tutorials.net/ "Hungarian Translation")
58
- Slovak [Viliam Brozman](http://www.brozman.sk/blog/ "Slovak Translation")
59
  Serbian [Diana](http://wpcouponshop.com/ "Serbian Translation")
60
 
61
  == Installation ==
@@ -86,6 +86,10 @@ Please see the videos in the settings page for explanations of how they work.
86
 
87
  == ChangeLog ==
88
 
 
 
 
 
89
  = 2.92.3 =
90
 
91
  * updated : fetch feed function updated to try 1 more alternative if all else fails
@@ -371,9 +375,9 @@ Please see the videos in the settings page for explanations of how they work.
371
 
372
  == Upgrade Notice ==
373
 
374
- = 2.92.3 =
375
 
376
- Fix for wordpress 3.5 wpdb->prepare notice
377
 
378
  == Configuration ==
379
 
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.0
6
  Tested up to: 3.5
7
+ Stable tag: 2.92.4
8
 
9
  Reward your readers by automatically placing a link to their last blog post at the end of their comment. Encourage a community and discover new posts.
10
 
55
  Hebrew [Tobi](http://makemoneyim.com/ "Hebrew Translation")
56
  Vietnamese [Xman](http://thegioimanguon.com "Vietnamese Translation")
57
  Hungarian [Bruno](http://no1tutorials.net/ "Hungarian Translation")
58
+ Slovak [Branco Radenovich](http://webhostinggeeks.com/blog/ "Slovak Translation")
59
  Serbian [Diana](http://wpcouponshop.com/ "Serbian Translation")
60
 
61
  == Installation ==
86
 
87
  == ChangeLog ==
88
 
89
+ = 2.92.4 =
90
+
91
+ * updated : make ajax fetch more secure
92
+
93
  = 2.92.3 =
94
 
95
  * updated : fetch feed function updated to try 1 more alternative if all else fails
375
 
376
  == Upgrade Notice ==
377
 
378
+ = 2.92.4 =
379
 
380
+ Important security fix
381
 
382
  == Configuration ==
383