Broken Link Checker - Version 1.2.4

Version Description

  • Fixed a very stupid bug where links would be checked very slowly or not at all.
  • Fixed the display of the news link.
  • Updated Italian translation.
Download this release

Release Info

Developer whiteshadow
Plugin Icon 128x128 Broken Link Checker
Version 1.2.4
Comparing to
See all releases

Code changes from version 1.2.3 to 1.2.4

broken-link-checker.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Broken Link Checker
4
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
5
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
6
- Version: 1.2.3
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
3
  Plugin Name: Broken Link Checker
4
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
5
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
6
+ Version: 1.2.4
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
core/core.php CHANGED
@@ -76,6 +76,9 @@ class wsBrokenLinkChecker {
76
  add_action('blc_cron_database_maintenance', array(&$this, 'database_maintenance'));
77
  add_action('blc_cron_check_news', array(&$this, 'check_news'));
78
 
 
 
 
79
  //Add a "Screen Options" panel to the "Broken Links" page
80
  add_screen_options_panel(
81
  'blc-screen-options',
@@ -372,6 +375,17 @@ class wsBrokenLinkChecker {
372
  $options_page_hook,
373
  array('style' => 'font-weight: bold;')
374
  );
 
 
 
 
 
 
 
 
 
 
 
375
  }
376
 
377
  /**
@@ -1266,9 +1280,6 @@ class wsBrokenLinkChecker {
1266
  if ( empty($current_filter['links']) && !empty($wpdb->last_error) ){
1267
  printf( __('Database error : %s', 'broken-link-checker'), $wpdb->last_error);
1268
  }
1269
-
1270
- //Add an optional "[Plugin news]" button to screen meta
1271
- $this->display_plugin_news_link();
1272
  ?>
1273
 
1274
  <script type='text/javascript'>
@@ -2973,29 +2984,6 @@ class wsBrokenLinkChecker {
2973
  }
2974
  }
2975
 
2976
- /**
2977
- * Display a link to the latest blog post/whatever about this plugin, if any.
2978
- *
2979
- * @return void
2980
- */
2981
- function display_plugin_news_link(){
2982
- if ( !isset($this->conf->options['plugin_news']) || empty($this->conf->options['plugin_news']) ){
2983
- return;
2984
- }
2985
- $news = $this->conf->options['plugin_news'];
2986
- ?>
2987
- <script type="text/javascript">
2988
- (function($){
2989
- var wrapper = $('<div id="blc-news-link-wrap" class="hide-if-no-js screen-meta-toggle"></div>').appendTo('#screen-meta-links');
2990
- $('<a id="blc-plugin-news-link" class="show-settings"></a>')
2991
- .attr('href', '<?php echo esc_js($news[1]); ?>')
2992
- .html('<?php echo esc_js($news[0]) ?>')
2993
- .appendTo(wrapper);
2994
- })(jQuery);
2995
- </script>
2996
- <?php
2997
- }
2998
-
2999
  }//class ends here
3000
 
3001
  } // if class_exists...
76
  add_action('blc_cron_database_maintenance', array(&$this, 'database_maintenance'));
77
  add_action('blc_cron_check_news', array(&$this, 'check_news'));
78
 
79
+ //Set the footer hook that will call the worker function via AJAX.
80
+ add_action('admin_footer', array(&$this,'admin_footer'));
81
+
82
  //Add a "Screen Options" panel to the "Broken Links" page
83
  add_screen_options_panel(
84
  'blc-screen-options',
375
  $options_page_hook,
376
  array('style' => 'font-weight: bold;')
377
  );
378
+
379
+ //Add a link to the latest blog post/whatever about this plugin, if any.
380
+ if ( isset($this->conf->options['plugin_news']) && !empty($this->conf->options['plugin_news']) ){
381
+ $news = $this->conf->options['plugin_news'];
382
+ add_screen_meta_link(
383
+ 'blc-plugin-news-link',
384
+ $news[0],
385
+ $news[1],
386
+ array($options_page_hook, $links_page_hook)
387
+ );
388
+ }
389
  }
390
 
