Broken Link Checker - Version 0.6.1

Version Description

  • Minor translation-related fixes.
Download this release

Release Info

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

Code changes from version 0.6 to 0.6.1

broken-link-checker.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Broken Link Checker
5
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
6
  Description: Checks your posts for broken links and missing images and notifies you on the dashboard if any are found.
7
- Version: 0.6
8
  Author: Janis Elsts
9
  Author URI: http://w-shadow.com/blog/
10
  */
4
  Plugin Name: Broken Link Checker
5
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
6
  Description: Checks your posts for broken links and missing images and notifies you on the dashboard if any are found.
7
+ Version: 0.6.1
8
  Author: Janis Elsts
9
  Author URI: http://w-shadow.com/blog/
10
  */
core.php CHANGED
@@ -673,9 +673,17 @@ class wsBrokenLinkChecker {
673
  <th scope="row"><?php _e('Timeout', 'broken-link-checker'); ?></th>
674
  <td>
675
 
676
- <input type="text" name="timeout" id="blc_timeout"
677
- value="<?php echo $this->conf->options['timeout']; ?>" size='5' maxlength='3'/>
678
- seconds
 
 
 
 
 
 
 
 
679
  <br/><span class="description">
680
  <?php _e('Links that take longer than this to load will be marked as broken.','broken-link-checker'); ?>
681
  </span>
@@ -735,9 +743,7 @@ class wsBrokenLinkChecker {
735
  <br/><span class="description">
736
  <?php
737
 
738
- _e('The plugin works by periodically creating a background worker instance that parses your posts looking for links,
739
- checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most,
740
- the background instance may run each time before stopping.', 'broken-link-checker');
741
 
742
  ?>
743
  </span>
@@ -987,10 +993,10 @@ class wsBrokenLinkChecker {
987
  <thead>
988
  <tr>
989
 
990
- <th scope="col">Source
991
  </th>
992
- <th scope="col">Link Text</th>
993
- <th scope="col">URL</th>
994
 
995
  <?php if ( 'broken' == $link_type ) { ?>
996
  <th scope="col"> </th>
@@ -1025,7 +1031,7 @@ class wsBrokenLinkChecker {
1025
  $actions['edit'] = '<span class="edit"><a href="' . get_edit_post_link($link['source_id'], true) . '" title="' . attribute_escape(__('Edit this post')) . '">' . __('Edit') . '</a>';
1026
  $actions['delete'] = "<span class='delete'><a class='submitdelete' title='" . attribute_escape(__('Delete this post')) . "' href='" . wp_nonce_url("post.php?action=delete&amp;post=".$link['source_id'], 'delete-post_' . $link['source_id']) . "' onclick=\"if ( confirm('" . js_escape(sprintf( __("You are about to delete this post '%s'\n 'Cancel' to stop, 'OK' to delete."), $link['post_title'] )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
1027
  }
1028
- $actions['view'] = '<span class="view"><a href="' . get_permalink($link['source_id']) . '" title="' . attribute_escape(sprintf(__('View "%s"'), $link['post_title'])) . '" rel="permalink">' . __('View') . '</a>';
1029
  echo '<div class="row-actions">';
1030
  echo implode(' | </span>', $actions);
1031
  echo '</div>';
@@ -1912,7 +1918,7 @@ jQuery(function($){
1912
 
1913
  if( $status['broken_links'] > 0 ){
1914
  $text .= sprintf(
1915
- "<a href='%s' title='View broken links'><strong>".
1916
  _n('Found %d broken link', 'Found %d broken links', $status['broken_links'], 'broken-link-checker') .
1917
  "</strong></a>",
1918
  admin_url('tools.php?page=view-broken-links'),
673
  <th scope="row"><?php _e('Timeout', 'broken-link-checker'); ?></th>
674
  <td>
675
 
676
+ <?php
677
+
678
+ printf(
679
+ __('%s seconds', 'broken-link-checker'),
680
+ sprintf(
681
+ '<input type="text" name="timeout" id="blc_timeout" value="%d" size="5" maxlength="3" />',
682
+ $this->conf->options['timeout']
683
+ )
684
+ );
685
+
686
+ ?>
687
  <br/><span class="description">
688
  <?php _e('Links that take longer than this to load will be marked as broken.','broken-link-checker'); ?>
689
  </span>
743
  <br/><span class="description">
744
  <?php
745
 
746
+ _e('The plugin works by periodically creating a background worker instance that parses your posts looking for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the background instance may run each time before stopping.', 'broken-link-checker');
 
 
747
 
748
  ?>
749
  </span>
993
  <thead>
994
  <tr>
995
 
996
+ <th scope="col"><?php _e('Source', 'broken-link-checker'); ?>
997
  </th>
998
+ <th scope="col"><?php _e('Link Text', 'broken-link-checker'); ?></th>
999
+ <th scope="col"><?php _e('URL', 'broken-link-checker'); ?></th>
1000
 
1001
  <?php if ( 'broken' == $link_type ) { ?>
1002
  <th scope="col"> </th>
1031
  $actions['edit'] = '<span class="edit"><a href="' . get_edit_post_link($link['source_id'], true) . '" title="' . attribute_escape(__('Edit this post')) . '">' . __('Edit') . '</a>';
1032
  $actions['delete'] = "<span class='delete'><a class='submitdelete' title='" . attribute_escape(__('Delete this post')) . "' href='" . wp_nonce_url("post.php?action=delete&amp;post=".$link['source_id'], 'delete-post_' . $link['source_id']) . "' onclick=\"if ( confirm('" . js_escape(sprintf( __("You are about to delete this post '%s'\n 'Cancel' to stop, 'OK' to delete."), $link['post_title'] )) . "') ) { return true;}return false;\">" . __('Delete') . "</a>";
1033
  }
1034
+ $actions['view'] = '<span class="view"><a href="' . get_permalink($link['source_id']) . '" title="' . attribute_escape(sprintf(__('View "%s"', 'broken-link-checker'), $link['post_title'])) . '" rel="permalink">' . __('View') . '</a>';
1035
  echo '<div class="row-actions">';
1036
  echo implode(' | </span>', $actions);
1037
  echo '</div>';
1918
 
1919
  if( $status['broken_links'] > 0 ){
1920
  $text .= sprintf(
1921
+ "<a href='%s' title='" . __('View broken links', 'broken-link-checker') . "'><strong>".
1922
  _n('Found %d broken link', 'Found %d broken links', $status['broken_links'], 'broken-link-checker') .
1923
  "</strong></a>",
1924
  admin_url('tools.php?page=view-broken-links'),
languages/broken-link-checker.pot CHANGED
@@ -1,5 +1,5 @@
1
  # Broken Link Checker POT file
2
- # Copyright (C) YEAR Janis Elsts
3
  # This file is distributed under the same license as the BLC package.
4
  # Janis Elsts <whiteshadow@w-shadow.com>, 2009.
5
  #
@@ -7,17 +7,17 @@
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: broken-link-checker\n"
10
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
11
- "POT-Creation-Date: 2009-10-28 16:55+0000\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=CHARSET\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
 
20
- #: core.php:132 core.php:1278
21
  msgid "Loading..."
22
  msgstr ""
23
 
@@ -29,7 +29,7 @@ msgstr ""
29
  msgid "Automatically expand the widget if broken links have been detected"
30
  msgstr ""
31
 
32
- #: core.php:359 core.php:368 core.php:386 core.php:400 core.php:901
33
  #, php-format
34
  msgid "Database error : %s"
35
  msgstr ""
@@ -46,7 +46,7 @@ msgstr ""
46
  msgid "View Broken Links"
47
  msgstr ""
48
 
49
- #: core.php:436 core.php:827
50
  msgid "Broken Links"
51
  msgstr ""
52
 
@@ -62,7 +62,7 @@ msgstr ""
62
  msgid "Status"
63
  msgstr ""
64
 
65
- #: core.php:548 core.php:765
66
  msgid "Show debug info"
67
  msgstr ""
68
 
@@ -118,411 +118,426 @@ msgstr ""
118
  msgid "Timeout"
119
  msgstr ""
120
 
121
- #: core.php:680
 
 
 
 
 
122
  msgid "Links that take longer than this to load will be marked as broken."
123
  msgstr ""
124
 
125
- #: core.php:689
126
  msgid "Custom temporary directory"
127
  msgstr ""
128
 
129
- #: core.php:698 core.php:2041 core.php:2082
130
  msgid "OK"
131
  msgstr ""
132
 
133
- #: core.php:701
134
  msgid "Error : This directory isn't writable by PHP."
135
  msgstr ""
136
 
137
- #: core.php:706
138
  msgid "Error : This directory doesn't exist."
139
  msgstr ""
140
 
141
- #: core.php:714
142
  msgid ""
143
  "Set this field if you want the plugin to use a custom directory for its "
144
  "lockfiles. Otherwise, leave it blank."
145
  msgstr ""
146
 
147
- #: core.php:721
148
  msgid "Max. execution time"
149
  msgstr ""
150
 
151
- #: core.php:727
152
- #, php-format
153
- msgid "%s seconds"
154
- msgstr ""
155
-
156
- #: core.php:738
157
  msgid ""
158
  "The plugin works by periodically creating a background worker instance that "
159
- "parses your posts looking for links,\r\n"
160
- "\t\tchecks the discovered URLs, and performs other time-consuming tasks. "
161
- "Here you can set for how long, at most, \r\n"
162
- "\t\tthe background instance may run each time before stopping."
163
  msgstr ""
164
 
165
- #: core.php:750
166
  msgid "Save Changes"
167
  msgstr ""
168
 
169
- #: core.php:763
170
  msgid "Hide debug info"
171
  msgstr ""
172
 
173
- #: core.php:826
174
  msgid "Broken"
175
  msgstr ""
176
 
177
- #: core.php:828
178
  msgid "No broken links found"
179
  msgstr ""
180
 
181
- #: core.php:832
182
  msgid "Redirects"
183
  msgstr ""
184
 
185
- #: core.php:833
186
  msgid "Redirected Links"
187
  msgstr ""
188
 
189
- #: core.php:834
190
  msgid "No redirects found"
191
  msgstr ""
192
 
193
- #: core.php:839
194
  msgid "All"
195
  msgstr ""
196
 
197
- #: core.php:840
198
  msgid "Detected Links"
199
  msgstr ""
200
 
201
- #: core.php:841
202
  msgid "No links found (yet)"
203
  msgstr ""
204
 
205
- #: core.php:960
206
  msgid "&laquo;"
207
  msgstr ""
208
 
209
- #: core.php:961
210
  msgid "&raquo;"
211
  msgstr ""
212
 
213
- #: core.php:968 core.php:1143
214
  #, php-format
215
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
216
  msgstr ""
217
 
218
- #: core.php:1019 core.php:1025
 
 
 
 
 
 
 
 
 
 
 
 
219
  msgid "Edit this post"
220
  msgstr ""
221
 
222
- #: core.php:1025 core.php:1040
223
  msgid "Edit"
224
  msgstr ""
225
 
226
- #: core.php:1026
227
  msgid "Delete this post"
228
  msgstr ""
229
 
230
- #: core.php:1026
231
  #, php-format
232
  msgid ""
233
  "You are about to delete this post '%s'\n"
234
  " 'Cancel' to stop, 'OK' to delete."
235
  msgstr ""
236
 
237
- #: core.php:1026 core.php:1041
238
  msgid "Delete"
239
  msgstr ""
240
 
241
- #: core.php:1028
242
  #, php-format
243
  msgid "View \"%s\""
244
  msgstr ""
245
 
246
- #: core.php:1028
247
  msgid "View"
248
  msgstr ""
249
 
250
- #: core.php:1035 core.php:1040
251
  msgid "Edit this bookmark"
252
  msgstr ""
253
 
254
- #: core.php:1041
255
  #, php-format
256
  msgid ""
257
  "You are about to delete this link '%s'\n"
258
  " 'Cancel' to stop, 'OK' to delete."
259
  msgstr ""
260
 
261
- #: core.php:1050
262
  msgid "[An orphaned link! This is a bug.]"
263
  msgstr ""
264
 
265
- #: core.php:1064
266
  msgid "Image"
267
  msgstr ""
268
 
269
- #: core.php:1075
270
  msgid "Custom field"
271
  msgstr ""
272
 
273
- #: core.php:1083
274
  msgid "Bookmark"
275
  msgstr ""
276
 
277
- #: core.php:1098
278
  msgid "Show more info about this link"
279
  msgstr ""
280
 
281
- #: core.php:1098 core.php:2377
282
  msgid "Details"
283
  msgstr ""
284
 
285
- #: core.php:1100
286
  msgid "Remove this link from all posts"
287
  msgstr ""
288
 
289
- #: core.php:1101 core.php:1365
290
  msgid "Unlink"
291
  msgstr ""
292
 
293
- #: core.php:1104 core.php:1395 core.php:1406
294
  msgid "Excluded"
295
  msgstr ""
296
 
297
- #: core.php:1106
298
  msgid "Add this URL to the exclusion list"
299
  msgstr ""
300
 
301
- #: core.php:1107 core.php:1409
302
  msgid "Exclude"
303
  msgstr ""
304
 
305
- #: core.php:1110
306
  msgid "Edit link URL"
307
  msgstr ""
308
 
309
- #: core.php:1110 core.php:1334
310
  msgid "Edit URL"
311
  msgstr ""
312
 
313
- #: core.php:1116
314
  msgid "Cancel URL editing"
315
  msgstr ""
316
 
317
- #: core.php:1116
318
  msgid "Cancel"
319
  msgstr ""
320
 
321
- #: core.php:1127
322
  msgid "Remove this link from the list of broken links and mark it as valid"
323
  msgstr ""
324
 
325
- #: core.php:1129 core.php:1198
326
  msgid "Discard"
327
  msgstr ""
328
 
329
- #: core.php:1174 core.php:1341 core.php:1378
330
  msgid "Wait..."
331
  msgstr ""
332
 
333
- #: core.php:1232
334
  msgid "Save URL"
335
  msgstr ""
336
 
337
- #: core.php:1242
338
  msgid "Saving changes..."
339
  msgstr ""
340
 
341
- #: core.php:1431
342
  msgid "Log"
343
  msgstr ""
344
 
345
- #: core.php:1439
346
  msgid "Post published on"
347
  msgstr ""
348
 
349
- #: core.php:1444
350
  msgid "Link last checked"
351
  msgstr ""
352
 
353
- #: core.php:1448
354
  msgid "Never"
355
  msgstr ""
356
 
357
- #: core.php:1454
358
  msgid "HTTP code"
359
  msgstr ""
360
 
361
- #: core.php:1459
362
  msgid "Response time"
363
  msgstr ""
364
 
365
- #: core.php:1461
366
  #, php-format
367
  msgid "%2.3f seconds"
368
  msgstr ""
369
 
370
- #: core.php:1464
371
  msgid "Final URL"
372
  msgstr ""
373
 
374
- #: core.php:1469
375
  msgid "Redirect count"
376
  msgstr ""
377
 
378
- #: core.php:1474
379
  msgid "Instance count"
380
  msgstr ""
381
 
382
- #: core.php:1483
383
  #, php-format
384
  msgid "This link has failed %d time."
385
  msgid_plural "This link has failed %d times."
386
  msgstr[0] ""
387
  msgstr[1] ""
388
 
389
- #: core.php:1873 core.php:2200
390
  msgid ""
391
  "This link wasn't checked because a matching keyword was found on your "
392
  "exclusion list."
393
  msgstr ""
394
 
395
- #: core.php:1916
 
 
 
 
396
  #, php-format
397
  msgid "Found %d broken link"
398
  msgid_plural "Found %d broken links"
399
  msgstr[0] ""
400
  msgstr[1] ""
401
 
402
- #: core.php:1922
403
  msgid "No broken links found."
404
  msgstr ""
405
 
406
- #: core.php:1929
407
  #, php-format
408
  msgid "%d URL in the work queue"
409
  msgid_plural "%d URLs in the work queue"
410
  msgstr[0] ""
411
  msgstr[1] ""
412
 
413
- #: core.php:1932
414
  msgid "No URLs in the work queue."
415
  msgstr ""
416
 
417
- #: core.php:1938
418
  #, php-format
419
  msgid "Detected %d unique URL"
420
  msgid_plural "Detected %d unique URLs"
421
  msgstr[0] ""
422
  msgstr[1] ""
423
 
424
- #: core.php:1939
425
  #, php-format
426
  msgid "in %d link"
427
  msgid_plural "in %d links"
428
  msgstr[0] ""
429
  msgstr[1] ""
430
 
431
- #: core.php:1944
432
  msgid "and still searching..."
433
  msgstr ""
434
 
435
- #: core.php:1950
436
  msgid "Searching your blog for links..."
437
  msgstr ""
438
 
439
- #: core.php:1952
440
  msgid "No links detected."
441
  msgstr ""
442
 
443
- #: core.php:2021 core.php:2053 core.php:2096 core.php:2177
444
  msgid "You're not allowed to do that!"
445
  msgstr ""
446
 
447
- #: core.php:2029 core.php:2063 core.php:2106 core.php:2187
448
  #, php-format
449
  msgid "Oops, I can't find the link %d"
450
  msgstr ""
451
 
452
- #: core.php:2037
453
  msgid "This link was manually marked as working by the user."
454
  msgstr ""
455
 
456
- #: core.php:2043
457
  msgid "Oops, couldn't modify the link!"
458
  msgstr ""
459
 
460
- #: core.php:2046 core.php:2123
461
  msgid "Error : link_id not specified"
462
  msgstr ""
463
 
464
- #: core.php:2070
465
  msgid "Oops, the new URL is invalid!"
466
  msgstr ""
467
 
468
- #: core.php:2079
469
  msgid "An unexpected error occured!"
470
  msgstr ""
471
 
472
- #: core.php:2088
473
  msgid "Error : link_id or new_url not specified"
474
  msgstr ""
475
 
476
- #: core.php:2113
477
  #, php-format
478
  msgid "URL %s was removed."
479
  msgstr ""
480
 
481
- #: core.php:2117
482
  msgid "The plugin failed to remove the link."
483
  msgstr ""
484
 
485
- #: core.php:2132
486
  msgid "You don't have sufficient privileges to access this information!"
487
  msgstr ""
488
 
489
- #: core.php:2145
490
  msgid "Error : link ID not specified"
491
  msgstr ""
492
 
493
- #: core.php:2169
494
  #, php-format
495
  msgid "Failed to load link details (%s)"
496
  msgstr ""
497
 
498
- #: core.php:2207
499
  #, php-format
500
  msgid "URL %s added to the exclusion list"
501
  msgstr ""
502
 
503
- #: core.php:2211
504
  msgid "Link ID not specified"
505
  msgstr ""
506
 
507
- #: core.php:2363
508
  #, php-format
509
  msgid ""
510
  "The current temporary directory is not accessible; please <a href=\"%s\">set "
511
  "a different one</a>."
512
  msgstr ""
513
 
514
- #: core.php:2368
515
  #, php-format
516
  msgid ""
517
  "Please make the directory <code>%1$s</code> writable by plugins or <a href="
518
  "\"%2$s\">set a custom temporary directory</a>."
519
  msgstr ""
520
 
521
- #: core.php:2375
522
  msgid "Broken Link Checker can't create a lockfile."
523
  msgstr ""
524
 
525
- #: core.php:2380
526
  msgid ""
527
  "The plugin uses a file-based locking mechanism to ensure that only one "
528
  "instance of the\r\n"
@@ -538,57 +553,57 @@ msgid ""
538
  "settings."
539
  msgstr ""
540
 
541
- #: core.php:2405
542
  msgid "PHP version"
543
  msgstr ""
544
 
545
- #: core.php:2411
546
  msgid "MySQL version"
547
  msgstr ""
548
 
549
- #: core.php:2424
550
  msgid ""
551
  "You have an old version of CURL. Redirect detection may not work properly."
552
  msgstr ""
553
 
554
- #: core.php:2436 core.php:2452 core.php:2457
555
  msgid "Not installed"
556
  msgstr ""
557
 
558
- #: core.php:2439
559
  msgid "CURL version"
560
  msgstr ""
561
 
562
- #: core.php:2445
563
  msgid "Installed"
564
  msgstr ""
565
 
566
- #: core.php:2458
567
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
568
  msgstr ""
569
 
570
- #: core.php:2469
571
  msgid "On"
572
  msgstr ""
573
 
574
- #: core.php:2470
575
  msgid "Redirects may be detected as broken links when safe_mode is on."
576
  msgstr ""
577
 
578
- #: core.php:2475 core.php:2489
579
  msgid "Off"
580
  msgstr ""
581
 
582
- #: core.php:2483
583
  #, php-format
584
  msgid "On ( %s )"
585
  msgstr ""
586
 
587
- #: core.php:2484
588
  msgid "Redirects may be detected as broken links when open_basedir is on."
589
  msgstr ""
590
 
591
- #: core.php:2503
592
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
593
  msgstr ""
594
 
1
  # Broken Link Checker POT file
2
+ # Copyright (C) 2009 Janis Elsts
3
  # This file is distributed under the same license as the BLC package.
4
  # Janis Elsts <whiteshadow@w-shadow.com>, 2009.
5
  #
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: broken-link-checker\n"
10
+ "Report-Msgid-Bugs-To: whiteshadow@w-shadow.com\n"
11
+ "POT-Creation-Date: 2009-10-30 11:06+0000\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=CHARSET\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
 
20
+ #: core.php:132 core.php:1284
21
  msgid "Loading..."
22
  msgstr ""
23
 
29
  msgid "Automatically expand the widget if broken links have been detected"
30
  msgstr ""
31
 
32
+ #: core.php:359 core.php:368 core.php:386 core.php:400 core.php:907
33
  #, php-format
34
  msgid "Database error : %s"
35
  msgstr ""
46
  msgid "View Broken Links"
47
  msgstr ""
48
 
49
+ #: core.php:436 core.php:833
50
  msgid "Broken Links"
51
  msgstr ""
52
 
62
  msgid "Status"
63
  msgstr ""
64
 
65
+ #: core.php:548 core.php:771
66
  msgid "Show debug info"
67
  msgstr ""
68
 
118
  msgid "Timeout"
119
  msgstr ""
120
 
121
+ #: core.php:679 core.php:735
122
+ #, php-format
123
+ msgid "%s seconds"
124
+ msgstr ""
125
+
126
+ #: core.php:688
127
  msgid "Links that take longer than this to load will be marked as broken."
128
  msgstr ""
129
 
130
+ #: core.php:697
131
  msgid "Custom temporary directory"
132
  msgstr ""
133
 
134
+ #: core.php:706 core.php:2047 core.php:2088
135
  msgid "OK"
136
  msgstr ""
137
 
138
+ #: core.php:709
139
  msgid "Error : This directory isn't writable by PHP."
140
  msgstr ""
141
 
142
+ #: core.php:714
143
  msgid "Error : This directory doesn't exist."
144
  msgstr ""
145
 
146
+ #: core.php:722
147
  msgid ""
148
  "Set this field if you want the plugin to use a custom directory for its "
149
  "lockfiles. Otherwise, leave it blank."
150
  msgstr ""
151
 
152
+ #: core.php:729
153
  msgid "Max. execution time"
154
  msgstr ""
155
 
156
+ #: core.php:746
 
 
 
 
 
157
  msgid ""
158
  "The plugin works by periodically creating a background worker instance that "
159
+ "parses your posts looking for links, checks the discovered URLs, and "
160
+ "performs other time-consuming tasks. Here you can set for how long, at most, "
161
+ "the background instance may run each time before stopping."
 
162
  msgstr ""
163
 
164
+ #: core.php:756
165
  msgid "Save Changes"
166
  msgstr ""
167
 
168
+ #: core.php:769
169
  msgid "Hide debug info"
170
  msgstr ""
171
 
172
+ #: core.php:832
173
  msgid "Broken"
174
  msgstr ""
175
 
176
+ #: core.php:834
177
  msgid "No broken links found"
178
  msgstr ""
179
 
180
+ #: core.php:838
181
  msgid "Redirects"
182
  msgstr ""
183
 
184
+ #: core.php:839
185
  msgid "Redirected Links"
186
  msgstr ""
187
 
188
+ #: core.php:840
189
  msgid "No redirects found"
190
  msgstr ""
191
 
192
+ #: core.php:845
193
  msgid "All"
194
  msgstr ""
195
 
196
+ #: core.php:846
197
  msgid "Detected Links"
198
  msgstr ""
199
 
200
+ #: core.php:847
201
  msgid "No links found (yet)"
202
  msgstr ""
203
 
204
+ #: core.php:966
205
  msgid "&laquo;"
206
  msgstr ""
207
 
208
+ #: core.php:967
209
  msgid "&raquo;"
210
  msgstr ""
211
 
212
+ #: core.php:974 core.php:1149
213
  #, php-format
214
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
215
  msgstr ""
216
 
217
+ #: core.php:996
218
+ msgid "Source"
219
+ msgstr ""
220
+
221
+ #: core.php:998
222
+ msgid "Link Text"
223
+ msgstr ""
224
+
225
+ #: core.php:999
226
+ msgid "URL"
227
+ msgstr ""
228
+
229
+ #: core.php:1025 core.php:1031
230
  msgid "Edit this post"
231
  msgstr ""
232
 
233
+ #: core.php:1031 core.php:1046
234
  msgid "Edit"
235
  msgstr ""
236
 
237
+ #: core.php:1032
238
  msgid "Delete this post"
239
  msgstr ""
240
 
241
+ #: core.php:1032
242
  #, php-format
243
  msgid ""
244
  "You are about to delete this post '%s'\n"
245
  " 'Cancel' to stop, 'OK' to delete."
246
  msgstr ""
247
 
248
+ #: core.php:1032 core.php:1047
249
  msgid "Delete"
250
  msgstr ""
251
 
252
+ #: core.php:1034
253
  #, php-format
254
  msgid "View \"%s\""
255
  msgstr ""
256
 
257
+ #: core.php:1034
258
  msgid "View"
259
  msgstr ""
260
 
261
+ #: core.php:1041 core.php:1046
262
  msgid "Edit this bookmark"
263
  msgstr ""
264
 
265
+ #: core.php:1047
266
  #, php-format
267
  msgid ""
268
  "You are about to delete this link '%s'\n"
269
  " 'Cancel' to stop, 'OK' to delete."
270
  msgstr ""
271
 
272
+ #: core.php:1056
273
  msgid "[An orphaned link! This is a bug.]"
274
  msgstr ""
275
 
276
+ #: core.php:1070
277
  msgid "Image"
278
  msgstr ""
279
 
280
+ #: core.php:1081
281
  msgid "Custom field"
282
  msgstr ""
283
 
284
+ #: core.php:1089
285
  msgid "Bookmark"
286
  msgstr ""
287
 
288
+ #: core.php:1104
289
  msgid "Show more info about this link"
290
  msgstr ""
291
 
292
+ #: core.php:1104 core.php:2381
293
  msgid "Details"
294
  msgstr ""
295
 
296
+ #: core.php:1106
297
  msgid "Remove this link from all posts"
298
  msgstr ""
299
 
300
+ #: core.php:1107 core.php:1371
301
  msgid "Unlink"
302
  msgstr ""
303
 
304
+ #: core.php:1110 core.php:1401 core.php:1412
305
  msgid "Excluded"
306
  msgstr ""
307
 
308
+ #: core.php:1112
309
  msgid "Add this URL to the exclusion list"
310
  msgstr ""
311
 
312
+ #: core.php:1113 core.php:1415
313
  msgid "Exclude"
314
  msgstr ""
315
 
316
+ #: core.php:1116
317
  msgid "Edit link URL"
318
  msgstr ""
319
 
320
+ #: core.php:1116 core.php:1340
321
  msgid "Edit URL"
322
  msgstr ""
323
 
324
+ #: core.php:1122
325
  msgid "Cancel URL editing"
326
  msgstr ""
327
 
328
+ #: core.php:1122
329
  msgid "Cancel"
330
  msgstr ""
331
 
332
+ #: core.php:1133
333
  msgid "Remove this link from the list of broken links and mark it as valid"
334
  msgstr ""
335
 
336
+ #: core.php:1135 core.php:1204
337
  msgid "Discard"
338
  msgstr ""
339
 
340
+ #: core.php:1180 core.php:1347 core.php:1384
341
  msgid "Wait..."
342
  msgstr ""
343
 
344
+ #: core.php:1238
345
  msgid "Save URL"
346
  msgstr ""
347
 
348
+ #: core.php:1248
349
  msgid "Saving changes..."
350
  msgstr ""
351
 
352
+ #: core.php:1437
353
  msgid "Log"
354
  msgstr ""
355
 
356
+ #: core.php:1445
357
  msgid "Post published on"
358
  msgstr ""
359
 
360
+ #: core.php:1450
361
  msgid "Link last checked"
362
  msgstr ""
363
 
364
+ #: core.php:1454
365
  msgid "Never"
366
  msgstr ""
367
 
368
+ #: core.php:1460
369
  msgid "HTTP code"
370
  msgstr ""
371
 
372
+ #: core.php:1465
373
  msgid "Response time"
374
  msgstr ""
375
 
376
+ #: core.php:1467
377
  #, php-format
378
  msgid "%2.3f seconds"
379
  msgstr ""
380
 
381
+ #: core.php:1470
382
  msgid "Final URL"
383
  msgstr ""
384
 
385
+ #: core.php:1475
386
  msgid "Redirect count"
387
  msgstr ""
388
 
389
+ #: core.php:1480
390
  msgid "Instance count"
391
  msgstr ""
392
 
393
+ #: core.php:1489
394
  #, php-format
395
  msgid "This link has failed %d time."
396
  msgid_plural "This link has failed %d times."
397
  msgstr[0] ""
398
  msgstr[1] ""
399
 
400
+ #: core.php:1879 core.php:2206
401
  msgid ""
402
  "This link wasn't checked because a matching keyword was found on your "
403
  "exclusion list."
404
  msgstr ""
405
 
406
+ #: core.php:1921
407
+ msgid "View broken links"
408
+ msgstr ""
409
+
410
+ #: core.php:1922
411
  #, php-format
412
  msgid "Found %d broken link"
413
  msgid_plural "Found %d broken links"
414
  msgstr[0] ""
415
  msgstr[1] ""
416
 
417
+ #: core.php:1928
418
  msgid "No broken links found."
419
  msgstr ""
420
 
421
+ #: core.php:1935
422
  #, php-format
423
  msgid "%d URL in the work queue"
424
  msgid_plural "%d URLs in the work queue"
425
  msgstr[0] ""
426
  msgstr[1] ""
427
 
428
+ #: core.php:1938
429
  msgid "No URLs in the work queue."
430
  msgstr ""
431
 
432
+ #: core.php:1944
433
  #, php-format
434
  msgid "Detected %d unique URL"
435
  msgid_plural "Detected %d unique URLs"
436
  msgstr[0] ""
437
  msgstr[1] ""
438
 
439
+ #: core.php:1945
440
  #, php-format
441
  msgid "in %d link"
442
  msgid_plural "in %d links"
443
  msgstr[0] ""
444
  msgstr[1] ""
445
 
446
+ #: core.php:1950
447
  msgid "and still searching..."
448
  msgstr ""
449
 
450
+ #: core.php:1956
451
  msgid "Searching your blog for links..."
452
  msgstr ""
453
 
454
+ #: core.php:1958
455
  msgid "No links detected."
456
  msgstr ""
457
 
458
+ #: core.php:2027 core.php:2059 core.php:2102 core.php:2183
459
  msgid "You're not allowed to do that!"
460
  msgstr ""
461
 
462
+ #: core.php:2035 core.php:2069 core.php:2112 core.php:2193
463
  #, php-format
464
  msgid "Oops, I can't find the link %d"
465
  msgstr ""
466
 
467
+ #: core.php:2043
468
  msgid "This link was manually marked as working by the user."
469
  msgstr ""
470
 
471
+ #: core.php:2049
472
  msgid "Oops, couldn't modify the link!"
473
  msgstr ""
474
 
475
+ #: core.php:2052 core.php:2129
476
  msgid "Error : link_id not specified"
477
  msgstr ""
478
 
479
+ #: core.php:2076
480
  msgid "Oops, the new URL is invalid!"
481
  msgstr ""
482
 
483
+ #: core.php:2085
484
  msgid "An unexpected error occured!"
485
  msgstr ""
486
 
487
+ #: core.php:2094
488
  msgid "Error : link_id or new_url not specified"
489
  msgstr ""
490
 
491
+ #: core.php:2119
492
  #, php-format
493
  msgid "URL %s was removed."
494
  msgstr ""
495
 
496
+ #: core.php:2123
497
  msgid "The plugin failed to remove the link."
498
  msgstr ""
499
 
500
+ #: core.php:2138
501
  msgid "You don't have sufficient privileges to access this information!"
502
  msgstr ""
503
 
504
+ #: core.php:2151
505
  msgid "Error : link ID not specified"
506
  msgstr ""
507
 
508
+ #: core.php:2175
509
  #, php-format
510
  msgid "Failed to load link details (%s)"
511
  msgstr ""
512
 
513
+ #: core.php:2213
514
  #, php-format
515
  msgid "URL %s added to the exclusion list"
516
  msgstr ""
517
 
518
+ #: core.php:2217
519
  msgid "Link ID not specified"
520
  msgstr ""
521
 
522
+ #: core.php:2367
523
  #, php-format
524
  msgid ""
525
  "The current temporary directory is not accessible; please <a href=\"%s\">set "
526
  "a different one</a>."
527
  msgstr ""
528
 
529
+ #: core.php:2372
530
  #, php-format
531
  msgid ""
532
  "Please make the directory <code>%1$s</code> writable by plugins or <a href="
533
  "\"%2$s\">set a custom temporary directory</a>."
534
  msgstr ""
535
 
536
+ #: core.php:2379
537
  msgid "Broken Link Checker can't create a lockfile."
538
  msgstr ""
539
 
540
+ #: core.php:2384
541
  msgid ""
542
  "The plugin uses a file-based locking mechanism to ensure that only one "
543
  "instance of the\r\n"
553
  "settings."
554
  msgstr ""
555
 
556
+ #: core.php:2409
557
  msgid "PHP version"
558
  msgstr ""
559
 
560
+ #: core.php:2415
561
  msgid "MySQL version"
562
  msgstr ""
563
 
564
+ #: core.php:2428
565
  msgid ""
566
  "You have an old version of CURL. Redirect detection may not work properly."
567
  msgstr ""
568
 
569
+ #: core.php:2440 core.php:2456 core.php:2461
570
  msgid "Not installed"
571
  msgstr ""
572
 
573
+ #: core.php:2443
574
  msgid "CURL version"
575
  msgstr ""
576
 
577
+ #: core.php:2449
578
  msgid "Installed"
579
  msgstr ""
580
 
581
+ #: core.php:2462
582
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
583
  msgstr ""
584
 
585
+ #: core.php:2473
586
  msgid "On"
587
  msgstr ""
588
 
589
+ #: core.php:2474
590
  msgid "Redirects may be detected as broken links when safe_mode is on."
591
  msgstr ""
592
 
593
+ #: core.php:2479 core.php:2493
594
  msgid "Off"
595
  msgstr ""
596
 
597
+ #: core.php:2487
598
  #, php-format
599
  msgid "On ( %s )"
600
  msgstr ""
601
 
602
+ #: core.php:2488
603
  msgid "Redirects may be detected as broken links when open_basedir is on."
604
  msgstr ""
605
 
606
+ #: core.php:2507
607
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
608
  msgstr ""
609
 
link-classes.php CHANGED
@@ -209,9 +209,9 @@ class blcLink {
209
  $this->log .= '=== ';
210
 
211
  if ( $code ){
212
- $this->log .= __('First try : 0 (No response)', 'broken-link-checker');
213
- } else {
214
  $this->log .= sprintf( __('First try : %d', 'broken-link-checker'), $code);
 
 
215
  }
216
 
217
  $this->log .= " ===\n\n";
@@ -234,9 +234,9 @@ class blcLink {
234
 
235
  $this->log .= '=== ';
236
  if ( $code ){
237
- $this->log .= __('Second try : 0 (No response)', 'broken-link-checker');
238
- } else {
239
  $this->log .= sprintf( __('Second try : %d', 'broken-link-checker'), $code);
 
 
240
  }
241
  $this->log .= " ===\n\n";
242
 
209
  $this->log .= '=== ';
210
 
211
  if ( $code ){
 
 
212
  $this->log .= sprintf( __('First try : %d', 'broken-link-checker'), $code);
213
+ } else {
214
+ $this->log .= __('First try : 0 (No response)', 'broken-link-checker');
215
  }
216
 
217
  $this->log .= " ===\n\n";
234
 
235
  $this->log .= '=== ';
236
  if ( $code ){
 
 
237
  $this->log .= sprintf( __('Second try : %d', 'broken-link-checker'), $code);
238
+ } else {
239
+ $this->log .= __('Second try : 0 (No response)', 'broken-link-checker');
240
  }
241
  $this->log .= " ===\n\n";
242
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: whiteshadow
3
  Tags: links, broken, maintenance, blogroll, custom fields, admin
4
  Requires at least: 2.7.0
5
  Tested up to: 2.9
6
- Stable tag: 0.6
7
 
8
  This plugin will check your posts, custom fields and the blogroll for broken links and missing images and notify you if any are found.
9
 
@@ -61,6 +61,9 @@ To upgrade your installation
61
 
62
  *This is an automatically generated changelog*
63
 
 
 
 
64
  = 0.6 =
65
  * Initial localization support.
66
 
3
  Tags: links, broken, maintenance, blogroll, custom fields, admin
4
  Requires at least: 2.7.0
5
  Tested up to: 2.9
6
+ Stable tag: 0.6.1
7
 
8
  This plugin will check your posts, custom fields and the blogroll for broken links and missing images and notify you if any are found.
9
 
61
 
62
  *This is an automatically generated changelog*
63
 
64
+ = 0.6.1 =
65
+ * Minor translation-related fixes.
66
+
67
  = 0.6 =
68
  * Initial localization support.
69