Version Description
- updated : Italian translation by Gianni
- added : make wp_query->is_feed
Download this release
Release Info
Developer | commentluv |
Plugin | CommentLuv |
Version | 2.90.9.7 |
Comparing to | |
See all releases |
Code changes from version 2.90.9.6 to 2.90.9.7
- commentluv.php +16 -15
- lang/commentluv-it_IT.mo +0 -0
- lang/commentluv-it_IT.po +198 -167
- readme.txt +14 -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.90.9.
|
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.90.9.
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
@@ -270,21 +270,13 @@
|
|
270 |
* it is called by add_action admin_init
|
271 |
* options in the options page will need to be named using $this->db_option[option]
|
272 |
*/
|
273 |
-
function admin_init(){
|
274 |
// whitelist options
|
275 |
register_setting( 'commentluv_options_group', $this->db_option ,array(&$this,'options_sanitize' ) );
|
276 |
$options = $this->get_options();
|
277 |
if(isset($options['upgrade'])){
|
278 |
add_action('admin_notices',array(&$this,'show_upgrade_notice'));
|
279 |
}
|
280 |
-
// has the comment meta table?
|
281 |
-
global $wpdb;
|
282 |
-
$query = $wpdb->prepare("SHOW tables LIKE '{$wpdb->commentmeta}'");
|
283 |
-
$dbtable = $wpdb->get_var($query);
|
284 |
-
//$o['dbtable'] = $dbtable;
|
285 |
-
if(!$dbtable){
|
286 |
-
add_action('admin_notices',create_function('','echo "<div class=\"error\">'.__('Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!',$pd).'<br>'.__(' CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->',$pd).'<a target=\"_blank\" href=\"http://wordpress.org/support/topic/wp_commentmeta-table-a39xxxx2_blogwp_commentmeta-doesnt-exist?replies=7#post-1378281\">'.__('Missing wp_commentmeta table',$pd).'</a></div>";'));
|
287 |
-
}
|
288 |
}
|
289 |
|
290 |
/** admin_menu
|
@@ -416,6 +408,9 @@
|
|
416 |
if($options['disable_detect'] != 'on'){
|
417 |
remove_all_actions('wp_head');
|
418 |
remove_all_actions('wp_footer');
|
|
|
|
|
|
|
419 |
}
|
420 |
ob_start();
|
421 |
}
|
@@ -946,19 +941,25 @@
|
|
946 |
if(version_compare($installed_version,'2.9','<')){
|
947 |
// make any changes to this new versions options if needed and update
|
948 |
update_option($this->db_option,$this->get_options('yes'));
|
949 |
-
update_option('cl_version',$this->version);
|
950 |
}
|
951 |
// new addition to technical settings after 2.90.1 release
|
952 |
if(version_compare($installed_version,'2.9.0.1','<')){
|
953 |
$options['api_url'] = admin_url('admin-ajax.php');
|
954 |
$options['enable'] = 'yes';
|
955 |
-
update_option($this->db_option,$options);
|
956 |
-
update_option('cl_version',$this->version);
|
957 |
}
|
958 |
// update cl_version in db
|
959 |
-
if($this->version != $installed_version){
|
960 |
update_option('cl_version',$this->version);
|
961 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
}
|
963 |
/**
|
964 |
* helper function called by mulitple functions
|
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.9.7
|
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.90.9.7";
|
32 |
var $slug = 'commentluv-options';
|
33 |
var $localize;
|
34 |
var $is_commentluv_request = false;
|
270 |
* it is called by add_action admin_init
|
271 |
* options in the options page will need to be named using $this->db_option[option]
|
272 |
*/
|
273 |
+
function admin_init(){
|
274 |
// whitelist options
|
275 |
register_setting( 'commentluv_options_group', $this->db_option ,array(&$this,'options_sanitize' ) );
|
276 |
$options = $this->get_options();
|
277 |
if(isset($options['upgrade'])){
|
278 |
add_action('admin_notices',array(&$this,'show_upgrade_notice'));
|
279 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
}
|
281 |
|
282 |
/** admin_menu
|
408 |
if($options['disable_detect'] != 'on'){
|
409 |
remove_all_actions('wp_head');
|
410 |
remove_all_actions('wp_footer');
|
411 |
+
// prevent wordpress.com stats from adding stats script
|
412 |
+
global $wp_query;
|
413 |
+
$wp_query->is_feed = true;
|
414 |
}
|
415 |
ob_start();
|
416 |
}
|
941 |
if(version_compare($installed_version,'2.9','<')){
|
942 |
// make any changes to this new versions options if needed and update
|
943 |
update_option($this->db_option,$this->get_options('yes'));
|
|
|
944 |
}
|
945 |
// new addition to technical settings after 2.90.1 release
|
946 |
if(version_compare($installed_version,'2.9.0.1','<')){
|
947 |
$options['api_url'] = admin_url('admin-ajax.php');
|
948 |
$options['enable'] = 'yes';
|
949 |
+
update_option($this->db_option,$options);
|
|
|
950 |
}
|
951 |
// update cl_version in db
|
952 |
+
if($this->php_version($this->version) != $installed_version){
|
953 |
update_option('cl_version',$this->version);
|
954 |
}
|
955 |
+
// has the comment meta table?
|
956 |
+
global $wpdb;
|
957 |
+
$query = $wpdb->prepare("SHOW tables LIKE '{$wpdb->commentmeta}'");
|
958 |
+
$dbtable = $wpdb->get_var($query);
|
959 |
+
//$o['dbtable'] = $dbtable;
|
960 |
+
if(!$dbtable){
|
961 |
+
add_action('admin_notices',create_function('','echo "<div class=\"error\">'.__('Your Wordpress install is missing the <strong>wp_commentmeta</strong> table!',$pd).'<br>'.__(' CommentLuv cannot work without this table please see this wordpress forum post to learn how to add one ->',$pd).'<a target=\"_blank\" href=\"http://wordpress.org/support/topic/wp_commentmeta-table-a39xxxx2_blogwp_commentmeta-doesnt-exist?replies=7#post-1378281\">'.__('Missing wp_commentmeta table',$pd).'</a></div>";'));
|
962 |
+
}
|
963 |
}
|
964 |
/**
|
965 |
* helper function called by mulitple functions
|
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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
@@ -24,613 +24,644 @@ msgstr "CommentLuv richiede Wordpress 3.0 o superiore."
|
|
24 |
msgid "Please Update!"
|
25 |
msgstr "Aggiorna!"
|
26 |
|
27 |
-
#: ../commentluv.php:
|
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:
|
32 |
msgid "Please use http:// in front of your url"
|
33 |
msgstr "Aggiungi http:// davanti al tuo url"
|
34 |
|
35 |
-
#: ../commentluv.php:
|
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:
|
40 |
msgid "No info was available or an error occured"
|
41 |
msgstr "Nessuna info disponibile oppure si é verificato un errore"
|
42 |
|
43 |
-
#: ../commentluv.php:
|
44 |
msgid "Please wait"
|
45 |
msgstr "Attendi un attimo"
|
46 |
|
47 |
-
#: ../commentluv.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
68 |
msgid "Missing wp_commentmeta table"
|
69 |
msgstr "Manca la tabella wp_commentmeta"
|
70 |
|
71 |
-
#: ../commentluv.php:
|
72 |
msgid "Twice Monthly"
|
73 |
msgstr "Quindicinale"
|
74 |
|
75 |
-
#: ../commentluv.php:
|
76 |
msgid "CommentLuv is enabled"
|
77 |
msgstr "CommentLuv é attivo"
|
78 |
|
79 |
-
#: ../commentluv.php:
|
80 |
msgid "Show more posts"
|
81 |
msgstr "Mostra più articoli"
|
82 |
|
83 |
-
#: ../commentluv.php:
|
84 |
msgid "I have only commented on this post"
|
85 |
msgstr "Ho commentato solo in questo articolo"
|
86 |
|
87 |
-
#: ../commentluv.php:
|
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:
|
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:
|
96 |
msgid "is the administrator of this site"
|
97 |
msgstr "é l'amministratore di questo sito"
|
98 |
|
99 |
-
#: ../commentluv.php:
|
100 |
msgid "is a registered member of my site"
|
101 |
msgstr "é un utente registrato nel mio sito"
|
102 |
|
103 |
-
#: ../commentluv.php:
|
104 |
-
#: ../commentluv.php:
|
105 |
msgid "Clicks on this link on this comment"
|
106 |
msgstr "Clicca il link su questo commento"
|
107 |
|
108 |
-
#: ../commentluv.php:
|
109 |
-
#: ../commentluv.php:
|
110 |
msgid "approved comments on this site"
|
111 |
msgstr "commenti approvati per questo sito"
|
112 |
|
113 |
-
#: ../commentluv.php:
|
114 |
-
#: ../commentluv.php:
|
115 |
msgid "Some other posts I have commented on"
|
116 |
msgstr "Altri commenti ai quali ho partecipato"
|
117 |
|
118 |
-
#: ../commentluv.php:
|
119 |
msgid "Some of my other posts"
|
120 |
msgstr "Alcuni dei miei articoli"
|
121 |
|
122 |
-
#: ../commentluv.php:
|
123 |
msgid "has not registered on this site"
|
124 |
msgstr "non é registrato nel mio sito"
|
125 |
|
126 |
-
#: ../commentluv.php:
|
127 |
msgid "Could not get posts for home blog"
|
128 |
msgstr "Impossibile recuperare gli articoli"
|
129 |
|
130 |
-
#: ../commentluv.php:
|
131 |
-
#: ../commentluv.php:
|
132 |
msgid "Warning! You have set to show 10 posts for registered users but you have not enabled user registrations on your site. You should change the operational settings in the CommentLuv settings page to show 10 posts for everyone or enable user registrations"
|
133 |
msgstr "Attenzione! Hai impostato a 10 il numero di articoli da mostrare per gli utenti registrati ma non hai abilitato la registrazione utenti per il tuo sito. Dovresti quindi modificare il setting operativo nella pagina delle impostazioni di CommentLuv in modo da poter mostrare 10 post per tutti oppure attivare le registrazioni utente"
|
134 |
|
135 |
-
#: ../commentluv.php:
|
136 |
-
#: ../commentluv.php:
|
137 |
-
#: ../commentluv.php:
|
138 |
msgid "Register"
|
139 |
msgstr "Registrati"
|
140 |
|
141 |
-
#: ../commentluv.php:
|
142 |
msgid "If you are registered, you need to log in to get 10 posts to choose from"
|
143 |
msgstr "Se utente registrato, effettuare il login per avere 10 articoli da scegliere"
|
144 |
|
145 |
-
#: ../commentluv.php:
|
146 |
msgid "recently posted"
|
147 |
msgstr "pubblicati di recente"
|
148 |
|
149 |
-
#: ../commentluv.php:
|
150 |
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."
|
151 |
msgstr "Registrandoti come utente nel mio sito, potrai avere in questa casella 10 tra i tuoi articoli recenti."
|
152 |
|
153 |
-
#: ../commentluv.php:
|
154 |
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"
|
155 |
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"
|
156 |
|
157 |
-
#: ../commentluv.php:
|
158 |
msgid "Settings"
|
159 |
msgstr "Impostazioni"
|
160 |
|
161 |
-
#: ../commentluv.php:
|
162 |
msgid "No Posts Were Found!"
|
163 |
msgstr "Non é stato trovato nessun articolo!"
|
164 |
|
165 |
-
#: ../commentluv.php:
|
166 |
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
167 |
msgstr "E' disponibile una nuova versione di Commentluv. Aggiorna visitando questo sito"
|
168 |
|
169 |
-
#: ../commentluv.php:
|
170 |
msgid "Dismiss notice"
|
171 |
msgstr "Avviso rinuncia"
|
172 |
|
173 |
-
#: ../commentluv.php:
|
174 |
msgid "CommentLuv Settings v"
|
175 |
msgstr "Impostazioni CommentLuv v"
|
176 |
|
177 |
-
#: ../commentluv.php:
|
178 |
msgid "Important!"
|
179 |
msgstr "Importante!"
|
180 |
|
181 |
-
#: ../commentluv.php:
|
182 |
msgid "Subscription Information"
|
183 |
msgstr "Informazioni abbonamento"
|
184 |
|
185 |
-
#: ../commentluv.php:
|
186 |
-
msgid "CommentLuv 3.0 Premium is
|
187 |
-
msgstr "
|
188 |
|
189 |
-
#: ../commentluv.php:
|
190 |
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
191 |
msgstr "I tuoi dati sono protetti. Riceverai SOLAMENTE le email di notifica per gli aggiornamenti del plugin."
|
192 |
|
193 |
-
#: ../commentluv.php:
|
194 |
-
msgid "
|
195 |
-
msgstr "
|
196 |
|
197 |
-
#: ../commentluv.php:
|
198 |
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"
|
199 |
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 "
|
200 |
|
201 |
-
#: ../commentluv.php:
|
202 |
msgid "Resend Verification"
|
203 |
msgstr "Reinvia verifica"
|
204 |
|
205 |
-
#: ../commentluv.php:
|
206 |
-
msgid "Click
|
207 |
-
msgstr "Clicca per
|
208 |
|
209 |
-
#: ../commentluv.php:
|
210 |
msgid "Primary Setting"
|
211 |
msgstr "Impostazioni principali"
|
212 |
|
213 |
-
#: ../commentluv.php:
|
214 |
-
#: ../commentluv.php:
|
215 |
-
#: ../commentluv.php:
|
216 |
-
#: ../commentluv.php:
|
217 |
-
#: ../commentluv.php:
|
218 |
msgid "Help Video"
|
219 |
msgstr "Video aiuto"
|
220 |
|
221 |
-
#: ../commentluv.php:
|
222 |
msgid "Enable CommentLuv?"
|
223 |
msgstr "Attivare CommentLuv?"
|
224 |
|
225 |
-
#: ../commentluv.php:
|
226 |
msgid "Yes"
|
227 |
msgstr "Sì"
|
228 |
|
229 |
-
#: ../commentluv.php:
|
230 |
msgid "No"
|
231 |
msgstr "No"
|
232 |
|
233 |
-
#: ../commentluv.php:
|
234 |
msgid "On Posts"
|
235 |
msgstr " negli articoli"
|
236 |
|
237 |
-
#: ../commentluv.php:
|
238 |
msgid "On Pages"
|
239 |
msgstr " nelle pagine"
|
240 |
|
241 |
-
#: ../commentluv.php:
|
242 |
msgid "On Both"
|
243 |
msgstr " su entrambi"
|
244 |
|
245 |
-
#: ../commentluv.php:
|
246 |
msgid "On by default?"
|
247 |
msgstr "attivo come predefinita?"
|
248 |
|
249 |
-
#: ../commentluv.php:
|
250 |
msgid "On for admin?"
|
251 |
msgstr "attivo per l'amministratore?"
|
252 |
|
253 |
-
#: ../commentluv.php:
|
254 |
msgid "Appearance"
|
255 |
msgstr "Aspetto"
|
256 |
|
257 |
-
#: ../commentluv.php:
|
258 |
msgid "Badge"
|
259 |
msgstr "badge"
|
260 |
|
261 |
-
#: ../commentluv.php:
|
262 |
msgid "Custom Image URL"
|
263 |
msgstr "URL immagine"
|
264 |
|
265 |
-
#: ../commentluv.php:
|
266 |
msgid "Use Text"
|
267 |
msgstr "utilizza testo"
|
268 |
|
269 |
-
#: ../commentluv.php:
|
270 |
msgid "Default"
|
271 |
msgstr "Predefinito"
|
272 |
|
273 |
-
#: ../commentluv.php:
|
274 |
msgid "White"
|
275 |
msgstr "Bianco"
|
276 |
|
277 |
-
#: ../commentluv.php:
|
278 |
msgid "Black"
|
279 |
msgstr "Nero"
|
280 |
|
281 |
-
#: ../commentluv.php:
|
282 |
msgid "None"
|
283 |
msgstr "Nessuno"
|
284 |
|
285 |
-
#: ../commentluv.php:
|
286 |
msgid "Link to Commentluv?"
|
287 |
msgstr "link a Commentluv?"
|
288 |
|
289 |
-
#: ../commentluv.php:
|
290 |
msgid "Enable info panel?"
|
291 |
msgstr "pannello info?"
|
292 |
|
293 |
-
#: ../commentluv.php:
|
294 |
msgid "Info panel background color"
|
295 |
msgstr "colore sfondo pannello info"
|
296 |
|
297 |
-
#: ../commentluv.php:
|
298 |
msgid "Info panel text color"
|
299 |
msgstr "colore testo pannello info"
|
300 |
|
301 |
-
#: ../commentluv.php:
|
302 |
msgid "Example text and background color"
|
303 |
msgstr "esempio di testo e colore di sfondo"
|
304 |
|
305 |
-
#: ../commentluv.php:
|
306 |
msgid "Messages"
|
307 |
msgstr "Messaggi"
|
308 |
|
309 |
-
#: ../commentluv.php:
|
310 |
msgid "Text to be displayed in the comment"
|
311 |
msgstr "testo da mostrare nel commento"
|
312 |
|
313 |
-
#: ../commentluv.php:
|
314 |
msgid "[name] = The users name"
|
315 |
msgstr "[name] = nome utente"
|
316 |
|
317 |
-
#: ../commentluv.php:
|
318 |
msgid "[lastpost] = The last blog post link"
|
319 |
msgstr "[lastpost] = link a ultimo articolo"
|
320 |
|
321 |
-
#: ../commentluv.php:
|
322 |
msgid "Message for unregistered user in the drop down box"
|
323 |
msgstr "messaggio (casella drop down) per gli utenti non registrati"
|
324 |
|
325 |
-
#: ../commentluv.php:
|
326 |
-
#: ../commentluv.php:
|
327 |
msgid "Message will not be shown if you do not have registrations enabled"
|
328 |
msgstr "Il messaggio non verrà mostrato qualora avessi disattivato le registrazioni"
|
329 |
|
330 |
-
#: ../commentluv.php:
|
331 |
msgid "Your register link code"
|
332 |
msgstr "Il tuo codice link registrazione"
|
333 |
|
334 |
-
#: ../commentluv.php:
|
335 |
msgid "(this will be automatically added if you have not added it yourself to the textarea above)"
|
336 |
msgstr "(sarà aggiunto in automatico qualora non lo avessi fatto tu stesso nell'area di testo qui sopra)"
|
337 |
|
338 |
-
#: ../commentluv.php:
|
339 |
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
340 |
msgstr "Il tuo blog NON é stato impostato per potere ricevere delle registrazioni (Impostazioni/Generale)"
|
341 |
|
342 |
-
#: ../commentluv.php:
|
343 |
msgid "here"
|
344 |
msgstr "qui"
|
345 |
|
346 |
-
#: ../commentluv.php:
|
347 |
msgid "Message for unregistered user in the info panel"
|
348 |
msgstr "Messaggio (pannello info) per gli utenti non registrati"
|
349 |
|
350 |
-
#: ../commentluv.php:
|
351 |
msgid "Operational Settings"
|
352 |
msgstr "Impostazioni di gestione"
|
353 |
|
354 |
-
#: ../commentluv.php:
|
355 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
356 |
msgstr "chi potrà mostrare gli ultimi 10 articoli pubblicati?"
|
357 |
|
358 |
-
#: ../commentluv.php:
|
359 |
msgid "Only Registered Members"
|
360 |
msgstr "solo i membri registrati"
|
361 |
|
362 |
-
#: ../commentluv.php:
|
363 |
msgid "Everybody"
|
364 |
msgstr "chiunque"
|
365 |
|
366 |
-
#: ../commentluv.php:
|
367 |
msgid "Nobody"
|
368 |
msgstr "nessuno"
|
369 |
|
370 |
-
#: ../commentluv.php:
|
371 |
msgid "Whose links should be dofollow?"
|
372 |
msgstr "assegnazione dei link dofollow?"
|
373 |
|
374 |
-
#: ../commentluv.php:
|
375 |
msgid "Only Registered Members Links"
|
376 |
msgstr "solo per gli utenti registrati"
|
377 |
|
378 |
-
#: ../commentluv.php:
|
379 |
msgid "Everybody gets dofollow links"
|
380 |
msgstr "link dofollow per chiunque"
|
381 |
|
382 |
-
#: ../commentluv.php:
|
383 |
msgid "Nobody gets dofollow links"
|
384 |
msgstr "nessuno"
|
385 |
|
386 |
-
#: ../commentluv.php:
|
387 |
msgid "Technical Settings"
|
388 |
msgstr "Impostazioni tecniche"
|
389 |
|
390 |
-
#: ../commentluv.php:
|
391 |
msgid "Click to open technical settings"
|
392 |
msgstr "Clicca per aprire"
|
393 |
|
394 |
-
#: ../commentluv.php:
|
395 |
msgid "Please check the help video for this section before changing settings"
|
396 |
msgstr "Prima di modificare le impostazioni, guarda il video di aiuto per questa sezione "
|
397 |
|
398 |
-
#: ../commentluv.php:
|
399 |
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"
|
400 |
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"
|
401 |
|
402 |
-
#: ../commentluv.php:
|
403 |
msgid "Compatibility"
|
404 |
msgstr "Compatibilità"
|
405 |
|
406 |
-
#: ../commentluv.php:
|
407 |
msgid "Use manual insert of badge code?"
|
408 |
msgstr "inserire manualmente il codice?"
|
409 |
|
410 |
-
#: ../commentluv.php:
|
411 |
msgid "Enable minifying compatibility?"
|
412 |
msgstr "attivare compatibilità minimizzazione?"
|
413 |
|
414 |
-
#: ../commentluv.php:
|
415 |
msgid "For caching plugins (places localized code in footer)"
|
416 |
msgstr "per i plugin di cache (posiziona nel footer codice localizzazione)"
|
417 |
|
418 |
-
#: ../commentluv.php:
|
419 |
msgid "Disable Detection?"
|
420 |
msgstr "Disattivare rilevamento?"
|
421 |
|
422 |
-
#: ../commentluv.php:
|
423 |
msgid "For XML errors"
|
424 |
msgstr "Per errori XML"
|
425 |
|
426 |
-
#: ../commentluv.php:
|
427 |
msgid "API URL"
|
428 |
msgstr "URL API"
|
429 |
|
430 |
-
#: ../commentluv.php:
|
431 |
msgid "URL to use for API"
|
432 |
msgstr "URL da utilizzare per la API"
|
433 |
|
434 |
-
#: ../commentluv.php:
|
435 |
msgid "Comment Form Field Values"
|
436 |
msgstr "Valori campo modulo commenti"
|
437 |
|
438 |
-
#: ../commentluv.php:
|
439 |
msgid "Authors Name field name"
|
440 |
msgstr "nome per il campo autore"
|
441 |
|
442 |
-
#: ../commentluv.php:
|
443 |
msgid "Email field name"
|
444 |
msgstr "nome per il campo email"
|
445 |
|
446 |
-
#: ../commentluv.php:
|
447 |
msgid "Authors URL field name"
|
448 |
msgstr "nome per il campo URL autore"
|
449 |
|
450 |
-
#: ../commentluv.php:
|
451 |
msgid "Comment Text Area name"
|
452 |
msgstr "nome per l'area di testo dei commenti"
|
453 |
|
454 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
455 |
msgid "Diagnostics Info"
|
456 |
msgstr "Info diagnostica"
|
457 |
|
458 |
-
#: ../commentluv.php:
|
459 |
msgid "You can copy this information and send it to me if I request it"
|
460 |
msgstr "copia queste informazioni ed inviarmele (se richiesto)"
|
461 |
|
462 |
-
#: ../commentluv.php:
|
463 |
msgid "Save Settings"
|
464 |
msgstr "Salva le impostazioni"
|
465 |
|
466 |
-
#: ../commentluv.php:
|
467 |
msgid "Reset Settings"
|
468 |
msgstr "Ripristino impostazioni"
|
469 |
|
470 |
-
#: ../commentluv.php:
|
471 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
472 |
msgstr "Sei certo di volere ripristinare le tue impostazioni? Premi OK per proseguire"
|
473 |
|
474 |
-
#: ../commentluv.php:
|
475 |
msgid "Reset"
|
476 |
msgstr "Azzera"
|
477 |
|
478 |
-
#: ../commentluv.php:
|
479 |
msgid "Plugin Info"
|
480 |
msgstr "Info sul plugin"
|
481 |
|
482 |
-
#: ../commentluv.php:
|
483 |
msgid "Start Here"
|
484 |
msgstr "Inizia qui"
|
485 |
|
486 |
-
#: ../commentluv.php:
|
487 |
msgid "Author"
|
488 |
msgstr "Autore"
|
489 |
|
490 |
-
#: ../commentluv.php:
|
491 |
msgid "Home Page"
|
492 |
msgstr "Home Page"
|
493 |
|
494 |
-
#: ../commentluv.php:
|
495 |
msgid "Visit www.commentluv.com!"
|
496 |
msgstr "Visita www.commentluv.com!"
|
497 |
|
498 |
-
#: ../commentluv.php:
|
499 |
msgid "Social"
|
500 |
msgstr "Social"
|
501 |
|
502 |
-
#: ../commentluv.php:
|
503 |
msgid "Help"
|
504 |
msgstr "Aiuto"
|
505 |
|
506 |
-
#: ../commentluv.php:
|
507 |
msgid "Help Desk"
|
508 |
msgstr "Sezione aiuto"
|
509 |
|
510 |
-
#: ../commentluv.php:
|
511 |
msgid "Do you like this plugin?"
|
512 |
msgstr "Ti piace questo plugin?"
|
513 |
|
514 |
-
#: ../commentluv.php:
|
515 |
msgid "News"
|
516 |
msgstr "Notizie"
|
517 |
|
518 |
-
#: ../commentluv.php:
|
519 |
msgid "Thanks to the following for translations"
|
520 |
msgstr "Un grazie ai seguenti traduttori"
|
521 |
|
522 |
-
#: ../commentluv.php:
|
523 |
msgid "Italian"
|
524 |
msgstr "Italiano"
|
525 |
|
526 |
-
#: ../commentluv.php:
|
527 |
msgid "Dutch"
|
528 |
msgstr "Olandese"
|
529 |
|
530 |
-
#: ../commentluv.php:
|
531 |
msgid "Polish"
|
532 |
msgstr "Polacco"
|
533 |
|
534 |
-
#: ../commentluv.php:
|
535 |
msgid "Georgian"
|
536 |
msgstr "Georgiano"
|
537 |
|
538 |
-
#: ../commentluv.php:
|
539 |
msgid "Lithuanian"
|
540 |
msgstr "Lituano"
|
541 |
|
542 |
-
#: ../commentluv.php:
|
543 |
msgid "Portuguese"
|
544 |
msgstr "Portoghese"
|
545 |
|
546 |
-
#: ../commentluv.php:
|
547 |
msgid "Malaysian"
|
548 |
msgstr "Malese"
|
549 |
|
550 |
-
#: ../commentluv.php:
|
551 |
msgid "Hindi"
|
552 |
msgstr "Hindi"
|
553 |
|
554 |
-
#: ../commentluv.php:
|
555 |
msgid "Indonesian"
|
556 |
msgstr "Indonesiano"
|
557 |
|
558 |
-
#: ../commentluv.php:
|
559 |
msgid "Chinese (s)"
|
560 |
msgstr "Cinese"
|
561 |
|
562 |
-
#: ../commentluv.php:
|
563 |
msgid "Spanish"
|
564 |
msgstr "Spagnolo"
|
565 |
|
566 |
-
#: ../commentluv.php:
|
567 |
msgid "German"
|
568 |
msgstr "Tedesco"
|
569 |
|
570 |
-
#: ../commentluv.php:
|
571 |
msgid "Persian"
|
572 |
msgstr "Persiano"
|
573 |
|
574 |
-
#: ../commentluv.php:
|
575 |
msgid "Tamil"
|
576 |
msgstr "Tamil"
|
577 |
|
578 |
-
#: ../commentluv.php:
|
579 |
msgid "Ukranian"
|
580 |
msgstr "Ucraino"
|
581 |
|
582 |
-
#: ../commentluv.php:
|
583 |
msgid "Latvian"
|
584 |
msgstr "Lettone"
|
585 |
|
586 |
-
#: ../commentluv.php:
|
587 |
msgid "Romanian"
|
588 |
msgstr "Rumeno"
|
589 |
|
590 |
-
#: ../commentluv.php:
|
591 |
msgid "Norwegian"
|
592 |
msgstr "Norvegese"
|
593 |
|
594 |
-
#: ../commentluv.php:
|
595 |
msgid "French"
|
596 |
msgstr "Francese"
|
597 |
|
598 |
-
#: ../commentluv.php:
|
599 |
msgid "Danish"
|
600 |
msgstr "Danese"
|
601 |
|
602 |
-
#: ../commentluv.php:
|
603 |
msgid "Russian"
|
604 |
msgstr "Russo"
|
605 |
|
606 |
-
#: ../commentluv.php:
|
|
|
|
|
|
|
|
|
607 |
msgid "Hebrew"
|
608 |
msgstr "Ebraico"
|
609 |
|
610 |
-
#: ../commentluv.php:
|
611 |
msgid "Arabic"
|
612 |
msgstr "Arabo"
|
613 |
|
614 |
-
#: ../commentluv.php:
|
615 |
msgid "Want your link here?"
|
616 |
msgstr "Vuoi il tuo link qui?"
|
617 |
|
618 |
-
#: ../commentluv.php:
|
619 |
msgid "How To Submit A Translation"
|
620 |
msgstr "Contribuisci alla traduzione"
|
621 |
|
622 |
-
#: ../commentluv.php:
|
623 |
msgid "Special thanks go to the following"
|
624 |
msgstr "Un grazie particolare a"
|
625 |
|
626 |
-
#: ../commentluv.php:
|
627 |
msgid "CSS Help"
|
628 |
msgstr "Aiuto CSS"
|
629 |
|
630 |
-
#: ../commentluv.php:
|
631 |
msgid "Badge GFX"
|
632 |
msgstr "Badge GFX"
|
633 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
#~ msgid "Display Options"
|
635 |
#~ msgstr "Mostra opzioni"
|
636 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: CommentLuv in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-01-23 20:59+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
|
8 |
"Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
|
24 |
msgid "Please Update!"
|
25 |
msgstr "Aggiorna!"
|
26 |
|
27 |
+
#: ../commentluv.php:230
|
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:231
|
32 |
msgid "Please use http:// in front of your url"
|
33 |
msgstr "Aggiungi http:// davanti al tuo url"
|
34 |
|
35 |
+
#: ../commentluv.php:232
|
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:233
|
40 |
msgid "No info was available or an error occured"
|
41 |
msgstr "Nessuna info disponibile oppure si é verificato un errore"
|
42 |
|
43 |
+
#: ../commentluv.php:257
|
44 |
msgid "Please wait"
|
45 |
msgstr "Attendi un attimo"
|
46 |
|
47 |
+
#: ../commentluv.php:257
|
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:257
|
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:257
|
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:286
|
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:286
|
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:286
|
68 |
msgid "Missing wp_commentmeta table"
|
69 |
msgstr "Manca la tabella wp_commentmeta"
|
70 |
|
71 |
+
#: ../commentluv.php:386
|
72 |
msgid "Twice Monthly"
|
73 |
msgstr "Quindicinale"
|
74 |
|
75 |
+
#: ../commentluv.php:441
|
76 |
msgid "CommentLuv is enabled"
|
77 |
msgstr "CommentLuv é attivo"
|
78 |
|
79 |
+
#: ../commentluv.php:484
|
80 |
msgid "Show more posts"
|
81 |
msgstr "Mostra più articoli"
|
82 |
|
83 |
+
#: ../commentluv.php:580
|
84 |
msgid "I have only commented on this post"
|
85 |
msgstr "Ho commentato solo in questo articolo"
|
86 |
|
87 |
+
#: ../commentluv.php:583
|
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:608
|
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:620
|
96 |
msgid "is the administrator of this site"
|
97 |
msgstr "é l'amministratore di questo sito"
|
98 |
|
99 |
+
#: ../commentluv.php:622
|
100 |
msgid "is a registered member of my site"
|
101 |
msgstr "é un utente registrato nel mio sito"
|
102 |
|
103 |
+
#: ../commentluv.php:625
|
104 |
+
#: ../commentluv.php:644
|
105 |
msgid "Clicks on this link on this comment"
|
106 |
msgstr "Clicca il link su questo commento"
|
107 |
|
108 |
+
#: ../commentluv.php:625
|
109 |
+
#: ../commentluv.php:645
|
110 |
msgid "approved comments on this site"
|
111 |
msgstr "commenti approvati per questo sito"
|
112 |
|
113 |
+
#: ../commentluv.php:625
|
114 |
+
#: ../commentluv.php:646
|
115 |
msgid "Some other posts I have commented on"
|
116 |
msgstr "Altri commenti ai quali ho partecipato"
|
117 |
|
118 |
+
#: ../commentluv.php:625
|
119 |
msgid "Some of my other posts"
|
120 |
msgstr "Alcuni dei miei articoli"
|
121 |
|
122 |
+
#: ../commentluv.php:638
|
123 |
msgid "has not registered on this site"
|
124 |
msgstr "non é registrato nel mio sito"
|
125 |
|
126 |
+
#: ../commentluv.php:773
|
127 |
msgid "Could not get posts for home blog"
|
128 |
msgstr "Impossibile recuperare gli articoli"
|
129 |
|
130 |
+
#: ../commentluv.php:779
|
131 |
+
#: ../commentluv.php:1056
|
132 |
msgid "Warning! You have set to show 10 posts for registered users but you have not enabled user registrations on your site. You should change the operational settings in the CommentLuv settings page to show 10 posts for everyone or enable user registrations"
|
133 |
msgstr "Attenzione! Hai impostato a 10 il numero di articoli da mostrare per gli utenti registrati ma non hai abilitato la registrazione utenti per il tuo sito. Dovresti quindi modificare il setting operativo nella pagina delle impostazioni di CommentLuv in modo da poter mostrare 10 post per tutti oppure attivare le registrazioni utente"
|
134 |
|
135 |
+
#: ../commentluv.php:845
|
136 |
+
#: ../commentluv.php:886
|
137 |
+
#: ../commentluv.php:1376
|
138 |
msgid "Register"
|
139 |
msgstr "Registrati"
|
140 |
|
141 |
+
#: ../commentluv.php:850
|
142 |
msgid "If you are registered, you need to log in to get 10 posts to choose from"
|
143 |
msgstr "Se utente registrato, effettuare il login per avere 10 articoli da scegliere"
|
144 |
|
145 |
+
#: ../commentluv.php:892
|
146 |
msgid "recently posted"
|
147 |
msgstr "pubblicati di recente"
|
148 |
|
149 |
+
#: ../commentluv.php:893
|
150 |
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."
|
151 |
msgstr "Registrandoti come utente nel mio sito, potrai avere in questa casella 10 tra i tuoi articoli recenti."
|
152 |
|
153 |
+
#: ../commentluv.php:894
|
154 |
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"
|
155 |
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"
|
156 |
|
157 |
+
#: ../commentluv.php:1090
|
158 |
msgid "Settings"
|
159 |
msgstr "Impostazioni"
|
160 |
|
161 |
+
#: ../commentluv.php:1149
|
162 |
msgid "No Posts Were Found!"
|
163 |
msgstr "Non é stato trovato nessun articolo!"
|
164 |
|
165 |
+
#: ../commentluv.php:1189
|
166 |
msgid "There is a new version of Commentluv available, please upgrade by visiting this site"
|
167 |
msgstr "E' disponibile una nuova versione di Commentluv. Aggiorna visitando questo sito"
|
168 |
|
169 |
+
#: ../commentluv.php:1192
|
170 |
msgid "Dismiss notice"
|
171 |
msgstr "Avviso rinuncia"
|
172 |
|
173 |
+
#: ../commentluv.php:1218
|
174 |
msgid "CommentLuv Settings v"
|
175 |
msgstr "Impostazioni CommentLuv v"
|
176 |
|
177 |
+
#: ../commentluv.php:1228
|
178 |
msgid "Important!"
|
179 |
msgstr "Importante!"
|
180 |
|
181 |
+
#: ../commentluv.php:1228
|
182 |
msgid "Subscription Information"
|
183 |
msgstr "Informazioni abbonamento"
|
184 |
|
185 |
+
#: ../commentluv.php:1233
|
186 |
+
msgid "CommentLuv 3.0 Premium is here!"
|
187 |
+
msgstr "Disponibile la versione premium 3.0 di CommentLuv!"
|
188 |
|
189 |
+
#: ../commentluv.php:1234
|
190 |
msgid "I promise not to sell your details or send you spam. You will ONLY receive emails about plugin updates."
|
191 |
msgstr "I tuoi dati sono protetti. Riceverai SOLAMENTE le email di notifica per gli aggiornamenti del plugin."
|
192 |
|
193 |
+
#: ../commentluv.php:1237
|
194 |
+
msgid "Do you like CommentLuv? How about an even better version with much more control over dofollow and some awesome social enticements that will make your posts go viral by offering your readers more choice of posts if they +1, Like or tweet your post? Get CommentLuv Premium Today!"
|
195 |
+
msgstr "Ti piace CommentLuv? Cosa ne diresti di una versione con un maggiore controllo sul dofollow ed alcune nuove funzioni social che permetteranno ai tuoi lettori di segnalare via +1, Mi piace o tweet i tuoi articoli? Acquista oggi stesso CommentLuv Premium!"
|
196 |
|
197 |
+
#: ../commentluv.php:1240
|
198 |
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"
|
199 |
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 "
|
200 |
|
201 |
+
#: ../commentluv.php:1240
|
202 |
msgid "Resend Verification"
|
203 |
msgstr "Reinvia verifica"
|
204 |
|
205 |
+
#: ../commentluv.php:1242
|
206 |
+
msgid "Click for a special offer!"
|
207 |
+
msgstr "Clicca per una offerta speciale!"
|
208 |
|
209 |
+
#: ../commentluv.php:1257
|
210 |
msgid "Primary Setting"
|
211 |
msgstr "Impostazioni principali"
|
212 |
|
213 |
+
#: ../commentluv.php:1257
|
214 |
+
#: ../commentluv.php:1291
|
215 |
+
#: ../commentluv.php:1351
|
216 |
+
#: ../commentluv.php:1409
|
217 |
+
#: ../commentluv.php:1440
|
218 |
msgid "Help Video"
|
219 |
msgstr "Video aiuto"
|
220 |
|
221 |
+
#: ../commentluv.php:1261
|
222 |
msgid "Enable CommentLuv?"
|
223 |
msgstr "Attivare CommentLuv?"
|
224 |
|
225 |
+
#: ../commentluv.php:1262
|
226 |
msgid "Yes"
|
227 |
msgstr "Sì"
|
228 |
|
229 |
+
#: ../commentluv.php:1263
|
230 |
msgid "No"
|
231 |
msgstr "No"
|
232 |
|
233 |
+
#: ../commentluv.php:1268
|
234 |
msgid "On Posts"
|
235 |
msgstr " negli articoli"
|
236 |
|
237 |
+
#: ../commentluv.php:1269
|
238 |
msgid "On Pages"
|
239 |
msgstr " nelle pagine"
|
240 |
|
241 |
+
#: ../commentluv.php:1270
|
242 |
msgid "On Both"
|
243 |
msgstr " su entrambi"
|
244 |
|
245 |
+
#: ../commentluv.php:1275
|
246 |
msgid "On by default?"
|
247 |
msgstr "attivo come predefinita?"
|
248 |
|
249 |
+
#: ../commentluv.php:1279
|
250 |
msgid "On for admin?"
|
251 |
msgstr "attivo per l'amministratore?"
|
252 |
|
253 |
+
#: ../commentluv.php:1291
|
254 |
msgid "Appearance"
|
255 |
msgstr "Aspetto"
|
256 |
|
257 |
+
#: ../commentluv.php:1295
|
258 |
msgid "Badge"
|
259 |
msgstr "badge"
|
260 |
|
261 |
+
#: ../commentluv.php:1296
|
262 |
msgid "Custom Image URL"
|
263 |
msgstr "URL immagine"
|
264 |
|
265 |
+
#: ../commentluv.php:1297
|
266 |
msgid "Use Text"
|
267 |
msgstr "utilizza testo"
|
268 |
|
269 |
+
#: ../commentluv.php:1305
|
270 |
msgid "Default"
|
271 |
msgstr "Predefinito"
|
272 |
|
273 |
+
#: ../commentluv.php:1306
|
274 |
msgid "White"
|
275 |
msgstr "Bianco"
|
276 |
|
277 |
+
#: ../commentluv.php:1307
|
278 |
msgid "Black"
|
279 |
msgstr "Nero"
|
280 |
|
281 |
+
#: ../commentluv.php:1308
|
282 |
msgid "None"
|
283 |
msgstr "Nessuno"
|
284 |
|
285 |
+
#: ../commentluv.php:1326
|
286 |
msgid "Link to Commentluv?"
|
287 |
msgstr "link a Commentluv?"
|
288 |
|
289 |
+
#: ../commentluv.php:1333
|
290 |
msgid "Enable info panel?"
|
291 |
msgstr "pannello info?"
|
292 |
|
293 |
+
#: ../commentluv.php:1334
|
294 |
msgid "Info panel background color"
|
295 |
msgstr "colore sfondo pannello info"
|
296 |
|
297 |
+
#: ../commentluv.php:1335
|
298 |
msgid "Info panel text color"
|
299 |
msgstr "colore testo pannello info"
|
300 |
|
301 |
+
#: ../commentluv.php:1341
|
302 |
msgid "Example text and background color"
|
303 |
msgstr "esempio di testo e colore di sfondo"
|
304 |
|
305 |
+
#: ../commentluv.php:1351
|
306 |
msgid "Messages"
|
307 |
msgstr "Messaggi"
|
308 |
|
309 |
+
#: ../commentluv.php:1358
|
310 |
msgid "Text to be displayed in the comment"
|
311 |
msgstr "testo da mostrare nel commento"
|
312 |
|
313 |
+
#: ../commentluv.php:1361
|
314 |
msgid "[name] = The users name"
|
315 |
msgstr "[name] = nome utente"
|
316 |
|
317 |
+
#: ../commentluv.php:1361
|
318 |
msgid "[lastpost] = The last blog post link"
|
319 |
msgstr "[lastpost] = link a ultimo articolo"
|
320 |
|
321 |
+
#: ../commentluv.php:1368
|
322 |
msgid "Message for unregistered user in the drop down box"
|
323 |
msgstr "messaggio (casella drop down) per gli utenti non registrati"
|
324 |
|
325 |
+
#: ../commentluv.php:1369
|
326 |
+
#: ../commentluv.php:1395
|
327 |
msgid "Message will not be shown if you do not have registrations enabled"
|
328 |
msgstr "Il messaggio non verrà mostrato qualora avessi disattivato le registrazioni"
|
329 |
|
330 |
+
#: ../commentluv.php:1373
|
331 |
msgid "Your register link code"
|
332 |
msgstr "Il tuo codice link registrazione"
|
333 |
|
334 |
+
#: ../commentluv.php:1375
|
335 |
msgid "(this will be automatically added if you have not added it yourself to the textarea above)"
|
336 |
msgstr "(sarà aggiunto in automatico qualora non lo avessi fatto tu stesso nell'area di testo qui sopra)"
|
337 |
|
338 |
+
#: ../commentluv.php:1385
|
339 |
msgid "You have NOT set your blog to allow registrations, you can do that in Settings/General"
|
340 |
msgstr "Il tuo blog NON é stato impostato per potere ricevere delle registrazioni (Impostazioni/Generale)"
|
341 |
|
342 |
+
#: ../commentluv.php:1386
|
343 |
msgid "here"
|
344 |
msgstr "qui"
|
345 |
|
346 |
+
#: ../commentluv.php:1394
|
347 |
msgid "Message for unregistered user in the info panel"
|
348 |
msgstr "Messaggio (pannello info) per gli utenti non registrati"
|
349 |
|
350 |
+
#: ../commentluv.php:1409
|
351 |
msgid "Operational Settings"
|
352 |
msgstr "Impostazioni di gestione"
|
353 |
|
354 |
+
#: ../commentluv.php:1416
|
355 |
msgid "Who to give 10 last posts to choose from when they comment?"
|
356 |
msgstr "chi potrà mostrare gli ultimi 10 articoli pubblicati?"
|
357 |
|
358 |
+
#: ../commentluv.php:1417
|
359 |
msgid "Only Registered Members"
|
360 |
msgstr "solo i membri registrati"
|
361 |
|
362 |
+
#: ../commentluv.php:1418
|
363 |
msgid "Everybody"
|
364 |
msgstr "chiunque"
|
365 |
|
366 |
+
#: ../commentluv.php:1419
|
367 |
msgid "Nobody"
|
368 |
msgstr "nessuno"
|
369 |
|
370 |
+
#: ../commentluv.php:1426
|
371 |
msgid "Whose links should be dofollow?"
|
372 |
msgstr "assegnazione dei link dofollow?"
|
373 |
|
374 |
+
#: ../commentluv.php:1427
|
375 |
msgid "Only Registered Members Links"
|
376 |
msgstr "solo per gli utenti registrati"
|
377 |
|
378 |
+
#: ../commentluv.php:1428
|
379 |
msgid "Everybody gets dofollow links"
|
380 |
msgstr "link dofollow per chiunque"
|
381 |
|
382 |
+
#: ../commentluv.php:1429
|
383 |
msgid "Nobody gets dofollow links"
|
384 |
msgstr "nessuno"
|
385 |
|
386 |
+
#: ../commentluv.php:1440
|
387 |
msgid "Technical Settings"
|
388 |
msgstr "Impostazioni tecniche"
|
389 |
|
390 |
+
#: ../commentluv.php:1440
|
391 |
msgid "Click to open technical settings"
|
392 |
msgstr "Clicca per aprire"
|
393 |
|
394 |
+
#: ../commentluv.php:1447
|
395 |
msgid "Please check the help video for this section before changing settings"
|
396 |
msgstr "Prima di modificare le impostazioni, guarda il video di aiuto per questa sezione "
|
397 |
|
398 |
+
#: ../commentluv.php:1448
|
399 |
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"
|
400 |
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"
|
401 |
|
402 |
+
#: ../commentluv.php:1453
|
403 |
msgid "Compatibility"
|
404 |
msgstr "Compatibilità"
|
405 |
|
406 |
+
#: ../commentluv.php:1457
|
407 |
msgid "Use manual insert of badge code?"
|
408 |
msgstr "inserire manualmente il codice?"
|
409 |
|
410 |
+
#: ../commentluv.php:1461
|
411 |
msgid "Enable minifying compatibility?"
|
412 |
msgstr "attivare compatibilità minimizzazione?"
|
413 |
|
414 |
+
#: ../commentluv.php:1462
|
415 |
msgid "For caching plugins (places localized code in footer)"
|
416 |
msgstr "per i plugin di cache (posiziona nel footer codice localizzazione)"
|
417 |
|
418 |
+
#: ../commentluv.php:1465
|
419 |
msgid "Disable Detection?"
|
420 |
msgstr "Disattivare rilevamento?"
|
421 |
|
422 |
+
#: ../commentluv.php:1466
|
423 |
msgid "For XML errors"
|
424 |
msgstr "Per errori XML"
|
425 |
|
426 |
+
#: ../commentluv.php:1470
|
427 |
msgid "API URL"
|
428 |
msgstr "URL API"
|
429 |
|
430 |
+
#: ../commentluv.php:1474
|
431 |
msgid "URL to use for API"
|
432 |
msgstr "URL da utilizzare per la API"
|
433 |
|
434 |
+
#: ../commentluv.php:1478
|
435 |
msgid "Comment Form Field Values"
|
436 |
msgstr "Valori campo modulo commenti"
|
437 |
|
438 |
+
#: ../commentluv.php:1481
|
439 |
msgid "Authors Name field name"
|
440 |
msgstr "nome per il campo autore"
|
441 |
|
442 |
+
#: ../commentluv.php:1486
|
443 |
msgid "Email field name"
|
444 |
msgstr "nome per il campo email"
|
445 |
|
446 |
+
#: ../commentluv.php:1491
|
447 |
msgid "Authors URL field name"
|
448 |
msgstr "nome per il campo URL autore"
|
449 |
|
450 |
+
#: ../commentluv.php:1496
|
451 |
msgid "Comment Text Area name"
|
452 |
msgstr "nome per l'area di testo dei commenti"
|
453 |
|
454 |
+
#: ../commentluv.php:1501
|
455 |
+
msgid "Extras"
|
456 |
+
msgstr "Extra"
|
457 |
+
|
458 |
+
#: ../commentluv.php:1505
|
459 |
+
msgid "Do not show link if comment has no URL"
|
460 |
+
msgstr "Non mostrare il link se commento senza URL"
|
461 |
+
|
462 |
+
#: ../commentluv.php:1506
|
463 |
+
msgid "Prevents spammer abuse"
|
464 |
+
msgstr "Impedisce abuso di spam"
|
465 |
+
|
466 |
+
#: ../commentluv.php:1509
|
467 |
msgid "Diagnostics Info"
|
468 |
msgstr "Info diagnostica"
|
469 |
|
470 |
+
#: ../commentluv.php:1527
|
471 |
msgid "You can copy this information and send it to me if I request it"
|
472 |
msgstr "copia queste informazioni ed inviarmele (se richiesto)"
|
473 |
|
474 |
+
#: ../commentluv.php:1534
|
475 |
msgid "Save Settings"
|
476 |
msgstr "Salva le impostazioni"
|
477 |
|
478 |
+
#: ../commentluv.php:1536
|
479 |
msgid "Reset Settings"
|
480 |
msgstr "Ripristino impostazioni"
|
481 |
|
482 |
+
#: ../commentluv.php:1539
|
483 |
msgid "Are you sure you want to reset your settings? Press OK to continue"
|
484 |
msgstr "Sei certo di volere ripristinare le tue impostazioni? Premi OK per proseguire"
|
485 |
|
486 |
+
#: ../commentluv.php:1542
|
487 |
msgid "Reset"
|
488 |
msgstr "Azzera"
|
489 |
|
490 |
+
#: ../commentluv.php:1550
|
491 |
msgid "Plugin Info"
|
492 |
msgstr "Info sul plugin"
|
493 |
|
494 |
+
#: ../commentluv.php:1553
|
495 |
msgid "Start Here"
|
496 |
msgstr "Inizia qui"
|
497 |
|
498 |
+
#: ../commentluv.php:1554
|
499 |
msgid "Author"
|
500 |
msgstr "Autore"
|
501 |
|
502 |
+
#: ../commentluv.php:1555
|
503 |
msgid "Home Page"
|
504 |
msgstr "Home Page"
|
505 |
|
506 |
+
#: ../commentluv.php:1555
|
507 |
msgid "Visit www.commentluv.com!"
|
508 |
msgstr "Visita www.commentluv.com!"
|
509 |
|
510 |
+
#: ../commentluv.php:1556
|
511 |
msgid "Social"
|
512 |
msgstr "Social"
|
513 |
|
514 |
+
#: ../commentluv.php:1557
|
515 |
msgid "Help"
|
516 |
msgstr "Aiuto"
|
517 |
|
518 |
+
#: ../commentluv.php:1557
|
519 |
msgid "Help Desk"
|
520 |
msgstr "Sezione aiuto"
|
521 |
|
522 |
+
#: ../commentluv.php:1558
|
523 |
msgid "Do you like this plugin?"
|
524 |
msgstr "Ti piace questo plugin?"
|
525 |
|
526 |
+
#: ../commentluv.php:1560
|
527 |
msgid "News"
|
528 |
msgstr "Notizie"
|
529 |
|
530 |
+
#: ../commentluv.php:1588
|
531 |
msgid "Thanks to the following for translations"
|
532 |
msgstr "Un grazie ai seguenti traduttori"
|
533 |
|
534 |
+
#: ../commentluv.php:1589
|
535 |
msgid "Italian"
|
536 |
msgstr "Italiano"
|
537 |
|
538 |
+
#: ../commentluv.php:1590
|
539 |
msgid "Dutch"
|
540 |
msgstr "Olandese"
|
541 |
|
542 |
+
#: ../commentluv.php:1591
|
543 |
msgid "Polish"
|
544 |
msgstr "Polacco"
|
545 |
|
546 |
+
#: ../commentluv.php:1592
|
547 |
msgid "Georgian"
|
548 |
msgstr "Georgiano"
|
549 |
|
550 |
+
#: ../commentluv.php:1593
|
551 |
msgid "Lithuanian"
|
552 |
msgstr "Lituano"
|
553 |
|
554 |
+
#: ../commentluv.php:1594
|
555 |
msgid "Portuguese"
|
556 |
msgstr "Portoghese"
|
557 |
|
558 |
+
#: ../commentluv.php:1595
|
559 |
msgid "Malaysian"
|
560 |
msgstr "Malese"
|
561 |
|
562 |
+
#: ../commentluv.php:1596
|
563 |
msgid "Hindi"
|
564 |
msgstr "Hindi"
|
565 |
|
566 |
+
#: ../commentluv.php:1597
|
567 |
msgid "Indonesian"
|
568 |
msgstr "Indonesiano"
|
569 |
|
570 |
+
#: ../commentluv.php:1598
|
571 |
msgid "Chinese (s)"
|
572 |
msgstr "Cinese"
|
573 |
|
574 |
+
#: ../commentluv.php:1599
|
575 |
msgid "Spanish"
|
576 |
msgstr "Spagnolo"
|
577 |
|
578 |
+
#: ../commentluv.php:1600
|
579 |
msgid "German"
|
580 |
msgstr "Tedesco"
|
581 |
|
582 |
+
#: ../commentluv.php:1601
|
583 |
msgid "Persian"
|
584 |
msgstr "Persiano"
|
585 |
|
586 |
+
#: ../commentluv.php:1602
|
587 |
msgid "Tamil"
|
588 |
msgstr "Tamil"
|
589 |
|
590 |
+
#: ../commentluv.php:1603
|
591 |
msgid "Ukranian"
|
592 |
msgstr "Ucraino"
|
593 |
|
594 |
+
#: ../commentluv.php:1604
|
595 |
msgid "Latvian"
|
596 |
msgstr "Lettone"
|
597 |
|
598 |
+
#: ../commentluv.php:1605
|
599 |
msgid "Romanian"
|
600 |
msgstr "Rumeno"
|
601 |
|
602 |
+
#: ../commentluv.php:1606
|
603 |
msgid "Norwegian"
|
604 |
msgstr "Norvegese"
|
605 |
|
606 |
+
#: ../commentluv.php:1607
|
607 |
msgid "French"
|
608 |
msgstr "Francese"
|
609 |
|
610 |
+
#: ../commentluv.php:1608
|
611 |
msgid "Danish"
|
612 |
msgstr "Danese"
|
613 |
|
614 |
+
#: ../commentluv.php:1609
|
615 |
msgid "Russian"
|
616 |
msgstr "Russo"
|
617 |
|
618 |
+
#: ../commentluv.php:1610
|
619 |
+
msgid "Bengali"
|
620 |
+
msgstr "Bengalese"
|
621 |
+
|
622 |
+
#: ../commentluv.php:1611
|
623 |
msgid "Hebrew"
|
624 |
msgstr "Ebraico"
|
625 |
|
626 |
+
#: ../commentluv.php:1614
|
627 |
msgid "Arabic"
|
628 |
msgstr "Arabo"
|
629 |
|
630 |
+
#: ../commentluv.php:1615
|
631 |
msgid "Want your link here?"
|
632 |
msgstr "Vuoi il tuo link qui?"
|
633 |
|
634 |
+
#: ../commentluv.php:1615
|
635 |
msgid "How To Submit A Translation"
|
636 |
msgstr "Contribuisci alla traduzione"
|
637 |
|
638 |
+
#: ../commentluv.php:1616
|
639 |
msgid "Special thanks go to the following"
|
640 |
msgstr "Un grazie particolare a"
|
641 |
|
642 |
+
#: ../commentluv.php:1617
|
643 |
msgid "CSS Help"
|
644 |
msgstr "Aiuto CSS"
|
645 |
|
646 |
+
#: ../commentluv.php:1618
|
647 |
msgid "Badge GFX"
|
648 |
msgstr "Badge GFX"
|
649 |
|
650 |
+
#~ msgid ""
|
651 |
+
#~ "There is a premium version of CommentLuv coming that will have much more "
|
652 |
+
#~ "control of how the plugin works as well as exclusive features like "
|
653 |
+
#~ "keyword name, inline registration and much much more!. Signup to find out "
|
654 |
+
#~ "as soon as it is ready"
|
655 |
+
#~ msgstr ""
|
656 |
+
#~ "Verrà rilasciata a breve una versione premium di premium CommentLuv "
|
657 |
+
#~ "grazie alla quale potrai avere un maggiore controlo sul plugin nonché "
|
658 |
+
#~ "avere delle nuove opzioni esclusive quali le parole chiave, le "
|
659 |
+
#~ "registrazioni inline e molto altro ancora!. Registrandoti scoprirai "
|
660 |
+
#~ "quando sarà disponibile"
|
661 |
+
|
662 |
+
#~ msgid "Click to register now!"
|
663 |
+
#~ msgstr "Clicca per registrarti adesso!"
|
664 |
+
|
665 |
#~ msgid "Display Options"
|
666 |
#~ msgstr "Mostra opzioni"
|
667 |
|
readme.txt
CHANGED
@@ -3,13 +3,19 @@ Contributors: commentluv, @hishaman (css additions)
|
|
3 |
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.3
|
7 |
-
Stable tag: 2.90.9.
|
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 |
|
11 |
== Description ==
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
This plugin will visit the site of the comment author while they type their comment and retrieve their last blog posts which they can choose to include at the bottom of their comment when they click submit.
|
14 |
|
15 |
It has been found to increase comments and the community spirit for the thousands of blogs that have installed it. With a simple install you will immediately start to find new and interesting blog posts from your own blog and community. You will even be able to build your list/network/community even more by offering your readers the opportunity to register to your site to unlock advanced features of the plugin like being able to choose from any of their 10 last posts when they comment or other features like dofollow links and more.
|
@@ -74,6 +80,10 @@ Please see the videos in the settings page for explanations of how they work.
|
|
74 |
|
75 |
== ChangeLog ==
|
76 |
|
|
|
|
|
|
|
|
|
77 |
= 2.90.9.6 =
|
78 |
* added : code to prevent wp_head and wp_footer actions on a commentluv request from other sites
|
79 |
* fixed : minor translation string bug in __construct
|
@@ -296,9 +306,9 @@ Please see the videos in the settings page for explanations of how they work.
|
|
296 |
|
297 |
== Upgrade Notice ==
|
298 |
|
299 |
-
= 2.90.9.
|
300 |
|
301 |
-
Improved detection of commentluv requests
|
302 |
|
303 |
== Configuration ==
|
304 |
|
3 |
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.3.1
|
7 |
+
Stable tag: 2.90.9.7
|
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 |
|
11 |
== Description ==
|
12 |
|
13 |
+
[Upgrade to CommentLuv Pro](http://www.commentluv.com "Upgrade to CommentLuv Pro")
|
14 |
+
|
15 |
+
CommentLuv Pro has even more amazing features that can bring even more traffic and comments to your blog by giving you the ability to fight spam, add keywords, integrate twitterlink, add a top commentators widget, social enticements and by having it installed on your site, you get advanced backlink features on EVERY CommentLuv blog when you comment (there are 10's of thousands of CommentLuv blogs)
|
16 |
+
|
17 |
+
[About](http://www.commentluv.com/get-more-comments-and-traffic-with-commentluv-premium/ "About") | [Features](http://www.commentluv.com "Features") | [Pricing](http://www.commentluv.com "Pricing")
|
18 |
+
|
19 |
This plugin will visit the site of the comment author while they type their comment and retrieve their last blog posts which they can choose to include at the bottom of their comment when they click submit.
|
20 |
|
21 |
It has been found to increase comments and the community spirit for the thousands of blogs that have installed it. With a simple install you will immediately start to find new and interesting blog posts from your own blog and community. You will even be able to build your list/network/community even more by offering your readers the opportunity to register to your site to unlock advanced features of the plugin like being able to choose from any of their 10 last posts when they comment or other features like dofollow links and more.
|
80 |
|
81 |
== ChangeLog ==
|
82 |
|
83 |
+
= 2.90.9.7 =
|
84 |
+
* updated : Italian translation by Gianni
|
85 |
+
* added : make wp_query->is_feed = true if commentluv request detected
|
86 |
+
|
87 |
= 2.90.9.6 =
|
88 |
* added : code to prevent wp_head and wp_footer actions on a commentluv request from other sites
|
89 |
* fixed : minor translation string bug in __construct
|
306 |
|
307 |
== Upgrade Notice ==
|
308 |
|
309 |
+
= 2.90.9.7 =
|
310 |
|
311 |
+
Improved detection of commentluv requests and Italian language update
|
312 |
|
313 |
== Configuration ==
|
314 |
|