391
  /**
1280
  if ( empty($current_filter['links']) && !empty($wpdb->last_error) ){
1281
  printf( __('Database error : %s', 'broken-link-checker'), $wpdb->last_error);
1282
  }
 
 
 
1283
  ?>
1284
 
1285
  <script type='text/javascript'>
2984
  }
2985
  }
2986
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2987
  }//class ends here
2988
 
2989
  } // if class_exists...
languages/broken-link-checker-it_IT.mo CHANGED
Binary file
languages/broken-link-checker-it_IT.po CHANGED
@@ -7,10 +7,10 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Broken Link Checker in italiano\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
10
- "POT-Creation-Date: 2010-10-08 16:08+0000\n"
11
- "PO-Revision-Date: 2010-10-16 21:26+0100\n"
12
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
13
- "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
@@ -18,675 +18,955 @@ msgstr ""
18
  "X-Poedit-Language: Italian\n"
19
  "X-Poedit-Country: ITALY\n"
20
 
21
- #: core/core.php:152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  #: includes/admin/links-page-js.php:37
23
  msgid "Loading..."
24
  msgstr "In carica..."
25
 
26
- #: core/core.php:176
27
  #: includes/admin/options-page-js.php:18
28
  msgid "[ Network error ]"
29
  msgstr "[ Network error ]"
30
 
31
- #: core/core.php:201
32
  msgid "Automatically expand the widget if broken links have been detected"
33
  msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
34
 
35
- #: core/core.php:342
36
  msgid "Link Checker Settings"
37
  msgstr "Impostazioni Link Checker"
38
 
39
- #: core/core.php:343
40
  msgid "Link Checker"
41
  msgstr "Link Checker"
42
 
43
- #: core/core.php:348
44
  #: includes/link-query.php:26
45
  msgid "Broken Links"
46
  msgstr "Link rotti"
47
 
48
- #: core/core.php:364
49
  msgid "View Broken Links"
50
  msgstr "Visualizza i link rotti"
51
 
52
- #: core/core.php:392
 
 
 
 
 
 
 
 
 
 
 
 
53
  msgid "Settings"
54
  msgstr "Impostazioni"
55
 
56
- #: core/core.php:404
57
- #: core/core.php:1186
58
- #, php-format
59
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
60
  msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
61
 
62
- #: core/core.php:543
63
  msgid "Settings saved."
64
  msgstr "Le impostazioni sono state salvate."
65
 
66
- #: core/core.php:550
 
 
 
 
67
  msgid "Complete site recheck started."
68
  msgstr "E' in atto la nuova verifica completa per il sito."
69
 
70
- #: core/core.php:564
71
- #: core/core.php:2744
72
  msgid "Details"
73
  msgstr "Dettagli"
74
 
75
- #: core/core.php:578
76
  msgid "General"
77
  msgstr "Generale"
78
 
79
- #: core/core.php:579
80
  msgid "Look For Links In"
81
  msgstr "Cerca i link in"
82
 
83
- #: core/core.php:580
84
  msgid "Which Links To Check"
85
  msgstr "Quali link controllare"
86
 
87
- #: core/core.php:581
88
  msgid "Protocols & APIs"
89
  msgstr "Protocolli & API"
90
 
91
- #: core/core.php:582
92
  msgid "Advanced"
93
  msgstr "Avanzate"
94
 
95
- #: core/core.php:586
96
  msgid "Broken Link Checker Options"
97
  msgstr "Opzioni Broken Link Checker"
98
 
99
- #: core/core.php:612
100
  #: includes/admin/table-printer.php:168
101
  msgid "Status"
102
  msgstr "Stato"
103
 
104
- #: core/core.php:614
105
  #: includes/admin/options-page-js.php:56
106
  msgid "Show debug info"
107
  msgstr "Mostra info debug"
108
 
109
- #: core/core.php:642
110
  msgid "Check each link"
111
  msgstr "Controlla i link"
112
 
113
- #: core/core.php:647
114
- #, php-format
115
  msgid "Every %s hours"
116
  msgstr "Ogni %s ore"
117
 
118
- #: core/core.php:656
119
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
120
  msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
121
 
122
- #: core/core.php:663
123
  msgid "E-mail notifications"
124
  msgstr "Notifiche email"
125
 
126
- #: core/core.php:669
127
  msgid "Send me e-mail notifications about newly detected broken links"
128
  msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
129
 
130
- #: core/core.php:676
131
  msgid "Link tweaks"
132
  msgstr "Link tweaks"
133
 
134
- #: core/core.php:682
135
  msgid "Apply custom formatting to broken links"
136
  msgstr "Applica formattazione personalizzata ai link rotti"
137
 
138
- #: core/core.php:686
139
- #: core/core.php:714
140
  msgid "Edit CSS"
141
  msgstr "Modifica CSS"
142
 
143
- #: core/core.php:710
144
  msgid "Apply custom formatting to removed links"
145
  msgstr "Applica la formattazione personalizzata ai link rimossi"
146
 
147
- #: core/core.php:738
148
  msgid "Stop search engines from following broken links"
149
  msgstr "Blocca i motori di ricerca per i seguenti link"
150
 
151
- #: core/core.php:755
152
  msgid "Look for links in"
153
  msgstr "Cerca i links in"
154
 
155
- #: core/core.php:766
156
  msgid "Post statuses"
157
  msgstr "Stati articolo"
158
 
159
- #: core/core.php:799
160
  msgid "Link types"
161
  msgstr "Tipo di link"
162
 
163
- #: core/core.php:805
164
  msgid "Error : All link parsers missing!"
165
  msgstr "Errore : manca l'analisi di tutti i link!"
166
 
167
- #: core/core.php:812
168
  msgid "Exclusion list"
169
  msgstr "Lista estromessi"
170
 
171
- #: core/core.php:813
172
  msgid "Don't check links where the URL contains any of these words (one per line) :"
173
  msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
174
 
175
- #: core/core.php:831
176
  msgid "Check links using"
177
  msgstr "Controlla utilizzo link"
178
 
179
- #: core/core.php:850
180
  #: includes/links.php:849
181
  msgid "Timeout"
182
  msgstr "Timeout"
183
 
184
- #: core/core.php:856
185
- #: core/core.php:902
186
- #: core/core.php:2871
187
- #, php-format
188
  msgid "%s seconds"
189
  msgstr "%s secondi"
190
 
191
- #: core/core.php:865
192
  msgid "Links that take longer than this to load will be marked as broken."
193
  msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
194
 
195
- #: core/core.php:872
196
  msgid "Link monitor"
197
  msgstr "Monitoraggio link"
198
 
199
- #: core/core.php:880
200
  msgid "Run continuously while the Dashboard is open"
201
  msgstr "Funzionamento continuo durante il periodo di login"
202
 
203
- #: core/core.php:888
204
  msgid "Run hourly in the background"
205
  msgstr "Funzionamento in background ogni ora"
206
 
207
- #: core/core.php:896
208
  msgid "Max. execution time"
209
  msgstr "Tempo max. operazione"
210
 
211
- #: core/core.php:913
212
  msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
213
  msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
214
 
215
- #: core/core.php:923
216
  msgid "Custom temporary directory"
217
  msgstr "Cartella temporanea personalizzata:"
218
 
219
- #: core/core.php:932
220
- msgid "OK"
221
- msgstr "OK"
222
-
223
- #: core/core.php:935
224
  msgid "Error : This directory isn't writable by PHP."
225
  msgstr "Errore : questa cartella non é scrivibile via PHP."
226
 
227
- #: core/core.php:940
228
  msgid "Error : This directory doesn't exist."
229
  msgstr "Errore : questa cartella non esiste."
230
 
231
- #: core/core.php:948
232
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
233
  msgstr "Compila questo campo qualora gradissi che il plugin faccia uso di una cartella personalizzata per i lockfile diversamente, lascia in bianco."
234
 
235
- #: core/core.php:955
236
  msgid "Server load limit"
237
  msgstr "Limite server load"
238
 
239
- #: core/core.php:970
240
- #, php-format
241
  msgid "Current load : %s"
242
  msgstr "In caricamento : %s"
243
 
244
- #: core/core.php:976
245
- #, php-format
246
  msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
247
  msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
248
 
249
- #: core/core.php:984
250
  msgid "Not available"
251
  msgstr "Non disponibile"
252
 
253
- #: core/core.php:986
254
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
255
  msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
256
 
257
- #: core/core.php:994
258
  msgid "Forced recheck"
259
  msgstr "Imponi nuova verifica"
260
 
261
- #: core/core.php:997
262
  msgid "Re-check all pages"
263
  msgstr "Ricontrolla tutte le pagine"
264
 
265
- #: core/core.php:1001
266
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
267
  msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
268
 
269
- #: core/core.php:1012
270
  msgid "Save Changes"
271
  msgstr "Salva le modifiche"
272
 
273
- #: core/core.php:1057
274
  msgid "Configure"
275
  msgstr "Configura"
276
 
277
- #: core/core.php:1117
278
- msgid "Upgrade to Pro to enable this feature"
279
- msgstr "Aggiorna alla versione pro per attivare questa opzione"
280
-
281
- #: core/core.php:1152
282
  msgid "Check URLs entered in these custom fields (one per line) :"
283
  msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
284
 
285
- #: core/core.php:1286
286
- #: core/core.php:1370
287
- #: core/core.php:1402
288
- #, php-format
289
  msgid "Database error : %s"
290
  msgstr "Errore database : %s"
291
 
292
- #: core/core.php:1352
293
  msgid "You must enter a filter name!"
294
  msgstr "Deve essere inserito un nome del filtro!"
295
 
296
- #: core/core.php:1356
297
  msgid "Invalid search query."
298
  msgstr "Termine di ricerca non valido."
299
 
300
- #: core/core.php:1365
301
- #, php-format
302
  msgid "Filter \"%s\" created"
303
  msgstr "E' stato creato il filtro \"%s\""
304
 
305
- #: core/core.php:1392
306
  msgid "Filter ID not specified."
307
  msgstr "ID filtro non specificato."
308
 
309
- #: core/core.php:1399
310
  msgid "Filter deleted"
311
  msgstr "Il filtro é stato cancellato"
312
 
313
- #: core/core.php:1447
314
- #, php-format
315
  msgid "Replaced %d redirect with a direct link"
316
  msgid_plural "Replaced %d redirects with direct links"
317
  msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
318
  msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
319
 
320
- #: core/core.php:1458
321
- #, php-format
322
  msgid "Failed to fix %d redirect"
323
  msgid_plural "Failed to fix %d redirects"
324
  msgstr[0] "Impossibile correggere il reindirizzamento per %d"
325
  msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
326
 
327
- #: core/core.php:1468
328
  msgid "None of the selected links are redirects!"
329
  msgstr "Nessuno dei link selezionati é reindirizzato!"
330
 
331
- #: core/core.php:1547
332
- #, php-format
333
  msgid "%d link updated."
334
  msgid_plural "%d links updated."
335
  msgstr[0] "%d link aggiornato."
336
  msgstr[1] "%d link aggiornati."
337
 
338
- #: core/core.php:1558
339
- #, php-format
340
  msgid "Failed to update %d link."
341
  msgid_plural "Failed to update %d links."
342
  msgstr[0] "Impossibile aggiornare il link %d"
343
  msgstr[1] "Impossibile aggiornare i link %d"
344
 
345
- #: core/core.php:1612
346
- #, php-format
347
  msgid "%d link removed"
348
  msgid_plural "%d links removed"
349
  msgstr[0] "%d il link é stato rimosso"
350
  msgstr[1] "%d i link sono stati rimossi"
351
 
352
- #: core/core.php:1623
353
- #, php-format
354
  msgid "Failed to remove %d link"
355
  msgid_plural "Failed to remove %d links"
356
  msgstr[0] "Impossibile rimuovere il link %d"
357
  msgstr[1] "Impossibile rimuovere i link %d"
358
 
359
- #: core/core.php:1732
360
- #, php-format
361
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
362
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
363
  msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
364
  msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
365
 
366
- #: core/core.php:1753
367
  msgid "Didn't find anything to delete!"
368
  msgstr "Nulla da cancellare!"
369
 
370
- #: core/core.php:1781
371
- #, php-format
372
  msgid "%d link scheduled for rechecking"
373
  msgid_plural "%d links scheduled for rechecking"
374
  msgstr[0] "%d link in verifica programmata"
375
  msgstr[1] "%d link in verifica programmata"
376
 
377
- #: core/core.php:1826
378
- #: core/core.php:2431
379
  msgid "This link was manually marked as working by the user."
380
  msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
381
 
382
- #: core/core.php:1833
383
- #, php-format
384
  msgid "Couldn't modify link %d"
385
  msgstr "Non é possibile modificare il link %d"
386
 
387
- #: core/core.php:1844
388
- #, php-format
389
  msgid "%d link marked as not broken"
390
  msgid_plural "%d links marked as not broken"
391
  msgstr[0] "%d link segnato come funzionante"
392
  msgstr[1] "%d link segnati come funzionanti"
393
 
394
- #: core/core.php:1884
395
  msgid "Table columns"
396
  msgstr "Colonne tabella"
397
 
398
- #: core/core.php:1903
399
  msgid "Show on screen"
400
  msgstr "Mostra sullo schermo"
401
 
402
- #: core/core.php:1910
403
  msgid "links"
404
  msgstr "link"
405
 
406
- #: core/core.php:1911
407
  #: includes/admin/table-printer.php:136
408
  msgid "Apply"
409
  msgstr "Applica"
410
 
411
- #: core/core.php:1915
412
  msgid "Misc"
413
  msgstr "Varie"
414
 
415
- #: core/core.php:1930
416
- #, php-format
417
  msgid "Highlight links broken for at least %s days"
418
  msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
419
 
420
- #: core/core.php:1939
421
  msgid "Color-code status codes"
422
  msgstr "Codici stato codice-colore"
423
 
424
- #: core/core.php:1956
425
- #: core/core.php:2416
426
- #: core/core.php:2452
427
- #: core/core.php:2515
428
  msgid "You're not allowed to do that!"
429
  msgstr "Non hai il permesso per farlo!"
430
 
431
- #: core/core.php:2297
432
  msgid "View broken links"
433
  msgstr "Visualizza i link rotti"
434
 
435
- #: core/core.php:2298
436
- #, php-format
437
  msgid "Found %d broken link"
438
  msgid_plural "Found %d broken links"
439
  msgstr[0] "E' stato trovato %d link rotto"
440
  msgstr[1] "Sono stati trovati %d link rotti"
441
 
442
- #: core/core.php:2304
443
  msgid "No broken links found."
444
  msgstr "Non é stato trovato alcun link rotto."
445
 
446
- #: core/core.php:2311
447
- #, php-format
448
  msgid "%d URL in the work queue"
449
  msgid_plural "%d URLs in the work queue"
450
  msgstr[0] "%d URL in coda di elaborazione"
451
  msgstr[1] "%d URL in coda di elaborazione"
452
 
453
- #: core/core.php:2314
454
  msgid "No URLs in the work queue."
455
  msgstr "Nessun URL in coda di elaborazione."
456
 
457
- #: core/core.php:2320
458
- #, php-format
459
  msgid "Detected %d unique URL"
460
  msgid_plural "Detected %d unique URLs"
461
  msgstr[0] "E' stato rilevato %d URL unico"
462
  msgstr[1] "Sono stati rilevati %d URL unici"
463
 
464
- #: core/core.php:2321
465
- #, php-format
466
  msgid "in %d link"
467
  msgid_plural "in %d links"
468
  msgstr[0] "in %d link"
469
  msgstr[1] "in %d link"
470
 
471
- #: core/core.php:2326
472
  msgid "and still searching..."
473
  msgstr "ricerca in corso..."
474
 
475
- #: core/core.php:2332
476
  msgid "Searching your blog for links..."
477
  msgstr "Ricerca dei link in corso..."
478
 
479
- #: core/core.php:2334
480
  msgid "No links detected."
481
  msgstr "Nessun link é stato rilevato."
482
 
483
- #: core/core.php:2360
484
  msgctxt "current load"
485
  msgid "Unknown"
486
  msgstr "Sconosciuto"
487
 
488
- #: core/core.php:2424
489
- #: core/core.php:2462
490
- #: core/core.php:2525
491
- #, php-format
492
  msgid "Oops, I can't find the link %d"
493
  msgstr "Oops, non é possibile trovare il link %d"
494
 
495
- #: core/core.php:2437
496
  msgid "Oops, couldn't modify the link!"
497
  msgstr "Oops, non é possibile modificare il link!"
498
 
499
- #: core/core.php:2440
500
- #: core/core.php:2551
501
  msgid "Error : link_id not specified"
502
  msgstr "Errore : non é stata specificata la link_id"
503
 
504
- #: core/core.php:2472
505
  msgid "Oops, the new URL is invalid!"
506
  msgstr "Oops, il nuovo URL non é valido!"
507
 
508
- #: core/core.php:2483
509
- #: core/core.php:2534
510
  msgid "An unexpected error occured!"
511
  msgstr "Si é verificato un errore inatteso!"
512
 
513
- #: core/core.php:2501
514
  msgid "Error : link_id or new_url not specified"
515
  msgstr "Errore : non é stata specificata la link_id oppure il new_url"
516
 
517
- #: core/core.php:2560
518
  msgid "You don't have sufficient privileges to access this information!"
519
  msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
520
 
521
- #: core/core.php:2573
522
  msgid "Error : link ID not specified"
523
  msgstr "Errore : La ID del link non é stata specificata"
524
 
525
- #: core/core.php:2587
526
- #, php-format
527
  msgid "Failed to load link details (%s)"
528
  msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
529
 
530
- #. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.6) #-#-#-#-#
531
  #. Plugin Name of the plugin/theme
532
- #: core/core.php:2716
533
  msgid "Broken Link Checker"
534
  msgstr "Broken Link Checker"
535
 
536
- #: core/core.php:2730
537
- #, php-format
538
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
539
  msgstr "La cartella temporanea non é accessibile; impostane una <a href=\"%s\">differente</a>."
540
 
541
- #: core/core.php:2735
542
- #, php-format
543
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
544
  msgstr "Rendi scrivibile la cartella <code>%1$s</code> oppure imposta una <a href=\"%2$s\">cartella temporanea</a>."
545
 
546
- #: core/core.php:2742
547
  msgid "Broken Link Checker can't create a lockfile."
548
  msgstr "Broken Link Checker non può creare un lockfile."
549
 
550
- #: core/core.php:2747
551
  msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
552
  msgstr "Questo plugin utilizza un meccanismo di locking su base-file in modo tale che una sola richiesta per volta venga inoltrata all'algoritmo per la ricerca dei link. Sfortunatamente, BLC non ha trovato una cartella scrivibile laddove poter allocare il lockfile - non é stato possibile rilevare la posizione della cartella temporanea nel server e la cartella stessa del plugin non é scrivibile via PHP. Per risolvere il problema, rendi scrivibile la cartella del plugin oppure inserisci nelle impostazioni del plugin il percorso ad una cartella temporanea personalizzata."
553
 
554
- #: core/core.php:2766
555
  msgid "PHP version"
556
  msgstr "Versione PHP"
557
 
558
- #: core/core.php:2772
559
  msgid "MySQL version"
560
  msgstr "Versione MySQL"
561
 
562
- #: core/core.php:2785
563
  msgid "You have an old version of CURL. Redirect detection may not work properly."
564
  msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
565
 
566
- #: core/core.php:2797
567
- #: core/core.php:2813
568
- #: core/core.php:2818
569
  msgid "Not installed"
570
  msgstr "Non installato"
571
 
572
- #: core/core.php:2800
573
  msgid "CURL version"
574
  msgstr "Versione CURL"
575
 
576
- #: core/core.php:2806
577
  msgid "Installed"
578
  msgstr "Installato"
579
 
580
- #: core/core.php:2819
581
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
582
  msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
583
 
584
- #: core/core.php:2830
585
  msgid "On"
586
  msgstr "On"
587
 
588
- #: core/core.php:2831
589
  msgid "Redirects may be detected as broken links when safe_mode is on."
590
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
591
 
592
- #: core/core.php:2836
593
- #: core/core.php:2850
594
  msgid "Off"
595
  msgstr "Off"
596
 
597
- #: core/core.php:2844
598
- #, php-format
599
  msgid "On ( %s )"
600
  msgstr "On ( %s )"
601
 
602
- #: core/core.php:2845
603
  msgid "Redirects may be detected as broken links when open_basedir is on."
604
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
605
 
606
- #: core/core.php:2864
607
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
608
  msgstr "Non é stato possibile creare un lockfile. Specificare una cartella temporanea personalizzata."
609
 
610
- #: core/core.php:2888
611
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
612
  msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
613
 
614
- #: core/core.php:2959
615
- #, php-format
616
  msgid "[%s] Broken links detected"
617
  msgstr "[%s] Link rotti rilevati"
618
 
619
- #: core/core.php:2965
620
- #, php-format
621
  msgid "Broken Link Checker has detected %d new broken link on your site."
622
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
623
  msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
624
  msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
625
 
626
- #: core/core.php:2980
627
- #, php-format
628
  msgid "Here's a list of the first %d broken links:"
629
  msgid_plural "Here's a list of the first %d broken links:"
630
  msgstr[0] "Ecco una lista del primo %d link rotto:"
631
  msgstr[1] "Ecco una lista dei primi %d link rotti:"
632
 
633
- #: core/core.php:2988
634
  msgid "Here's a list of the new broken links: "
635
  msgstr "Ecco una lista con i nuovi link rotti:"
636
 
637
- #: core/core.php:3000
638
- #, php-format
639
  msgid "Link text : %s"
640
  msgstr "Testo del link : %s"
641
 
642
- #: core/core.php:3001
643
- #, php-format
644
  msgid "Link URL : <a href=\"%s\">%s</a>"
645
  msgstr "URL del link : <a href=\"%s\">%s</a>"
646
 
647
- #: core/core.php:3002
648
- #, php-format
649
  msgid "Source : %s"
650
  msgstr "Sorgente : %s"
651
 
652
- #: core/core.php:3016
653
  msgid "You can see all broken links here:"
654
  msgstr "Qui puoi vedere tutti i link rotti:"
655
 
656
- #: core/init.php:236
657
- msgid "Once Weekly"
658
- msgstr "Una volta alla settimana"
659
-
660
- #: core/init.php:242
661
- msgid "Twice a Month"
662
- msgstr "Due volte al mese"
663
-
664
- #: core/init.php:309
665
- msgid "Broken Link Checker installation failed"
666
- msgstr "L'installazione di Broken Link Checker é fallita."
667
-
668
- #: includes/admin/db-upgrade.php:95
669
- #, php-format
670
- msgid "Failed to delete old DB tables. Database error : %s"
671
- msgstr "Non é stato possibile cancellare le vecchie tabelle del DB. Errore database : %s"
672
-
673
  #: includes/admin/links-page-js.php:58
674
  #: includes/admin/links-page-js.php:301
675
  msgid "Wait..."
676
  msgstr "Attendi..."
677
 
678
  #: includes/admin/links-page-js.php:99
679
- #: includes/admin/table-printer.php:592
680
  msgid "Not broken"
681
  msgstr "Non rotto"
682
 
683
  #: includes/admin/links-page-js.php:213
684
- #, php-format
685
  msgid "%d instances of the link were successfully modified."
686
  msgstr "%d le richieste del link sono state modificate con successo."
687
 
688
  #: includes/admin/links-page-js.php:219
689
- #, php-format
690
  msgid "However, %d instances couldn't be edited and still point to the old URL."
691
  msgstr "Comunque, le %d richieste non possono essere modificate e continuano a puntare verso il vecchio URL."
692
 
@@ -700,12 +980,10 @@ msgid "The following error(s) occured :"
700
  msgstr "Si sono verificati i seguenti errori: "
701
 
702
  #: includes/admin/links-page-js.php:339
703
- #, php-format
704
  msgid "%d instances of the link were successfully unlinked."
705
  msgstr "%d richieste del link sono state de-linkate con successo."
706
 
707
  #: includes/admin/links-page-js.php:345
708
- #, php-format
709
  msgid "However, %d instances couldn't be removed."
710
  msgstr "Comunque, le %d le richieste non possono essere rimosse."
711
 
@@ -715,7 +993,7 @@ msgstr "Il plugin non é stato in grado di rimuovere il link."
715
 
716
  #: includes/admin/links-page-js.php:361
717
  #: includes/admin/table-printer.php:237
718
- #: includes/admin/table-printer.php:586
719
  msgid "Unlink"
720
  msgstr "Scollega"
721
 
@@ -755,10 +1033,6 @@ msgstr "Inserisci prima il termine di ricerca."
755
  msgid "Select one or more links to edit."
756
  msgstr "Seleziona uno o più link da modificare."
757
 
758
- #: includes/admin/options-page-js.php:54
759
- msgid "Hide debug info"
760
- msgstr "Nascondi le info debug"
761
-
762
  #: includes/admin/search-form.php:16
763
  msgid "Save This Search As a Filter"
764
  msgstr "Salva questa ricerca come filtro"
@@ -782,7 +1056,7 @@ msgid "URL"
782
  msgstr "URL"
783
 
784
  #: includes/admin/search-form.php:48
785
- #: includes/admin/table-printer.php:460
786
  msgid "HTTP code"
787
  msgstr "Codice HTTP"
788
 
@@ -808,12 +1082,32 @@ msgid "Search Links"
808
  msgstr "Ricerca link"
809
 
810
  #: includes/admin/search-form.php:113
811
- #: includes/admin/table-printer.php:318
812
- #: includes/admin/table-printer.php:600
813
- #: includes/admin/table-printer.php:606
814
  msgid "Cancel"
815
  msgstr "Annulla"
816
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
817
  #: includes/admin/table-printer.php:150
818
  msgid "Compact View"
819
  msgstr "Visualizzazione compatta"
@@ -835,7 +1129,7 @@ msgid "Bulk Actions"
835
  msgstr "Azione di massa"
836
 
837
  #: includes/admin/table-printer.php:233
838
- #: includes/admin/table-printer.php:583
839
  msgid "Edit URL"
840
  msgstr "Modifica URL"
841
 
@@ -859,266 +1153,293 @@ msgstr "Sposta le fonti nel cestino"
859
  msgid "Delete sources"
860
  msgstr "Cancella soegenti"
861
 
862
- #: includes/admin/table-printer.php:262
863
  msgid "&laquo;"
864
  msgstr "&laquo;"
865
 
866
- #: includes/admin/table-printer.php:263
867
  msgid "&raquo;"
868
  msgstr "&raquo;"
869
 
870
- #: includes/admin/table-printer.php:271
871
- #, php-format
872
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
873
  msgstr "Si stanno mostrando %s&#8211;%s di <span class=\"current-link-count\">%s</span>"
874
 
875
- #: includes/admin/table-printer.php:294
876
  msgid "Bulk Edit URLs"
877
  msgstr "Modifica URL (di gruppo)"
878
 
879
- #: includes/admin/table-printer.php:296
880
  msgid "Find"
881
  msgstr "Trova"
882
 
883
- #: includes/admin/table-printer.php:300
884
  msgid "Replace with"
885
  msgstr "Sostituisci con"
886
 
887
- #: includes/admin/table-printer.php:308
888
  msgid "Case sensitive"
889
  msgstr "Maiuscole/minuscole"
890
 
891
- #: includes/admin/table-printer.php:312
892
  msgid "Regular expression"
893
  msgstr "Espressione regolare"
894
 
895
- #: includes/admin/table-printer.php:320
896
  msgid "Update"
897
  msgstr "Aggiorna"
898
 
899
- #: includes/admin/table-printer.php:445
900
  msgid "Post published on"
901
  msgstr "Articolo pubblicato il"
902
 
903
- #: includes/admin/table-printer.php:450
904
  msgid "Link last checked"
905
  msgstr "Ultimo controllo link"
906
 
907
- #: includes/admin/table-printer.php:454
908
  msgid "Never"
909
  msgstr "Mai"
910
 
911
- #: includes/admin/table-printer.php:465
912
  msgid "Response time"
913
  msgstr "Tempo di risposta"
914
 
915
- #: includes/admin/table-printer.php:467
916
- #, php-format
917
  msgid "%2.3f seconds"
918
  msgstr "%2.3f secondi"
919
 
920
- #: includes/admin/table-printer.php:470
921
  msgid "Final URL"
922
  msgstr "URL finale"
923
 
924
- #: includes/admin/table-printer.php:475
925
  msgid "Redirect count"
926
  msgstr "Computo reindirizzamento"
927
 
928
- #: includes/admin/table-printer.php:480
929
  msgid "Instance count"
930
  msgstr "Computo richieste"
931
 
932
- #: includes/admin/table-printer.php:489
933
- #, php-format
934
  msgid "This link has failed %d time."
935
  msgid_plural "This link has failed %d times."
936
  msgstr[0] "Questo link é stato difettoso %d volte."
937
  msgstr[1] "Questi link sono stati difettosi %d volte."
938
 
939
- #: includes/admin/table-printer.php:497
940
- #, php-format
941
  msgid "This link has been broken for %s."
942
  msgstr "Questo link é stato rotto per %s."
943
 
944
- #: includes/admin/table-printer.php:508
945
  msgid "Log"
946
  msgstr "Registro"
947
 
948
- #: includes/admin/table-printer.php:529
949
  msgid "Show more info about this link"
950
  msgstr "Mostra più info su questo link"
951
 
952
- #: includes/admin/table-printer.php:547
953
  msgctxt "checked how long ago"
954
  msgid "Checked"
955
  msgstr "Verificato"
956
 
957
- #: includes/admin/table-printer.php:563
958
  msgid "Broken for"
959
  msgstr "Rotto per"
960
 
961
- #: includes/admin/table-printer.php:583
962
  msgid "Edit link URL"
963
  msgstr "Modifica URL del link"
964
 
965
- #: includes/admin/table-printer.php:585
966
  msgid "Remove this link from all posts"
967
  msgstr "Rimuovi questo link da tutti gli articoli"
968
 
969
- #: includes/admin/table-printer.php:591
970
  msgid "Remove this link from the list of broken links and mark it as valid"
971
  msgstr "Rimuovi questo link dalla lista dei link rotti e segnalo come valido"
972
 
973
- #: includes/admin/table-printer.php:600
974
  msgid "Cancel URL editing"
975
  msgstr "Annulla modifica URL"
976
 
977
- #: includes/admin/table-printer.php:607
978
  msgid "Update URL"
979
  msgstr "Aggiorna URL"
980
 
981
- #: includes/admin/table-printer.php:629
982
  msgid "[An orphaned link! This is a bug.]"
983
  msgstr "[Un link orfano! Questo é un bug.]"
984
 
985
- #: includes/any-post.php:398
986
- #: modules/containers/blogroll.php:46
987
- #: modules/containers/comment.php:153
988
- #: modules/containers/custom_field.php:197
989
- msgid "Edit"
990
- msgstr "Modifica"
991
 
992
- #: includes/any-post.php:406
993
- #: modules/containers/custom_field.php:203
994
- msgid "Move this item to the Trash"
995
- msgstr "Sposta questo termine nel cestino"
996
 
997
- #: includes/any-post.php:408
998
- #: modules/containers/custom_field.php:205
999
- msgid "Trash"
1000
- msgstr "Cestino"
1001
 
1002
- #: includes/any-post.php:413
1003
- #: modules/containers/custom_field.php:210
1004
- msgid "Delete this item permanently"
1005
- msgstr "Cancella questo termine in modo definitivo"
1006
 
1007
- #: includes/any-post.php:415
1008
- #: modules/containers/blogroll.php:47
1009
- #: modules/containers/custom_field.php:212
1010
- msgid "Delete"
1011
- msgstr "Cancella"
1012
 
1013
- #: includes/any-post.php:428
1014
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1015
  msgid "Preview &#8220;%s&#8221;"
1016
  msgstr "Anteprima &#8220;%s&#8221;"
1017
 
1018
- #: includes/any-post.php:429
1019
  msgid "Preview"
1020
  msgstr "Anteprima"
1021
 
1022
- #: includes/any-post.php:436
1023
- #, php-format
1024
  msgid "View &#8220;%s&#8221;"
1025
  msgstr "Visualizza &#8220;%s&#8221;"
1026
 
1027
- #: includes/any-post.php:437
1028
- #: modules/containers/comment.php:166
1029
- #: modules/containers/custom_field.php:217
1030
- msgid "View"
1031
- msgstr "Visualizza"
1032
-
1033
- #: includes/any-post.php:456
1034
- #: modules/containers/custom_field.php:197
1035
- msgid "Edit this item"
1036
- msgstr "modifica questo termine"
1037
-
1038
- #: includes/any-post.php:520
1039
- #: modules/containers/blogroll.php:83
1040
- #: modules/containers/comment.php:43
1041
- msgid "Nothing to update"
1042
- msgstr "Nulla da aggiornare"
1043
-
1044
- #: includes/any-post.php:530
1045
- #, php-format
1046
  msgid "Updating post %d failed"
1047
  msgstr "Aggiornamento articolo %d non riuscito"
1048
 
1049
- #: includes/any-post.php:565
1050
- #: modules/containers/custom_field.php:284
1051
- #, php-format
1052
- msgid "Failed to delete post \"%s\" (%d)"
1053
- msgstr "Non é stato possibile cancellare il post \"%s\" (%d)"
1054
-
1055
- #: includes/any-post.php:584
1056
- #: modules/containers/custom_field.php:303
1057
- #, php-format
1058
- msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1059
- msgstr "Non é stato possibile spostare l'articolo \"%s\" (%d) nel cestino poiché la funzione cestino non é attiva"
1060
-
1061
- #: includes/any-post.php:604
1062
- #: modules/containers/custom_field.php:322
1063
- #, php-format
1064
- msgid "Failed to move post \"%s\" (%d) to the trash"
1065
- msgstr "Impossibile spostare l'articolo \"%s\" (%d) nel cestino"
1066
-
1067
- #: includes/any-post.php:712
1068
- #, php-format
1069
  msgid "%d post deleted."
1070
  msgid_plural "%d posts deleted."
1071
  msgstr[0] "%d articolo cancellato"
1072
  msgstr[1] "%d articoli cancellati"
1073
 
1074
- #: includes/any-post.php:714
1075
- #, php-format
1076
  msgid "%d page deleted."
1077
  msgid_plural "%d pages deleted."
1078
  msgstr[0] "%d pagina cancellata."
1079
  msgstr[1] "%d pagine cancellate."
1080
 
1081
- #: includes/any-post.php:716
1082
- #, php-format
1083
  msgid "%d \"%s\" deleted."
1084
  msgid_plural "%d \"%s\" deleted."
1085
  msgstr[0] "%d \"%s\" cancellato."
1086
  msgstr[1] "%d \"%s\" cancellati."
1087
 
1088
- #: includes/any-post.php:735
1089
- #, php-format
1090
  msgid "%d post moved to the Trash."
1091
  msgid_plural "%d posts moved to the Trash."
1092
  msgstr[0] "%d il post é stato spostato nel cestino"
1093
  msgstr[1] "%d i post sono stati spostati nel cestino"
1094
 
1095
- #: includes/any-post.php:737
1096
- #, php-format
1097
  msgid "%d page moved to the Trash."
1098
  msgid_plural "%d pages moved to the Trash."
1099
  msgstr[0] "%d La pagina é stata spostata nel cestino."
1100
  msgstr[1] "%d le pagine soono state spostate nel cestino"
1101
 
1102
- #: includes/any-post.php:739
1103
- #, php-format
1104
  msgid "%d \"%s\" moved to the Trash."
1105
  msgid_plural "%d \"%s\" moved to the Trash."
1106
  msgstr[0] "%d \"%s\" é stato spostato nel cestino."
1107
  msgstr[1] "%d \"%s\" sono stati spostati nel cestino."
1108
 
1109
  #: includes/containers.php:122
1110
- #, php-format
1111
  msgid "%d '%s' has been deleted"
1112
  msgid_plural "%d '%s' have been deleted"
1113
  msgstr[0] "%d '%s' é stato cancellato"
1114
  msgstr[1] "%d '%s' sono stati cancellati"
1115
 
1116
- #: includes/containers.php:882
1117
- #: includes/containers.php:900
1118
- #, php-format
1119
  msgid "Container type '%s' not recognized"
1120
  msgstr "Container type '%s' non riconosciuto"
1121
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1122
  #: includes/extra-strings.php:2
1123
  msgctxt "module name"
1124
  msgid "Basic HTTP"
@@ -1199,360 +1520,75 @@ msgctxt "module name"
1199
  msgid "Pages"
1200
  msgstr "Pagine"
1201
 
1202
- #: includes/instances.php:102
1203
- #: includes/instances.php:158
1204
- #, php-format
1205
- msgid "Container %s[%d] not found"
1206
- msgstr "Container %s[%d] non trovato"
1207
-
1208
- #: includes/instances.php:111
1209
- #: includes/instances.php:167
1210
- #, php-format
1211
- msgid "Parser '%s' not found."
1212
- msgstr "Parser '%s' non trovato."
1213
-
1214
- #: includes/link-query.php:25
1215
- msgid "Broken"
1216
- msgstr "Rotto"
1217
-
1218
- #: includes/link-query.php:27
1219
- msgid "No broken links found"
1220
- msgstr "Non é stato trovato alcun link rotto"
1221
-
1222
- #: includes/link-query.php:34
1223
- msgid "Redirects"
1224
- msgstr "Reindirizzamenti"
1225
-
1226
- #: includes/link-query.php:35
1227
- msgid "Redirected Links"
1228
- msgstr "Link reindirizzati"
1229
-
1230
- #: includes/link-query.php:36
1231
- msgid "No redirects found"
1232
- msgstr "Nessun reindirizzamento é stato trovato"
1233
-
1234
- #: includes/link-query.php:44
1235
- msgid "All"
1236
- msgstr "Tutti"
1237
-
1238
- #: includes/link-query.php:45
1239
- msgid "Detected Links"
1240
- msgstr "Link rilevati"
1241
-
1242
- #: includes/link-query.php:46
1243
- msgid "No links found (yet)"
1244
- msgstr "Nessun link trovato (ancora)"
1245
-
1246
- #: includes/link-query.php:54
1247
- msgid "Search Results"
1248
- msgstr "Risultati della ricerca"
1249
-
1250
- #: includes/link-query.php:55
1251
- #: includes/link-query.php:106
1252
- msgid "No links found for your query"
1253
- msgstr "Nessun link trovato in relazione ai termini di ricerca"
1254
-
1255
- #: includes/links.php:215
1256
- msgid "The plugin script was terminated while trying to check the link."
1257
- msgstr "Lo script del plugin was é stato fermato durante il tentativo di verifica del link."
1258
-
1259
- #: includes/links.php:261
1260
- msgid "The plugin doesn't know how to check this type of link."
1261
- msgstr "Questo plugin non é in grado di potere verificare questo tipo di link."
1262
-
1263
- #: includes/links.php:349
1264
- msgid "Link is valid."
1265
- msgstr "Il link é valido."
1266
-
1267
- #: includes/links.php:351
1268
- msgid "Link is broken."
1269
- msgstr "Il link é rotto."
1270
-
1271
- #: includes/links.php:564
1272
- #: includes/links.php:666
1273
- #: includes/links.php:693
1274
- msgid "Link is not valid"
1275
- msgstr "Link non valido"
1276
-
1277
- #: includes/links.php:581
1278
- msgid "This link can not be edited because it is not used anywhere on this site."
1279
- msgstr "Questo link non può essere modificato poiché non viene utilizzato in nessuna parte di questo sito."
1280
-
1281
- #: includes/links.php:607
1282
- msgid "Failed to create a DB entry for the new URL."
1283
- msgstr "Non é stato possibile creare una entry nel DB per il nuovo URL."
1284
-
1285
- #: includes/links.php:673
1286
- msgid "This link is not a redirect"
1287
- msgstr "Questo link non é redirect"
1288
-
1289
- #: includes/links.php:720
1290
- #: includes/links.php:757
1291
- msgid "Couldn't delete the link's database record"
1292
- msgstr "Non é possibile cancellare dal database il record per il link"
1293
-
1294
- #: includes/links.php:831
1295
- msgctxt "link status"
1296
- msgid "Unknown"
1297
- msgstr "Sconosciuto"
1298
-
1299
- #: includes/links.php:845
1300
- #: modules/checkers/http.php:263
1301
- msgid "Unknown Error"
1302
- msgstr "Errore sconosciuto"
1303
-
1304
- #: includes/links.php:869
1305
- msgid "Not checked"
1306
- msgstr "Non verificato"
1307
-
1308
- #: includes/links.php:872
1309
- msgid "False positive"
1310
- msgstr "Falso positivo"
1311
-
1312
- #: includes/links.php:875
1313
- msgctxt "link status"
1314
- msgid "OK"
1315
- msgstr "OK"
1316
-
1317
- #: includes/module-manager.php:122
1318
- #: includes/module-manager.php:139
1319
- msgctxt "module name"
1320
- msgid "Name"
1321
- msgstr "Nome"
1322
-
1323
- #: includes/parsers.php:109
1324
- #, php-format
1325
- msgid "Editing is not implemented in the '%s' parser"
1326
- msgstr "La modifica non é implementata nel '%s' parser"
1327
-
1328
- #: includes/parsers.php:124
1329
- #, php-format
1330
- msgid "Unlinking is not implemented in the '%s' parser"
1331
- msgstr "Il de-link non é implementatato nel '%s' parser"
1332
-
1333
- #: includes/utility-class.php:287
1334
- #, php-format
1335
  msgid "%d second"
1336
  msgid_plural "%d seconds"
1337
  msgstr[0] "%d secondo"
1338
  msgstr[1] "%d secondi"
1339
 
1340
- #: includes/utility-class.php:288
1341
- #, php-format
1342
  msgid "%d second ago"
1343
  msgid_plural "%d seconds ago"
1344
  msgstr[0] "%d secondo fa"
1345
  msgstr[1] "%d secondi fa"
1346
 
1347
- #: includes/utility-class.php:291
1348
- #, php-format
1349
  msgid "%d minute"
1350
  msgid_plural "%d minutes"
1351
  msgstr[0] "%d minuto"
1352
  msgstr[1] "%d minuti"
1353
 
1354
- #: includes/utility-class.php:292
1355
- #, php-format
1356
  msgid "%d minute ago"
1357
  msgid_plural "%d minutes ago"
1358
  msgstr[0] "%d minuto fa"
1359
  msgstr[1] "%d minuti fa"
1360
 
1361
- #: includes/utility-class.php:295
1362
- #, php-format
1363
  msgid "%d hour"
1364
  msgid_plural "%d hours"
1365
  msgstr[0] "%d ora"
1366
  msgstr[1] "%d ore"
1367
 
1368
- #: includes/utility-class.php:296
1369
- #, php-format
1370
  msgid "%d hour ago"
1371
  msgid_plural "%d hours ago"
1372
  msgstr[0] "%d ora fa"
1373
  msgstr[1] "%d ore fa"
1374
 
1375
- #: includes/utility-class.php:299
1376
- #, php-format
1377
  msgid "%d day"
1378
  msgid_plural "%d days"
1379
  msgstr[0] "%d giorno"
1380
  msgstr[1] "%d giorni"
1381
 
1382
- #: includes/utility-class.php:300
1383
- #, php-format
1384
  msgid "%d day ago"
1385
  msgid_plural "%d days ago"
1386
  msgstr[0] "%d giorno fa"
1387
  msgstr[1] "%d giorni fa"
1388
 
1389
- #: includes/utility-class.php:303
1390
- #, php-format
1391
  msgid "%d month"
1392
  msgid_plural "%d months"
1393
  msgstr[0] "%d mese"
1394
  msgstr[1] "%d mesi"
1395
 
1396
- #: includes/utility-class.php:304
1397
- #, php-format
1398
  msgid "%d month ago"
1399
  msgid_plural "%d months ago"
1400
  msgstr[0] "%d mese fa"
1401
  msgstr[1] "%d mesi fa"
1402
 
1403
- #: modules/checkers/http.php:242
1404
- msgid "Server Not Found"
1405
- msgstr "Server non trovato"
1406
-
1407
- #: modules/checkers/http.php:257
1408
- msgid "Connection Failed"
1409
- msgstr "Tentativo di connessione non riuscito"
1410
-
1411
- #: modules/checkers/http.php:292
1412
- #: modules/checkers/http.php:362
1413
- #, php-format
1414
- msgid "HTTP code : %d"
1415
- msgstr "Codice HTTP : %d"
1416
-
1417
- #: modules/checkers/http.php:294
1418
- #: modules/checkers/http.php:364
1419
- msgid "(No response)"
1420
- msgstr "(nessuna risposta)"
1421
-
1422
- #: modules/checkers/http.php:300
1423
- msgid "Most likely the connection timed out or the domain doesn't exist."
1424
- msgstr "Connessione scaduta oppure il dominio non esiste."
1425
-
1426
- #: modules/checkers/http.php:371
1427
- msgid "Request timed out."
1428
- msgstr "Richiesta scaduta."
1429
-
1430
- #: modules/checkers/http.php:389
1431
- msgid "Using Snoopy"
1432
- msgstr "Snoopy in uso"
1433
-
1434
- #: modules/containers/blogroll.php:21
1435
- msgid "Bookmark"
1436
- msgstr "Segnalibro"
1437
-
1438
- #: modules/containers/blogroll.php:27
1439
- #: modules/containers/blogroll.php:46
1440
- msgid "Edit this bookmark"
1441
- msgstr "Modifica questo segnalibro"
1442
-
1443
- #: modules/containers/blogroll.php:47
1444
- #, php-format
1445
- msgid ""
1446
- "You are about to delete this link '%s'\n"
1447
- " 'Cancel' to stop, 'OK' to delete."
1448
- msgstr ""
1449
- "Stai per cancellare questo link '%s'\n"
1450
- " 'Annulla' per fermarti, 'OK' per cancellare."
1451
-
1452
- #: modules/containers/blogroll.php:97
1453
- #, php-format
1454
- msgid "Updating bookmark %d failed"
1455
- msgstr "Non é stato possibile aggiornare il bookmark %d"
1456
-
1457
- #: modules/containers/blogroll.php:128
1458
- #, php-format
1459
- msgid "Failed to delete blogroll link \"%s\" (%d)"
1460
- msgstr "Non é stato possibile cancellare il link \"%s\" (%d) presente nel blogroll"
1461
-
1462
- #: modules/containers/blogroll.php:299
1463
- #, php-format
1464
- msgid "%d blogroll link deleted."
1465
- msgid_plural "%d blogroll links deleted."
1466
- msgstr[0] "Il link %d presente nel blogroll é stato cancellato"
1467
- msgstr[1] "I link %d presenti nel blogroll sono stati cancellati"
1468
-
1469
- #: modules/containers/comment.php:53
1470
- #, php-format
1471
- msgid "Updating comment %d failed"
1472
- msgstr "Non é stato possibile aggiornare il commento %d"
1473
-
1474
- #: modules/containers/comment.php:74
1475
- #, php-format
1476
- msgid "Failed to delete comment %d"
1477
- msgstr "Non é stato possibile cancellare il commento %d"
1478
-
1479
- #: modules/containers/comment.php:95
1480
- #, php-format
1481
- msgid "Can't move comment %d to the trash"
1482
- msgstr "Non é stato possibile spostare nel cestino il commento %d"
1483
-
1484
- #: modules/containers/comment.php:153
1485
- #: modules/containers/comment.php:195
1486
- msgid "Edit comment"
1487
- msgstr "Modifica commento"
1488
-
1489
- #: modules/containers/comment.php:160
1490
- msgid "Delete Permanently"
1491
- msgstr "Cancella definitivamente"
1492
-
1493
- #: modules/containers/comment.php:162
1494
- msgid "Move this comment to the trash"
1495
- msgstr "Sposta questo commento nel cestino"
1496
-
1497
- #: modules/containers/comment.php:162
1498
- msgctxt "verb"
1499
- msgid "Trash"
1500
- msgstr "Cestino"
1501
-
1502
- #: modules/containers/comment.php:166
1503
- msgid "View comment"
1504
- msgstr "Visualizza il commento"
1505
-
1506
- #: modules/containers/comment.php:183
1507
- msgid "Comment"
1508
- msgstr "Commento"
1509
-
1510
- #: modules/containers/comment.php:372
1511
- #, php-format
1512
- msgid "%d comment has been deleted."
1513
- msgid_plural "%d comments have been deleted."
1514
- msgstr[0] "%d commento é stato cancellato"
1515
- msgstr[1] "%d commenti sono stati cancellati"
1516
-
1517
- #: modules/containers/comment.php:391
1518
- #, php-format
1519
- msgid "%d comment moved to the Trash."
1520
- msgid_plural "%d comments moved to the Trash."
1521
- msgstr[0] "%d commento spostato nel cestino"
1522
- msgstr[1] "%d commenti spostati nel cestino"
1523
-
1524
- #: modules/containers/custom_field.php:84
1525
- #, php-format
1526
- msgid "Failed to update the meta field '%s' on %s [%d]"
1527
- msgstr "Non é stato possibile aggiornare il campo meta '%s' in %s [%d]"
1528
-
1529
- #: modules/containers/custom_field.php:110
1530
- #, php-format
1531
- msgid "Failed to delete the meta field '%s' on %s [%d]"
1532
- msgstr "Non é stato possibile cancellare il campo meta '%s' in %s [%d]"
1533
-
1534
- #: modules/containers/custom_field.php:187
1535
- msgid "Edit this post"
1536
- msgstr "Modifica questo articolo"
1537
-
1538
- #: modules/containers/custom_field.php:217
1539
- #, php-format
1540
- msgid "View \"%s\""
1541
- msgstr "Visualizza \"%s\""
1542
-
1543
- #: modules/containers/dummy.php:34
1544
- #: modules/containers/dummy.php:45
1545
- #, php-format
1546
- msgid "I don't know how to edit a '%s' [%d]."
1547
- msgstr "Non so come modificare un '%s' [%d]."
1548
-
1549
- #: modules/parsers/image.php:156
1550
- msgid "Image"
1551
- msgstr "Immagine"
1552
 
1553
- #: modules/parsers/metadata.php:117
1554
- msgid "Custom field"
1555
- msgstr "Campo personalizzato"
 
1556
 
1557
  #. Plugin URI of the plugin/theme
1558
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
@@ -1570,6 +1606,13 @@ msgstr "Janis Elsts"
1570
  msgid "http://w-shadow.com/blog/"
1571
  msgstr "http://w-shadow.com/blog/"
1572
 
 
 
 
 
 
 
 
1573
  #~ msgid "Used in"
1574
  #~ msgstr "Utilizzato in"
1575
 
7
  msgstr ""
8
  "Project-Id-Version: Broken Link Checker in italiano\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
10
+ "POT-Creation-Date: 2010-12-25 11:10:52+00:00\n"
11
+ "PO-Revision-Date: 2011-01-12 14:00+0100\n"
12
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
13
+ "Language-Team: Gianni Diurno | gidibao.net\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
18
  "X-Poedit-Language: Italian\n"
19
  "X-Poedit-Country: ITALY\n"
20
 
21
+ #: modules/containers/dummy.php:34
22
+ #: modules/containers/dummy.php:45
23
+ msgid "I don't know how to edit a '%s' [%d]."
24
+ msgstr "Non so come modificare un '%s' [%d]."
25
+
26
+ #: modules/containers/custom_field.php:84
27
+ msgid "Failed to update the meta field '%s' on %s [%d]"
28
+ msgstr "Non é stato possibile aggiornare il campo meta '%s' in %s [%d]"
29
+
30
+ #: modules/containers/custom_field.php:110
31
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
32
+ msgstr "Non é stato possibile cancellare il campo meta '%s' in %s [%d]"
33
+
34
+ #: modules/containers/custom_field.php:187
35
+ msgid "Edit this post"
36
+ msgstr "Modifica questo articolo"
37
+
38
+ #: modules/containers/custom_field.php:197
39
+ #: includes/any-post.php:455
40
+ msgid "Edit this item"
41
+ msgstr "modifica questo termine"
42
+
43
+ #: modules/containers/custom_field.php:197
44
+ #: modules/containers/blogroll.php:46
45
+ #: modules/containers/comment.php:153
46
+ #: includes/any-post.php:397
47
+ msgid "Edit"
48
+ msgstr "Modifica"
49
+
50
+ #: modules/containers/custom_field.php:203
51
+ #: includes/any-post.php:405
52
+ msgid "Move this item to the Trash"
53
+ msgstr "Sposta questo termine nel cestino"
54
+
55
+ #: modules/containers/custom_field.php:205
56
+ #: includes/any-post.php:407
57
+ msgid "Trash"
58
+ msgstr "Cestino"
59
+
60
+ #: modules/containers/custom_field.php:210
61
+ #: includes/any-post.php:412
62
+ msgid "Delete this item permanently"
63
+ msgstr "Cancella questo termine in modo definitivo"
64
+
65
+ #: modules/containers/custom_field.php:212
66
+ #: modules/containers/blogroll.php:47
67
+ #: includes/any-post.php:414
68
+ msgid "Delete"
69
+ msgstr "Cancella"
70
+
71
+ #: modules/containers/custom_field.php:217
72
+ msgid "View \"%s\""
73
+ msgstr "Visualizza \"%s\""
74
+
75
+ #: modules/containers/custom_field.php:217
76
+ #: modules/containers/comment.php:166
77
+ #: includes/any-post.php:436
78
+ msgid "View"
79
+ msgstr "Visualizza"
80
+
81
+ #: modules/containers/custom_field.php:284
82
+ #: includes/any-post.php:564
83
+ msgid "Failed to delete post \"%s\" (%d)"
84
+ msgstr "Non é stato possibile cancellare il post \"%s\" (%d)"
85
+
86
+ #: modules/containers/custom_field.php:303
87
+ #: includes/any-post.php:583
88
+ msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
89
+ msgstr "Non é stato possibile spostare l'articolo \"%s\" (%d) nel cestino poiché la funzione cestino non é attiva"
90
+
91
+ #: modules/containers/custom_field.php:322
92
+ #: includes/any-post.php:603
93
+ msgid "Failed to move post \"%s\" (%d) to the trash"
94
+ msgstr "Impossibile spostare l'articolo \"%s\" (%d) nel cestino"
95
+
96
+ #: modules/containers/blogroll.php:21
97
+ msgid "Bookmark"
98
+ msgstr "Segnalibro"
99
+
100
+ #: modules/containers/blogroll.php:27
101
+ #: modules/containers/blogroll.php:46
102
+ msgid "Edit this bookmark"
103
+ msgstr "Modifica questo segnalibro"
104
+
105
+ #: modules/containers/blogroll.php:47
106
+ msgid ""
107
+ "You are about to delete this link '%s'\n"
108
+ " 'Cancel' to stop, 'OK' to delete."
109
+ msgstr ""
110
+ "Stai per cancellare questo link '%s'\n"
111
+ " 'Annulla' per fermarti, 'OK' per cancellare."
112
+
113
+ #: modules/containers/blogroll.php:83
114
+ #: modules/containers/comment.php:43
115
+ #: includes/any-post.php:519
116
+ msgid "Nothing to update"
117
+ msgstr "Nulla da aggiornare"
118
+
119
+ #: modules/containers/blogroll.php:97
120
+ msgid "Updating bookmark %d failed"
121
+ msgstr "Non é stato possibile aggiornare il bookmark %d"
122
+
123
+ #: modules/containers/blogroll.php:128
124
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
125
+ msgstr "Non é stato possibile cancellare il link \"%s\" (%d) presente nel blogroll"
126
+
127
+ #: modules/containers/blogroll.php:298
128
+ msgid "%d blogroll link deleted."
129
+ msgid_plural "%d blogroll links deleted."
130
+ msgstr[0] "Il link %d presente nel blogroll é stato cancellato"
131
+ msgstr[1] "I link %d presenti nel blogroll sono stati cancellati"
132
+
133
+ #: modules/containers/comment.php:53
134
+ msgid "Updating comment %d failed"
135
+ msgstr "Non é stato possibile aggiornare il commento %d"
136
+
137
+ #: modules/containers/comment.php:74
138
+ msgid "Failed to delete comment %d"
139
+ msgstr "Non é stato possibile cancellare il commento %d"
140
+
141
+ #: modules/containers/comment.php:95
142
+ msgid "Can't move comment %d to the trash"
143
+ msgstr "Non é stato possibile spostare nel cestino il commento %d"
144
+
145
+ #: modules/containers/comment.php:153
146
+ #: modules/containers/comment.php:195
147
+ msgid "Edit comment"
148
+ msgstr "Modifica commento"
149
+
150
+ #: modules/containers/comment.php:160
151
+ msgid "Delete Permanently"
152
+ msgstr "Cancella definitivamente"
153
+
154
+ #: modules/containers/comment.php:162
155
+ msgid "Move this comment to the trash"
156
+ msgstr "Sposta questo commento nel cestino"
157
+
158
+ #: modules/containers/comment.php:162
159
+ msgctxt "verb"
160
+ msgid "Trash"
161
+ msgstr "Cestino"
162
+
163
+ #: modules/containers/comment.php:166
164
+ msgid "View comment"
165
+ msgstr "Visualizza il commento"
166
+
167
+ #: modules/containers/comment.php:183
168
+ msgid "Comment"
169
+ msgstr "Commento"
170
+
171
+ #: modules/containers/comment.php:371
172
+ msgid "%d comment has been deleted."
173
+ msgid_plural "%d comments have been deleted."
174
+ msgstr[0] "%d commento é stato cancellato"
175
+ msgstr[1] "%d commenti sono stati cancellati"
176
+
177
+ #: modules/containers/comment.php:390
178
+ msgid "%d comment moved to the Trash."
179
+ msgid_plural "%d comments moved to the Trash."
180
+ msgstr[0] "%d commento spostato nel cestino"
181
+ msgstr[1] "%d commenti spostati nel cestino"
182
+
183
+ #: modules/checkers/http.php:242
184
+ msgid "Server Not Found"
185
+ msgstr "Server non trovato"
186
+
187
+ #: modules/checkers/http.php:257
188
+ msgid "Connection Failed"
189
+ msgstr "Tentativo di connessione non riuscito"
190
+
191
+ #: modules/checkers/http.php:263
192
+ #: modules/extras/mediafire.php:96
193
+ #: includes/links.php:845
194
+ msgid "Unknown Error"
195
+ msgstr "Errore sconosciuto"
196
+
197
+ #: modules/checkers/http.php:292
198
+ #: modules/checkers/http.php:362
199
+ msgid "HTTP code : %d"
200
+ msgstr "Codice HTTP : %d"
201
+
202
+ #: modules/checkers/http.php:294
203
+ #: modules/checkers/http.php:364
204
+ msgid "(No response)"
205
+ msgstr "(nessuna risposta)"
206
+
207
+ #: modules/checkers/http.php:300
208
+ msgid "Most likely the connection timed out or the domain doesn't exist."
209
+ msgstr "Connessione scaduta oppure il dominio non esiste."
210
+
211
+ #: modules/checkers/http.php:371
212
+ msgid "Request timed out."
213
+ msgstr "Richiesta scaduta."
214
+
215
+ #: modules/checkers/http.php:389
216
+ msgid "Using Snoopy"
217
+ msgstr "Snoopy in uso"
218
+
219
+ #: modules/parsers/image.php:156
220
+ msgid "Image"
221
+ msgstr "Immagine"
222
+
223
+ #: modules/parsers/metadata.php:117
224
+ msgid "Custom field"
225
+ msgstr "Campo personalizzato"
226
+
227
+ #: modules/extras/dailymotion-embed.php:23
228
+ msgid "DailyMotion Video"
229
+ msgstr "DailyMotion Video"
230
+
231
+ #: modules/extras/dailymotion-embed.php:24
232
+ msgid "Embedded DailyMotion video"
233
+ msgstr "Video incorporato DailyMotion"
234
+
235
+ #: modules/extras/rapidshare.php:142
236
+ #: modules/extras/mediafire.php:91
237
+ #: modules/extras/megaupload.php:109
238
+ msgid "Not Found"
239
+ msgstr "Non trovato"
240
+
241
+ #: modules/extras/rapidshare.php:148
242
+ #: modules/extras/rapidshare.php:154
243
+ #: modules/extras/rapidshare.php:181
244
+ #: modules/extras/megaupload.php:101
245
+ #: includes/links.php:875
246
+ msgctxt "link status"
247
+ msgid "OK"
248
+ msgstr "OK"
249
+
250
+ #: modules/extras/rapidshare.php:161
251
+ msgid "RS Server Down"
252
+ msgstr "RS Server Down"
253
+
254
+ #: modules/extras/rapidshare.php:168
255
+ msgid "File Blocked"
256
+ msgstr "File bloccato"
257
+
258
+ #: modules/extras/rapidshare.php:175
259
+ msgid "File Locked"
260
+ msgstr "File protetto"
261
+
262
+ #: modules/extras/rapidshare.php:186
263
+ msgid "RapidShare : %s"
264
+ msgstr "RapidShare : %s"
265
+
266
+ #: modules/extras/rapidshare.php:192
267
+ msgid "RapidShare API error: %s"
268
+ msgstr "Errore API RapidShare: %s"
269
+
270
+ #: modules/extras/embed-parser-base.php:140
271
+ msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
272
+ msgstr "I video incorporati non possono essere modificati da Broken Link Checker. Sostituisci o modifica i video manualmente."
273
+
274
+ #: modules/extras/vimeo-embed.php:24
275
+ msgid "Vimeo Video"
276
+ msgstr "Vimeo Video"
277
+
278
+ #: modules/extras/vimeo-embed.php:25
279
+ msgid "Embedded Vimeo video"
280
+ msgstr "Video incorporato Vimeo"
281
+
282
+ #: modules/extras/youtube.php:63
283
+ #: modules/extras/youtube.php:66
284
+ msgid "Video Not Found"
285
+ msgstr "Video non trovato"
286
+
287
+ #: modules/extras/youtube.php:74
288
+ msgid "Video Removed"
289
+ msgstr "Video rimosso"
290
+
291
+ #: modules/extras/youtube.php:82
292
+ msgid "Invalid Video ID"
293
+ msgstr "ID video non valida"
294
+
295
+ #: modules/extras/youtube.php:94
296
+ msgid "Video OK"
297
+ msgstr "Video OK"
298
+
299
+ #: modules/extras/youtube.php:95
300
+ #: modules/extras/youtube.php:122
301
+ #: core/core.php:966
302
+ msgid "OK"
303
+ msgstr "OK"
304
+
305
+ #: modules/extras/youtube.php:108
306
+ msgid "Video status : %s%s"
307
+ msgstr "Stato video : %s%s"
308
+
309
+ #: modules/extras/youtube.php:127
310
+ msgid "Video Restricted"
311
+ msgstr "Video riservato"
312
+
313
+ #: modules/extras/youtube.php:144
314
+ msgid "Unknown YouTube API response received."
315
+ msgstr "Risposta sconosciuta ricevuta da API YouTube."
316
+
317
+ #: modules/extras/youtube-embed.php:22
318
+ msgid "YouTube Video"
319
+ msgstr "YouTube Video"
320
+
321
+ #: modules/extras/youtube-embed.php:23
322
+ msgid "Embedded YouTube video"
323
+ msgstr "Video incorporato YouTube"
324
+
325
+ #: modules/extras/megaupload.php:116
326
+ msgid "File Temporarily Unavailable"
327
+ msgstr "File temporameamente non disponibile"
328
+
329
+ #: modules/extras/megaupload.php:122
330
+ msgid "API Error"
331
+ msgstr "Errore API"
332
+
333
+ #: core/init.php:234
334
+ msgid "Once Weekly"
335
+ msgstr "Una volta alla settimana"
336
+
337
+ #: core/init.php:240
338
+ msgid "Twice a Month"
339
+ msgstr "Due volte al mese"
340
+
341
+ #: core/init.php:309
342
+ msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
343
+ msgstr "L'installazione di Broken Link Checker é fallita. Prova a disattivare quindi, riattivare il plugin."
344
+
345
+ #: core/core.php:153
346
  #: includes/admin/links-page-js.php:37
347
  msgid "Loading..."
348
  msgstr "In carica..."
349
 
350
+ #: core/core.php:177
351
  #: includes/admin/options-page-js.php:18
352
  msgid "[ Network error ]"
353
  msgstr "[ Network error ]"
354
 
355
+ #: core/core.php:202
356
  msgid "Automatically expand the widget if broken links have been detected"
357
  msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
358
 
359
+ #: core/core.php:324
360
  msgid "Link Checker Settings"
361
  msgstr "Impostazioni Link Checker"
362
 
363
+ #: core/core.php:325
364
  msgid "Link Checker"
365
  msgstr "Link Checker"
366
 
367
+ #: core/core.php:330
368
  #: includes/link-query.php:26
369
  msgid "Broken Links"
370
  msgstr "Link rotti"
371
 
372
+ #: core/core.php:346
373
  msgid "View Broken Links"
374
  msgstr "Visualizza i link rotti"
375
 
376
+ #: core/core.php:361
377
+ msgid "Feedback"
378
+ msgstr "Feedback"
379
+
380
+ #: core/core.php:373
381
+ msgid "Go to Settings"
382
+ msgstr "Vai alle impostazioni"
383
+
384
+ #: core/core.php:380
385
+ msgid "Go to Broken Links"
386
+ msgstr "Vai ai link rotti"
387
+
388
+ #: core/core.php:398
389
  msgid "Settings"
390
  msgstr "Impostazioni"
391
 
392
+ #: core/core.php:410
393
+ #: core/core.php:1213
 
394
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
395
  msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
396
 
397
+ #: core/core.php:549
398
  msgid "Settings saved."
399
  msgstr "Le impostazioni sono state salvate."
400
 
401
+ #: core/core.php:555
402
+ msgid "Thank you for your donation!"
403
+ msgstr "Grazie per la tua donazione!"
404
+
405
+ #: core/core.php:562
406
  msgid "Complete site recheck started."
407
  msgstr "E' in atto la nuova verifica completa per il sito."
408
 
409
+ #: core/core.php:571
410
+ #: core/core.php:2768
411
  msgid "Details"
412
  msgstr "Dettagli"
413
 
414
+ #: core/core.php:585
415
  msgid "General"
416
  msgstr "Generale"
417
 
418
+ #: core/core.php:586
419
  msgid "Look For Links In"
420
  msgstr "Cerca i link in"
421
 
422
+ #: core/core.php:587
423
  msgid "Which Links To Check"
424
  msgstr "Quali link controllare"
425
 
426
+ #: core/core.php:588
427
  msgid "Protocols & APIs"
428
  msgstr "Protocolli & API"
429
 
430
+ #: core/core.php:589
431
  msgid "Advanced"
432
  msgstr "Avanzate"
433
 
434
+ #: core/core.php:604
435
  msgid "Broken Link Checker Options"
436
  msgstr "Opzioni Broken Link Checker"
437
 
438
+ #: core/core.php:646
439
  #: includes/admin/table-printer.php:168
440
  msgid "Status"
441
  msgstr "Stato"
442
 
443
+ #: core/core.php:648
444
  #: includes/admin/options-page-js.php:56
445
  msgid "Show debug info"
446
  msgstr "Mostra info debug"
447
 
448
+ #: core/core.php:676
449
  msgid "Check each link"
450
  msgstr "Controlla i link"
451
 
452
+ #: core/core.php:681
 
453
  msgid "Every %s hours"
454
  msgstr "Ogni %s ore"
455
 
456
+ #: core/core.php:690
457
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
458
  msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
459
 
460
+ #: core/core.php:697
461
  msgid "E-mail notifications"
462
  msgstr "Notifiche email"
463
 
464
+ #: core/core.php:703
465
  msgid "Send me e-mail notifications about newly detected broken links"
466
  msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
467
 
468
+ #: core/core.php:710
469
  msgid "Link tweaks"
470
  msgstr "Link tweaks"
471
 
472
+ #: core/core.php:716
473
  msgid "Apply custom formatting to broken links"
474
  msgstr "Applica formattazione personalizzata ai link rotti"
475
 
476
+ #: core/core.php:720
477
+ #: core/core.php:748
478
  msgid "Edit CSS"
479
  msgstr "Modifica CSS"
480
 
481
+ #: core/core.php:744
482
  msgid "Apply custom formatting to removed links"
483
  msgstr "Applica la formattazione personalizzata ai link rimossi"
484
 
485
+ #: core/core.php:772
486
  msgid "Stop search engines from following broken links"
487
  msgstr "Blocca i motori di ricerca per i seguenti link"
488
 
489
+ #: core/core.php:789
490
  msgid "Look for links in"
491
  msgstr "Cerca i links in"
492
 
493
+ #: core/core.php:800
494
  msgid "Post statuses"
495
  msgstr "Stati articolo"
496
 
497
+ #: core/core.php:833
498
  msgid "Link types"
499
  msgstr "Tipo di link"
500
 
501
+ #: core/core.php:839
502
  msgid "Error : All link parsers missing!"
503
  msgstr "Errore : manca l'analisi di tutti i link!"
504
 
505
+ #: core/core.php:846
506
  msgid "Exclusion list"
507
  msgstr "Lista estromessi"
508
 
509
+ #: core/core.php:847
510
  msgid "Don't check links where the URL contains any of these words (one per line) :"
511
  msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
512
 
513
+ #: core/core.php:865
514
  msgid "Check links using"
515
  msgstr "Controlla utilizzo link"
516
 
517
+ #: core/core.php:884
518
  #: includes/links.php:849
519
  msgid "Timeout"
520
  msgstr "Timeout"
521
 
522
+ #: core/core.php:890
523
+ #: core/core.php:936
524
+ #: core/core.php:2895
 
525
  msgid "%s seconds"
526
  msgstr "%s secondi"
527
 
528
+ #: core/core.php:899
529
  msgid "Links that take longer than this to load will be marked as broken."
530
  msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
531
 
532
+ #: core/core.php:906
533
  msgid "Link monitor"
534
  msgstr "Monitoraggio link"
535
 
536
+ #: core/core.php:914
537
  msgid "Run continuously while the Dashboard is open"
538
  msgstr "Funzionamento continuo durante il periodo di login"
539
 
540
+ #: core/core.php:922
541
  msgid "Run hourly in the background"
542
  msgstr "Funzionamento in background ogni ora"
543
 
544
+ #: core/core.php:930
545
  msgid "Max. execution time"
546
  msgstr "Tempo max. operazione"
547
 
548
+ #: core/core.php:947
549
  msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
550
  msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
551
 
552
+ #: core/core.php:957
553
  msgid "Custom temporary directory"
554
  msgstr "Cartella temporanea personalizzata:"
555
 
556
+ #: core/core.php:969
 
 
 
 
557
  msgid "Error : This directory isn't writable by PHP."
558
  msgstr "Errore : questa cartella non é scrivibile via PHP."
559
 
560
+ #: core/core.php:974
561
  msgid "Error : This directory doesn't exist."
562
  msgstr "Errore : questa cartella non esiste."
563
 
564
+ #: core/core.php:982
565
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
566
  msgstr "Compila questo campo qualora gradissi che il plugin faccia uso di una cartella personalizzata per i lockfile diversamente, lascia in bianco."
567
 
568
+ #: core/core.php:989
569
  msgid "Server load limit"
570
  msgstr "Limite server load"
571
 
572
+ #: core/core.php:1004
 
573
  msgid "Current load : %s"
574
  msgstr "In caricamento : %s"
575
 
576
+ #: core/core.php:1009
 
577
  msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
578
  msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
579
 
580
+ #: core/core.php:1018
581
  msgid "Not available"
582
  msgstr "Non disponibile"
583
 
584
+ #: core/core.php:1020
585
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
586
  msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
587
 
588
+ #: core/core.php:1028
589
  msgid "Forced recheck"
590
  msgstr "Imponi nuova verifica"
591
 
592
+ #: core/core.php:1031
593
  msgid "Re-check all pages"
594
  msgstr "Ricontrolla tutte le pagine"
595
 
596
+ #: core/core.php:1035
597
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
598
  msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
599
 
600
+ #: core/core.php:1046
601
  msgid "Save Changes"
602
  msgstr "Salva le modifiche"
603
 
604
+ #: core/core.php:1097
605
  msgid "Configure"
606
  msgstr "Configura"
607
 
608
+ #: core/core.php:1179
 
 
 
 
609
  msgid "Check URLs entered in these custom fields (one per line) :"
610
  msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
611
 
612
+ #: core/core.php:1313
613
+ #: core/core.php:1395
614
+ #: core/core.php:1427
 
615
  msgid "Database error : %s"
616
  msgstr "Errore database : %s"
617
 
618
+ #: core/core.php:1377
619
  msgid "You must enter a filter name!"
620
  msgstr "Deve essere inserito un nome del filtro!"
621
 
622
+ #: core/core.php:1381
623
  msgid "Invalid search query."
624
  msgstr "Termine di ricerca non valido."
625
 
626
+ #: core/core.php:1390
 
627
  msgid "Filter \"%s\" created"
628
  msgstr "E' stato creato il filtro \"%s\""
629
 
630
+ #: core/core.php:1417
631
  msgid "Filter ID not specified."
632
  msgstr "ID filtro non specificato."
633
 
634
+ #: core/core.php:1424
635
  msgid "Filter deleted"
636
  msgstr "Il filtro é stato cancellato"
637
 
638
+ #: core/core.php:1471
 
639
  msgid "Replaced %d redirect with a direct link"
640
  msgid_plural "Replaced %d redirects with direct links"
641
  msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
642
  msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
643
 
644
+ #: core/core.php:1482
 
645
  msgid "Failed to fix %d redirect"
646
  msgid_plural "Failed to fix %d redirects"
647
  msgstr[0] "Impossibile correggere il reindirizzamento per %d"
648
  msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
649
 
650
+ #: core/core.php:1493
651
  msgid "None of the selected links are redirects!"
652
  msgstr "Nessuno dei link selezionati é reindirizzato!"
653
 
654
+ #: core/core.php:1571
 
655
  msgid "%d link updated."
656
  msgid_plural "%d links updated."
657
  msgstr[0] "%d link aggiornato."
658
  msgstr[1] "%d link aggiornati."
659
 
660
+ #: core/core.php:1582
 
661
  msgid "Failed to update %d link."
662
  msgid_plural "Failed to update %d links."
663
  msgstr[0] "Impossibile aggiornare il link %d"
664
  msgstr[1] "Impossibile aggiornare i link %d"
665
 
666
+ #: core/core.php:1636
 
667
  msgid "%d link removed"
668
  msgid_plural "%d links removed"
669
  msgstr[0] "%d il link é stato rimosso"
670
  msgstr[1] "%d i link sono stati rimossi"
671
 
672
+ #: core/core.php:1647
 
673
  msgid "Failed to remove %d link"
674
  msgid_plural "Failed to remove %d links"
675
  msgstr[0] "Impossibile rimuovere il link %d"
676
  msgstr[1] "Impossibile rimuovere i link %d"
677
 
678
+ #: core/core.php:1756
 
679
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
680
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
681
  msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
682
  msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
683
 
684
+ #: core/core.php:1778
685
  msgid "Didn't find anything to delete!"
686
  msgstr "Nulla da cancellare!"
687
 
688
+ #: core/core.php:1805
 
689
  msgid "%d link scheduled for rechecking"
690
  msgid_plural "%d links scheduled for rechecking"
691
  msgstr[0] "%d link in verifica programmata"
692
  msgstr[1] "%d link in verifica programmata"
693
 
694
+ #: core/core.php:1851
695
+ #: core/core.php:2455
696
  msgid "This link was manually marked as working by the user."
697
  msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
698
 
699
+ #: core/core.php:1858
 
700
  msgid "Couldn't modify link %d"
701
  msgstr "Non é possibile modificare il link %d"
702
 
703
+ #: core/core.php:1868
 
704
  msgid "%d link marked as not broken"
705
  msgid_plural "%d links marked as not broken"
706
  msgstr[0] "%d link segnato come funzionante"
707
  msgstr[1] "%d link segnati come funzionanti"
708
 
709
+ #: core/core.php:1908
710
  msgid "Table columns"
711
  msgstr "Colonne tabella"
712
 
713
+ #: core/core.php:1927
714
  msgid "Show on screen"
715
  msgstr "Mostra sullo schermo"
716
 
717
+ #: core/core.php:1934
718
  msgid "links"
719
  msgstr "link"
720
 
721
+ #: core/core.php:1935
722
  #: includes/admin/table-printer.php:136
723
  msgid "Apply"
724
  msgstr "Applica"
725
 
726
+ #: core/core.php:1939
727
  msgid "Misc"
728
  msgstr "Varie"
729
 
730
+ #: core/core.php:1954
 
731
  msgid "Highlight links broken for at least %s days"
732
  msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
733
 
734
+ #: core/core.php:1963
735
  msgid "Color-code status codes"
736
  msgstr "Codici stato codice-colore"
737
 
738
+ #: core/core.php:1980
739
+ #: core/core.php:2440
740
+ #: core/core.php:2476
741
+ #: core/core.php:2539
742
  msgid "You're not allowed to do that!"
743
  msgstr "Non hai il permesso per farlo!"
744
 
745
+ #: core/core.php:2321
746
  msgid "View broken links"
747
  msgstr "Visualizza i link rotti"
748
 
749
+ #: core/core.php:2322
 
750
  msgid "Found %d broken link"
751
  msgid_plural "Found %d broken links"
752
  msgstr[0] "E' stato trovato %d link rotto"
753
  msgstr[1] "Sono stati trovati %d link rotti"
754
 
755
+ #: core/core.php:2328
756
  msgid "No broken links found."
757
  msgstr "Non é stato trovato alcun link rotto."
758
 
759
+ #: core/core.php:2335
 
760
  msgid "%d URL in the work queue"
761
  msgid_plural "%d URLs in the work queue"
762
  msgstr[0] "%d URL in coda di elaborazione"
763
  msgstr[1] "%d URL in coda di elaborazione"
764
 
765
+ #: core/core.php:2338
766
  msgid "No URLs in the work queue."
767
  msgstr "Nessun URL in coda di elaborazione."
768
 
769
+ #: core/core.php:2344
 
770
  msgid "Detected %d unique URL"
771
  msgid_plural "Detected %d unique URLs"
772
  msgstr[0] "E' stato rilevato %d URL unico"
773
  msgstr[1] "Sono stati rilevati %d URL unici"
774
 
775
+ #: core/core.php:2345
 
776
  msgid "in %d link"
777
  msgid_plural "in %d links"
778
  msgstr[0] "in %d link"
779
  msgstr[1] "in %d link"
780
 
781
+ #: core/core.php:2350
782
  msgid "and still searching..."
783
  msgstr "ricerca in corso..."
784
 
785
+ #: core/core.php:2356
786
  msgid "Searching your blog for links..."
787
  msgstr "Ricerca dei link in corso..."
788
 
789
+ #: core/core.php:2358
790
  msgid "No links detected."
791
  msgstr "Nessun link é stato rilevato."
792
 
793
+ #: core/core.php:2384
794
  msgctxt "current load"
795
  msgid "Unknown"
796
  msgstr "Sconosciuto"
797
 
798
+ #: core/core.php:2448
799
+ #: core/core.php:2486
800
+ #: core/core.php:2549
 
801
  msgid "Oops, I can't find the link %d"
802
  msgstr "Oops, non é possibile trovare il link %d"
803
 
804
+ #: core/core.php:2461
805
  msgid "Oops, couldn't modify the link!"
806
  msgstr "Oops, non é possibile modificare il link!"
807
 
808
+ #: core/core.php:2464
809
+ #: core/core.php:2575
810
  msgid "Error : link_id not specified"
811
  msgstr "Errore : non é stata specificata la link_id"
812
 
813
+ #: core/core.php:2496
814
  msgid "Oops, the new URL is invalid!"
815
  msgstr "Oops, il nuovo URL non é valido!"
816
 
817
+ #: core/core.php:2507
818
+ #: core/core.php:2558
819
  msgid "An unexpected error occured!"
820
  msgstr "Si é verificato un errore inatteso!"
821
 
822
+ #: core/core.php:2525
823
  msgid "Error : link_id or new_url not specified"
824
  msgstr "Errore : non é stata specificata la link_id oppure il new_url"
825
 
826
+ #: core/core.php:2584
827
  msgid "You don't have sufficient privileges to access this information!"
828
  msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
829
 
830
+ #: core/core.php:2597
831
  msgid "Error : link ID not specified"
832
  msgstr "Errore : La ID del link non é stata specificata"
833
 
834
+ #: core/core.php:2611
 
835
  msgid "Failed to load link details (%s)"
836
  msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
837
 
838
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.2.2) #-#-#-#-#
839
  #. Plugin Name of the plugin/theme
840
+ #: core/core.php:2740
841
  msgid "Broken Link Checker"
842
  msgstr "Broken Link Checker"
843
 
844
+ #: core/core.php:2754
 
845
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
846
  msgstr "La cartella temporanea non é accessibile; impostane una <a href=\"%s\">differente</a>."
847
 
848
+ #: core/core.php:2759
 
849
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
850
  msgstr "Rendi scrivibile la cartella <code>%1$s</code> oppure imposta una <a href=\"%2$s\">cartella temporanea</a>."
851
 
852
+ #: core/core.php:2766
853
  msgid "Broken Link Checker can't create a lockfile."
854
  msgstr "Broken Link Checker non può creare un lockfile."
855
 
856
+ #: core/core.php:2771
857
  msgid "The plugin uses a file-based locking mechanism to ensure that only one instance of the resource-heavy link checking algorithm is running at any given time. Unfortunately, BLC can't find a writable directory where it could store the lockfile - it failed to detect the location of your server's temporary directory, and the plugin's own directory isn't writable by PHP. To fix this problem, please make the plugin's directory writable or enter a specify a custom temporary directory in the plugin's settings."
858
  msgstr "Questo plugin utilizza un meccanismo di locking su base-file in modo tale che una sola richiesta per volta venga inoltrata all'algoritmo per la ricerca dei link. Sfortunatamente, BLC non ha trovato una cartella scrivibile laddove poter allocare il lockfile - non é stato possibile rilevare la posizione della cartella temporanea nel server e la cartella stessa del plugin non é scrivibile via PHP. Per risolvere il problema, rendi scrivibile la cartella del plugin oppure inserisci nelle impostazioni del plugin il percorso ad una cartella temporanea personalizzata."
859
 
860
+ #: core/core.php:2790
861
  msgid "PHP version"
862
  msgstr "Versione PHP"
863
 
864
+ #: core/core.php:2796
865
  msgid "MySQL version"
866
  msgstr "Versione MySQL"
867
 
868
+ #: core/core.php:2809
869
  msgid "You have an old version of CURL. Redirect detection may not work properly."
870
  msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
871
 
872
+ #: core/core.php:2821
873
+ #: core/core.php:2837
874
+ #: core/core.php:2842
875
  msgid "Not installed"
876
  msgstr "Non installato"
877
 
878
+ #: core/core.php:2824
879
  msgid "CURL version"
880
  msgstr "Versione CURL"
881
 
882
+ #: core/core.php:2830
883
  msgid "Installed"
884
  msgstr "Installato"
885
 
886
+ #: core/core.php:2843
887
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
888
  msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
889
 
890
+ #: core/core.php:2854
891
  msgid "On"
892
  msgstr "On"
893
 
894
+ #: core/core.php:2855
895
  msgid "Redirects may be detected as broken links when safe_mode is on."
896
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
897
 
898
+ #: core/core.php:2860
899
+ #: core/core.php:2874
900
  msgid "Off"
901
  msgstr "Off"
902
 
903
+ #: core/core.php:2868
 
904
  msgid "On ( %s )"
905
  msgstr "On ( %s )"
906
 
907
+ #: core/core.php:2869
908
  msgid "Redirects may be detected as broken links when open_basedir is on."
909
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
910
 
911
+ #: core/core.php:2888
912
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
913
  msgstr "Non é stato possibile creare un lockfile. Specificare una cartella temporanea personalizzata."
914
 
915
+ #: core/core.php:2912
916
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
917
  msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
918
 
919
+ #: core/core.php:2983
 
920
  msgid "[%s] Broken links detected"
921
  msgstr "[%s] Link rotti rilevati"
922
 
923
+ #: core/core.php:2988
 
924
  msgid "Broken Link Checker has detected %d new broken link on your site."
925
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
926
  msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
927
  msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
928
 
929
+ #: core/core.php:3003
 
930
  msgid "Here's a list of the first %d broken links:"
931
  msgid_plural "Here's a list of the first %d broken links:"
932
  msgstr[0] "Ecco una lista del primo %d link rotto:"
933
  msgstr[1] "Ecco una lista dei primi %d link rotti:"
934
 
935
+ #: core/core.php:3012
936
  msgid "Here's a list of the new broken links: "
937
  msgstr "Ecco una lista con i nuovi link rotti:"
938
 
939
+ #: core/core.php:3024
 
940
  msgid "Link text : %s"
941
  msgstr "Testo del link : %s"
942
 
943
+ #: core/core.php:3025
 
944
  msgid "Link URL : <a href=\"%s\">%s</a>"
945
  msgstr "URL del link : <a href=\"%s\">%s</a>"
946
 
947
+ #: core/core.php:3026
 
948
  msgid "Source : %s"
949
  msgstr "Sorgente : %s"
950
 
951
+ #: core/core.php:3040
952
  msgid "You can see all broken links here:"
953
  msgstr "Qui puoi vedere tutti i link rotti:"
954
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
955
  #: includes/admin/links-page-js.php:58
956
  #: includes/admin/links-page-js.php:301
957
  msgid "Wait..."
958
  msgstr "Attendi..."
959
 
960
  #: includes/admin/links-page-js.php:99
961
+ #: includes/admin/table-printer.php:587
962
  msgid "Not broken"
963
  msgstr "Non rotto"
964
 
965
  #: includes/admin/links-page-js.php:213
 
966
  msgid "%d instances of the link were successfully modified."
967
  msgstr "%d le richieste del link sono state modificate con successo."
968
 
969
  #: includes/admin/links-page-js.php:219
 
970
  msgid "However, %d instances couldn't be edited and still point to the old URL."
971
  msgstr "Comunque, le %d richieste non possono essere modificate e continuano a puntare verso il vecchio URL."
972
 
980
  msgstr "Si sono verificati i seguenti errori: "
981
 
982
  #: includes/admin/links-page-js.php:339
 
983
  msgid "%d instances of the link were successfully unlinked."
984
  msgstr "%d richieste del link sono state de-linkate con successo."
985
 
986
  #: includes/admin/links-page-js.php:345
 
987
  msgid "However, %d instances couldn't be removed."
988
  msgstr "Comunque, le %d le richieste non possono essere rimosse."
989
 
993
 
994
  #: includes/admin/links-page-js.php:361
995
  #: includes/admin/table-printer.php:237
996
+ #: includes/admin/table-printer.php:581
997
  msgid "Unlink"
998
  msgstr "Scollega"
999
 
1033
  msgid "Select one or more links to edit."
1034
  msgstr "Seleziona uno o più link da modificare."
1035
 
 
 
 
 
1036
  #: includes/admin/search-form.php:16
1037
  msgid "Save This Search As a Filter"
1038
  msgstr "Salva questa ricerca come filtro"
1056
  msgstr "URL"
1057
 
1058
  #: includes/admin/search-form.php:48
1059
+ #: includes/admin/table-printer.php:455
1060
  msgid "HTTP code"
1061
  msgstr "Codice HTTP"
1062
 
1082
  msgstr "Ricerca link"
1083
 
1084
  #: includes/admin/search-form.php:113
1085
+ #: includes/admin/table-printer.php:313
1086
+ #: includes/admin/table-printer.php:595
1087
+ #: includes/admin/table-printer.php:601
1088
  msgid "Cancel"
1089
  msgstr "Annulla"
1090
 
1091
+ #: includes/admin/sidebar.php:2
1092
+ msgid "Donate $10, $20 or $50!"
1093
+ msgstr "Dona $10, $20 or $50!"
1094
+
1095
+ #: includes/admin/sidebar.php:5
1096
+ msgid "If you like this plugin, please donate to support development and maintenance!"
1097
+ msgstr "Avessi gradito BLC, sostieni con una donazione il suo sviluppo ed il mantenimento!"
1098
+
1099
+ #: includes/admin/sidebar.php:22
1100
+ msgid "Return to WordPress Dashboard"
1101
+ msgstr "Ritorna alla Bacheca WordPress"
1102
+
1103
+ #: includes/admin/sidebar.php:34
1104
+ msgid "Recommended"
1105
+ msgstr "Raccomandato"
1106
+
1107
+ #: includes/admin/options-page-js.php:54
1108
+ msgid "Hide debug info"
1109
+ msgstr "Nascondi le info debug"
1110
+
1111
  #: includes/admin/table-printer.php:150
1112
  msgid "Compact View"
1113
  msgstr "Visualizzazione compatta"
1129
  msgstr "Azione di massa"
1130
 
1131
  #: includes/admin/table-printer.php:233
1132
+ #: includes/admin/table-printer.php:578
1133
  msgid "Edit URL"
1134
  msgstr "Modifica URL"
1135
 
1153
  msgid "Delete sources"
1154
  msgstr "Cancella soegenti"
1155
 
1156
+ #: includes/admin/table-printer.php:257
1157
  msgid "&laquo;"
1158
  msgstr "&laquo;"
1159
 
1160
+ #: includes/admin/table-printer.php:258
1161
  msgid "&raquo;"
1162
  msgstr "&raquo;"
1163
 
1164
+ #: includes/admin/table-printer.php:266
 
1165
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1166
  msgstr "Si stanno mostrando %s&#8211;%s di <span class=\"current-link-count\">%s</span>"
1167
 
1168
+ #: includes/admin/table-printer.php:289
1169
  msgid "Bulk Edit URLs"
1170
  msgstr "Modifica URL (di gruppo)"
1171
 
1172
+ #: includes/admin/table-printer.php:291
1173
  msgid "Find"
1174
  msgstr "Trova"
1175
 
1176
+ #: includes/admin/table-printer.php:295
1177
  msgid "Replace with"
1178
  msgstr "Sostituisci con"
1179
 
1180
+ #: includes/admin/table-printer.php:303
1181
  msgid "Case sensitive"
1182
  msgstr "Maiuscole/minuscole"
1183
 
1184
+ #: includes/admin/table-printer.php:307
1185
  msgid "Regular expression"
1186
  msgstr "Espressione regolare"
1187
 
1188
+ #: includes/admin/table-printer.php:315
1189
  msgid "Update"
1190
  msgstr "Aggiorna"
1191
 
1192
+ #: includes/admin/table-printer.php:440
1193
  msgid "Post published on"
1194
  msgstr "Articolo pubblicato il"
1195
 
1196
+ #: includes/admin/table-printer.php:445
1197
  msgid "Link last checked"
1198
  msgstr "Ultimo controllo link"
1199
 
1200
+ #: includes/admin/table-printer.php:449
1201
  msgid "Never"
1202
  msgstr "Mai"
1203
 
1204
+ #: includes/admin/table-printer.php:460
1205
  msgid "Response time"
1206
  msgstr "Tempo di risposta"
1207
 
1208
+ #: includes/admin/table-printer.php:462
 
1209
  msgid "%2.3f seconds"
1210
  msgstr "%2.3f secondi"
1211
 
1212
+ #: includes/admin/table-printer.php:465
1213
  msgid "Final URL"
1214
  msgstr "URL finale"
1215
 
1216
+ #: includes/admin/table-printer.php:470
1217
  msgid "Redirect count"
1218
  msgstr "Computo reindirizzamento"
1219
 
1220
+ #: includes/admin/table-printer.php:475
1221
  msgid "Instance count"
1222
  msgstr "Computo richieste"
1223
 
1224
+ #: includes/admin/table-printer.php:484
 
1225
  msgid "This link has failed %d time."
1226
  msgid_plural "This link has failed %d times."
1227
  msgstr[0] "Questo link é stato difettoso %d volte."
1228
  msgstr[1] "Questi link sono stati difettosi %d volte."
1229
 
1230
+ #: includes/admin/table-printer.php:492
 
1231
  msgid "This link has been broken for %s."
1232
  msgstr "Questo link é stato rotto per %s."
1233
 
1234
+ #: includes/admin/table-printer.php:503
1235
  msgid "Log"
1236
  msgstr "Registro"
1237
 
1238
+ #: includes/admin/table-printer.php:524
1239
  msgid "Show more info about this link"
1240
  msgstr "Mostra più info su questo link"
1241
 
1242
+ #: includes/admin/table-printer.php:542
1243
  msgctxt "checked how long ago"
1244
  msgid "Checked"
1245
  msgstr "Verificato"
1246
 
1247
+ #: includes/admin/table-printer.php:558
1248
  msgid "Broken for"
1249
  msgstr "Rotto per"
1250
 
1251
+ #: includes/admin/table-printer.php:578
1252
  msgid "Edit link URL"
1253
  msgstr "Modifica URL del link"
1254
 
1255
+ #: includes/admin/table-printer.php:580
1256
  msgid "Remove this link from all posts"
1257
  msgstr "Rimuovi questo link da tutti gli articoli"
1258
 
1259
+ #: includes/admin/table-printer.php:586
1260
  msgid "Remove this link from the list of broken links and mark it as valid"
1261
  msgstr "Rimuovi questo link dalla lista dei link rotti e segnalo come valido"
1262
 
1263
+ #: includes/admin/table-printer.php:595
1264
  msgid "Cancel URL editing"
1265
  msgstr "Annulla modifica URL"
1266
 
1267
+ #: includes/admin/table-printer.php:602
1268
  msgid "Update URL"
1269
  msgstr "Aggiorna URL"
1270
 
1271
+ #: includes/admin/table-printer.php:624
1272
  msgid "[An orphaned link! This is a bug.]"
1273
  msgstr "[Un link orfano! Questo é un bug.]"
1274
 
1275
+ #: includes/admin/db-upgrade.php:95
1276
+ msgid "Failed to delete old DB tables. Database error : %s"
1277
+ msgstr "Non é stato possibile cancellare le vecchie tabelle del DB. Errore database : %s"
 
 
 
1278
 
1279
+ #: includes/parsers.php:109
1280
+ msgid "Editing is not implemented in the '%s' parser"
1281
+ msgstr "La modifica non é implementata nel '%s' parser"
 
1282
 
1283
+ #: includes/parsers.php:124
1284
+ msgid "Unlinking is not implemented in the '%s' parser"
1285
+ msgstr "Il de-link non é implementatato nel '%s' parser"
 
1286
 
1287
+ #: includes/link-query.php:25
1288
+ msgid "Broken"
1289
+ msgstr "Rotto"
 
1290
 
1291
+ #: includes/link-query.php:27
1292
+ msgid "No broken links found"
1293
+ msgstr "Non é stato trovato alcun link rotto"
 
 
1294
 
1295
+ #: includes/link-query.php:34
1296
+ msgid "Redirects"
1297
+ msgstr "Reindirizzamenti"
1298
+
1299
+ #: includes/link-query.php:35
1300
+ msgid "Redirected Links"
1301
+ msgstr "Link reindirizzati"
1302
+
1303
+ #: includes/link-query.php:36
1304
+ msgid "No redirects found"
1305
+ msgstr "Nessun reindirizzamento é stato trovato"
1306
+
1307
+ #: includes/link-query.php:44
1308
+ msgid "All"
1309
+ msgstr "Tutti"
1310
+
1311
+ #: includes/link-query.php:45
1312
+ msgid "Detected Links"
1313
+ msgstr "Link rilevati"
1314
+
1315
+ #: includes/link-query.php:46
1316
+ msgid "No links found (yet)"
1317
+ msgstr "Nessun link trovato (ancora)"
1318
+
1319
+ #: includes/link-query.php:54
1320
+ msgid "Search Results"
1321
+ msgstr "Risultati della ricerca"
1322
+
1323
+ #: includes/link-query.php:55
1324
+ #: includes/link-query.php:106
1325
+ msgid "No links found for your query"
1326
+ msgstr "Nessun link trovato in relazione ai termini di ricerca"
1327
+
1328
+ #: includes/any-post.php:427
1329
  msgid "Preview &#8220;%s&#8221;"
1330
  msgstr "Anteprima &#8220;%s&#8221;"
1331
 
1332
+ #: includes/any-post.php:428
1333
  msgid "Preview"
1334
  msgstr "Anteprima"
1335
 
1336
+ #: includes/any-post.php:435
 
1337
  msgid "View &#8220;%s&#8221;"
1338
  msgstr "Visualizza &#8220;%s&#8221;"
1339
 
1340
+ #: includes/any-post.php:529
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1341
  msgid "Updating post %d failed"
1342
  msgstr "Aggiornamento articolo %d non riuscito"
1343
 
1344
+ #: includes/any-post.php:711
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1345
  msgid "%d post deleted."
1346
  msgid_plural "%d posts deleted."
1347
  msgstr[0] "%d articolo cancellato"
1348
  msgstr[1] "%d articoli cancellati"
1349
 
1350
+ #: includes/any-post.php:713
 
1351
  msgid "%d page deleted."
1352
  msgid_plural "%d pages deleted."
1353
  msgstr[0] "%d pagina cancellata."
1354
  msgstr[1] "%d pagine cancellate."
1355
 
1356
+ #: includes/any-post.php:715
 
1357
  msgid "%d \"%s\" deleted."
1358
  msgid_plural "%d \"%s\" deleted."
1359
  msgstr[0] "%d \"%s\" cancellato."
1360
  msgstr[1] "%d \"%s\" cancellati."
1361
 
1362
+ #: includes/any-post.php:734
 
1363
  msgid "%d post moved to the Trash."
1364
  msgid_plural "%d posts moved to the Trash."
1365
  msgstr[0] "%d il post é stato spostato nel cestino"
1366
  msgstr[1] "%d i post sono stati spostati nel cestino"
1367
 
1368
+ #: includes/any-post.php:736
 
1369
  msgid "%d page moved to the Trash."
1370
  msgid_plural "%d pages moved to the Trash."
1371
  msgstr[0] "%d La pagina é stata spostata nel cestino."
1372
  msgstr[1] "%d le pagine soono state spostate nel cestino"
1373
 
1374
+ #: includes/any-post.php:738
 
1375
  msgid "%d \"%s\" moved to the Trash."
1376
  msgid_plural "%d \"%s\" moved to the Trash."
1377
  msgstr[0] "%d \"%s\" é stato spostato nel cestino."
1378
  msgstr[1] "%d \"%s\" sono stati spostati nel cestino."
1379
 
1380
  #: includes/containers.php:122
 
1381
  msgid "%d '%s' has been deleted"
1382
  msgid_plural "%d '%s' have been deleted"
1383
  msgstr[0] "%d '%s' é stato cancellato"
1384
  msgstr[1] "%d '%s' sono stati cancellati"
1385
 
1386
+ #: includes/containers.php:883
1387
+ #: includes/containers.php:901
 
1388
  msgid "Container type '%s' not recognized"
1389
  msgstr "Container type '%s' non riconosciuto"
1390
 
1391
+ #: includes/links.php:215
1392
+ msgid "The plugin script was terminated while trying to check the link."
1393
+ msgstr "Lo script del plugin was é stato fermato durante il tentativo di verifica del link."
1394
+
1395
+ #: includes/links.php:261
1396
+ msgid "The plugin doesn't know how to check this type of link."
1397
+ msgstr "Questo plugin non é in grado di potere verificare questo tipo di link."
1398
+
1399
+ #: includes/links.php:349
1400
+ msgid "Link is valid."
1401
+ msgstr "Il link é valido."
1402
+
1403
+ #: includes/links.php:351
1404
+ msgid "Link is broken."
1405
+ msgstr "Il link é rotto."
1406
+
1407
+ #: includes/links.php:564
1408
+ #: includes/links.php:666
1409
+ #: includes/links.php:693
1410
+ msgid "Link is not valid"
1411
+ msgstr "Link non valido"
1412
+
1413
+ #: includes/links.php:581
1414
+ msgid "This link can not be edited because it is not used anywhere on this site."
1415
+ msgstr "Questo link non può essere modificato poiché non viene utilizzato in nessuna parte di questo sito."
1416
+
1417
+ #: includes/links.php:607
1418
+ msgid "Failed to create a DB entry for the new URL."
1419
+ msgstr "Non é stato possibile creare una entry nel DB per il nuovo URL."
1420
+
1421
+ #: includes/links.php:673
1422
+ msgid "This link is not a redirect"
1423
+ msgstr "Questo link non é redirect"
1424
+
1425
+ #: includes/links.php:720
1426
+ #: includes/links.php:757
1427
+ msgid "Couldn't delete the link's database record"
1428
+ msgstr "Non é possibile cancellare dal database il record per il link"
1429
+
1430
+ #: includes/links.php:831
1431
+ msgctxt "link status"
1432
+ msgid "Unknown"
1433
+ msgstr "Sconosciuto"
1434
+
1435
+ #: includes/links.php:869
1436
+ msgid "Not checked"
1437
+ msgstr "Non verificato"
1438
+
1439
+ #: includes/links.php:872
1440
+ msgid "False positive"
1441
+ msgstr "Falso positivo"
1442
+
1443
  #: includes/extra-strings.php:2
1444
  msgctxt "module name"
1445
  msgid "Basic HTTP"
1520
  msgid "Pages"
1521
  msgstr "Pagine"
1522
 
1523
+ #: includes/utility-class.php:286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1524
  msgid "%d second"
1525
  msgid_plural "%d seconds"
1526
  msgstr[0] "%d secondo"
1527
  msgstr[1] "%d secondi"
1528
 
1529
+ #: includes/utility-class.php:287
 
1530
  msgid "%d second ago"
1531
  msgid_plural "%d seconds ago"
1532
  msgstr[0] "%d secondo fa"
1533
  msgstr[1] "%d secondi fa"
1534
 
1535
+ #: includes/utility-class.php:290
 
1536
  msgid "%d minute"
1537
  msgid_plural "%d minutes"
1538
  msgstr[0] "%d minuto"
1539
  msgstr[1] "%d minuti"
1540
 
1541
+ #: includes/utility-class.php:291
 
1542
  msgid "%d minute ago"
1543
  msgid_plural "%d minutes ago"
1544
  msgstr[0] "%d minuto fa"
1545
  msgstr[1] "%d minuti fa"
1546
 
1547
+ #: includes/utility-class.php:294
 
1548
  msgid "%d hour"
1549
  msgid_plural "%d hours"
1550
  msgstr[0] "%d ora"
1551
  msgstr[1] "%d ore"
1552
 
1553
+ #: includes/utility-class.php:295
 
1554
  msgid "%d hour ago"
1555
  msgid_plural "%d hours ago"
1556
  msgstr[0] "%d ora fa"
1557
  msgstr[1] "%d ore fa"
1558
 
1559
+ #: includes/utility-class.php:298
 
1560
  msgid "%d day"
1561
  msgid_plural "%d days"
1562
  msgstr[0] "%d giorno"
1563
  msgstr[1] "%d giorni"
1564
 
1565
+ #: includes/utility-class.php:299
 
1566
  msgid "%d day ago"
1567
  msgid_plural "%d days ago"
1568
  msgstr[0] "%d giorno fa"
1569
  msgstr[1] "%d giorni fa"
1570
 
1571
+ #: includes/utility-class.php:302
 
1572
  msgid "%d month"
1573
  msgid_plural "%d months"
1574
  msgstr[0] "%d mese"
1575
  msgstr[1] "%d mesi"
1576
 
1577
+ #: includes/utility-class.php:303
 
1578
  msgid "%d month ago"
1579
  msgid_plural "%d months ago"
1580
  msgstr[0] "%d mese fa"
1581
  msgstr[1] "%d mesi fa"
1582
 
1583
+ #: includes/instances.php:102
1584
+ #: includes/instances.php:158
1585
+ msgid "Container %s[%d] not found"
1586
+ msgstr "Container %s[%d] non trovato"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1587
 
1588
+ #: includes/instances.php:111
1589
+ #: includes/instances.php:167
1590
+ msgid "Parser '%s' not found."
1591
+ msgstr "Parser '%s' non trovato."
1592
 
1593
  #. Plugin URI of the plugin/theme
1594
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1606
  msgid "http://w-shadow.com/blog/"
1607
  msgstr "http://w-shadow.com/blog/"
1608
 
1609
+ #~ msgid "Upgrade to Pro to enable this feature"
1610
+ #~ msgstr "Aggiorna alla versione pro per attivare questa opzione"
1611
+ #~ msgctxt "module name"
1612
+
1613
+ #~ msgid "Name"
1614
+ #~ msgstr "Nome"
1615
+
1616
  #~ msgid "Used in"
1617
  #~ msgstr "Utilizzato in"
1618
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
- Stable tag: 1.2.3
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
@@ -84,6 +84,11 @@ To upgrade your installation
84
 
85
  == Changelog ==
86
 
 
 
 
 
 
87
  = 1.2.3 =
88
  * Updated Portuguese translation.
89
  * Updated German translation.
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
+ Stable tag: 1.2.4
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
84
 
85
  == Changelog ==
86
 
87
+ = 1.2.4 =
88
+ * Fixed a very stupid bug where links would be checked very slowly or not at all.
89
+ * Fixed the display of the news link.
90
+ * Updated Italian translation.
91
+
92
  = 1.2.3 =
93
  * Updated Portuguese translation.
94
  * Updated German translation.