CommentLuv - Version 2.90.2

Version Description

= 2.81.7 =

Added : Lithuanian language Added : Choice of nofollow on links for all/none/unregistered users

Download this release

Release Info

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

Code changes from version 2.90.1 to 2.90.2

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.90.1
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
@@ -29,7 +29,7 @@
29
  var $plugin_url;
30
  var $plugin_dir;
31
  var $db_option = 'commentluv_options';
32
- var $version = "2.90.1";
33
  var $slug = 'commentluv-options';
34
  var $localize;
35
 
@@ -69,8 +69,9 @@
69
  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
70
  add_filter ( 'found_posts', array(&$this,'send_feed'),10,2); // sends post titles and urls only
71
  add_filter ( 'kindergarten_html', array(&$this,'kindergarten_html')); // for cleaning html
72
- //$this->check_version();
73
  $options = $this->get_options();
 
 
74
  if($options['enable'] == 'yes'){
75
  $this->setup_hooks();
76
  }
@@ -324,7 +325,7 @@
324
  $response = wp_remote_head($url,array('method'=>'POST','body'=>$body));
325
  $latest = $this->php_version(wp_remote_retrieve_header($response,'version'));
326
  $message = wp_remote_retrieve_header($response,'message');
327
- if(version_compare($this->version,$latest,'<')){
328
  $options = $this->get_options();
329
  $options['upgrade'] = $latest;
330
  if($message){
@@ -793,6 +794,9 @@
793
  if($reset == 'yes'){
794
  return $default;
795
  }
 
 
 
796
  return $options;
797
  }
798
  /** handle_load_domain
@@ -822,6 +826,7 @@
822
  * new database tables on first install.
823
  */
824
  function install(){
 
825
  if(!$installed_version = get_option('cl_version')){
826
  // no installed version yet, set to version that was before big change
827
  $installed_version = 2.8;
@@ -835,9 +840,8 @@
835
  update_option($this->db_option,$this->get_options('yes'));
836
  update_option('cl_version',$this->version);
837
  }
838
- // new addition to technical settings after 2.9 release
839
- if(version_compare($installed_version,'2.9.1','<')){
840
- $options = $this->get_options();
841
  $options['api_url'] = admin_url('admin-ajax.php');
842
  update_option('cl_version',$this->version);
843
  }
@@ -1415,7 +1419,7 @@
1415
  <tr><td><img src="<?php echo $this->plugin_url;?>images/lt.png"/> <?php _e('Lithuanian',$this->plugin_domain);?></td><td><a target="_blank" href="http://mantas.malcius.lt/">Mantas Malcius</a></td></tr>
1416
  <tr><td><img src="<?php echo $this->plugin_url;?>images/br.png"/> <?php _e('Portuguese',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.korvo.com.br/">Diego Uczak</a></td></tr>
1417
  <tr><td><img src="<?php echo $this->plugin_url;?>images/my.png"/> <?php _e('Malaysian',$this->plugin_domain);?></td><td><a target="_blank" href="http://ariffshah.com/">Ariff Shah</a></td></tr>
1418
- <tr><td><img src="<?php echo $this->plugin_url;?>images/my.png"/> <?php _e('Hindi',$this->plugin_domain);?></td><td><a target="_blank" href="http://outshinesolutions.com/">Outshine Solutions</a></td></tr>
1419
  <tr><td><img src="<?php echo $this->plugin_url;?>images/ru.png"/> <?php _e('Russian',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.fatcow.com/">Fatcow</a>--></td></tr>
1420
  <tr><td><img src="<?php echo $this->plugin_url;?>images/cn.png"/> <?php _e('Chinese',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://zuoshen.com/">Donald</a>--></td></tr>
1421
  <tr><td><img src="<?php echo $this->plugin_url;?>images/il.png"/> <?php _e('Hebrew',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.maorb.info/">Maor Barazany</a>--></td></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.90.2
6
  Author: Andy Bailey
7
  Author URI: http://www.commentluv.com
8
  Copyright (C) <2011> <Andy Bailey>
29
  var $plugin_url;
30
  var $plugin_dir;
31
  var $db_option = 'commentluv_options';
32
+ var $version = "2.90.2";
33
  var $slug = 'commentluv-options';
34
  var $localize;
35
 
69
  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
70
  add_filter ( 'found_posts', array(&$this,'send_feed'),10,2); // sends post titles and urls only
71
  add_filter ( 'kindergarten_html', array(&$this,'kindergarten_html')); // for cleaning html
 
72
  $options = $this->get_options();
73
+ //DebugBreak();
74
+ //$this->check_version();
75
  if($options['enable'] == 'yes'){
76
  $this->setup_hooks();
77
  }
325
  $response = wp_remote_head($url,array('method'=>'POST','body'=>$body));
326
  $latest = $this->php_version(wp_remote_retrieve_header($response,'version'));
327
  $message = wp_remote_retrieve_header($response,'message');
328
+ if(version_compare($version,$latest,'<')){
329
  $options = $this->get_options();
330
  $options['upgrade'] = $latest;
331
  if($message){
794
  if($reset == 'yes'){
795
  return $default;
796
  }
797
+ if(!$options['api_url']){
798
+ $options['api_url'] = admin_url('admin-ajax.php');
799
+ }
800
  return $options;
801
  }
802
  /** handle_load_domain
826
  * new database tables on first install.
827
  */
828
  function install(){
829
+ $options = $this->get_options();
830
  if(!$installed_version = get_option('cl_version')){
831
  // no installed version yet, set to version that was before big change
832
  $installed_version = 2.8;
840
  update_option($this->db_option,$this->get_options('yes'));
841
  update_option('cl_version',$this->version);
842
  }
843
+ // new addition to technical settings after 2.90.1 release
844
+ if(version_compare($installed_version,'2.90.1','<')){
 
845
  $options['api_url'] = admin_url('admin-ajax.php');
846
  update_option('cl_version',$this->version);
847
  }
1419
  <tr><td><img src="<?php echo $this->plugin_url;?>images/lt.png"/> <?php _e('Lithuanian',$this->plugin_domain);?></td><td><a target="_blank" href="http://mantas.malcius.lt/">Mantas Malcius</a></td></tr>
1420
  <tr><td><img src="<?php echo $this->plugin_url;?>images/br.png"/> <?php _e('Portuguese',$this->plugin_domain);?></td><td><a target="_blank" href="http://www.korvo.com.br/">Diego Uczak</a></td></tr>
1421
  <tr><td><img src="<?php echo $this->plugin_url;?>images/my.png"/> <?php _e('Malaysian',$this->plugin_domain);?></td><td><a target="_blank" href="http://ariffshah.com/">Ariff Shah</a></td></tr>
1422
+ <tr><td><img src="<?php echo $this->plugin_url;?>images/in.png"/> <?php _e('Hindi',$this->plugin_domain);?></td><td><a target="_blank" href="http://outshinesolutions.com/">Outshine Solutions</a></td></tr>
1423
  <tr><td><img src="<?php echo $this->plugin_url;?>images/ru.png"/> <?php _e('Russian',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.fatcow.com/">Fatcow</a>--></td></tr>
1424
  <tr><td><img src="<?php echo $this->plugin_url;?>images/cn.png"/> <?php _e('Chinese',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://zuoshen.com/">Donald</a>--></td></tr>
1425
  <tr><td><img src="<?php echo $this->plugin_url;?>images/il.png"/> <?php _e('Hebrew',$this->plugin_domain);?></td><td><!--<a target="_blank" href="http://www.maorb.info/">Maor Barazany</a>--></td></tr>
images/in.png ADDED
Binary file
lang/commentluv-it_IT.mo CHANGED
Binary file
lang/commentluv-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: CommentLuv in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-06-09 14:04-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Andy Bailey <andrewgbailey@gmail.com>\n"
8
  "Language-Team: Gianni Diurno | gidibao.net\n"
@@ -24,563 +24,562 @@ msgstr "CommentLuv richiede Wordpress 3.0 o superiore."
24
  msgid "Please Update!"
25
  msgstr "Aggiorna!"
26
 
27
- #: ../commentluv.php:216
28
- #, fuzzy
29
  msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
30
- msgstr "Inserisci un URL qualora volessi aggiungere i tuoi ultimi articoli"
31
 
32
- #: ../commentluv.php:217
33
  msgid "Please use http:// in front of your url"
34
  msgstr "Aggiungi http:// davanti al tuo url"
35
 
36
- #: ../commentluv.php:218
37
  msgid "You need to visit your profile in the dashboard and update your details with your site URL"
38
  msgstr "Vai nella bacheca ed aggiorna i dettagli per il tuo profilo aggiungendo l'URL del tuo sito"
39
 
40
- #: ../commentluv.php:219
41
  msgid "No info was available or an error occured"
42
  msgstr "Nessuna info disponibile oppure si é verificato un errore"
43
 
44
- #: ../commentluv.php:242
45
  msgid "Please wait"
46
  msgstr "Attendi un attimo"
47
 
48
- #: ../commentluv.php:242
49
  msgid "Please check your inbox, an email will be sent to"
50
  msgstr "Vai nella tua casella di posta... ti arriverà una email"
51
 
52
- #: ../commentluv.php:242
53
  msgid "in the next few minutes with a confirmation link"
54
  msgstr "nei prossimi mminuti con il link per la conferma"
55
 
56
- #: ../commentluv.php:242
57
  msgid "An error happened with the request. Try signing up at the site"
58
  msgstr "Si é verificato un errore durante la richiesta. Prova a registrarti nel sito"
59
 
60
- #: ../commentluv.php:271
61
  msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
62
- msgstr ""
63
 
64
- #: ../commentluv.php:271
65
  msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
66
- msgstr ""
67
 
68
- #: ../commentluv.php:271
69
  msgid "Missing wp_commentmeta table"
70
- msgstr ""
71
 
72
- #: ../commentluv.php:364
73
  msgid "Twice Monthly"
74
  msgstr "Quindicinale"
75
 
76
- #: ../commentluv.php:391
77
  msgid "CommentLuv is enabled"
78
  msgstr "CommentLuv é attivo"
79
 
80
- #: ../commentluv.php:432
81
  msgid "Show more posts"
82
  msgstr "Mostra più articoli"
83
 
84
- #: ../commentluv.php:522
85
  msgid "I have only commented on this post"
86
  msgstr "Ho commentato solo in questo articolo"
87
 
88
- #: ../commentluv.php:525
89
  msgid "If I had made more comments on this site, you would see more of my other posts here"
90
  msgstr "Avessi fatto molti commenti su questo sito, qui puoi trovarne degli altri"
91
 
92
- #: ../commentluv.php:550
93
  msgid "User has not saved a description in their profile page"
94
  msgstr "L'utente non ha salvato nessuna descrizione nella sua pagina profilo"
95
 
96
- #: ../commentluv.php:562
97
  msgid "is the administrator of this site"
98
  msgstr "é l'amministratore di questo sito"
99
 
100
- #: ../commentluv.php:564
101
  msgid "is a registered member of my site"
102
  msgstr "é un utente registrato nel mio sito"
103
 
104
- #: ../commentluv.php:567
105
- #: ../commentluv.php:586
106
  msgid "Clicks on this link on this comment"
107
  msgstr "Clicca il link su questo commento"
108
 
109
- #: ../commentluv.php:567
110
- #: ../commentluv.php:587
111
  msgid "approved comments on this site"
112
  msgstr "commenti approvati per questo sito"
113
 
114
- #: ../commentluv.php:567
115
- #: ../commentluv.php:588
116
  msgid "Some other posts I have commented on"
117
  msgstr "Altri commenti ai quali ho partecipato"
118
 
119
- #: ../commentluv.php:567
120
  msgid "Some of my other posts"
121
  msgstr "Alcuni dei miei articoli"
122
 
123
- #: ../commentluv.php:580
124
  msgid "has not registered on this site"
125
  msgstr "non é registrato nel mio sito"
126
 
127
- #: ../commentluv.php:702
128
  msgid "Could not get posts for home blog"
129
- msgstr ""
130
 
131
- #: ../commentluv.php:758
132
- #, fuzzy
133
  msgid "If you are registered, you need to log in to get 10 posts to choose from"
134
- msgstr "Registrandoti come utente nel mio sito, potrai avere in questa casella 10 tra i tuoi articoli recenti."
135
 
136
- #: ../commentluv.php:782
137
- #: ../commentluv.php:1231
138
  msgid "Register"
139
  msgstr "Registrati"
140
 
141
- #: ../commentluv.php:787
142
  msgid "recently posted"
143
  msgstr "pubblicati di recente"
144
 
145
- #: ../commentluv.php:788
146
  msgid "If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box."
147
  msgstr "Registrandoti come utente nel mio sito, potrai avere in questa casella 10 tra i tuoi articoli recenti."
148
 
149
- #: ../commentluv.php:789
150
  msgid "If this user had registered to my site then they could get 10 last posts to choose from when they comment and you would be able to see a list of their recent posts in this panel"
151
  msgstr "Se questo utente si fosse registrato nel mio sito, avrebbe potuto mostrare nel commento 10 dei suoi articoli recenti e tu avresti potuto vedere in questo pannello la lista dei suoi post"
152
 
153
- #: ../commentluv.php:967
154
  msgid "Settings"
155
  msgstr "Impostazioni"
156
 
157
- #: ../commentluv.php:1006
158
  msgid "No Posts Were Found!"
159
  msgstr "Non é stato trovato nessun articolo!"
160
 
161
- #: ../commentluv.php:1046
162
  msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
163
  msgstr "E' disponibile una nuova versione di Commentluv. Aggiorna visitando questo sito"
164
 
165
- #: ../commentluv.php:1049
166
  msgid "Dismiss notice"
167
  msgstr "Avviso rinuncia"
168
 
169
- #: ../commentluv.php:1076
170
  msgid "CommentLuv Settings v"
171
  msgstr "Impostazioni CommentLuv v"
172
 
173
- #: ../commentluv.php:1086
174
  msgid "Important!"
175
  msgstr "Importante!"
176
 
177
- #: ../commentluv.php:1086
178
  msgid "Subscription Information"
179
  msgstr "Informazioni abbonamento"
180
 
181
- #: ../commentluv.php:1091
182
  msgid "CommentLuv 3.0 Premium is coming soon!"
183
  msgstr "La versione premium 3.0 di CommentLuv sta per arrivare!"
184
 
185
- #: ../commentluv.php:1092
186
  msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
187
  msgstr "I tuoi dati sono protetti. Riceverai SOLAMENTE le email di notifica per gli aggiornamenti del plugin."
188
 
189
- #: ../commentluv.php:1095
190
  msgid "There is a premium version of CommentLuv coming that will have much more control of how the plugin works as well as exclusive features like keyword name, inline registration and much much more!. Signup to find out as soon as it is ready"
191
  msgstr "Verrà rilasciata a breve una versione premium di premium CommentLuv grazie alla quale potrai avere un maggiore controlo sul plugin nonché avere delle nuove opzioni esclusive quali le parole chiave, le registrazioni inline e molto altro ancora!. Registrandoti scoprirai quando sarà disponibile"
192
 
193
- #: ../commentluv.php:1098
194
  msgid "You have already subscribed, if you have not received the verification within 12 hours, please click the button to resend or try the form at"
195
  msgstr "Se ti fossi già iscritto oppure non avessi ancora ricevuto la verifica entro le 12 ore, clicca sul pulsante per un nuovo invio o compila il modulo presso "
196
 
197
- #: ../commentluv.php:1098
198
  msgid "Resend Verification"
199
  msgstr "Reinvia verifica"
200
 
201
- #: ../commentluv.php:1100
202
  msgid "Click to register now!"
203
  msgstr "Clicca per registrarti adesso!"
204
 
205
- #: ../commentluv.php:1115
206
  msgid "Primary Setting"
207
  msgstr "Impostazioni principali"
208
 
209
- #: ../commentluv.php:1115
210
- #: ../commentluv.php:1149
211
- #: ../commentluv.php:1208
212
- #: ../commentluv.php:1264
213
- #: ../commentluv.php:1295
214
  msgid "Help Video"
215
  msgstr "Video aiuto"
216
 
217
- #: ../commentluv.php:1119
218
  msgid "Enable CommentLuv?"
219
  msgstr "Attivare CommentLuv?"
220
 
221
- #: ../commentluv.php:1120
222
  msgid "Yes"
223
  msgstr "Sì"
224
 
225
- #: ../commentluv.php:1121
226
  msgid "No"
227
  msgstr "No"
228
 
229
- #: ../commentluv.php:1126
230
  msgid "On Posts"
231
  msgstr " negli articoli"
232
 
233
- #: ../commentluv.php:1127
234
  msgid "On Pages"
235
  msgstr " nelle pagine"
236
 
237
- #: ../commentluv.php:1128
238
  msgid "On Both"
239
  msgstr " su entrambi"
240
 
241
- #: ../commentluv.php:1133
242
  msgid "On by default?"
243
  msgstr "attivo come predefinita?"
244
 
245
- #: ../commentluv.php:1137
246
  msgid "On for admin?"
247
  msgstr "attivo per l'amministratore?"
248
 
249
- #: ../commentluv.php:1149
250
  msgid "Appearance"
251
  msgstr "Aspetto"
252
 
253
- #: ../commentluv.php:1153
254
  msgid "Badge"
255
  msgstr "badge"
256
 
257
- #: ../commentluv.php:1154
258
  msgid "Custom Image URL"
259
  msgstr "URL immagine"
260
 
261
- #: ../commentluv.php:1155
262
  msgid "Use Text"
263
  msgstr "utilizza testo"
264
 
265
- #: ../commentluv.php:1163
266
  msgid "Default"
267
  msgstr "Predefinito"
268
 
269
- #: ../commentluv.php:1164
270
  msgid "White"
271
  msgstr "Bianco"
272
 
273
- #: ../commentluv.php:1165
274
  msgid "Black"
275
  msgstr "Nero"
276
 
277
- #: ../commentluv.php:1166
278
  msgid "None"
279
  msgstr "Nessuno"
280
 
281
- #: ../commentluv.php:1183
282
  msgid "Link to Commentluv?"
283
  msgstr "link a Commentluv?"
284
 
285
- #: ../commentluv.php:1190
286
  msgid "Enable info panel?"
287
  msgstr "pannello info?"
288
 
289
- #: ../commentluv.php:1191
290
  msgid "Info panel background color"
291
  msgstr "colore sfondo pannello info"
292
 
293
- #: ../commentluv.php:1192
294
  msgid "Info panel text color"
295
  msgstr "colore testo pannello info"
296
 
297
- #: ../commentluv.php:1198
298
  msgid "Example text and background color"
299
  msgstr "esempio di testo e colore di sfondo"
300
 
301
- #: ../commentluv.php:1208
302
  msgid "Messages"
303
  msgstr "Messaggi"
304
 
305
- #: ../commentluv.php:1215
306
  msgid "Text to be displayed in the comment"
307
  msgstr "testo da mostrare nel commento"
308
 
309
- #: ../commentluv.php:1218
310
  msgid "[name] = The users name"
311
  msgstr "[name] = nome utente"
312
 
313
- #: ../commentluv.php:1218
314
  msgid "[lastpost] = The last blog post link"
315
  msgstr "[lastpost] = link a ultimo articolo"
316
 
317
- #: ../commentluv.php:1225
318
  msgid "Message for unregistered user in the drop down box"
319
  msgstr "messaggio (casella drop down) per gli utenti non registrati"
320
 
321
- #: ../commentluv.php:1226
322
- #: ../commentluv.php:1250
323
  msgid "Message will not be shown if you do not have registrations enabled"
324
- msgstr ""
325
 
326
- #: ../commentluv.php:1230
327
  msgid "Your register link code"
328
  msgstr "Il tuo codice link registrazione"
329
 
330
- #: ../commentluv.php:1240
331
  msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
332
  msgstr "Il tuo blog NON é stato impostato per potere ricevere delle registrazioni (Impostazioni/Generale)"
333
 
334
- #: ../commentluv.php:1241
335
  msgid "here"
336
  msgstr "qui"
337
 
338
- #: ../commentluv.php:1249
339
  msgid "Message for unregistered user in the info panel"
340
  msgstr "Messaggio (pannello info) per gli utenti non registrati"
341
 
342
- #: ../commentluv.php:1264
343
  msgid "Operational Settings"
344
  msgstr "Impostazioni di gestione"
345
 
346
- #: ../commentluv.php:1271
347
  msgid "Who to give 10 last posts to choose from when they comment?"
348
  msgstr "chi potrà mostrare gli ultimi 10 articoli pubblicati?"
349
 
350
- #: ../commentluv.php:1272
351
  msgid "Only Registered Members"
352
  msgstr "solo i membri registrati"
353
 
354
- #: ../commentluv.php:1273
355
  msgid "Everybody"
356
  msgstr "chiunque"
357
 
358
- #: ../commentluv.php:1274
359
  msgid "Nobody"
360
  msgstr "nessuno"
361
 
362
- #: ../commentluv.php:1281
363
  msgid "Whose links should be dofollow?"
364
  msgstr "assegnazione dei link dofollow?"
365
 
366
- #: ../commentluv.php:1282
367
  msgid "Only Registered Members Links"
368
  msgstr "solo per gli utenti registrati"
369
 
370
- #: ../commentluv.php:1283
371
  msgid "Everybody gets dofollow links"
372
  msgstr "link dofollow per chiunque"
373
 
374
- #: ../commentluv.php:1284
375
  msgid "Nobody gets dofollow links"
376
  msgstr "nessuno"
377
 
378
- #: ../commentluv.php:1295
379
  msgid "Technical Settings"
380
  msgstr "Impostazioni tecniche"
381
 
382
- #: ../commentluv.php:1295
383
  msgid "Click to open technical settings"
384
  msgstr "Clicca per aprire"
385
 
386
- #: ../commentluv.php:1302
387
  msgid "Please check the help video for this section before changing settings"
388
  msgstr "Prima di modificare le impostazioni, guarda il video di aiuto per questa sezione "
389
 
390
- #: ../commentluv.php:1303
391
  msgid "In most cases, you will NOT need to change the settings in this box unless you have a custom comment form, template or you are using minifying or caching plugins"
392
  msgstr "Nella maggior parte dei casi, NON dovrai modificare le impostazioni di questa sezione a meno che tu non abbia un template o modulo dei commenti personalizzato oppure stessi facendo uso di un plugin per la cache/minimizzazione"
393
 
394
- #: ../commentluv.php:1308
395
  msgid "Compatibility"
396
  msgstr "Compatibilità"
397
 
398
- #: ../commentluv.php:1312
399
  msgid "Use manual insert of badge code?"
400
  msgstr "inserire manualmente il codice?"
401
 
402
- #: ../commentluv.php:1316
403
  msgid "Enable minifying compatibility?"
404
  msgstr "attivare compatibilità minimizzazione?"
405
 
406
- #: ../commentluv.php:1317
407
  msgid "For caching plugins (places localized code in footer)"
408
  msgstr "per i plugin di cache (posiziona nel footer codice localizzazione)"
409
 
410
- #: ../commentluv.php:1322
411
  msgid "API URL"
412
- msgstr ""
413
 
414
- #: ../commentluv.php:1326
415
  msgid "URL to use for API"
416
- msgstr ""
417
 
418
- #: ../commentluv.php:1330
419
  msgid "Comment Form Field Values"
420
  msgstr "Valori campo modulo commenti"
421
 
422
- #: ../commentluv.php:1333
423
  msgid "Authors Name field name"
424
  msgstr "nome per il campo autore"
425
 
426
- #: ../commentluv.php:1338
427
  msgid "Email field name"
428
  msgstr "nome per il campo email"
429
 
430
- #: ../commentluv.php:1343
431
  msgid "Authors URL field name"
432
  msgstr "nome per il campo URL autore"
433
 
434
- #: ../commentluv.php:1348
435
  msgid "Comment Text Area name"
436
  msgstr "nome per l'area di testo dei commenti"
437
 
438
- #: ../commentluv.php:1353
439
  msgid "Diagnostics Info"
440
  msgstr "Info diagnostica"
441
 
442
- #: ../commentluv.php:1371
443
  msgid "You can copy this information and send it to me if I request it"
444
  msgstr "copia queste informazioni ed inviarmele (se richiesto)"
445
 
446
- #: ../commentluv.php:1378
447
  msgid "Save Settings"
448
  msgstr "Salva le impostazioni"
449
 
450
- #: ../commentluv.php:1380
451
  msgid "Reset Settings"
452
  msgstr "Ripristino impostazioni"
453
 
454
- #: ../commentluv.php:1383
455
  msgid "Are you sure you want to reset your settings? Press OK to continue"
456
  msgstr "Sei certo di volere ripristinare le tue impostazioni? Premi OK per proseguire"
457
 
458
- #: ../commentluv.php:1386
459
  msgid "Reset"
460
  msgstr "Azzera"
461
 
462
- #: ../commentluv.php:1394
463
  msgid "Plugin Info"
464
  msgstr "Info sul plugin"
465
 
466
- #: ../commentluv.php:1397
467
  msgid "Start Here"
468
  msgstr "Inizia qui"
469
 
470
- #: ../commentluv.php:1398
471
  msgid "Author"
472
  msgstr "Autore"
473
 
474
- #: ../commentluv.php:1399
475
  msgid "Home Page"
476
  msgstr "Home Page"
477
 
478
- #: ../commentluv.php:1399
479
  msgid "Visit www.commentluv.com!"
480
  msgstr "Visita www.commentluv.com!"
481
 
482
- #: ../commentluv.php:1400
483
  msgid "Social"
484
  msgstr "Social"
485
 
486
- #: ../commentluv.php:1401
487
  msgid "Help"
488
  msgstr "Aiuto"
489
 
490
- #: ../commentluv.php:1401
491
  msgid "Help Desk"
492
  msgstr "Sezione aiuto"
493
 
494
- #: ../commentluv.php:1402
495
  msgid "Do you like this plugin?"
496
- msgstr ""
497
 
498
- #: ../commentluv.php:1404
499
  msgid "News"
500
  msgstr "Notizie"
501
 
502
- #: ../commentluv.php:1410
503
  msgid "Thanks to the following for translations"
504
  msgstr "Un grazie ai seguenti traduttori"
505
 
506
- #: ../commentluv.php:1411
507
  msgid "Italian"
508
  msgstr "Italiano"
509
 
510
- #: ../commentluv.php:1412
511
  msgid "Dutch"
512
  msgstr "Olandese"
513
 
514
- #: ../commentluv.php:1413
515
  msgid "Polish"
516
  msgstr "Polacco"
517
 
518
- #: ../commentluv.php:1414
519
  msgid "Georgian"
520
  msgstr "Georgiano"
521
 
522
- #: ../commentluv.php:1415
523
  msgid "Lithuanian"
524
  msgstr "Lituano"
525
 
526
- #: ../commentluv.php:1416
527
  msgid "Portuguese"
528
  msgstr "Portoghese"
529
 
530
- #: ../commentluv.php:1417
531
- #, fuzzy
532
  msgid "Malaysian"
533
- msgstr "Italiano"
534
 
535
- #: ../commentluv.php:1418
 
 
 
 
536
  msgid "Russian"
537
  msgstr "Russo"
538
 
539
- #: ../commentluv.php:1419
540
  msgid "Chinese"
541
  msgstr "Cinese"
542
 
543
- #: ../commentluv.php:1420
544
  msgid "Hebrew"
545
  msgstr "Ebraico"
546
 
547
- #: ../commentluv.php:1421
548
  msgid "French"
549
  msgstr "Francese"
550
 
551
- #: ../commentluv.php:1423
552
  msgid "Romanian"
553
  msgstr "Rumeno"
554
 
555
- #: ../commentluv.php:1424
556
  msgid "German"
557
  msgstr "Tedesco"
558
 
559
- #: ../commentluv.php:1425
560
  msgid "Arabic"
561
  msgstr "Arabo"
562
 
563
- #: ../commentluv.php:1427
564
  msgid "Want your link here?"
565
- msgstr ""
566
 
567
- #: ../commentluv.php:1427
568
  msgid "How To Submit A Translation"
569
- msgstr ""
570
 
571
- #: ../commentluv.php:1428
572
  msgid "Special thanks go to the following"
573
- msgstr ""
574
 
575
- #: ../commentluv.php:1429
576
- #, fuzzy
577
  msgid "CSS Help"
578
- msgstr "Aiuto"
579
 
580
- #: ../commentluv.php:1430
581
- #, fuzzy
582
  msgid "Badge GFX"
583
- msgstr "badge"
584
 
585
  #~ msgid "Display Options"
586
  #~ msgstr "Mostra opzioni"
2
  msgstr ""
3
  "Project-Id-Version: CommentLuv in italiano\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-06-12 18:43-0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Andy Bailey <andrewgbailey@gmail.com>\n"
8
  "Language-Team: Gianni Diurno | gidibao.net\n"
24
  msgid "Please Update!"
25
  msgstr "Aggiorna!"
26
 
27
+ #: ../commentluv.php:217
 
28
  msgid "Please enter a URL and then click the CommentLuv checkbox if you want to add your last blog post"
29
+ msgstr "Inserisci un URL e clicca sulla casella di verifica di CommentLuv qualora volessi aggiungere i tuoi ultimi articoli"
30
 
31
+ #: ../commentluv.php:218
32
  msgid "Please use http:// in front of your url"
33
  msgstr "Aggiungi http:// davanti al tuo url"
34
 
35
+ #: ../commentluv.php:219
36
  msgid "You need to visit your profile in the dashboard and update your details with your site URL"
37
  msgstr "Vai nella bacheca ed aggiorna i dettagli per il tuo profilo aggiungendo l'URL del tuo sito"
38
 
39
+ #: ../commentluv.php:220
40
  msgid "No info was available or an error occured"
41
  msgstr "Nessuna info disponibile oppure si é verificato un errore"
42
 
43
+ #: ../commentluv.php:243
44
  msgid "Please wait"
45
  msgstr "Attendi un attimo"
46
 
47
+ #: ../commentluv.php:243
48
  msgid "Please check your inbox, an email will be sent to"
49
  msgstr "Vai nella tua casella di posta... ti arriverà una email"
50
 
51
+ #: ../commentluv.php:243
52
  msgid "in the next few minutes with a confirmation link"
53
  msgstr "nei prossimi mminuti con il link per la conferma"
54
 
55
+ #: ../commentluv.php:243
56
  msgid "An error happened with the request. Try signing up at the site"
57
  msgstr "Si é verificato un errore durante la richiesta. Prova a registrarti nel sito"
58
 
59
+ #: ../commentluv.php:272
60
  msgid "Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!"
61
+ msgstr "La tua installazione di WordPress é priva della tabella <strong>wp_commentmeta</strong>!"
62
 
63
+ #: ../commentluv.php:272
64
  msgid " CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->"
65
+ msgstr " CommentLuv non può funzionare senza questa tabella. Leggi questo post nel forum di WP per imparare coma aggiungerne una ->"
66
 
67
+ #: ../commentluv.php:272
68
  msgid "Missing wp_commentmeta table"
69
+ msgstr "Manca la tabella wp_commentmeta"
70
 
71
+ #: ../commentluv.php:365
72
  msgid "Twice Monthly"
73
  msgstr "Quindicinale"
74
 
75
+ #: ../commentluv.php:392
76
  msgid "CommentLuv is enabled"
77
  msgstr "CommentLuv é attivo"
78
 
79
+ #: ../commentluv.php:433
80
  msgid "Show more posts"
81
  msgstr "Mostra più articoli"
82
 
83
+ #: ../commentluv.php:523
84
  msgid "I have only commented on this post"
85
  msgstr "Ho commentato solo in questo articolo"
86
 
87
+ #: ../commentluv.php:526
88
  msgid "If I had made more comments on this site, you would see more of my other posts here"
89
  msgstr "Avessi fatto molti commenti su questo sito, qui puoi trovarne degli altri"
90
 
91
+ #: ../commentluv.php:551
92
  msgid "User has not saved a description in their profile page"
93
  msgstr "L'utente non ha salvato nessuna descrizione nella sua pagina profilo"
94
 
95
+ #: ../commentluv.php:563
96
  msgid "is the administrator of this site"
97
  msgstr "é l'amministratore di questo sito"
98
 
99
+ #: ../commentluv.php:565
100
  msgid "is a registered member of my site"
101
  msgstr "é un utente registrato nel mio sito"
102
 
103
+ #: ../commentluv.php:568
104
+ #: ../commentluv.php:587
105
  msgid "Clicks on this link on this comment"
106
  msgstr "Clicca il link su questo commento"
107
 
108
+ #: ../commentluv.php:568
109
+ #: ../commentluv.php:588
110
  msgid "approved comments on this site"
111
  msgstr "commenti approvati per questo sito"
112
 
113
+ #: ../commentluv.php:568
114
+ #: ../commentluv.php:589
115
  msgid "Some other posts I have commented on"
116
  msgstr "Altri commenti ai quali ho partecipato"
117
 
118
+ #: ../commentluv.php:568
119
  msgid "Some of my other posts"
120
  msgstr "Alcuni dei miei articoli"
121
 
122
+ #: ../commentluv.php:581
123
  msgid "has not registered on this site"
124
  msgstr "non é registrato nel mio sito"
125
 
126
+ #: ../commentluv.php:703
127
  msgid "Could not get posts for home blog"
128
+ msgstr "Impossibile recuperare gli articoli"
129
 
130
+ #: ../commentluv.php:759
 
131
  msgid "If you are registered, you need to log in to get 10 posts to choose from"
132
+ msgstr "Se utente registrato, effettuare il login per avere 10 articoli da scegliere"
133
 
134
+ #: ../commentluv.php:783
135
+ #: ../commentluv.php:1235
136
  msgid "Register"
137
  msgstr "Registrati"
138
 
139
+ #: ../commentluv.php:788
140
  msgid "recently posted"
141
  msgstr "pubblicati di recente"
142
 
143
+ #: ../commentluv.php:789
144
  msgid "If you register as a user on my site, you can get your 10 most recent blog posts to choose from in this box."
145
  msgstr "Registrandoti come utente nel mio sito, potrai avere in questa casella 10 tra i tuoi articoli recenti."
146
 
147
+ #: ../commentluv.php:790
148
  msgid "If this user had registered to my site then they could get 10 last posts to choose from when they comment and you would be able to see a list of their recent posts in this panel"
149
  msgstr "Se questo utente si fosse registrato nel mio sito, avrebbe potuto mostrare nel commento 10 dei suoi articoli recenti e tu avresti potuto vedere in questo pannello la lista dei suoi post"
150
 
151
+ #: ../commentluv.php:971
152
  msgid "Settings"
153
  msgstr "Impostazioni"
154
 
155
+ #: ../commentluv.php:1010
156
  msgid "No Posts Were Found!"
157
  msgstr "Non é stato trovato nessun articolo!"
158
 
159
+ #: ../commentluv.php:1050
160
  msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
161
  msgstr "E' disponibile una nuova versione di Commentluv. Aggiorna visitando questo sito"
162
 
163
+ #: ../commentluv.php:1053
164
  msgid "Dismiss notice"
165
  msgstr "Avviso rinuncia"
166
 
167
+ #: ../commentluv.php:1080
168
  msgid "CommentLuv Settings v"
169
  msgstr "Impostazioni CommentLuv v"
170
 
171
+ #: ../commentluv.php:1090
172
  msgid "Important!"
173
  msgstr "Importante!"
174
 
175
+ #: ../commentluv.php:1090
176
  msgid "Subscription Information"
177
  msgstr "Informazioni abbonamento"
178
 
179
+ #: ../commentluv.php:1095
180
  msgid "CommentLuv 3.0 Premium is coming soon!"
181
  msgstr "La versione premium 3.0 di CommentLuv sta per arrivare!"
182
 
183
+ #: ../commentluv.php:1096
184
  msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
185
  msgstr "I tuoi dati sono protetti. Riceverai SOLAMENTE le email di notifica per gli aggiornamenti del plugin."
186
 
187
+ #: ../commentluv.php:1099
188
  msgid "There is a premium version of CommentLuv coming that will have much more control of how the plugin works as well as exclusive features like keyword name, inline registration and much much more!. Signup to find out as soon as it is ready"
189
  msgstr "Verrà rilasciata a breve una versione premium di premium CommentLuv grazie alla quale potrai avere un maggiore controlo sul plugin nonché avere delle nuove opzioni esclusive quali le parole chiave, le registrazioni inline e molto altro ancora!. Registrandoti scoprirai quando sarà disponibile"
190
 
191
+ #: ../commentluv.php:1102
192
  msgid "You have already subscribed, if you have not received the verification within 12 hours, please click the button to resend or try the form at"
193
  msgstr "Se ti fossi già iscritto oppure non avessi ancora ricevuto la verifica entro le 12 ore, clicca sul pulsante per un nuovo invio o compila il modulo presso "
194
 
195
+ #: ../commentluv.php:1102
196
  msgid "Resend Verification"
197
  msgstr "Reinvia verifica"
198
 
199
+ #: ../commentluv.php:1104
200
  msgid "Click to register now!"
201
  msgstr "Clicca per registrarti adesso!"
202
 
203
+ #: ../commentluv.php:1119
204
  msgid "Primary Setting"
205
  msgstr "Impostazioni principali"
206
 
207
+ #: ../commentluv.php:1119
208
+ #: ../commentluv.php:1153
209
+ #: ../commentluv.php:1212
210
+ #: ../commentluv.php:1268
211
+ #: ../commentluv.php:1299
212
  msgid "Help Video"
213
  msgstr "Video aiuto"
214
 
215
+ #: ../commentluv.php:1123
216
  msgid "Enable CommentLuv?"
217
  msgstr "Attivare CommentLuv?"
218
 
219
+ #: ../commentluv.php:1124
220
  msgid "Yes"
221
  msgstr "Sì"
222
 
223
+ #: ../commentluv.php:1125
224
  msgid "No"
225
  msgstr "No"
226
 
227
+ #: ../commentluv.php:1130
228
  msgid "On Posts"
229
  msgstr " negli articoli"
230
 
231
+ #: ../commentluv.php:1131
232
  msgid "On Pages"
233
  msgstr " nelle pagine"
234
 
235
+ #: ../commentluv.php:1132
236
  msgid "On Both"
237
  msgstr " su entrambi"
238
 
239
+ #: ../commentluv.php:1137
240
  msgid "On by default?"
241
  msgstr "attivo come predefinita?"
242
 
243
+ #: ../commentluv.php:1141
244
  msgid "On for admin?"
245
  msgstr "attivo per l'amministratore?"
246
 
247
+ #: ../commentluv.php:1153
248
  msgid "Appearance"
249
  msgstr "Aspetto"
250
 
251
+ #: ../commentluv.php:1157
252
  msgid "Badge"
253
  msgstr "badge"
254
 
255
+ #: ../commentluv.php:1158
256
  msgid "Custom Image URL"
257
  msgstr "URL immagine"
258
 
259
+ #: ../commentluv.php:1159
260
  msgid "Use Text"
261
  msgstr "utilizza testo"
262
 
263
+ #: ../commentluv.php:1167
264
  msgid "Default"
265
  msgstr "Predefinito"
266
 
267
+ #: ../commentluv.php:1168
268
  msgid "White"
269
  msgstr "Bianco"
270
 
271
+ #: ../commentluv.php:1169
272
  msgid "Black"
273
  msgstr "Nero"
274
 
275
+ #: ../commentluv.php:1170
276
  msgid "None"
277
  msgstr "Nessuno"
278
 
279
+ #: ../commentluv.php:1187
280
  msgid "Link to Commentluv?"
281
  msgstr "link a Commentluv?"
282
 
283
+ #: ../commentluv.php:1194
284
  msgid "Enable info panel?"
285
  msgstr "pannello info?"
286
 
287
+ #: ../commentluv.php:1195
288
  msgid "Info panel background color"
289
  msgstr "colore sfondo pannello info"
290
 
291
+ #: ../commentluv.php:1196
292
  msgid "Info panel text color"
293
  msgstr "colore testo pannello info"
294
 
295
+ #: ../commentluv.php:1202
296
  msgid "Example text and background color"
297
  msgstr "esempio di testo e colore di sfondo"
298
 
299
+ #: ../commentluv.php:1212
300
  msgid "Messages"
301
  msgstr "Messaggi"
302
 
303
+ #: ../commentluv.php:1219
304
  msgid "Text to be displayed in the comment"
305
  msgstr "testo da mostrare nel commento"
306
 
307
+ #: ../commentluv.php:1222
308
  msgid "[name] = The users name"
309
  msgstr "[name] = nome utente"
310
 
311
+ #: ../commentluv.php:1222
312
  msgid "[lastpost] = The last blog post link"
313
  msgstr "[lastpost] = link a ultimo articolo"
314
 
315
+ #: ../commentluv.php:1229
316
  msgid "Message for unregistered user in the drop down box"
317
  msgstr "messaggio (casella drop down) per gli utenti non registrati"
318
 
319
+ #: ../commentluv.php:1230
320
+ #: ../commentluv.php:1254
321
  msgid "Message will not be shown if you do not have registrations enabled"
322
+ msgstr "Il messaggio non verrà mostrato qualora avessi disattivato le registrazioni"
323
 
324
+ #: ../commentluv.php:1234
325
  msgid "Your register link code"
326
  msgstr "Il tuo codice link registrazione"
327
 
328
+ #: ../commentluv.php:1244
329
  msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
330
  msgstr "Il tuo blog NON é stato impostato per potere ricevere delle registrazioni (Impostazioni/Generale)"
331
 
332
+ #: ../commentluv.php:1245
333
  msgid "here"
334
  msgstr "qui"
335
 
336
+ #: ../commentluv.php:1253
337
  msgid "Message for unregistered user in the info panel"
338
  msgstr "Messaggio (pannello info) per gli utenti non registrati"
339
 
340
+ #: ../commentluv.php:1268
341
  msgid "Operational Settings"
342
  msgstr "Impostazioni di gestione"
343
 
344
+ #: ../commentluv.php:1275
345
  msgid "Who to give 10 last posts to choose from when they comment?"
346
  msgstr "chi potrà mostrare gli ultimi 10 articoli pubblicati?"
347
 
348
+ #: ../commentluv.php:1276
349
  msgid "Only Registered Members"
350
  msgstr "solo i membri registrati"
351
 
352
+ #: ../commentluv.php:1277
353
  msgid "Everybody"
354
  msgstr "chiunque"
355
 
356
+ #: ../commentluv.php:1278
357
  msgid "Nobody"
358
  msgstr "nessuno"
359
 
360
+ #: ../commentluv.php:1285
361
  msgid "Whose links should be dofollow?"
362
  msgstr "assegnazione dei link dofollow?"
363
 
364
+ #: ../commentluv.php:1286
365
  msgid "Only Registered Members Links"
366
  msgstr "solo per gli utenti registrati"
367
 
368
+ #: ../commentluv.php:1287
369
  msgid "Everybody gets dofollow links"
370
  msgstr "link dofollow per chiunque"
371
 
372
+ #: ../commentluv.php:1288
373
  msgid "Nobody gets dofollow links"
374
  msgstr "nessuno"
375
 
376
+ #: ../commentluv.php:1299
377
  msgid "Technical Settings"
378
  msgstr "Impostazioni tecniche"
379
 
380
+ #: ../commentluv.php:1299
381
  msgid "Click to open technical settings"
382
  msgstr "Clicca per aprire"
383
 
384
+ #: ../commentluv.php:1306
385
  msgid "Please check the help video for this section before changing settings"
386
  msgstr "Prima di modificare le impostazioni, guarda il video di aiuto per questa sezione "
387
 
388
+ #: ../commentluv.php:1307
389
  msgid "In most cases, you will NOT need to change the settings in this box unless you have a custom comment form, template or you are using minifying or caching plugins"
390
  msgstr "Nella maggior parte dei casi, NON dovrai modificare le impostazioni di questa sezione a meno che tu non abbia un template o modulo dei commenti personalizzato oppure stessi facendo uso di un plugin per la cache/minimizzazione"
391
 
392
+ #: ../commentluv.php:1312
393
  msgid "Compatibility"
394
  msgstr "Compatibilità"
395
 
396
+ #: ../commentluv.php:1316
397
  msgid "Use manual insert of badge code?"
398
  msgstr "inserire manualmente il codice?"
399
 
400
+ #: ../commentluv.php:1320
401
  msgid "Enable minifying compatibility?"
402
  msgstr "attivare compatibilità minimizzazione?"
403
 
404
+ #: ../commentluv.php:1321
405
  msgid "For caching plugins (places localized code in footer)"
406
  msgstr "per i plugin di cache (posiziona nel footer codice localizzazione)"
407
 
408
+ #: ../commentluv.php:1326
409
  msgid "API URL"
410
+ msgstr "URL API"
411
 
412
+ #: ../commentluv.php:1330
413
  msgid "URL to use for API"
414
+ msgstr "URL da utilizzare per la API"
415
 
416
+ #: ../commentluv.php:1334
417
  msgid "Comment Form Field Values"
418
  msgstr "Valori campo modulo commenti"
419
 
420
+ #: ../commentluv.php:1337
421
  msgid "Authors Name field name"
422
  msgstr "nome per il campo autore"
423
 
424
+ #: ../commentluv.php:1342
425
  msgid "Email field name"
426
  msgstr "nome per il campo email"
427
 
428
+ #: ../commentluv.php:1347
429
  msgid "Authors URL field name"
430
  msgstr "nome per il campo URL autore"
431
 
432
+ #: ../commentluv.php:1352
433
  msgid "Comment Text Area name"
434
  msgstr "nome per l'area di testo dei commenti"
435
 
436
+ #: ../commentluv.php:1357
437
  msgid "Diagnostics Info"
438
  msgstr "Info diagnostica"
439
 
440
+ #: ../commentluv.php:1375
441
  msgid "You can copy this information and send it to me if I request it"
442
  msgstr "copia queste informazioni ed inviarmele (se richiesto)"
443
 
444
+ #: ../commentluv.php:1382
445
  msgid "Save Settings"
446
  msgstr "Salva le impostazioni"
447
 
448
+ #: ../commentluv.php:1384
449
  msgid "Reset Settings"
450
  msgstr "Ripristino impostazioni"
451
 
452
+ #: ../commentluv.php:1387
453
  msgid "Are you sure you want to reset your settings? Press OK to continue"
454
  msgstr "Sei certo di volere ripristinare le tue impostazioni? Premi OK per proseguire"
455
 
456
+ #: ../commentluv.php:1390
457
  msgid "Reset"
458
  msgstr "Azzera"
459
 
460
+ #: ../commentluv.php:1398
461
  msgid "Plugin Info"
462
  msgstr "Info sul plugin"
463
 
464
+ #: ../commentluv.php:1401
465
  msgid "Start Here"
466
  msgstr "Inizia qui"
467
 
468
+ #: ../commentluv.php:1402
469
  msgid "Author"
470
  msgstr "Autore"
471
 
472
+ #: ../commentluv.php:1403
473
  msgid "Home Page"
474
  msgstr "Home Page"
475
 
476
+ #: ../commentluv.php:1403
477
  msgid "Visit www.commentluv.com!"
478
  msgstr "Visita www.commentluv.com!"
479
 
480
+ #: ../commentluv.php:1404
481
  msgid "Social"
482
  msgstr "Social"
483
 
484
+ #: ../commentluv.php:1405
485
  msgid "Help"
486
  msgstr "Aiuto"
487
 
488
+ #: ../commentluv.php:1405
489
  msgid "Help Desk"
490
  msgstr "Sezione aiuto"
491
 
492
+ #: ../commentluv.php:1406
493
  msgid "Do you like this plugin?"
494
+ msgstr "Ti piace questo plugin?"
495
 
496
+ #: ../commentluv.php:1408
497
  msgid "News"
498
  msgstr "Notizie"
499
 
500
+ #: ../commentluv.php:1414
501
  msgid "Thanks to the following for translations"
502
  msgstr "Un grazie ai seguenti traduttori"
503
 
504
+ #: ../commentluv.php:1415
505
  msgid "Italian"
506
  msgstr "Italiano"
507
 
508
+ #: ../commentluv.php:1416
509
  msgid "Dutch"
510
  msgstr "Olandese"
511
 
512
+ #: ../commentluv.php:1417
513
  msgid "Polish"
514
  msgstr "Polacco"
515
 
516
+ #: ../commentluv.php:1418
517
  msgid "Georgian"
518
  msgstr "Georgiano"
519
 
520
+ #: ../commentluv.php:1419
521
  msgid "Lithuanian"
522
  msgstr "Lituano"
523
 
524
+ #: ../commentluv.php:1420
525
  msgid "Portuguese"
526
  msgstr "Portoghese"
527
 
528
+ #: ../commentluv.php:1421
 
529
  msgid "Malaysian"
530
+ msgstr "Malese"
531
 
532
+ #: ../commentluv.php:1422
533
+ msgid "Hindi"
534
+ msgstr "Hindi"
535
+
536
+ #: ../commentluv.php:1423
537
  msgid "Russian"
538
  msgstr "Russo"
539
 
540
+ #: ../commentluv.php:1424
541
  msgid "Chinese"
542
  msgstr "Cinese"
543
 
544
+ #: ../commentluv.php:1425
545
  msgid "Hebrew"
546
  msgstr "Ebraico"
547
 
548
+ #: ../commentluv.php:1426
549
  msgid "French"
550
  msgstr "Francese"
551
 
552
+ #: ../commentluv.php:1428
553
  msgid "Romanian"
554
  msgstr "Rumeno"
555
 
556
+ #: ../commentluv.php:1429
557
  msgid "German"
558
  msgstr "Tedesco"
559
 
560
+ #: ../commentluv.php:1430
561
  msgid "Arabic"
562
  msgstr "Arabo"
563
 
564
+ #: ../commentluv.php:1432
565
  msgid "Want your link here?"
566
+ msgstr "Vuoi il tuo link qui?"
567
 
568
+ #: ../commentluv.php:1432
569
  msgid "How To Submit A Translation"
570
+ msgstr "Contribuisci alla traduzione"
571
 
572
+ #: ../commentluv.php:1433
573
  msgid "Special thanks go to the following"
574
+ msgstr "Un grazie particolare a"
575
 
576
+ #: ../commentluv.php:1434
 
577
  msgid "CSS Help"
578
+ msgstr "Aiuto CSS"
579
 
580
+ #: ../commentluv.php:1435
 
581
  msgid "Badge GFX"
582
+ msgstr "Badge GFX"
583
 
584
  #~ msgid "Display Options"
585
  #~ msgstr "Mostra opzioni"
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.2
7
- Stable tag: 2.90.1
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
 
4
  Tags: commentluv, comments, last blog post, linkluv, comment luv , commentlove, comment love
5
  Requires at least: 3.0
6
  Tested up to: 3.2
7
+ Stable tag: 2.90.2
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