Broken Link Checker - Version 0.9.7

Version Description

  • Allow custom field names with spaces.
  • Updated German translation.
  • Updated Portuguese translation
  • Made the "Current load" label localizeable.
  • Fixed a translation-related bug where the various checkboxes in the "Link types" and "Look for links in" sections would appear in English even when a valid translation was available.
  • Fixed non-ASCII URLs being mangled when links are automatically marked with the "broken_link" CSS class.
  • Fixed blog names that include quotes being displayed incorrectly in email notifications.
  • When removing a link via the "Unlink" action, add the old URL as the title attribute of the now-unlinked anchor text.
  • When resolving relative URLs posted in comments, use the comment's permalink as the base (previously the blog's homepage URL was used).
Download this release

Release Info

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

Code changes from version 0.9.6 to 0.9.7

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: 0.9.6
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: 0.9.7
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
core/core.php CHANGED
@@ -471,7 +471,7 @@ class wsBrokenLinkChecker {
471
 
472
  //Parse the custom field list
473
  $new_custom_fields = array_filter(
474
- preg_split( '/[\s\r\n]+/', $_POST['blc_custom_fields'], -1, PREG_SPLIT_NO_EMPTY )
475
  );
476
 
477
  //Calculate the difference between the old custom field list and the new one (used later)
@@ -966,7 +966,10 @@ class wsBrokenLinkChecker {
966
  $value
967
  );
968
 
969
- echo 'Current load : <span id="wsblc_current_load">...</span>';
 
 
 
970
  echo '<br/><span class="description">';
971
  printf(
972
  __(
@@ -1247,6 +1250,10 @@ class wsBrokenLinkChecker {
1247
  case 'bulk-not-broken':
1248
  list($message, $msg_class) = $this->do_bulk_discard($selected_links);
1249
  break;
 
 
 
 
1250
  }
1251
 
1252
 
@@ -1465,6 +1472,104 @@ class wsBrokenLinkChecker {
1465
  return array($message, $msg_class);
1466
  }
1467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1468
  /**
1469
  * Unlink multiple links.
1470
  *
@@ -2852,7 +2957,7 @@ class wsBrokenLinkChecker {
2852
  //Prepare email message
2853
  $subject = sprintf(
2854
  __("[%s] Broken links detected", 'broken-link-checker'),
2855
- get_option('blogname')
2856
  );
2857
 
2858
  $body = sprintf(
471
 
472
  //Parse the custom field list
473
  $new_custom_fields = array_filter(
474
+ preg_split( '/[\r\n]+/', $_POST['blc_custom_fields'], -1, PREG_SPLIT_NO_EMPTY )
475
  );
476
 
477
  //Calculate the difference between the old custom field list and the new one (used later)
966
  $value
967
  );
968
 
969
+ printf(
970
+ __('Current load : %s', 'broken-link-checker'),
971
+ '<span id="wsblc_current_load">...</span>'
972
+ );
973
  echo '<br/><span class="description">';
974
  printf(
975
  __(
1250
  case 'bulk-not-broken':
1251
  list($message, $msg_class) = $this->do_bulk_discard($selected_links);
1252
  break;
1253
+
1254
+ case 'bulk-edit':
1255
+ list($message, $msg_class) = $this->do_bulk_edit($selected_links);
1256
+ break;
1257
  }
1258
 
1259
 
1472
  return array($message, $msg_class);
1473
  }
1474
 
1475
+ /**
1476
+ * Edit multiple links in one go.
1477
+ *
1478
+ * @param array $selected_links
1479
+ * @return array The message to display and its CSS class.
1480
+ */
1481
+ function do_bulk_edit($selected_links){
1482
+ $message = '';
1483
+ $msg_class = 'updated';
1484
+
1485
+ check_admin_referer( 'bulk-action' );
1486
+
1487
+ $post = $_POST;
1488
+ if ( function_exists('wp_magic_quotes') ){
1489
+ $post = stripslashes_deep($post); //Ceterum censeo, WP shouldn't mangle superglobals.
1490
+ }
1491
+
1492
+ $search = isset($post['search']) ? $post['search'] : '';
1493
+ $replace = isset($post['replace']) ? $post['replace'] : '';
1494
+ $use_regex = !empty($post['regex']);
1495
+ $case_sensitive = !empty($post['case_sensitive']);
1496
+
1497
+ $delimiter = '`'; //Pick a char that's uncommon in URLs so that escaping won't usually be a problem
1498
+ if ( $use_regex ){
1499
+ $search = $delimiter . str_replace($delimiter, '\\' . $delimiter, $search) . $delimiter;
1500
+ if ( !$case_sensitive ){
1501
+ $search .= 'i';
1502
+ }
1503
+ } elseif ( !$case_sensitive ) {
1504
+ //str_ireplace() would be more appropriate for case-insensitive, non-regexp replacement,
1505
+ //but that's only available in PHP5.
1506
+ $search = $delimiter . str_replace($delimiter, '\\' . $delimiter, preg_quote($search)) . $delimiter . 'i';
1507
+ $use_regex = true;
1508
+ }
1509
+
1510
+ if ( count($selected_links) > 0 ) {
1511
+ set_time_limit(300); //In case the user decides to edit hundreds of links at once
1512
+
1513
+ //Fetch all the selected links
1514
+ $links = blc_get_links(array(
1515
+ 'link_ids' => $selected_links,
1516
+ 'purpose' => BLC_FOR_EDITING,
1517
+ ));
1518
+
1519
+ if ( count($links) > 0 ) {
1520
+ $processed_links = 0;
1521
+ $failed_links = 0;
1522
+ $skipped_links = 0;
1523
+
1524
+ //Edit the links
1525
+ foreach($links as $link){
1526
+ if ( $use_regex ){
1527
+ $new_url = preg_replace($search, $replace, $link->url);
1528
+ } else {
1529
+ $new_url = str_replace($search, $replace, $link->url);
1530
+ }
1531
+
1532
+ if ( $new_url == $link->url ){
1533
+ $skipped_links++;
1534
+ continue;
1535
+ }
1536
+
1537
+ $rez = $link->edit($new_url);
1538
+ if ( !is_wp_error($rez) && empty($rez['errors'] )){
1539
+ $processed_links++;
1540
+ } else {
1541
+ $failed_links++;
1542
+ }
1543
+ }
1544
+
1545
+ $message .= sprintf(
1546
+ _n(
1547
+ '%d link updated.',
1548
+ '%d links updated.',
1549
+ $processed_links,
1550
+ 'broken-link-checker'
1551
+ ),
1552
+ $processed_links
1553
+ );
1554
+
1555
+ if ( $failed_links > 0 ) {
1556
+ $message .= '<br>' . sprintf(
1557
+ _n(
1558
+ 'Failed to update %d link.',
1559
+ 'Failed to update %d links.',
1560
+ $failed_links,
1561
+ 'broken-link-checker'
1562
+ ),
1563
+ $failed_links
1564
+ );
1565
+ $msg_class = 'error';
1566
+ }
1567
+ }
1568
+ }
1569
+
1570
+ return array($message, $msg_class);
1571
+ }
1572
+
1573
  /**
1574
  * Unlink multiple links.
1575
  *
2957
  //Prepare email message
2958
  $subject = sprintf(
2959
  __("[%s] Broken links detected", 'broken-link-checker'),
2960
+ html_entity_decode(get_option('blogname'), ENT_QUOTES)
2961
  );
2962
 
2963
  $body = sprintf(
css/links-page.css CHANGED
@@ -245,6 +245,55 @@ td.column-link-text, td.column-new-link-text {
245
  vertical-align: middle;
246
  }
247
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
  /* Search form */
249
 
250
  .blc-search-container {
245
  vertical-align: middle;
246
  }
247
 
248
+ /* Bulk edit form */
249
+ #bulk-edit {
250
+ display: none;
251
+ }
252
+
253
+ #bulk-edit-wrap {
254
+ max-width: 600px;
255
+ padding-left: 0.3em;
256
+ }
257
+
258
+ #bulk-edit fieldset {
259
+ font-size: 12px;
260
+ }
261
+
262
+ #bulk-edit h4 {
263
+ margin: 0.4em 0 0.8em;
264
+ /*display: none;*/
265
+ }
266
+
267
+ #bulk-edit label {
268
+ display: block;
269
+ margin-bottom: 0.2em;
270
+ margin-left: 0px;
271
+ margin-right: 0px;
272
+ margin-top: 0.2em;
273
+ }
274
+
275
+ #bulk-edit .title {
276
+ display: block;
277
+ float: left;
278
+ width: 15%;
279
+ font-size: 12px;
280
+ line-height: 1.8em;
281
+ }
282
+
283
+ #bulk-edit input.text {
284
+ display: block;
285
+ width: 84%;
286
+ }
287
+
288
+ #bulk-edit-options label {
289
+ float: left;
290
+ margin-right: 2em;
291
+ }
292
+
293
+ #bulk-edit p.submit {
294
+ padding-top: 0.5em;
295
+ }
296
+
297
  /* Search form */
298
 
299
  .blc-search-container {
includes/admin/links-page-js.php CHANGED
@@ -432,8 +432,8 @@ jQuery(function($){
432
  var action = $('#blc-bulk-action2').val();
433
  }
434
 
435
- //Convey the gravitas of deleting link sources.
436
  if ( action == 'bulk-delete-sources' ){
 
437
  var message = '<?php
438
  echo esc_js(
439
  __("Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n'Cancel' to stop, 'OK' to delete", 'broken-link-checker')
@@ -443,6 +443,7 @@ jQuery(function($){
443
  return false;
444
  }
445
  } else if ( action == 'bulk-unlink' ){
 
446
  var message = '<?php
447
  echo esc_js(
448
  __("Are you sure you want to remove the selected links? This action can't be undone.\n'Cancel' to stop, 'OK' to remove", 'broken-link-checker')
@@ -532,7 +533,39 @@ jQuery(function($){
532
  $('#blc-links').removeClass('color-code-link-status');
533
  }
534
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
535
 
 
 
 
 
 
536
  });
537
 
538
  </script>
432
  var action = $('#blc-bulk-action2').val();
433
  }
434
 
 
435
  if ( action == 'bulk-delete-sources' ){
436
+ //Convey the gravitas of deleting link sources.
437
  var message = '<?php
438
  echo esc_js(
439
  __("Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n'Cancel' to stop, 'OK' to delete", 'broken-link-checker')
443
  return false;
444
  }
445
  } else if ( action == 'bulk-unlink' ){
446
+ //Likewise for unlinking.
447
  var message = '<?php
448
  echo esc_js(
449
  __("Are you sure you want to remove the selected links? This action can't be undone.\n'Cancel' to stop, 'OK' to remove", 'broken-link-checker')
533
  $('#blc-links').removeClass('color-code-link-status');
534
  }
535
  });
536
+
537
+ //Show the bulk edit/find & replace form when the user applies the appropriate bulk action
538
+ $('#doaction, #doaction2').click(function(e){
539
+ var n = $(this).attr('id').substr(2);
540
+ if ( $('select[name="'+n+'"]').val() == 'bulk-edit' ) {
541
+ e.preventDefault();
542
+ //Any links selected?
543
+ if ($('tbody th.check-column input:checked').length > 0){
544
+ $('#bulk-edit').show();
545
+ };
546
+ }
547
+ });
548
+
549
+ //Hide the bulk edit/find & replace form when "Cancel" is clicked
550
+ $('#bulk-edit .cancel').click(function(){
551
+ $('#bulk-edit').hide();
552
+ return false;
553
+ });
554
+
555
+ //Minimal input validation for the bulk edit form
556
+ $('#bulk-edit input[type="submit"]').click(function(e){
557
+ if( $('#bulk-edit input[name="search"]').val() == '' ){
558
+ alert('<?php echo esc_js(__('Enter a search string first.', 'broken-link-checker')); ?>');
559
+ $('#bulk-edit input[name="search"]').focus();
560
+ e.preventDefault();
561
+ return;
562
+ }
563
 
564
+ if ($('tbody th.check-column input:checked').length == 0){
565
+ alert('<?php echo esc_js(__('Select one or more links to edit.', 'broken-link-checker')); ?>');
566
+ e.preventDefault();
567
+ };
568
+ });
569
  });
570
 
571
  </script>
includes/admin/table-printer.php CHANGED
@@ -82,6 +82,7 @@ class blcTablePrinter {
82
  //The select-all checkbox
83
  echo '<th scope="col" class="column-checkbox check-column" id="cb"><input type="checkbox" /></th>';
84
 
 
85
  foreach($layout as $column_id){
86
  $column = $this->columns[$column_id];
87
 
@@ -104,6 +105,7 @@ class blcTablePrinter {
104
 
105
  //Table body
106
  echo '<tbody id="the-list">';
 
107
  $rownum = 0;
108
  foreach ($this->current_filter['links'] as $link) {
109
  $rownum++;
@@ -162,22 +164,6 @@ class blcTablePrinter {
162
  */
163
  function setup_columns(){
164
  $this->columns = array(
165
- 'source' => array(
166
- 'heading' => __('Source', 'broken-link-checker'),
167
- 'class' => 'column-title',
168
- 'content' => array(&$this, 'column_source'),
169
- ),
170
-
171
- 'link-text' => array(
172
- 'heading' => __('Link Text', 'broken-link-checker'),
173
- 'content' => array(&$this, 'column_link_text'),
174
- ),
175
-
176
- 'url' => array(
177
- 'heading' => __('URL', 'broken-link-checker'),
178
- 'content' => array(&$this, 'column_url'),
179
- ),
180
-
181
  'status' => array(
182
  'heading' => __('Status', 'broken-link-checker'),
183
  'content' => array(&$this, 'column_status'),
@@ -244,6 +230,7 @@ class blcTablePrinter {
244
  //so we can do it once and reuse the generated HTML.
245
  $bulk_actions = array(
246
  '-1' => __('Bulk Actions', 'broken-link-checker'),
 
247
  "bulk-recheck" => __('Recheck', 'broken-link-checker'),
248
  "bulk-deredirect" => __('Fix redirects', 'broken-link-checker'),
249
  "bulk-not-broken" => __('Mark as not broken', 'broken-link-checker'),
@@ -255,6 +242,11 @@ class blcTablePrinter {
255
  $bulk_actions["bulk-delete-sources"] = __('Delete sources', 'broken-link-checker');
256
  }
257
 
 
 
 
 
 
258
  $bulk_actions_html = '';
259
  foreach($bulk_actions as $value => $name){
260
  $bulk_actions_html .= sprintf('<option value="%s">%s</option>', $value, $name);
@@ -288,6 +280,51 @@ class blcTablePrinter {
288
  }
289
  }
290
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
291
  /**
292
  * Print the link row.
293
  *
@@ -486,72 +523,6 @@ class blcTablePrinter {
486
  <?php
487
  }
488
 
489
- function column_source(&$link, $instances){
490
- echo '<span class="blc-link-id" style="display:none;">',
491
- $link->link_id,
492
- '</span>';
493
-
494
- //Print the contents of the "Source" column
495
- if ( !empty($instances) ){
496
- $instance = reset($instances);
497
-
498
- echo $instance->ui_get_source();
499
-
500
- $actions = $instance->ui_get_action_links();
501
-
502
- echo '<div class="row-actions">';
503
- echo implode(' | </span>', $actions);
504
- echo '</div>';
505
-
506
- } else {
507
- _e("[An orphaned link! This is a bug.]", 'broken-link-checker');
508
- }
509
- }
510
-
511
- function column_url(&$link){
512
- ?>
513
- <a href="<?php print esc_attr($link->url); ?>" target='_blank' class='blc-link-url' title="<?php echo esc_attr($link->url); ?>">
514
- <?php print $link->url; ?></a>
515
- <input type='text' id='link-editor-<?php print $link->link_id; ?>'
516
- value="<?php print esc_attr($link->url); ?>"
517
- class='blc-link-editor' style='display:none' />
518
- <?php
519
- //Output inline action links for the link/URL
520
- $actions = array();
521
-
522
- $actions['details'] = "<span class='view'><a class='blc-details-button' href='javascript:void(0)' title='". esc_attr(__('Show more info about this link', 'broken-link-checker')) . "'>". __('Details', 'broken-link-checker') ."</a>";
523
-
524
- $actions['delete'] = "<span class='delete'><a class='submitdelete blc-unlink-button' title='" . esc_attr( __('Remove this link from all posts', 'broken-link-checker') ). "' ".
525
- "id='unlink-button-$rownum' href='javascript:void(0);'>" . __('Unlink', 'broken-link-checker') . "</a>";
526
-
527
- if ( $link->broken ){
528
- $actions['discard'] = sprintf(
529
- '<span><a href="#" title="%s" class="blc-discard-button">%s</a>',
530
- esc_attr(__('Remove this link from the list of broken links and mark it as valid', 'broken-link-checker')),
531
- __('Not broken', 'broken-link-checker')
532
- );
533
- }
534
-
535
- $actions['edit'] = "<span class='edit'><a href='javascript:void(0)' class='blc-edit-button' title='" . esc_attr( __('Edit link URL' , 'broken-link-checker') ) . "'>". __('Edit URL' , 'broken-link-checker') ."</a>";
536
-
537
- echo '<div class="row-actions">';
538
- echo implode(' | </span>', $actions);
539
-
540
- echo "<span style='display:none' class='blc-cancel-button-container'> " .
541
- "| <a href='javascript:void(0)' class='blc-cancel-button' title='". esc_attr(__('Cancel URL editing' , 'broken-link-checker')) ."'>". __('Cancel' , 'broken-link-checker') ."</a></span>";
542
-
543
- echo '</div>';
544
- }
545
-
546
- function column_link_text(&$link, $instances){
547
- if ( empty($instances) ){
548
- echo '<em>N/A</em>';
549
- } else {
550
- $instance = reset($instances);
551
- echo $instance->ui_get_link_text();
552
- }
553
- }
554
-
555
  function column_status(&$link, $instances){
556
  printf(
557
  '<table class="mini-status" title="%s">',
82
  //The select-all checkbox
83
  echo '<th scope="col" class="column-checkbox check-column" id="cb"><input type="checkbox" /></th>';
84
 
85
+ //Column headers
86
  foreach($layout as $column_id){
87
  $column = $this->columns[$column_id];
88
 
105
 
106
  //Table body
107
  echo '<tbody id="the-list">';
108
+ $this->bulk_edit_form($visible_columns);
109
  $rownum = 0;
110
  foreach ($this->current_filter['links'] as $link) {
111
  $rownum++;
164
  */
165
  function setup_columns(){
166
  $this->columns = array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  'status' => array(
168
  'heading' => __('Status', 'broken-link-checker'),
169
  'content' => array(&$this, 'column_status'),
230
  //so we can do it once and reuse the generated HTML.
231
  $bulk_actions = array(
232
  '-1' => __('Bulk Actions', 'broken-link-checker'),
233
+ "bulk-edit" => __('Edit URL', 'broken-link-checker'),
234
  "bulk-recheck" => __('Recheck', 'broken-link-checker'),
235
  "bulk-deredirect" => __('Fix redirects', 'broken-link-checker'),
236
  "bulk-not-broken" => __('Mark as not broken', 'broken-link-checker'),
242
  $bulk_actions["bulk-delete-sources"] = __('Delete sources', 'broken-link-checker');
243
  }
244
 
245
+ //Bulk editing is only available in the Pro version
246
+ if ( !defined('BLC_PRO_VERSION') || !BLC_PRO_VERSION ){
247
+ unset($bulk_actions['bulk-edit']);
248
+ }
249
+
250
  $bulk_actions_html = '';
251
  foreach($bulk_actions as $value => $name){
252
  $bulk_actions_html .= sprintf('<option value="%s">%s</option>', $value, $name);
280
  }
281
  }
282
 
283
+ /**
284
+ * Print the bulk edit form.
285
+ *
286
+ * @param array $visible_columns List of visible columns.
287
+ * @return void
288
+ */
289
+ function bulk_edit_form($visible_columns){
290
+ ?>
291
+ <tr id="bulk-edit" class="inline-edit-rows"><td colspan="<?php echo count($visible_columns)+1; ?>">
292
+ <div id="bulk-edit-wrap">
293
+ <fieldset>
294
+ <h4><?php _e('Bulk Edit URLs'); ?></h4>
295
+ <label>
296
+ <span class="title"><?php _e('Find', 'broken-link-checker'); ?></span>
297
+ <input type="text" name="search" class="text">
298
+ </label>
299
+ <label>
300
+ <span class="title"><?php _e('Replace with', 'broken-link-checker'); ?></span>
301
+ <input type="text" name="replace" class="text">
302
+ </label>
303
+
304
+ <div id="bulk-edit-options">
305
+ <span class="title">&nbsp;</span>
306
+ <label>
307
+ <input type="checkbox" name="case_sensitive">
308
+ <?php _e('Case sensitive', 'broken-link-checker'); ?>
309
+ </label>
310
+ <label>
311
+ <input type="checkbox" name="regex">
312
+ <?php _e('Regular expression', 'broken-link-checker'); ?>
313
+ </label>
314
+ </div>
315
+ </fieldset>
316
+
317
+ <p class="submit inline-edit-save">
318
+ <a href="#bulk-edit" class="button-secondary cancel alignleft" title="<?php echo esc_attr(__('Cancel', 'broken-link-checker')); ?>" accesskey="c"><?php _e('Cancel', 'broken-link-checker'); ?></a>
319
+ <input type="submit" name="bulk_edit" class="button-primary alignright" value="<?php
320
+ _e('Update', 'broken-link-checker');
321
+ ?>" accesskey="s">
322
+ </p>
323
+ </div>
324
+ </td></tr>
325
+ <?php
326
+ }
327
+
328
  /**
329
  * Print the link row.
330
  *
523
  <?php
524
  }
525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
  function column_status(&$link, $instances){
527
  printf(
528
  '<table class="mini-status" title="%s">',
includes/link-query.php CHANGED
@@ -758,7 +758,7 @@ class blcLinkQuery {
758
  */
759
  function blc_get_links($params = null){
760
  $instance = & blcLinkQuery::getInstance();
761
- return $instance->get_links($params, $purpose);
762
  }
763
 
764
  ?>
758
  */
759
  function blc_get_links($params = null){
760
  $instance = & blcLinkQuery::getInstance();
761
+ return $instance->get_links($params);
762
  }
763
 
764
  ?>
includes/links.php CHANGED
@@ -251,7 +251,7 @@ class blcLink {
251
  );
252
 
253
 
254
- $checker = & blcCheckerHelper::get_checker_for($this->url);
255
 
256
  if ( is_null($checker) ){
257
  //Oops, there are no checker implementations that can handle this link.
@@ -268,7 +268,7 @@ class blcLink {
268
  }
269
 
270
  //Check the link
271
- $rez = $checker->check($this->url);
272
  //FB::info($rez, "Check results");
273
 
274
  //Filter the returned array to leave only the restricted set of keys that we're interested in.
@@ -882,6 +882,14 @@ class blcLink {
882
  return compact('text', 'code');
883
  }
884
 
 
 
 
 
 
 
 
 
885
  }
886
 
887
  } //class_exists
251
  );
252
 
253
 
254
+ $checker = & blcCheckerHelper::get_checker_for($this->get_ascii_url());
255
 
256
  if ( is_null($checker) ){
257
  //Oops, there are no checker implementations that can handle this link.
268
  }
269
 
270
  //Check the link
271
+ $rez = $checker->check($this->get_ascii_url());
272
  //FB::info($rez, "Check results");
273
 
274
  //Filter the returned array to leave only the restricted set of keys that we're interested in.
882
  return compact('text', 'code');
883
  }
884
 
885
+ /**
886
+ * Get the link URL in ASCII-compatible encoding.
887
+ *
888
+ * @return string
889
+ */
890
+ function get_ascii_url(){
891
+ return blcUtility::idn_to_ascii($this->url);
892
+ }
893
  }
894
 
895
  } //class_exists
includes/module-manager.php CHANGED
@@ -101,7 +101,7 @@ class blcModuleManager {
101
  *
102
  *
103
  * @param string $category Category id, e.g. "parser" or "container". Optional.
104
- * @param bool $markup Apply markup to module headers. Defaults to false.
105
  * @param bool $translate Translate module headers. Defaults to false.
106
  * @return array An array of categories or module data.
107
  */
@@ -115,17 +115,12 @@ class blcModuleManager {
115
 
116
  //Translate/apply markup to module headers
117
  $processed = array();
118
- $blc_plugin_file = blc_get_plugin_file();
119
-
120
  foreach($this->_category_cache as $category_id => $modules){
121
  $processed[$category_id] = array();
122
  foreach($modules as $module_id => $module_data){
123
- $module_data = _get_plugin_data_markup_translate(
124
- $blc_plugin_file, //Modules use the same .mo file as BLC itself
125
- $module_data,
126
- $markup,
127
- $translate
128
- );
129
  $processed[$category_id][$module_id] = $module_data;
130
  }
131
  }
@@ -139,14 +134,10 @@ class blcModuleManager {
139
  if ( $markup || $translate ){
140
  //Translate/apply markup to module headers
141
  $processed = array();
142
- $blc_plugin_file = blc_get_plugin_file();
143
  foreach($this->_category_cache[$category] as $module_id => $module_data){
144
- $module_data = _get_plugin_data_markup_translate(
145
- $blc_plugin_file, //Modules use the same .mo file as BLC itself
146
- $module_data,
147
- $markup,
148
- $translate
149
- );
150
  $processed[$module_id] = $module_data;
151
  }
152
  return $processed;
101
  *
102
  *
103
  * @param string $category Category id, e.g. "parser" or "container". Optional.
104
+ * @param bool $markup Apply markup to module headers. Not implemented.
105
  * @param bool $translate Translate module headers. Defaults to false.
106
  * @return array An array of categories or module data.
107
  */
115
 
116
  //Translate/apply markup to module headers
117
  $processed = array();
 
 
118
  foreach($this->_category_cache as $category_id => $modules){
119
  $processed[$category_id] = array();
120
  foreach($modules as $module_id => $module_data){
121
+ if ( $translate ){
122
+ $module_data['Name'] = _x($module_data['Name'], 'module name', 'broken-link-checker');
123
+ }
 
 
 
124
  $processed[$category_id][$module_id] = $module_data;
125
  }
126
  }
134
  if ( $markup || $translate ){
135
  //Translate/apply markup to module headers
136
  $processed = array();
 
137
  foreach($this->_category_cache[$category] as $module_id => $module_data){
138
+ if ( $translate ){
139
+ $module_data['Name'] = _x($module_data['Name'], 'module name', 'broken-link-checker');
140
+ }
 
 
 
141
  $processed[$module_id] = $module_data;
142
  }
143
  return $processed;
includes/utility-class.php CHANGED
@@ -18,6 +18,16 @@ if ( !function_exists('sys_get_temp_dir')) {
18
  }
19
  }
20
 
 
 
 
 
 
 
 
 
 
 
21
  if ( !class_exists('blcUtility') ){
22
 
23
  class blcUtility {
@@ -370,6 +380,56 @@ class blcUtility {
370
  return $load;
371
  }
372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
373
  }//class
374
 
375
  }//class_exists
18
  }
19
  }
20
 
21
+ //Include the internationalized domain name converter (requires PHP 5)
22
+ if ( defined('BLC_PRO_VERSION') && version_compare(phpversion(), '5.0.0', '>=') && !class_exists('idna_convert') ){
23
+ $blc_directory = dirname(blc_get_plugin_file());
24
+ include $blc_directory . '/idn/idna_convert.class.php';
25
+ if ( !function_exists('encode_utf8') ){
26
+ include $blc_directory . '/idn/transcode_wrapper.php';
27
+ }
28
+ }
29
+
30
+
31
  if ( !class_exists('blcUtility') ){
32
 
33
  class blcUtility {
380
  return $load;
381
  }
382
 
383
+ /**
384
+ * Convert an internationalized domain name or URL to ASCII-compatible encoding.
385
+ *
386
+ * @param string $url Either a domain name or a complete URL.
387
+ * @param string $charset The character encoding of the $url parameter. Defaults to the encoding set in Settings -> Reading.
388
+ * @return string
389
+ */
390
+ function idn_to_ascii($url, $charset = ''){
391
+ $idn = blcUtility::get_idna_converter();
392
+ if ( $idn != null ){
393
+ if ( empty($charset) ){
394
+ $charset = get_bloginfo('charset');
395
+ }
396
+ if ( (strtoupper($charset) != 'UTF-8') && (strtoupper($charset) != 'UTF8') ){
397
+ $url = encode_utf8($url, $charset, true);
398
+ }
399
+ $url = $idn->encode($url);
400
+ }
401
+
402
+ return $url;
403
+ }
404
+
405
+ /**
406
+ * Convert an internationalized domain name (or URL) from ASCII-compatible encoding to UTF8.
407
+ *
408
+ * @param string $url
409
+ * @return string
410
+ */
411
+ function idn_to_utf8($url){
412
+ $idn = blcUtility::get_idna_converter();
413
+ if ( $idn != null ){
414
+ $url = $idn->decode($url);
415
+ }
416
+
417
+ return $url;
418
+ }
419
+
420
+ /**
421
+ * Get an instance of idna_converter
422
+ *
423
+ * @return object Either an instance of idna_converter, or NULL if the converter class is not available
424
+ */
425
+ function get_idna_converter(){
426
+ static $idn = null;
427
+ if ( ($idn == null) && class_exists('idna_convert') ){
428
+ $idn = new idna_convert();
429
+ }
430
+ return $idn;
431
+ }
432
+
433
  }//class
434
 
435
  }//class_exists
languages/broken-link-checker-de_DE.mo CHANGED
Binary file
languages/broken-link-checker-de_DE.po CHANGED
@@ -1,694 +1,1836 @@
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
- #
6
  msgid ""
7
  msgstr ""
8
- "Project-Id-Version: broken-link-checker\n"
9
- "Report-Msgid-Bugs-To: whiteshadow@w-shadow.com\n"
10
- "POT-Creation-Date: 2009-11-04 13:02+0000\n"
11
- "PO-Revision-Date: 2009-11-04 19:13+0200\n"
12
- "Last-Translator: Alex <afrison@web.de>\n"
13
- "Language-Team: GERMAN <LL@li.org>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-Language: German\n"
19
- "X-Poedit-Country: GERMANY\n"
20
-
21
- #: core.php:132
22
- #: core.php:1284
 
 
 
 
 
 
23
  msgid "Loading..."
24
- msgstr "Wird geladen..."
25
 
26
- #: core.php:155
27
- #: core.php:569
 
28
  msgid "[ Network error ]"
29
  msgstr "[ Netzwerk Fehler ]"
30
 
31
- #: core.php:180
 
32
  msgid "Automatically expand the widget if broken links have been detected"
33
  msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
34
 
35
- #: core.php:359
36
- #: core.php:368
37
- #: core.php:386
38
- #: core.php:400
39
- #: core.php:907
40
- #, php-format
41
- msgid "Database error : %s"
42
- msgstr "Datenbank Fehler : %s"
43
-
44
- #: core.php:423
45
  msgid "Link Checker Settings"
46
  msgstr "Link Checker Einstellungen"
47
 
48
- #: core.php:424
 
49
  msgid "Link Checker"
50
  msgstr "Link Checker"
51
 
52
- #: core.php:435
53
- msgid "View Broken Links"
54
- msgstr "Fehlerhafte Links anschauen"
55
-
56
- #: core.php:436
57
- #: core.php:833
58
  msgid "Broken Links"
59
  msgstr "Fehlerhafte Links"
60
 
61
- #: core.php:453
 
 
 
 
 
 
62
  msgid "Settings"
63
  msgstr "Einstellungen"
64
 
65
- #: core.php:533
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  msgid "Broken Link Checker Options"
67
  msgstr "Broken Link Checker Optionen"
68
 
69
- #: core.php:546
 
 
70
  msgid "Status"
71
  msgstr "Status"
72
 
73
- #: core.php:548
74
- #: core.php:771
 
75
  msgid "Show debug info"
76
  msgstr "Debug Infos anzeigen"
77
 
78
- #: core.php:582
79
- msgid "Re-check all pages"
80
- msgstr "Check alle Seiten noch einmal"
81
-
82
- #: core.php:606
83
  msgid "Check each link"
84
- msgstr "Checke jeden Link"
85
 
86
- #: core.php:611
 
87
  #, php-format
88
  msgid "Every %s hours"
89
- msgstr "Jede %s Stunde"
90
 
91
- #: core.php:620
 
92
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
93
- msgstr "Vorhandene Links werden so of kontrolliert. Neue Links werden so schnell wie möglich gecheckt."
94
-
95
- #: core.php:627
96
- msgid "Broken link CSS"
97
- msgstr "Broken link CSS"
98
-
99
- #: core.php:632
100
- msgid "Apply <em>class=\"broken_link\"</em> to broken links"
101
- msgstr "<em>class=\"broken_link\"</em> auf fehlerhafte Links anwenden"
102
-
103
- #: core.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  msgid "Exclusion list"
105
- msgstr "Auschlussliste"
106
 
107
- #: core.php:645
 
108
  msgid "Don't check links where the URL contains any of these words (one per line) :"
109
- msgstr "URLs, die folgende Wörter beinhalten (ein Wort pro Zeile) nicht checken:"
110
-
111
- #: core.php:655
112
- msgid "Custom fields"
113
- msgstr "Benutzerdefinierte Felder"
114
 
115
- #: core.php:656
116
- msgid "Check URLs entered in these custom fields (one per line) :"
117
- msgstr "Check URLs, die in diesen benutzerdefinierten Feldern eingetragen sind (Eine Angabe pro Zeile):"
118
-
119
- #: core.php:667
120
- msgid "Advanced"
121
- msgstr "Erweitert"
122
 
123
- #: core.php:673
 
 
124
  msgid "Timeout"
125
- msgstr "Timeout"
126
 
127
- #: core.php:679
128
- #: core.php:735
 
 
 
129
  #, php-format
130
  msgid "%s seconds"
131
  msgstr "%s Sekunden"
132
 
133
- #: core.php:688
 
134
  msgid "Links that take longer than this to load will be marked as broken."
135
  msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
136
 
137
- #: core.php:697
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  msgid "Custom temporary directory"
139
- msgstr "Temporäres Benutzer Verzeichnis"
140
 
141
- #: core.php:706
142
- #: core.php:2047
143
- #: core.php:2088
144
  msgid "OK"
145
  msgstr "OK"
146
 
147
- #: core.php:709
 
148
  msgid "Error : This directory isn't writable by PHP."
149
  msgstr "Fehler: Dieses Verzeichnis ist nicht beschreibbar durch PHP."
150
 
151
- #: core.php:714
 
152
  msgid "Error : This directory doesn't exist."
153
  msgstr "Fehler: Dieses Verzeichnis existiert nicht."
154
 
155
- #: core.php:722
 
156
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
157
- msgstr "Verzeichnis in das Feld eingeben wenn das Plugin ein benutzerdefiniertes Verzeichnis für die Lock-Dateien verwenden soll. Ansonsten nichts eintragen."
158
 
159
- #: core.php:729
160
- msgid "Max. execution time"
161
- msgstr "Max. Ausführungszeit"
 
162
 
163
- #: core.php:746
164
- msgid "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."
165
- msgstr "Das Plugin arbeitet in regelmäßigen Abständen im Hintergrund, die deine Beiträge auf Links analysiert, prüft die entdeckten URLs, und führt andere zeitaufwendige Aufgaben aus. Hier können Sie einstellen, für wie lange höchstens die Instanzen laufen sollen bevor sie gestoppt wird."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
 
167
- #: core.php:756
 
 
 
 
 
 
168
  msgid "Save Changes"
169
  msgstr "Änderungen speichern"
170
 
171
- #: core.php:769
172
- msgid "Hide debug info"
173
- msgstr "Debug Info verbergen"
174
-
175
- #: core.php:832
176
- msgid "Broken"
177
- msgstr "Fehlerhaft"
178
-
179
- #: core.php:834
180
- msgid "No broken links found"
181
- msgstr "Keine fehlerhaften Links gefunden"
182
-
183
- #: core.php:838
184
- msgid "Redirects"
185
- msgstr "Umleitungen"
186
-
187
- #: core.php:839
188
- msgid "Redirected Links"
189
- msgstr "Umgeleitete Links"
190
-
191
- #: core.php:840
192
- msgid "No redirects found"
193
- msgstr "Keine umgeleiteten Links gefunden"
194
-
195
- #: core.php:845
196
- msgid "All"
197
- msgstr "Alle"
198
 
199
- #: core.php:846
200
- msgid "Detected Links"
201
- msgstr "Gefundene Links"
202
-
203
- #: core.php:847
204
- msgid "No links found (yet)"
205
- msgstr "(Noch) keine Links gefunden"
206
-
207
- #: core.php:966
208
- msgid "&laquo;"
209
- msgstr "&laquo;"
210
 
211
- #: core.php:967
212
- msgid "&raquo;"
213
- msgstr "&raquo;"
 
214
 
215
- #: core.php:974
216
- #: core.php:1149
 
 
217
  #, php-format
218
- msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
219
- msgstr "Anzeigen %s&#8211;%s von <span class=\"current-link-count\">%s</span>"
220
-
221
- #: core.php:996
222
- msgid "Source"
223
- msgstr "Quelle"
224
 
225
- #: core.php:998
226
- msgid "Link Text"
227
- msgstr "Link Text"
 
228
 
229
- #: core.php:999
230
- msgid "URL"
231
- msgstr "URL"
 
232
 
233
- #: core.php:1025
234
- #: core.php:1031
235
- msgid "Edit this post"
236
- msgstr "Bearbeite diesen Beitrag"
 
237
 
238
- #: core.php:1031
239
- #: core.php:1046
240
- msgid "Edit"
241
- msgstr "Bearbeiten"
242
 
243
- #: core.php:1032
244
- msgid "Delete this post"
245
- msgstr "Beitrag löschen"
 
246
 
247
- #: core.php:1032
 
248
  #, php-format
249
- msgid ""
250
- "You are about to delete this post '%s'\n"
251
- " 'Cancel' to stop, 'OK' to delete."
252
- msgstr ""
253
- "Willst du diesen Beitrag löschen '%s'\n"
254
- " 'Abbrechenl' um abzubrechen, 'OK' um zu löschen."
255
-
256
- #: core.php:1032
257
- #: core.php:1047
258
- msgid "Delete"
259
- msgstr "Löschen"
260
 
261
- #: core.php:1034
 
262
  #, php-format
263
- msgid "View \"%s\""
264
- msgstr "\"%s\" ansehen"
265
-
266
- #: core.php:1034
267
- msgid "View"
268
- msgstr "Ansehen"
269
-
270
- #: core.php:1041
271
- #: core.php:1046
272
- msgid "Edit this bookmark"
273
- msgstr "Bookmark bearbeiten"
274
-
275
- #: core.php:1047
276
  #, php-format
277
- msgid ""
278
- "You are about to delete this link '%s'\n"
279
- " 'Cancel' to stop, 'OK' to delete."
280
- msgstr ""
281
- "Willst du diesen Link löschen '%s'\n"
282
- " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
283
-
284
- #: core.php:1056
285
- msgid "[An orphaned link! This is a bug.]"
286
- msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
287
-
288
- #: core.php:1070
289
- msgid "Image"
290
- msgstr "Bild"
291
-
292
- #: core.php:1081
293
- msgid "Custom field"
294
- msgstr "Benutzerdefiniertes Feld"
295
-
296
- #: core.php:1089
297
- msgid "Bookmark"
298
- msgstr "Bookmark"
299
-
300
- #: core.php:1104
301
- msgid "Show more info about this link"
302
- msgstr "Mehr Infos über diesen Link anzeigen"
303
-
304
- #: core.php:1104
305
- #: core.php:2381
306
- msgid "Details"
307
- msgstr "Details"
308
-
309
- #: core.php:1106
310
- msgid "Remove this link from all posts"
311
- msgstr "Lösche diesen Link von allen Beiträgen"
312
-
313
- #: core.php:1107
314
- #: core.php:1371
315
- msgid "Unlink"
316
- msgstr "Unlink"
317
-
318
- #: core.php:1110
319
- #: core.php:1401
320
- #: core.php:1412
321
- msgid "Excluded"
322
- msgstr "Ausgeschlossen"
323
-
324
- #: core.php:1112
325
- msgid "Add this URL to the exclusion list"
326
- msgstr "Füge diese URL zur Auschlussliste"
327
-
328
- #: core.php:1113
329
- #: core.php:1415
330
- msgid "Exclude"
331
- msgstr "Ausschliessen"
332
-
333
- #: core.php:1116
334
- msgid "Edit link URL"
335
- msgstr "Bearbeite URL Link"
336
-
337
- #: core.php:1116
338
- #: core.php:1340
339
- msgid "Edit URL"
340
- msgstr "Bearbeite URL"
341
-
342
- #: core.php:1122
343
- msgid "Cancel URL editing"
344
- msgstr "URL Bearbeitung abbrechen"
345
-
346
- #: core.php:1122
347
- msgid "Cancel"
348
- msgstr "Abbrechen"
349
-
350
- #: core.php:1133
351
- msgid "Remove this link from the list of broken links and mark it as valid"
352
- msgstr "Lösche diesen Link von der Fehlerhaften Linkliste und markiere es als "
353
 
354
- #: core.php:1135
355
- #: core.php:1204
356
- msgid "Discard"
357
- msgstr "Verwerfen"
358
-
359
- #: core.php:1180
360
- #: core.php:1347
361
- #: core.php:1384
362
- msgid "Wait..."
363
- msgstr "Warte..."
364
-
365
- #: core.php:1238
366
- msgid "Save URL"
367
- msgstr "URL speichern"
368
-
369
- #: core.php:1248
370
- msgid "Saving changes..."
371
- msgstr "Änderungen werden gespeichert..."
372
-
373
- #: core.php:1437
374
- msgid "Log"
375
- msgstr "Log"
376
-
377
- #: core.php:1445
378
- msgid "Post published on"
379
- msgstr "Beitrag publiziert am"
380
-
381
- #: core.php:1450
382
- msgid "Link last checked"
383
- msgstr "Link zuletzt gecheckt"
384
-
385
- #: core.php:1454
386
- msgid "Never"
387
- msgstr "Nie"
388
-
389
- #: core.php:1460
390
- msgid "HTTP code"
391
- msgstr "HTTP Code"
392
-
393
- #: core.php:1465
394
- msgid "Response time"
395
- msgstr "Reaktionszeit"
396
-
397
- #: core.php:1467
398
  #, php-format
399
- msgid "%2.3f seconds"
400
- msgstr "%2.3f Sekunden"
401
-
402
- #: core.php:1470
403
- msgid "Final URL"
404
- msgstr "Endgültige URL"
405
-
406
- #: core.php:1475
407
- msgid "Redirect count"
408
- msgstr "Weiterleitung Anzahl"
409
 
410
- #: core.php:1480
411
- msgid "Instance count"
412
- msgstr "Instanz Anzahl"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
 
414
- #: core.php:1489
 
415
  #, php-format
416
- msgid "This link has failed %d time."
417
- msgid_plural "This link has failed %d times."
418
- msgstr[0] "Dieser Link schlug %d mal fehl."
419
- msgstr[1] "Dieser Link schlug %d mal fehl."
420
 
421
- #: core.php:1879
422
- #: core.php:2206
423
- msgid "This link wasn't checked because a matching keyword was found on your exclusion list."
424
- msgstr "Dieser Link wurde nicht überprüft, da ein passendes Schlüsselwort auf Deiner Ausschlussliste gefunden wurde."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
 
426
- #: core.php:1921
 
427
  msgid "View broken links"
428
  msgstr "Fehlerhafte Links anschauen"
429
 
430
- #: core.php:1922
 
431
  #, php-format
432
  msgid "Found %d broken link"
433
  msgid_plural "Found %d broken links"
434
  msgstr[0] "%d fehlerhafte Links gefunden"
435
  msgstr[1] "%d fehlerhafte Links gefunden"
436
 
437
- #: core.php:1928
 
438
  msgid "No broken links found."
439
  msgstr "Keine fehlerhaften Links gefunden."
440
 
441
- #: core.php:1935
 
442
  #, php-format
443
  msgid "%d URL in the work queue"
444
  msgid_plural "%d URLs in the work queue"
445
  msgstr[0] "%d URL in der Warteschlange"
446
  msgstr[1] "%d URLs in der Warteschlange"
447
 
448
- #: core.php:1938
 
449
  msgid "No URLs in the work queue."
450
- msgstr "Keine URLs in der Warteschlange"
451
 
452
- #: core.php:1944
 
453
  #, php-format
454
  msgid "Detected %d unique URL"
455
  msgid_plural "Detected %d unique URLs"
456
- msgstr[0] "%d einzigartige URL gefunden"
457
- msgstr[1] "%d einzigartige URLs gefunden"
458
 
459
- #: core.php:1945
 
460
  #, php-format
461
  msgid "in %d link"
462
  msgid_plural "in %d links"
463
  msgstr[0] "in %d Link"
464
  msgstr[1] "in %d Links"
465
 
466
- #: core.php:1950
 
467
  msgid "and still searching..."
468
  msgstr "und sucht immer noch..."
469
 
470
- #: core.php:1956
 
471
  msgid "Searching your blog for links..."
472
- msgstr "Durchsucht Dein Blog nach Links..."
473
 
474
- #: core.php:1958
 
475
  msgid "No links detected."
476
  msgstr "Keine Links gefunden."
477
 
478
- #: core.php:2027
479
- #: core.php:2059
480
- #: core.php:2102
481
- #: core.php:2183
482
- msgid "You're not allowed to do that!"
483
- msgstr "Du hast nicht die Erlaubnis das zu tun!"
484
 
485
- #: core.php:2035
486
- #: core.php:2069
487
- #: core.php:2112
488
- #: core.php:2193
489
  #, php-format
490
  msgid "Oops, I can't find the link %d"
491
  msgstr "Hossa, Ich kann den link %d nicht finden"
492
 
493
- #: core.php:2043
494
- msgid "This link was manually marked as working by the user."
495
- msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
496
-
497
- #: core.php:2049
498
  msgid "Oops, couldn't modify the link!"
499
  msgstr "Mistverdammter, konnte den Link nicht modifizieren!"
500
 
501
- #: core.php:2052
502
- #: core.php:2129
 
503
  msgid "Error : link_id not specified"
504
  msgstr "Fehler: link_id nicht spezifiziert"
505
 
506
- #: core.php:2076
 
507
  msgid "Oops, the new URL is invalid!"
508
  msgstr "Ohoh, die neue URL funktioniert nicht!"
509
 
510
- #: core.php:2085
 
 
511
  msgid "An unexpected error occured!"
512
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
513
 
514
- #: core.php:2094
 
515
  msgid "Error : link_id or new_url not specified"
516
  msgstr "Fehler: link_id oder new_url sind nicht spezifiziert"
517
 
518
- #: core.php:2119
519
- #, php-format
520
- msgid "URL %s was removed."
521
- msgstr "URL %s wurde entfernt."
522
-
523
- #: core.php:2123
524
- msgid "The plugin failed to remove the link."
525
- msgstr "Das Plugin konnte den Link nicht entfernen."
526
-
527
- #: core.php:2138
528
  msgid "You don't have sufficient privileges to access this information!"
529
- msgstr "Du hast nicht genug Rechte um diese Information zu sehen!"
530
 
531
- #: core.php:2151
 
532
  msgid "Error : link ID not specified"
533
  msgstr "Fehler: Link ID nicht spezifiziert"
534
 
535
- #: core.php:2175
 
536
  #, php-format
537
  msgid "Failed to load link details (%s)"
538
  msgstr "Laden der Link Details (%s) schlug fehl"
539
 
540
- #: core.php:2213
541
- #, php-format
542
- msgid "URL %s added to the exclusion list"
543
- msgstr "URL %s zur Ausschlussliste hinzugefügt"
544
-
545
- #: core.php:2217
546
- msgid "Link ID not specified"
547
- msgstr "Link ID nicht spezifiziert"
548
 
549
- #: core.php:2367
 
550
  #, php-format
551
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
552
- msgstr "Das aktuelle temporäre Verzeichnis ist nicht erreichbar; Bitte <a href=\"%s\">setze ein anderes Verzeichnis</a>."
553
 
554
- #: core.php:2372
 
555
  #, php-format
556
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
557
  msgstr "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
558
 
559
- #: core.php:2379
 
560
  msgid "Broken Link Checker can't create a lockfile."
561
  msgstr "Broken Link Checker kann keine Lock-Dateien erstellen."
562
 
563
- #: core.php:2384
 
564
  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."
565
- msgstr "Das Plugin verwendet ein Datei-Locking-Mechanismus, um sicherzustellen, dass nur eine Instanz der resource-Link Algorythmus Prüfung läuft zu einem bestimmten Zeitpunkt. Leider, BLC kann kein schreibbares Verzeichnis finden finden, in dem es die Lock-Datei speichern könnte - es konnte nicht den Standort des temporären Verzeichnisses Ihres Servers finden, und das eigenen Verzeichnis des Plugins ist nicht schreibbar mit PHP. Um dieses Problem zu beheben, ändern Sie das Plugin-Verzeichnis auf beschreibbar oder geben Sie eine benutzerdefiniertes temporäres Verzeichnis in den Einstellungen des Plugins ein."
566
 
567
- #: core.php:2404
 
568
  msgid "PHP version"
569
  msgstr "PHP Version"
570
 
571
- #: core.php:2410
 
572
  msgid "MySQL version"
573
  msgstr "MySQL Version"
574
 
575
- #: core.php:2423
 
576
  msgid "You have an old version of CURL. Redirect detection may not work properly."
577
  msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
578
 
579
- #: core.php:2435
580
- #: core.php:2451
581
- #: core.php:2456
 
582
  msgid "Not installed"
583
  msgstr "Nicht installiert"
584
 
585
- #: core.php:2438
 
586
  msgid "CURL version"
587
  msgstr "CURL Version"
588
 
589
- #: core.php:2444
 
590
  msgid "Installed"
591
  msgstr "Installiert"
592
 
593
- #: core.php:2457
 
594
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
595
  msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
596
 
597
- #: core.php:2468
 
598
  msgid "On"
599
  msgstr "An"
600
 
601
- #: core.php:2469
 
602
  msgid "Redirects may be detected as broken links when safe_mode is on."
603
- msgstr "Umleitung werden eventuell als fehlerhafte Links erkannt, fall safe_mode aktiviert ist."
604
 
605
- #: core.php:2474
606
- #: core.php:2488
 
607
  msgid "Off"
608
  msgstr "Aus"
609
 
610
- #: core.php:2482
 
611
  #, php-format
612
  msgid "On ( %s )"
613
- msgstr "An ( %s )"
614
 
615
- #: core.php:2483
 
616
  msgid "Redirects may be detected as broken links when open_basedir is on."
617
- msgstr "Umleitung werden eventuell als fehlerhafte Links erkannt, fall open_basedir aktiviert ist."
618
 
619
- #: core.php:2502
 
620
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
621
  msgstr "Lock-Datei kann nicht erstellt werden. Bitte bestimmen Sie ein benutzerdefiniertes temporäres Verzeichnis."
622
 
623
- #: link-classes.php:212
 
 
 
 
 
 
624
  #, php-format
625
- msgid "First try : %d"
626
- msgstr "Erster Versuch : %d"
627
 
628
- #: link-classes.php:214
629
- msgid "First try : 0 (No response)"
630
- msgstr "Erster Versuch: 0 (Keine Antwort)"
 
 
 
 
631
 
632
- #: link-classes.php:222
633
- msgid "Trying a second time with different settings..."
634
- msgstr "Versuche ein zweites Mal mit anderen Einstellungen..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
 
636
- #: link-classes.php:237
 
637
  #, php-format
638
- msgid "Second try : %d"
639
- msgstr "Zweiter Versuch : %d"
640
 
641
- #: link-classes.php:239
642
- msgid "Second try : 0 (No response)"
643
- msgstr "Zweiter Versuch : 0 (Keine Antwort)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
 
645
- #: link-classes.php:265
646
- msgid "Using Snoopy"
647
- msgstr "Benutzt Snoopy"
 
 
648
 
649
- #: link-classes.php:285
650
- msgid "Request timed out."
651
- msgstr "Erfordert Zeitlimit."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
 
653
- #: link-classes.php:304
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  msgid "Link is valid."
655
  msgstr "Link ist valide."
656
 
657
- #: link-classes.php:309
 
658
  msgid "Link is broken."
659
  msgstr "Link ist fehlerhaft."
660
 
661
- #: link-classes.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
  msgid "Most likely the connection timed out or the domain doesn't exist."
663
- msgstr "Vermutlich hat die Verbindung time out oder die Domain existiert nicht."
664
 
665
- #: link-classes.php:354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
  #, php-format
667
- msgid "Error adding link %s : %s"
668
- msgstr "Fehler beim link hinzufügen %s : %s"
 
 
 
 
669
 
670
- #: link-classes.php:374
 
671
  #, php-format
672
- msgid "Error updating link %d : %s"
673
- msgstr "Fehler beim link bearbeiten %d : %s"
674
 
675
- #. Plugin Name of an extension
676
- msgid "Broken Link Checker"
677
- msgstr "Broken Link Checker"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
678
 
679
- #. Plugin URI of an extension
680
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
681
  msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
682
 
683
- #. Description of an extension
684
- msgid "Checks your posts for broken links and missing images and notifies you on the dashboard if any are found."
685
- msgstr "Überprüft Ihre Beiträge auf tote Links und fehlende Bilder und informiert Sie auf dem Dashboard, ob welche gefunden wurden."
686
 
687
- #. Author of an extension
688
  msgid "Janis Elsts"
689
  msgstr "Janis Elsts"
690
 
691
- #. Author URI of an extension
692
  msgid "http://w-shadow.com/blog/"
693
  msgstr "http://w-shadow.com/blog/"
694
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker | V0.9.7\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2010-09-18 11:05+0000\n"
6
+ "PO-Revision-Date: 2010-09-28 17:20+0100\n"
7
+ "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
+ "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
  "X-Poedit-Language: German\n"
14
+ "X-Poedit-Country: SWITZERLAND\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ # @ broken-link-checker
22
+ #: core/core.php:152
23
+ #: includes/admin/links-page-js.php:37
24
  msgid "Loading..."
25
+ msgstr "Wird geladen ..."
26
 
27
+ # @ broken-link-checker
28
+ #: core/core.php:176
29
+ #: includes/admin/options-page-js.php:18
30
  msgid "[ Network error ]"
31
  msgstr "[ Netzwerk Fehler ]"
32
 
33
+ # @ broken-link-checker
34
+ #: core/core.php:201
35
  msgid "Automatically expand the widget if broken links have been detected"
36
  msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
37
 
38
+ # @ broken-link-checker
39
+ #: core/core.php:342
 
 
 
 
 
 
 
 
40
  msgid "Link Checker Settings"
41
  msgstr "Link Checker Einstellungen"
42
 
43
+ # @ broken-link-checker
44
+ #: core/core.php:343
45
  msgid "Link Checker"
46
  msgstr "Link Checker"
47
 
48
+ # @ broken-link-checker
49
+ #: core/core.php:348
50
+ #: includes/link-query.php:26
 
 
 
51
  msgid "Broken Links"
52
  msgstr "Fehlerhafte Links"
53
 
54
+ # @ broken-link-checker
55
+ #: core/core.php:364
56
+ msgid "View Broken Links"
57
+ msgstr "Fehlerhafte Links anschauen"
58
+
59
+ # @ default
60
+ #: core/core.php:392
61
  msgid "Settings"
62
  msgstr "Einstellungen"
63
 
64
+ # @ broken-link-checker
65
+ #: core/core.php:404
66
+ #: core/core.php:1183
67
+ #, php-format
68
+ msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
69
+ msgstr "Error: Die Datenbanktabellen des Plugins sind nicht mehr aktuell! (Vorhandene Version: %d, neue Version: %d)"
70
+
71
+ # @ broken-link-checker
72
+ #: core/core.php:543
73
+ msgid "Settings saved."
74
+ msgstr "Einstellungen gespeichert."
75
+
76
+ # @ broken-link-checker
77
+ #: core/core.php:550
78
+ msgid "Complete site recheck started."
79
+ msgstr "Komplette Überprüfung der Webseite nocheinmal gestartet."
80
+
81
+ # @ broken-link-checker
82
+ #: core/core.php:564
83
+ #: core/core.php:2639
84
+ #: includes/admin/table-printer.php:522
85
+ msgid "Details"
86
+ msgstr "Details"
87
+
88
+ # @ broken-link-checker
89
+ #: core/core.php:578
90
+ msgid "General"
91
+ msgstr "Allgemein"
92
+
93
+ # @ broken-link-checker
94
+ #: core/core.php:579
95
+ msgid "Look For Links In"
96
+ msgstr "Suchen Sie nach Links in"
97
+
98
+ # @ broken-link-checker
99
+ #: core/core.php:580
100
+ msgid "Which Links To Check"
101
+ msgstr "Welche Links überprüfen"
102
+
103
+ # @ broken-link-checker
104
+ #: core/core.php:581
105
+ msgid "Protocols & APIs"
106
+ msgstr "Protokoll & Schnittstellen"
107
+
108
+ # @ broken-link-checker
109
+ #: core/core.php:582
110
+ msgid "Advanced"
111
+ msgstr "Erweitert"
112
+
113
+ # @ broken-link-checker
114
+ #: core/core.php:586
115
  msgid "Broken Link Checker Options"
116
  msgstr "Broken Link Checker Optionen"
117
 
118
+ # @ broken-link-checker
119
+ #: core/core.php:612
120
+ #: includes/admin/table-printer.php:182
121
  msgid "Status"
122
  msgstr "Status"
123
 
124
+ # @ broken-link-checker
125
+ #: core/core.php:614
126
+ #: includes/admin/options-page-js.php:56
127
  msgid "Show debug info"
128
  msgstr "Debug Infos anzeigen"
129
 
130
+ # @ broken-link-checker
131
+ #: core/core.php:642
 
 
 
132
  msgid "Check each link"
133
+ msgstr "Überprüfe jeden Link"
134
 
135
+ # @ broken-link-checker
136
+ #: core/core.php:647
137
  #, php-format
138
  msgid "Every %s hours"
139
+ msgstr "Alle %s Stunden"
140
 
141
+ # @ broken-link-checker
142
+ #: core/core.php:656
143
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
144
+ msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
145
+
146
+ # @ broken-link-checker
147
+ #: core/core.php:663
148
+ msgid "E-mail notifications"
149
+ msgstr "Email Benachrichtigungen"
150
+
151
+ # @ broken-link-checker
152
+ #: core/core.php:669
153
+ msgid "Send me e-mail notifications about newly detected broken links"
154
+ msgstr "Senden Sie mir eine Email Benachrichtigung, wenn neue fehlerhafte Links erkannt werden"
155
+
156
+ # @ broken-link-checker
157
+ #: core/core.php:676
158
+ msgid "Link tweaks"
159
+ msgstr "Link Einstellungen"
160
+
161
+ # @ broken-link-checker
162
+ #: core/core.php:682
163
+ msgid "Apply custom formatting to broken links"
164
+ msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
165
+
166
+ # @ broken-link-checker
167
+ #: core/core.php:686
168
+ #: core/core.php:714
169
+ msgid "Edit CSS"
170
+ msgstr "Bearbeite CSS"
171
+
172
+ # @ broken-link-checker
173
+ #: core/core.php:710
174
+ msgid "Apply custom formatting to removed links"
175
+ msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
176
+
177
+ # @ broken-link-checker
178
+ #: core/core.php:738
179
+ msgid "Stop search engines from following broken links"
180
+ msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
181
+
182
+ # @ broken-link-checker
183
+ #: core/core.php:755
184
+ msgid "Look for links in"
185
+ msgstr "Suchen Sie nach Links in"
186
+
187
+ # @ broken-link-checker
188
+ #: core/core.php:766
189
+ msgid "Post statuses"
190
+ msgstr "Beitrag Status"
191
+
192
+ # @ broken-link-checker
193
+ #: core/core.php:799
194
+ msgid "Link types"
195
+ msgstr "Link Typen"
196
+
197
+ # @ broken-link-checker
198
+ #: core/core.php:805
199
+ msgid "Error : All link parsers missing!"
200
+ msgstr "Fehler: Alle Link-Parser fehlen!"
201
+
202
+ # @ broken-link-checker
203
+ #: core/core.php:812
204
  msgid "Exclusion list"
205
+ msgstr "Ausschlussliste"
206
 
207
+ # @ broken-link-checker
208
+ #: core/core.php:813
209
  msgid "Don't check links where the URL contains any of these words (one per line) :"
210
+ msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
 
 
 
 
211
 
212
+ # @ broken-link-checker
213
+ #: core/core.php:831
214
+ msgid "Check links using"
215
+ msgstr "Überprüfe Links"
 
 
 
216
 
217
+ # @ broken-link-checker
218
+ #: core/core.php:850
219
+ #: includes/links.php:849
220
  msgid "Timeout"
221
+ msgstr "Zeitüberschreitung"
222
 
223
+ # @ broken-link-checker
224
+ # @ default
225
+ #: core/core.php:856
226
+ #: core/core.php:902
227
+ #: core/core.php:2766
228
  #, php-format
229
  msgid "%s seconds"
230
  msgstr "%s Sekunden"
231
 
232
+ # @ broken-link-checker
233
+ #: core/core.php:865
234
  msgid "Links that take longer than this to load will be marked as broken."
235
  msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
236
 
237
+ # @ broken-link-checker
238
+ #: core/core.php:872
239
+ msgid "Link monitor"
240
+ msgstr "Link Monitor"
241
+
242
+ # @ broken-link-checker
243
+ #: core/core.php:880
244
+ msgid "Run continuously while the Dashboard is open"
245
+ msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
246
+
247
+ # @ broken-link-checker
248
+ #: core/core.php:888
249
+ msgid "Run hourly in the background"
250
+ msgstr "Stündlich im Hintergrund arbeiten"
251
+
252
+ # @ broken-link-checker
253
+ #: core/core.php:896
254
+ msgid "Max. execution time"
255
+ msgstr "Max. Ausführungszeit"
256
+
257
+ # @ broken-link-checker
258
+ #: core/core.php:913
259
+ 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."
260
+ msgstr "Das Plugin arbeitet in regelmässigen Abständen im Hintergrund. Ihre Beiträge werden auf Links analysiert, entdeckte URLs geprüft und andere zeitaufwendige Aufgaben ausführt. Hier können Sie einstellen, wie lange die Instanzen laufen sollen, bevor sie gestoppt werden."
261
+
262
+ # @ broken-link-checker
263
+ #: core/core.php:923
264
  msgid "Custom temporary directory"
265
+ msgstr "Temporäres Verzeichnis"
266
 
267
+ # @ broken-link-checker
268
+ #: core/core.php:932
 
269
  msgid "OK"
270
  msgstr "OK"
271
 
272
+ # @ broken-link-checker
273
+ #: core/core.php:935
274
  msgid "Error : This directory isn't writable by PHP."
275
  msgstr "Fehler: Dieses Verzeichnis ist nicht beschreibbar durch PHP."
276
 
277
+ # @ broken-link-checker
278
+ #: core/core.php:940
279
  msgid "Error : This directory doesn't exist."
280
  msgstr "Fehler: Dieses Verzeichnis existiert nicht."
281
 
282
+ # @ broken-link-checker
283
+ #: core/core.php:948
284
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
285
+ msgstr "Verzeichnis in das Feld eingeben, wenn das Plugin ein benutzerdefiniertes Verzeichnis für die Lock-Dateien verwenden soll. Ansonsten nichts eintragen."
286
 
287
+ # @ broken-link-checker
288
+ #: core/core.php:955
289
+ msgid "Server load limit"
290
+ msgstr "Server Belastungsgrenze"
291
 
292
+ # @ broken-link-checker
293
+ #: core/core.php:973
294
+ #, php-format
295
+ 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."
296
+ msgstr "Die Link Überprüfung wird ausgesetzt, wenn die durchschnittliche <a href=\"%s\">Belastung des Servers</a> über diese Zahl ansteigt. Lassen Sie dieses Feld leer, um das Ladelimit zu deaktivieren."
297
+
298
+ # @ broken-link-checker
299
+ #: core/core.php:981
300
+ msgid "Not available"
301
+ msgstr "Nicht verfügbar"
302
+
303
+ # @ broken-link-checker
304
+ #: core/core.php:983
305
+ msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
306
+ msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
307
+
308
+ # @ broken-link-checker
309
+ #: core/core.php:991
310
+ msgid "Forced recheck"
311
+ msgstr "Erneute Überprüfung erzwingen"
312
+
313
+ # @ broken-link-checker
314
+ #: core/core.php:994
315
+ msgid "Re-check all pages"
316
+ msgstr "Überprüfe alle Seiten noch einmal"
317
 
318
+ # @ broken-link-checker
319
+ #: core/core.php:998
320
+ msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
321
+ msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
322
+
323
+ # @ default
324
+ #: core/core.php:1009
325
  msgid "Save Changes"
326
  msgstr "Änderungen speichern"
327
 
328
+ # @ broken-link-checker
329
+ #: core/core.php:1054
330
+ msgid "Configure"
331
+ msgstr "Konfigurieren"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
 
333
+ # @ broken-link-checker
334
+ #: core/core.php:1114
335
+ msgid "Upgrade to Pro to enable this feature"
336
+ msgstr "Upgrade auf Pro um diese Funktion zu aktivieren"
 
 
 
 
 
 
 
337
 
338
+ # @ broken-link-checker
339
+ #: core/core.php:1149
340
+ msgid "Check URLs entered in these custom fields (one per line) :"
341
+ msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
342
 
343
+ # @ broken-link-checker
344
+ #: core/core.php:1279
345
+ #: core/core.php:1363
346
+ #: core/core.php:1395
347
  #, php-format
348
+ msgid "Database error : %s"
349
+ msgstr "Datenbank Fehler: %s"
 
 
 
 
350
 
351
+ # @ broken-link-checker
352
+ #: core/core.php:1345
353
+ msgid "You must enter a filter name!"
354
+ msgstr "Sie müssen einen Filter Namen eingeben!"
355
 
356
+ # @ broken-link-checker
357
+ #: core/core.php:1349
358
+ msgid "Invalid search query."
359
+ msgstr "Ungültige Suchanfrage."
360
 
361
+ # @ broken-link-checker
362
+ #: core/core.php:1358
363
+ #, php-format
364
+ msgid "Filter \"%s\" created"
365
+ msgstr "Filter \"%s\" erstellt"
366
 
367
+ # @ broken-link-checker
368
+ #: core/core.php:1385
369
+ msgid "Filter ID not specified."
370
+ msgstr "Link ID nicht spezifiziert."
371
 
372
+ # @ broken-link-checker
373
+ #: core/core.php:1392
374
+ msgid "Filter deleted"
375
+ msgstr "Filter gelöscht"
376
 
377
+ # @ broken-link-checker
378
+ #: core/core.php:1440
379
  #, php-format
380
+ msgid "Replaced %d redirect with a direct link"
381
+ msgid_plural "Replaced %d redirects with direct links"
382
+ msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
383
+ msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
 
 
 
 
 
 
 
384
 
385
+ # @ broken-link-checker
386
+ #: core/core.php:1451
387
  #, php-format
388
+ msgid "Failed to fix %d redirect"
389
+ msgid_plural "Failed to fix %d redirects"
390
+ msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
391
+ msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
392
+
393
+ # @ broken-link-checker
394
+ #: core/core.php:1461
395
+ msgid "None of the selected links are redirects!"
396
+ msgstr "Keiner der ausgewählten Links sind Umleitungen!"
397
+
398
+ # @ broken-link-checker
399
+ #: core/core.php:1507
 
400
  #, php-format
401
+ msgid "%d link removed"
402
+ msgid_plural "%d links removed"
403
+ msgstr[0] "%d Link entfernt"
404
+ msgstr[1] "%d Links entfernt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
405
 
406
+ # @ broken-link-checker
407
+ #: core/core.php:1518
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
408
  #, php-format
409
+ msgid "Failed to remove %d link"
410
+ msgid_plural "Failed to remove %d links"
411
+ msgstr[0] "Link %d konnte nicht entfernt werden"
412
+ msgstr[1] "Links %d konnten nicht entfernt werden"
 
 
 
 
 
 
413
 
414
+ # @ default
415
+ #: core/core.php:1627
416
+ #, php-format
417
+ msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
418
+ msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
419
+ msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
420
+ msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
421
+
422
+ # @ broken-link-checker
423
+ #: core/core.php:1648
424
+ msgid "Didn't find anything to delete!"
425
+ msgstr "Nichts gefunden um zu löschen!"
426
+
427
+ # @ broken-link-checker
428
+ #: core/core.php:1676
429
+ #, php-format
430
+ msgid "%d link scheduled for rechecking"
431
+ msgid_plural "%d links scheduled for rechecking"
432
+ msgstr[0] "%d Link zur erneuten Überprüfung geplant"
433
+ msgstr[1] "%d Links zur erneuten Überprüfung geplant"
434
+
435
+ # @ broken-link-checker
436
+ #: core/core.php:1721
437
+ #: core/core.php:2326
438
+ msgid "This link was manually marked as working by the user."
439
+ msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
440
 
441
+ # @ broken-link-checker
442
+ #: core/core.php:1728
443
  #, php-format
444
+ msgid "Couldn't modify link %d"
445
+ msgstr "Link %d konnte nicht geändert werden"
 
 
446
 
447
+ # @ broken-link-checker
448
+ #: core/core.php:1739
449
+ #, php-format
450
+ msgid "%d link marked as not broken"
451
+ msgid_plural "%d links marked as not broken"
452
+ msgstr[0] "%d Link als nicht fehlerhaft markiert"
453
+ msgstr[1] "%d Links als nicht fehlerhaft markiert"
454
+
455
+ # @ broken-link-checker
456
+ #: core/core.php:1779
457
+ msgid "Table columns"
458
+ msgstr "Tabellenspalten"
459
+
460
+ # @ default
461
+ #: core/core.php:1798
462
+ msgid "Show on screen"
463
+ msgstr "Auf dem Bildschirm anzeigen"
464
+
465
+ # @ broken-link-checker
466
+ #: core/core.php:1805
467
+ msgid "links"
468
+ msgstr "Links"
469
+
470
+ # @ default
471
+ # @ broken-link-checker
472
+ #: core/core.php:1806
473
+ #: includes/admin/table-printer.php:134
474
+ msgid "Apply"
475
+ msgstr "Anwenden"
476
+
477
+ # @ broken-link-checker
478
+ #: core/core.php:1810
479
+ msgid "Misc"
480
+ msgstr "Sonstige"
481
+
482
+ # @ broken-link-checker
483
+ #: core/core.php:1825
484
+ #, php-format
485
+ msgid "Highlight links broken for at least %s days"
486
+ msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
487
+
488
+ # @ broken-link-checker
489
+ #: core/core.php:1834
490
+ msgid "Color-code status codes"
491
+ msgstr "Farb-Code Status Codes"
492
+
493
+ # @ broken-link-checker
494
+ #: core/core.php:1851
495
+ #: core/core.php:2311
496
+ #: core/core.php:2347
497
+ #: core/core.php:2410
498
+ msgid "You're not allowed to do that!"
499
+ msgstr "Sie haben nicht die Erlaubnis das zu tun!"
500
 
501
+ # @ broken-link-checker
502
+ #: core/core.php:2192
503
  msgid "View broken links"
504
  msgstr "Fehlerhafte Links anschauen"
505
 
506
+ # @ broken-link-checker
507
+ #: core/core.php:2193
508
  #, php-format
509
  msgid "Found %d broken link"
510
  msgid_plural "Found %d broken links"
511
  msgstr[0] "%d fehlerhafte Links gefunden"
512
  msgstr[1] "%d fehlerhafte Links gefunden"
513
 
514
+ # @ broken-link-checker
515
+ #: core/core.php:2199
516
  msgid "No broken links found."
517
  msgstr "Keine fehlerhaften Links gefunden."
518
 
519
+ # @ broken-link-checker
520
+ #: core/core.php:2206
521
  #, php-format
522
  msgid "%d URL in the work queue"
523
  msgid_plural "%d URLs in the work queue"
524
  msgstr[0] "%d URL in der Warteschlange"
525
  msgstr[1] "%d URLs in der Warteschlange"
526
 
527
+ # @ broken-link-checker
528
+ #: core/core.php:2209
529
  msgid "No URLs in the work queue."
530
+ msgstr "Keine URLs in der Warteschlange."
531
 
532
+ # @ broken-link-checker
533
+ #: core/core.php:2215
534
  #, php-format
535
  msgid "Detected %d unique URL"
536
  msgid_plural "Detected %d unique URLs"
537
+ msgstr[0] "%d eindeutige URL gefunden"
538
+ msgstr[1] "%d eindeutige URLs gefunden"
539
 
540
+ # @ broken-link-checker
541
+ #: core/core.php:2216
542
  #, php-format
543
  msgid "in %d link"
544
  msgid_plural "in %d links"
545
  msgstr[0] "in %d Link"
546
  msgstr[1] "in %d Links"
547
 
548
+ # @ broken-link-checker
549
+ #: core/core.php:2221
550
  msgid "and still searching..."
551
  msgstr "und sucht immer noch..."
552
 
553
+ # @ broken-link-checker
554
+ #: core/core.php:2227
555
  msgid "Searching your blog for links..."
556
+ msgstr "Durchsucht Ihr Blog nach Links..."
557
 
558
+ # @ broken-link-checker
559
+ #: core/core.php:2229
560
  msgid "No links detected."
561
  msgstr "Keine Links gefunden."
562
 
563
+ # @ broken-link-checker
564
+ #: core/core.php:2255
565
+ msgctxt "current load"
566
+ msgid "Unknown"
567
+ msgstr "Unbekannt"
 
568
 
569
+ # @ broken-link-checker
570
+ #: core/core.php:2319
571
+ #: core/core.php:2357
572
+ #: core/core.php:2420
573
  #, php-format
574
  msgid "Oops, I can't find the link %d"
575
  msgstr "Hossa, Ich kann den link %d nicht finden"
576
 
577
+ # @ broken-link-checker
578
+ #: core/core.php:2332
 
 
 
579
  msgid "Oops, couldn't modify the link!"
580
  msgstr "Mistverdammter, konnte den Link nicht modifizieren!"
581
 
582
+ # @ broken-link-checker
583
+ #: core/core.php:2335
584
+ #: core/core.php:2446
585
  msgid "Error : link_id not specified"
586
  msgstr "Fehler: link_id nicht spezifiziert"
587
 
588
+ # @ broken-link-checker
589
+ #: core/core.php:2367
590
  msgid "Oops, the new URL is invalid!"
591
  msgstr "Ohoh, die neue URL funktioniert nicht!"
592
 
593
+ # @ broken-link-checker
594
+ #: core/core.php:2378
595
+ #: core/core.php:2429
596
  msgid "An unexpected error occured!"
597
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
598
 
599
+ # @ broken-link-checker
600
+ #: core/core.php:2396
601
  msgid "Error : link_id or new_url not specified"
602
  msgstr "Fehler: link_id oder new_url sind nicht spezifiziert"
603
 
604
+ # @ broken-link-checker
605
+ #: core/core.php:2455
 
 
 
 
 
 
 
 
606
  msgid "You don't have sufficient privileges to access this information!"
607
+ msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
608
 
609
+ # @ broken-link-checker
610
+ #: core/core.php:2468
611
  msgid "Error : link ID not specified"
612
  msgstr "Fehler: Link ID nicht spezifiziert"
613
 
614
+ # @ broken-link-checker
615
+ #: core/core.php:2482
616
  #, php-format
617
  msgid "Failed to load link details (%s)"
618
  msgstr "Laden der Link Details (%s) schlug fehl"
619
 
620
+ # @ broken-link-checker
621
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.6) #-#-#-#-#
622
+ #. Plugin Name of the plugin/theme
623
+ #: core/core.php:2611
624
+ msgid "Broken Link Checker"
625
+ msgstr "Broken Link Checker"
 
 
626
 
627
+ # @ broken-link-checker
628
+ #: core/core.php:2625
629
  #, php-format
630
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
631
+ msgstr "Das aktuelle temporäre Verzeichnis ist nicht erreichbar; Bitte <a href=\"%s\">setzen Sie ein anderes Verzeichnis</a>."
632
 
633
+ # @ broken-link-checker
634
+ #: core/core.php:2630
635
  #, php-format
636
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
637
  msgstr "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
638
 
639
+ # @ broken-link-checker
640
+ #: core/core.php:2637
641
  msgid "Broken Link Checker can't create a lockfile."
642
  msgstr "Broken Link Checker kann keine Lock-Dateien erstellen."
643
 
644
+ # @ broken-link-checker
645
+ #: core/core.php:2642
646
  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."
647
+ msgstr "Das Plugin verwendet ein Datei-Locking-Mechanismus um sicherzustellen, dass nur eine Instanz der Quellen Algorithmus Prüfung zu einem bestimmten Zeitpunkt läuft. Leider kann BLC kein beschreibbares Verzeichnis finden, in dem es die Lock-Datei speichern könnte - der Standort des temporären Verzeichnis Ihres Servers wurde nicht gefunden und das eigene Verzeichnis des Plugins ist nicht mit PHP beschreibbar. Um dieses Problem zu beheben, änderen Sie das Plugin-Verzeichnis auf schreibbar oder geben ein benutzerdefiniertes temporäres Verzeichnis in den Einstellungen des Plugins ein."
648
 
649
+ # @ broken-link-checker
650
+ #: core/core.php:2661
651
  msgid "PHP version"
652
  msgstr "PHP Version"
653
 
654
+ # @ broken-link-checker
655
+ #: core/core.php:2667
656
  msgid "MySQL version"
657
  msgstr "MySQL Version"
658
 
659
+ # @ broken-link-checker
660
+ #: core/core.php:2680
661
  msgid "You have an old version of CURL. Redirect detection may not work properly."
662
  msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
663
 
664
+ # @ broken-link-checker
665
+ #: core/core.php:2692
666
+ #: core/core.php:2708
667
+ #: core/core.php:2713
668
  msgid "Not installed"
669
  msgstr "Nicht installiert"
670
 
671
+ # @ broken-link-checker
672
+ #: core/core.php:2695
673
  msgid "CURL version"
674
  msgstr "CURL Version"
675
 
676
+ # @ broken-link-checker
677
+ #: core/core.php:2701
678
  msgid "Installed"
679
  msgstr "Installiert"
680
 
681
+ # @ broken-link-checker
682
+ #: core/core.php:2714
683
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
684
  msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
685
 
686
+ # @ broken-link-checker
687
+ #: core/core.php:2725
688
  msgid "On"
689
  msgstr "An"
690
 
691
+ # @ broken-link-checker
692
+ #: core/core.php:2726
693
  msgid "Redirects may be detected as broken links when safe_mode is on."
694
+ msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
695
 
696
+ # @ broken-link-checker
697
+ #: core/core.php:2731
698
+ #: core/core.php:2745
699
  msgid "Off"
700
  msgstr "Aus"
701
 
702
+ # @ broken-link-checker
703
+ #: core/core.php:2739
704
  #, php-format
705
  msgid "On ( %s )"
706
+ msgstr "An (%s)"
707
 
708
+ # @ broken-link-checker
709
+ #: core/core.php:2740
710
  msgid "Redirects may be detected as broken links when open_basedir is on."
711
+ msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
712
 
713
+ # @ broken-link-checker
714
+ #: core/core.php:2759
715
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
716
  msgstr "Lock-Datei kann nicht erstellt werden. Bitte bestimmen Sie ein benutzerdefiniertes temporäres Verzeichnis."
717
 
718
+ # @ broken-link-checker
719
+ #: core/core.php:2783
720
+ msgid "If this value is zero even after several page reloads you have probably encountered a bug."
721
+ msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
722
+
723
+ # @ broken-link-checker
724
+ #: core/core.php:2854
725
  #, php-format
726
+ msgid "[%s] Broken links detected"
727
+ msgstr "[%s] Fehlerhafte Links entdeckt"
728
 
729
+ # @ broken-link-checker
730
+ #: core/core.php:2860
731
+ #, php-format
732
+ msgid "Broken Link Checker has detected %d new broken link on your site."
733
+ msgid_plural "Broken Link Checker has detected %d new broken links on your site."
734
+ msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
735
+ msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
736
 
737
+ # @ broken-link-checker
738
+ #: core/core.php:2875
739
+ #, php-format
740
+ msgid "Here's a list of the first %d broken links:"
741
+ msgid_plural "Here's a list of the first %d broken links:"
742
+ msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
743
+ msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
744
+
745
+ # @ broken-link-checker
746
+ #: core/core.php:2883
747
+ msgid "Here's a list of the new broken links: "
748
+ msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
749
+
750
+ # @ broken-link-checker
751
+ #: core/core.php:2895
752
+ #, php-format
753
+ msgid "Link text : %s"
754
+ msgstr "Link Text: %s"
755
 
756
+ # @ broken-link-checker
757
+ #: core/core.php:2896
758
  #, php-format
759
+ msgid "Link URL : <a href=\"%s\">%s</a>"
760
+ msgstr "Link URL: <a href=\"%s\">%s</a>"
761
 
762
+ # @ broken-link-checker
763
+ #: core/core.php:2897
764
+ #, php-format
765
+ msgid "Source : %s"
766
+ msgstr "Quelle: %s"
767
+
768
+ # @ brokenk-link-checker
769
+ #: core/core.php:2911
770
+ msgid "You can see all broken links here:"
771
+ msgstr "Hier sehen Sie alle fehlerhaften Links:"
772
+
773
+ # @ default
774
+ #: core/init.php:236
775
+ msgid "Once Weekly"
776
+ msgstr "Einmal wöchentlich"
777
+
778
+ # @ default
779
+ #: core/init.php:242
780
+ msgid "Twice a Month"
781
+ msgstr "Zweimal im Monat"
782
+
783
+ # @ broken-link-checker
784
+ #: core/init.php:309
785
+ msgid "Broken Link Checker installation failed"
786
+ msgstr "Broken Link Checker Installation fehlgeschlagen"
787
+
788
+ # @ broken-link-checker
789
+ #: includes/admin/db-upgrade.php:95
790
+ #, php-format
791
+ msgid "Failed to delete old DB tables. Database error : %s"
792
+ msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
793
 
794
+ # @ broken-link-checker
795
+ #: includes/admin/links-page-js.php:58
796
+ #: includes/admin/links-page-js.php:301
797
+ msgid "Wait..."
798
+ msgstr "Warte..."
799
 
800
+ # @ broken-link-checker
801
+ #: includes/admin/links-page-js.php:99
802
+ #: includes/admin/table-printer.php:531
803
+ #: includes/admin/table-printer.php:621
804
+ msgid "Not broken"
805
+ msgstr "Nicht fehlerhaft"
806
+
807
+ # @ broken-link-checker
808
+ #: includes/admin/links-page-js.php:213
809
+ #, php-format
810
+ msgid "%d instances of the link were successfully modified."
811
+ msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
812
+
813
+ # @ broken-link-checker
814
+ #: includes/admin/links-page-js.php:219
815
+ #, php-format
816
+ msgid "However, %d instances couldn't be edited and still point to the old URL."
817
+ msgstr "Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem noch auf die alte URL."
818
+
819
+ # @ broken-link-checker
820
+ #: includes/admin/links-page-js.php:225
821
+ msgid "The link could not be modified."
822
+ msgstr "Der Link konnte nicht geändert werden."
823
+
824
+ # @ broken-link-checker
825
+ #: includes/admin/links-page-js.php:228
826
+ #: includes/admin/links-page-js.php:353
827
+ msgid "The following error(s) occured :"
828
+ msgstr "Folgende Fehler sind aufgetreten:"
829
+
830
+ # @ broken-link-checker
831
+ #: includes/admin/links-page-js.php:339
832
+ #, php-format
833
+ msgid "%d instances of the link were successfully unlinked."
834
+ msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
835
+
836
+ # @ broken-link-checker
837
+ #: includes/admin/links-page-js.php:345
838
+ #, php-format
839
+ msgid "However, %d instances couldn't be removed."
840
+ msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
841
+
842
+ # @ broken-link-checker
843
+ #: includes/admin/links-page-js.php:350
844
+ msgid "The plugin failed to remove the link."
845
+ msgstr "Das Plugin konnte den Link nicht entfernen."
846
+
847
+ # @ broken-link-checker
848
+ #: includes/admin/links-page-js.php:361
849
+ #: includes/admin/table-printer.php:250
850
+ #: includes/admin/table-printer.php:525
851
+ #: includes/admin/table-printer.php:615
852
+ msgid "Unlink"
853
+ msgstr "Link aufheben"
854
+
855
+ # @ broken-link-checker
856
+ #: includes/admin/links-page-js.php:405
857
+ msgid "Enter a name for the new custom filter"
858
+ msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
859
+
860
+ # @ broken-link-checker
861
+ #: includes/admin/links-page-js.php:416
862
+ msgid ""
863
+ "You are about to delete the current filter.\n"
864
+ "'Cancel' to stop, 'OK' to delete"
865
+ msgstr ""
866
+ "Möchten Sie den aktuellen Filter löschen '%s'\n"
867
+ " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
868
+
869
+ # @ broken-link-checker
870
+ #: includes/admin/links-page-js.php:439
871
+ msgid ""
872
+ "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
873
+ "'Cancel' to stop, 'OK' to delete"
874
+ msgstr ""
875
+ "Sind Sie sicher, dass Sie alle Beiträge, Lesezeichen oder andere Elemente die in den ausgewählten Links enthalten sind, löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
876
+ " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
877
+
878
+ # @ broken-link-checker
879
+ #: includes/admin/links-page-js.php:448
880
+ msgid ""
881
+ "Are you sure you want to remove the selected links? This action can't be undone.\n"
882
+ "'Cancel' to stop, 'OK' to remove"
883
+ msgstr ""
884
+ "Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
885
+ " 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
886
+
887
+ # @ broken-link-checker
888
+ #: includes/admin/options-page-js.php:54
889
+ msgid "Hide debug info"
890
+ msgstr "Debug Info verbergen"
891
+
892
+ # @ broken-link-checker
893
+ #: includes/admin/search-form.php:16
894
+ msgid "Save This Search As a Filter"
895
+ msgstr "Diese Suche als Filter speichern"
896
+
897
+ # @ broken-link-checker
898
+ #: includes/admin/search-form.php:26
899
+ msgid "Delete This Filter"
900
+ msgstr "Diesen Filter löschen"
901
+
902
+ # @ broken-link-checker
903
+ #: includes/admin/search-form.php:32
904
+ #: includes/link-query.php:53
905
+ msgid "Search"
906
+ msgstr "Suche"
907
+
908
+ # @ broken-link-checker
909
+ #: includes/admin/search-form.php:42
910
+ msgid "Link text"
911
+ msgstr "Link Text"
912
+
913
+ # @ broken-link-checker
914
+ #: includes/admin/search-form.php:45
915
+ #: includes/admin/table-printer.php:177
916
+ #: includes/admin/table-printer.php:187
917
+ msgid "URL"
918
+ msgstr "URL"
919
+
920
+ # @ broken-link-checker
921
+ #: includes/admin/search-form.php:48
922
+ #: includes/admin/table-printer.php:423
923
+ msgid "HTTP code"
924
+ msgstr "HTTP Code"
925
+
926
+ # @ broken-link-checker
927
+ #: includes/admin/search-form.php:51
928
+ msgid "Link status"
929
+ msgstr "Link Status"
930
+
931
+ # @ broken-link-checker
932
+ #: includes/admin/search-form.php:68
933
+ #: includes/admin/search-form.php:85
934
+ msgid "Link type"
935
+ msgstr "Link Typ"
936
+
937
+ # @ broken-link-checker
938
+ #: includes/admin/search-form.php:70
939
+ msgid "Any"
940
+ msgstr "Beliebig"
941
+
942
+ # @ broken-link-checker
943
+ #: includes/admin/search-form.php:74
944
+ msgid "Links used in"
945
+ msgstr "Links verwendet in"
946
+
947
+ # @ broken-link-checker
948
+ #: includes/admin/search-form.php:112
949
+ msgid "Search Links"
950
+ msgstr "Suche Links"
951
+
952
+ # @ broken-link-checker
953
+ #: includes/admin/search-form.php:113
954
+ #: includes/admin/table-printer.php:541
955
+ #: includes/admin/table-printer.php:629
956
+ #: includes/admin/table-printer.php:635
957
+ msgid "Cancel"
958
+ msgstr "Abbrechen"
959
+
960
+ # @ broken-link-checker
961
+ #: includes/admin/table-printer.php:148
962
+ msgid "Compact View"
963
+ msgstr "Kompaktansicht"
964
+
965
+ # @ broken-link-checker
966
+ #: includes/admin/table-printer.php:149
967
+ msgid "Detailed View"
968
+ msgstr "Detailansicht"
969
+
970
+ # @ broken-link-checker
971
+ #: includes/admin/table-printer.php:166
972
+ #: includes/admin/table-printer.php:192
973
+ msgid "Source"
974
+ msgstr "Quelle"
975
+
976
+ # @ broken-link-checker
977
+ #: includes/admin/table-printer.php:172
978
+ #: includes/admin/table-printer.php:198
979
+ msgid "Link Text"
980
+ msgstr "Link Text"
981
+
982
+ # @ broken-link-checker
983
+ #: includes/admin/table-printer.php:246
984
+ msgid "Bulk Actions"
985
+ msgstr "Massenänderung"
986
+
987
+ # @ broken-link-checker
988
+ #: includes/admin/table-printer.php:247
989
+ msgid "Recheck"
990
+ msgstr "Erneut überprüfen"
991
+
992
+ # @ broken-link-checker
993
+ #: includes/admin/table-printer.php:248
994
+ msgid "Fix redirects"
995
+ msgstr "Feste Umleitungen"
996
+
997
+ # @ broken-link-checker
998
+ #: includes/admin/table-printer.php:249
999
+ msgid "Mark as not broken"
1000
+ msgstr "Als nicht fehlerhaft markieren"
1001
+
1002
+ # @ broken-link-checker
1003
+ #: includes/admin/table-printer.php:253
1004
+ msgid "Move sources to Trash"
1005
+ msgstr "Verschiebe Quelle in den Papierkorb"
1006
+
1007
+ # @ broken-link-checker
1008
+ #: includes/admin/table-printer.php:255
1009
+ msgid "Delete sources"
1010
+ msgstr "Quellen löschen"
1011
+
1012
+ # @ default
1013
+ #: includes/admin/table-printer.php:270
1014
+ msgid "&laquo;"
1015
+ msgstr "&laquo;"
1016
+
1017
+ # @ default
1018
+ #: includes/admin/table-printer.php:271
1019
+ msgid "&raquo;"
1020
+ msgstr "&raquo;"
1021
+
1022
+ # @ broken-link-checker
1023
+ #: includes/admin/table-printer.php:279
1024
+ #, php-format
1025
+ msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1026
+ msgstr "Anzeigen %s&#8211;%s von <span class=\"current-link-count\">%s</span>"
1027
+
1028
+ # @ broken-link-checker
1029
+ #: includes/admin/table-printer.php:408
1030
+ msgid "Post published on"
1031
+ msgstr "Beitrag publiziert am"
1032
+
1033
+ # @ broken-link-checker
1034
+ #: includes/admin/table-printer.php:413
1035
+ msgid "Link last checked"
1036
+ msgstr "Link zuletzt geprüft"
1037
+
1038
+ # @ broken-link-checker
1039
+ #: includes/admin/table-printer.php:417
1040
+ msgid "Never"
1041
+ msgstr "Nie"
1042
+
1043
+ # @ broken-link-checker
1044
+ #: includes/admin/table-printer.php:428
1045
+ msgid "Response time"
1046
+ msgstr "Reaktionszeit"
1047
+
1048
+ # @ broken-link-checker
1049
+ #: includes/admin/table-printer.php:430
1050
+ #, php-format
1051
+ msgid "%2.3f seconds"
1052
+ msgstr "%2.3f Sekunden"
1053
+
1054
+ # @ broken-link-checker
1055
+ #: includes/admin/table-printer.php:433
1056
+ msgid "Final URL"
1057
+ msgstr "Endgültige URL"
1058
+
1059
+ # @ broken-link-checker
1060
+ #: includes/admin/table-printer.php:438
1061
+ msgid "Redirect count"
1062
+ msgstr "Weiterleitung Anzahl"
1063
+
1064
+ # @ broken-link-checker
1065
+ #: includes/admin/table-printer.php:443
1066
+ msgid "Instance count"
1067
+ msgstr "Instanz Anzahl"
1068
+
1069
+ # @ broken-link-checker
1070
+ #: includes/admin/table-printer.php:452
1071
+ #, php-format
1072
+ msgid "This link has failed %d time."
1073
+ msgid_plural "This link has failed %d times."
1074
+ msgstr[0] "Dieser Link schlug %d mal fehl."
1075
+ msgstr[1] "Dieser Link schlug %d mal fehl."
1076
+
1077
+ # @ broken-link-checker
1078
+ #: includes/admin/table-printer.php:460
1079
+ #, php-format
1080
+ msgid "This link has been broken for %s."
1081
+ msgstr "Dieser Links ist fehlerhaft seit %s."
1082
+
1083
+ # @ broken-link-checker
1084
+ #: includes/admin/table-printer.php:471
1085
+ msgid "Log"
1086
+ msgstr "Log"
1087
+
1088
+ # @ broken-link-checker
1089
+ #: includes/admin/table-printer.php:507
1090
+ #: includes/admin/table-printer.php:658
1091
+ msgid "[An orphaned link! This is a bug.]"
1092
+ msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
1093
+
1094
+ # @ broken-link-checker
1095
+ #: includes/admin/table-printer.php:522
1096
+ #: includes/admin/table-printer.php:558
1097
+ msgid "Show more info about this link"
1098
+ msgstr "Mehr Informationen über diesen Link anzeigen"
1099
+
1100
+ # @ broken-link-checker
1101
+ #: includes/admin/table-printer.php:524
1102
+ #: includes/admin/table-printer.php:614
1103
+ msgid "Remove this link from all posts"
1104
+ msgstr "Löschen Sie diesen Link von allen Beiträgen"
1105
+
1106
+ # @ broken-link-checker
1107
+ #: includes/admin/table-printer.php:530
1108
+ #: includes/admin/table-printer.php:620
1109
+ msgid "Remove this link from the list of broken links and mark it as valid"
1110
+ msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
1111
+
1112
+ # @ broken-link-checker
1113
+ #: includes/admin/table-printer.php:535
1114
+ #: includes/admin/table-printer.php:612
1115
+ msgid "Edit link URL"
1116
+ msgstr "Bearbeite URL Link"
1117
+
1118
+ # @ broken-link-checker
1119
+ #: includes/admin/table-printer.php:535
1120
+ #: includes/admin/table-printer.php:612
1121
+ msgid "Edit URL"
1122
+ msgstr "Bearbeite URL"
1123
+
1124
+ # @ broken-link-checker
1125
+ #: includes/admin/table-printer.php:541
1126
+ #: includes/admin/table-printer.php:629
1127
+ msgid "Cancel URL editing"
1128
+ msgstr "URL Bearbeitung abbrechen"
1129
+
1130
+ # @ broken-link-checker
1131
+ #: includes/admin/table-printer.php:576
1132
+ msgctxt "checked how long ago"
1133
+ msgid "Checked"
1134
+ msgstr "Geprüft"
1135
+
1136
+ # @ broken-link-checker
1137
+ #: includes/admin/table-printer.php:592
1138
+ msgid "Broken for"
1139
+ msgstr "Fehlerhaft für"
1140
+
1141
+ # @ broken-link-checker
1142
+ #: includes/admin/table-printer.php:636
1143
+ msgid "Update URL"
1144
+ msgstr "Update URL"
1145
+
1146
+ # @ default
1147
+ #: includes/any-post.php:398
1148
+ #: modules/containers/blogroll.php:46
1149
+ #: modules/containers/comment.php:153
1150
+ #: modules/containers/custom_field.php:197
1151
+ msgid "Edit"
1152
+ msgstr "Bearbeiten"
1153
+
1154
+ # @ default
1155
+ #: includes/any-post.php:406
1156
+ #: modules/containers/custom_field.php:203
1157
+ msgid "Move this item to the Trash"
1158
+ msgstr "Element in den Papierkorb verschieben"
1159
+
1160
+ # @ default
1161
+ #: includes/any-post.php:408
1162
+ #: modules/containers/custom_field.php:205
1163
+ msgid "Trash"
1164
+ msgstr "Papierkorb"
1165
+
1166
+ # @ default
1167
+ #: includes/any-post.php:413
1168
+ #: modules/containers/custom_field.php:210
1169
+ msgid "Delete this item permanently"
1170
+ msgstr "Element endgültig löschen"
1171
+
1172
+ # @ default
1173
+ #: includes/any-post.php:415
1174
+ #: modules/containers/blogroll.php:47
1175
+ #: modules/containers/custom_field.php:212
1176
+ msgid "Delete"
1177
+ msgstr "Löschen"
1178
+
1179
+ # @ default
1180
+ #: includes/any-post.php:428
1181
+ #, php-format
1182
+ msgid "Preview &#8220;%s&#8221;"
1183
+ msgstr "Vorschau &#8220;%s&#8221;"
1184
+
1185
+ # @ default
1186
+ #: includes/any-post.php:429
1187
+ msgid "Preview"
1188
+ msgstr "Vorschau"
1189
+
1190
+ # @ default
1191
+ #: includes/any-post.php:436
1192
+ #, php-format
1193
+ msgid "View &#8220;%s&#8221;"
1194
+ msgstr "Ansehen &#8220;%s&#8221;"
1195
+
1196
+ # @ default
1197
+ #: includes/any-post.php:437
1198
+ #: modules/containers/comment.php:166
1199
+ #: modules/containers/custom_field.php:217
1200
+ msgid "View"
1201
+ msgstr "Ansehen"
1202
+
1203
+ # @ default
1204
+ #: includes/any-post.php:456
1205
+ #: modules/containers/custom_field.php:197
1206
+ msgid "Edit this item"
1207
+ msgstr "Bearbeiten Sie dieses Element"
1208
+
1209
+ # @ broken-link-checker
1210
+ #: includes/any-post.php:520
1211
+ #: modules/containers/blogroll.php:83
1212
+ #: modules/containers/comment.php:43
1213
+ msgid "Nothing to update"
1214
+ msgstr "Nichts zu aktualisieren"
1215
+
1216
+ # @ broken-link-checker
1217
+ #: includes/any-post.php:530
1218
+ #, php-format
1219
+ msgid "Updating post %d failed"
1220
+ msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
1221
+
1222
+ # @ broken-link-checker
1223
+ #: includes/any-post.php:565
1224
+ #: modules/containers/custom_field.php:284
1225
+ #, php-format
1226
+ msgid "Failed to delete post \"%s\" (%d)"
1227
+ msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
1228
+
1229
+ # @ broken-link-checker
1230
+ #: includes/any-post.php:584
1231
+ #: modules/containers/custom_field.php:303
1232
+ #, php-format
1233
+ msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1234
+ msgstr "Der Beitrag \"%s\" (%d) kann nicht in den Papierkorb verschoben werden, weil diese Funktion deaktiviert ist"
1235
+
1236
+ # @ broken-link-checker
1237
+ #: includes/any-post.php:604
1238
+ #: modules/containers/custom_field.php:322
1239
+ #, php-format
1240
+ msgid "Failed to move post \"%s\" (%d) to the trash"
1241
+ msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
1242
+
1243
+ # @ broken-link-checker
1244
+ #: includes/any-post.php:712
1245
+ #, php-format
1246
+ msgid "%d post deleted."
1247
+ msgid_plural "%d posts deleted."
1248
+ msgstr[0] "%d Artikel gelöscht."
1249
+ msgstr[1] "%d Artikel gelöscht."
1250
+
1251
+ # @ broken-link-checker
1252
+ #: includes/any-post.php:714
1253
+ #, php-format
1254
+ msgid "%d page deleted."
1255
+ msgid_plural "%d pages deleted."
1256
+ msgstr[0] "%d Seite gelöscht."
1257
+ msgstr[1] "%d Seiten gelöscht."
1258
+
1259
+ # @ broken-link-checker
1260
+ #: includes/any-post.php:716
1261
+ #, php-format
1262
+ msgid "%d \"%s\" deleted."
1263
+ msgid_plural "%d \"%s\" deleted."
1264
+ msgstr[0] "%d \"%s\" gelöscht."
1265
+ msgstr[1] "%d \"%s\" gelöscht."
1266
+
1267
+ # @ broken-link-checker
1268
+ #: includes/any-post.php:735
1269
+ #, php-format
1270
+ msgid "%d post moved to the Trash."
1271
+ msgid_plural "%d posts moved to the Trash."
1272
+ msgstr[0] "%d Artikel in den Papierkorb verschoben."
1273
+ msgstr[1] "%d Artikel in den Papierkorb verschoben."
1274
+
1275
+ # @ broken-link-checker
1276
+ #: includes/any-post.php:737
1277
+ #, php-format
1278
+ msgid "%d page moved to the Trash."
1279
+ msgid_plural "%d pages moved to the Trash."
1280
+ msgstr[0] "%d Seite in den Papierkorb verschoben."
1281
+ msgstr[1] "%d Seiten in den Papierkorb verschoben."
1282
+
1283
+ # @ broken-link-checker
1284
+ #: includes/any-post.php:739
1285
+ #, php-format
1286
+ msgid "%d \"%s\" moved to the Trash."
1287
+ msgid_plural "%d \"%s\" moved to the Trash."
1288
+ msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
1289
+ msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
1290
+
1291
+ # @ broken-link-checker
1292
+ #: includes/containers.php:122
1293
+ #, php-format
1294
+ msgid "%d '%s' has been deleted"
1295
+ msgid_plural "%d '%s' have been deleted"
1296
+ msgstr[0] "%d '%s' wurde gelöscht"
1297
+ msgstr[1] "%d '%s' wurden gelöscht"
1298
+
1299
+ # @ broken-link-checker
1300
+ #: includes/containers.php:882
1301
+ #: includes/containers.php:900
1302
+ #, php-format
1303
+ msgid "Container type '%s' not recognized"
1304
+ msgstr "Container Typ '%s' nicht erkannt"
1305
+
1306
+ # @ broken-link-checker
1307
+ #: includes/extra-strings.php:2
1308
+ msgctxt "module name"
1309
+ msgid "Basic HTTP"
1310
+ msgstr "Standard HTTP"
1311
+
1312
+ # @ broken-link-checker
1313
+ #: includes/extra-strings.php:3
1314
+ msgctxt "module name"
1315
+ msgid "Blogroll items"
1316
+ msgstr "Blogroll Elemente"
1317
+
1318
+ # @ broken-link-checker
1319
+ #: includes/extra-strings.php:4
1320
+ msgctxt "module name"
1321
+ msgid "Comments"
1322
+ msgstr "Kommentare"
1323
+
1324
+ # @ broken-link-checker
1325
+ #: includes/extra-strings.php:5
1326
+ msgctxt "module name"
1327
+ msgid "Custom fields"
1328
+ msgstr "Benutzerdefinierte Felder"
1329
+
1330
+ # @ broken-link-checker
1331
+ #: includes/extra-strings.php:6
1332
+ msgctxt "module name"
1333
+ msgid "Embedded DailyMotion videos"
1334
+ msgstr "Eingebettete DailyMotion Videos"
1335
+
1336
+ # @ broken-link-checker
1337
+ #: includes/extra-strings.php:7
1338
+ msgctxt "module name"
1339
+ msgid "Embedded Vimeo videos"
1340
+ msgstr "Eingebettete Vimeo Videos"
1341
+
1342
+ # @ broken-link-checker
1343
+ #: includes/extra-strings.php:8
1344
+ msgctxt "module name"
1345
+ msgid "Embedded YouTube videos"
1346
+ msgstr "Eingebettete YouTube Videos"
1347
+
1348
+ # @ broken-link-checker
1349
+ #: includes/extra-strings.php:9
1350
+ msgctxt "module name"
1351
+ msgid "HTML images"
1352
+ msgstr "HTML Bilder"
1353
+
1354
+ # @ broken-link-checker
1355
+ #: includes/extra-strings.php:10
1356
+ msgctxt "module name"
1357
+ msgid "HTML links"
1358
+ msgstr "HTML Links"
1359
+
1360
+ # @ broken-link-checker
1361
+ #: includes/extra-strings.php:11
1362
+ msgctxt "module name"
1363
+ msgid "MediaFire API"
1364
+ msgstr "MediaFire API"
1365
+
1366
+ # @ broken-link-checker
1367
+ #: includes/extra-strings.php:12
1368
+ msgctxt "module name"
1369
+ msgid "MegaUpload API"
1370
+ msgstr "MegaUpload API"
1371
+
1372
+ # @ broken-link-checker
1373
+ #: includes/extra-strings.php:13
1374
+ msgctxt "module name"
1375
+ msgid "Plaintext URLs"
1376
+ msgstr "Klartext URLs"
1377
+
1378
+ # @ broken-link-checker
1379
+ #: includes/extra-strings.php:14
1380
+ msgctxt "module name"
1381
+ msgid "RapidShare API"
1382
+ msgstr "RapidShare API"
1383
+
1384
+ # @ broken-link-checker
1385
+ #: includes/extra-strings.php:15
1386
+ msgctxt "module name"
1387
+ msgid "YouTube API"
1388
+ msgstr "YouTube API"
1389
+
1390
+ # @ broken-link-checker
1391
+ #: includes/extra-strings.php:16
1392
+ msgctxt "module name"
1393
+ msgid "Posts"
1394
+ msgstr "Beiträge"
1395
+
1396
+ # @ broken-link-checker
1397
+ #: includes/extra-strings.php:17
1398
+ msgctxt "module name"
1399
+ msgid "Pages"
1400
+ msgstr "Seiten"
1401
+
1402
+ # @ broken-link-checker
1403
+ #: includes/instances.php:102
1404
+ #: includes/instances.php:158
1405
+ #, php-format
1406
+ msgid "Container %s[%d] not found"
1407
+ msgstr "Container %s[%d] nicht gefunden"
1408
+
1409
+ # @ broken-link-checker
1410
+ #: includes/instances.php:111
1411
+ #: includes/instances.php:167
1412
+ #, php-format
1413
+ msgid "Parser '%s' not found."
1414
+ msgstr "Parser '%s' nicht gefunden."
1415
+
1416
+ # @ broken-link-checker
1417
+ #: includes/link-query.php:25
1418
+ msgid "Broken"
1419
+ msgstr "Fehlerhaft"
1420
+
1421
+ # @ broken-link-checker
1422
+ #: includes/link-query.php:27
1423
+ msgid "No broken links found"
1424
+ msgstr "Keine fehlerhaften Links gefunden"
1425
+
1426
+ # @ broken-link-checker
1427
+ #: includes/link-query.php:34
1428
+ msgid "Redirects"
1429
+ msgstr "Umleitungen"
1430
+
1431
+ # @ broken-link-checker
1432
+ #: includes/link-query.php:35
1433
+ msgid "Redirected Links"
1434
+ msgstr "Umgeleitete Links"
1435
+
1436
+ # @ broken-link-checker
1437
+ #: includes/link-query.php:36
1438
+ msgid "No redirects found"
1439
+ msgstr "Keine umgeleiteten Links gefunden"
1440
+
1441
+ # @ broken-link-checker
1442
+ #: includes/link-query.php:44
1443
+ msgid "All"
1444
+ msgstr "Alle"
1445
+
1446
+ # @ broken-link-checker
1447
+ #: includes/link-query.php:45
1448
+ msgid "Detected Links"
1449
+ msgstr "Gefundene Links"
1450
 
1451
+ # @ broken-link-checker
1452
+ #: includes/link-query.php:46
1453
+ msgid "No links found (yet)"
1454
+ msgstr "(Noch) keine Links gefunden"
1455
+
1456
+ # @ broken-link-checker
1457
+ #: includes/link-query.php:54
1458
+ msgid "Search Results"
1459
+ msgstr "Such Resultat"
1460
+
1461
+ # @ broken-link-checker
1462
+ #: includes/link-query.php:55
1463
+ #: includes/link-query.php:106
1464
+ msgid "No links found for your query"
1465
+ msgstr "Keine Links für Deine Anfrage gefunden"
1466
+
1467
+ # @ broken-link-checker
1468
+ #: includes/links.php:215
1469
+ msgid "The plugin script was terminated while trying to check the link."
1470
+ msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
1471
+
1472
+ # @ broken-link-checker
1473
+ #: includes/links.php:261
1474
+ msgid "The plugin doesn't know how to check this type of link."
1475
+ msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
1476
+
1477
+ # @ broken-link-checker
1478
+ #: includes/links.php:349
1479
  msgid "Link is valid."
1480
  msgstr "Link ist valide."
1481
 
1482
+ # @ broken-link-checker
1483
+ #: includes/links.php:351
1484
  msgid "Link is broken."
1485
  msgstr "Link ist fehlerhaft."
1486
 
1487
+ # @ broken-link-checker
1488
+ #: includes/links.php:564
1489
+ #: includes/links.php:666
1490
+ #: includes/links.php:693
1491
+ msgid "Link is not valid"
1492
+ msgstr "Link ist nicht gültig"
1493
+
1494
+ # @ broken-link-checker
1495
+ #: includes/links.php:581
1496
+ msgid "This link can not be edited because it is not used anywhere on this site."
1497
+ msgstr "Dieser Link kann nicht bearbeitet werden, weil er nicht überall auf dieser Website verwendet wird."
1498
+
1499
+ # @ broken-link-checker
1500
+ #: includes/links.php:607
1501
+ msgid "Failed to create a DB entry for the new URL."
1502
+ msgstr "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
1503
+
1504
+ # @ broken-link-checker
1505
+ #: includes/links.php:673
1506
+ msgid "This link is not a redirect"
1507
+ msgstr "Dieser Link ist keine Umleitung"
1508
+
1509
+ # @ broken-link-checker
1510
+ #: includes/links.php:720
1511
+ #: includes/links.php:757
1512
+ msgid "Couldn't delete the link's database record"
1513
+ msgstr "Links können nicht aus der Datenbank gelöscht werden"
1514
+
1515
+ # @ broken-link-checker
1516
+ #: includes/links.php:831
1517
+ msgctxt "link status"
1518
+ msgid "Unknown"
1519
+ msgstr "Unbekannt"
1520
+
1521
+ # @ link status
1522
+ # @ broken-link-checker
1523
+ #: includes/links.php:845
1524
+ #: modules/checkers/http.php:263
1525
+ msgid "Unknown Error"
1526
+ msgstr "Unbekannter Fehler"
1527
+
1528
+ # @ broken-link-checker
1529
+ #: includes/links.php:869
1530
+ msgid "Not checked"
1531
+ msgstr "Nicht überprüft"
1532
+
1533
+ # @ broken-link-checker
1534
+ #: includes/links.php:872
1535
+ msgid "False positive"
1536
+ msgstr "Falsch positiv"
1537
+
1538
+ # @ broken-link-checker
1539
+ #: includes/links.php:875
1540
+ msgctxt "link status"
1541
+ msgid "OK"
1542
+ msgstr "OK"
1543
+
1544
+ # @ broken-link-checker
1545
+ #: includes/parsers.php:109
1546
+ #, php-format
1547
+ msgid "Editing is not implemented in the '%s' parser"
1548
+ msgstr "Editieren ist nicht im '%s' Parser implementiert"
1549
+
1550
+ # @ broken-link-checker
1551
+ #: includes/parsers.php:124
1552
+ #, php-format
1553
+ msgid "Unlinking is not implemented in the '%s' parser"
1554
+ msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
1555
+
1556
+ # @ default
1557
+ #: includes/utility-class.php:277
1558
+ #, php-format
1559
+ msgid "%d second"
1560
+ msgid_plural "%d seconds"
1561
+ msgstr[0] "%s Sekunde"
1562
+ msgstr[1] "%s Sekunden"
1563
+
1564
+ # @ default
1565
+ #: includes/utility-class.php:278
1566
+ #, php-format
1567
+ msgid "%d second ago"
1568
+ msgid_plural "%d seconds ago"
1569
+ msgstr[0] "%s Sekunde vergangen"
1570
+ msgstr[1] "%s Sekunden vergangen"
1571
+
1572
+ # @ default
1573
+ #: includes/utility-class.php:281
1574
+ #, php-format
1575
+ msgid "%d minute"
1576
+ msgid_plural "%d minutes"
1577
+ msgstr[0] "%d Minute"
1578
+ msgstr[1] "%d Minuten"
1579
+
1580
+ # @ default
1581
+ #: includes/utility-class.php:282
1582
+ #, php-format
1583
+ msgid "%d minute ago"
1584
+ msgid_plural "%d minutes ago"
1585
+ msgstr[0] "%d Minute vergangen"
1586
+ msgstr[1] "%d Minuten vergangen"
1587
+
1588
+ # @ default
1589
+ #: includes/utility-class.php:285
1590
+ #, php-format
1591
+ msgid "%d hour"
1592
+ msgid_plural "%d hours"
1593
+ msgstr[0] "%d Stunde"
1594
+ msgstr[1] "%d Stunden"
1595
+
1596
+ # @ default
1597
+ #: includes/utility-class.php:286
1598
+ #, php-format
1599
+ msgid "%d hour ago"
1600
+ msgid_plural "%d hours ago"
1601
+ msgstr[0] "%d Stunde vergangen"
1602
+ msgstr[1] "%d Stunden vergangen"
1603
+
1604
+ # @ default
1605
+ #: includes/utility-class.php:289
1606
+ #, php-format
1607
+ msgid "%d day"
1608
+ msgid_plural "%d days"
1609
+ msgstr[0] "%d Tag"
1610
+ msgstr[1] "%d Tage"
1611
+
1612
+ # @ default
1613
+ #: includes/utility-class.php:290
1614
+ #, php-format
1615
+ msgid "%d day ago"
1616
+ msgid_plural "%d days ago"
1617
+ msgstr[0] "%d Tag vergangen"
1618
+ msgstr[1] "%d Tage vergangen"
1619
+
1620
+ # @ default
1621
+ #: includes/utility-class.php:293
1622
+ #, php-format
1623
+ msgid "%d month"
1624
+ msgid_plural "%d months"
1625
+ msgstr[0] "%d Monat"
1626
+ msgstr[1] "%d Monate"
1627
+
1628
+ # @ default
1629
+ #: includes/utility-class.php:294
1630
+ #, php-format
1631
+ msgid "%d month ago"
1632
+ msgid_plural "%d months ago"
1633
+ msgstr[0] "%d Monat vergangen"
1634
+ msgstr[1] "%d Monate vergangen"
1635
+
1636
+ # @ broken-link-checker
1637
+ #: modules/checkers/http.php:242
1638
+ msgid "Server Not Found"
1639
+ msgstr "Server nicht gefunden"
1640
+
1641
+ # @ broken-link-checker
1642
+ #: modules/checkers/http.php:257
1643
+ msgid "Connection Failed"
1644
+ msgstr "Verbindung fehlgeschlagen"
1645
+
1646
+ # @ broken-link-checker
1647
+ #: modules/checkers/http.php:292
1648
+ #: modules/checkers/http.php:362
1649
+ #, php-format
1650
+ msgid "HTTP code : %d"
1651
+ msgstr "HTTP Code: %d"
1652
+
1653
+ # @ broken-link-checker
1654
+ #: modules/checkers/http.php:294
1655
+ #: modules/checkers/http.php:364
1656
+ msgid "(No response)"
1657
+ msgstr "(Keine Antwort)"
1658
+
1659
+ # @ broken-link-checker
1660
+ #: modules/checkers/http.php:300
1661
  msgid "Most likely the connection timed out or the domain doesn't exist."
1662
+ msgstr "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
1663
 
1664
+ # @ broken-link-checker
1665
+ #: modules/checkers/http.php:371
1666
+ msgid "Request timed out."
1667
+ msgstr "Erfordert Zeitlimit."
1668
+
1669
+ # @ broken-link-checker
1670
+ #: modules/checkers/http.php:389
1671
+ msgid "Using Snoopy"
1672
+ msgstr "Benutzt Snoopy"
1673
+
1674
+ # @ broken-link-checker
1675
+ #: modules/containers/blogroll.php:21
1676
+ msgid "Bookmark"
1677
+ msgstr "Lesezeichen"
1678
+
1679
+ # @ broken-link-checker
1680
+ #: modules/containers/blogroll.php:27
1681
+ #: modules/containers/blogroll.php:46
1682
+ msgid "Edit this bookmark"
1683
+ msgstr "Lesezeichen bearbeiten"
1684
+
1685
+ # @ default
1686
+ #: modules/containers/blogroll.php:47
1687
  #, php-format
1688
+ msgid ""
1689
+ "You are about to delete this link '%s'\n"
1690
+ " 'Cancel' to stop, 'OK' to delete."
1691
+ msgstr ""
1692
+ "Möchten Sie diesen Link löschen '%s'\n"
1693
+ " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
1694
 
1695
+ # @ broken-link-checker
1696
+ #: modules/containers/blogroll.php:97
1697
  #, php-format
1698
+ msgid "Updating bookmark %d failed"
1699
+ msgstr "Lesezeichen Aktualisierung %d fehlgeschlagen"
1700
 
1701
+ # @ broken-link-checker
1702
+ #: modules/containers/blogroll.php:128
1703
+ #, php-format
1704
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
1705
+ msgstr "Löschen des Blogroll Link \"%s\" (%d) schlug fehl"
1706
+
1707
+ # @ broken-link-checker
1708
+ #: modules/containers/blogroll.php:299
1709
+ #, php-format
1710
+ msgid "%d blogroll link deleted."
1711
+ msgid_plural "%d blogroll links deleted."
1712
+ msgstr[0] "%d Blogroll Link gelöscht."
1713
+ msgstr[1] "%d Blogroll Links gelöscht."
1714
+
1715
+ # @ broken-link-checker
1716
+ #: modules/containers/comment.php:53
1717
+ #, php-format
1718
+ msgid "Updating comment %d failed"
1719
+ msgstr "Kommentar Aktualisierung %d fehlgeschlagen"
1720
+
1721
+ # @ broken-link-checker
1722
+ #: modules/containers/comment.php:74
1723
+ #, php-format
1724
+ msgid "Failed to delete comment %d"
1725
+ msgstr "Fehler beim Kommentar löschen %d"
1726
+
1727
+ # @ broken-link-checker
1728
+ #: modules/containers/comment.php:95
1729
+ #, php-format
1730
+ msgid "Can't move comment %d to the trash"
1731
+ msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
1732
+
1733
+ # @ default
1734
+ #: modules/containers/comment.php:153
1735
+ #: modules/containers/comment.php:195
1736
+ msgid "Edit comment"
1737
+ msgstr "Kommentar bearbeiten"
1738
+
1739
+ # @ default
1740
+ #: modules/containers/comment.php:160
1741
+ msgid "Delete Permanently"
1742
+ msgstr "Endgültig löschen"
1743
+
1744
+ # @ default
1745
+ #: modules/containers/comment.php:162
1746
+ msgid "Move this comment to the trash"
1747
+ msgstr "%d Kommentar in den Papierkorb verschieben"
1748
+
1749
+ # @ default
1750
+ #: modules/containers/comment.php:162
1751
+ msgctxt "verb"
1752
+ msgid "Trash"
1753
+ msgstr "Papierkorb"
1754
+
1755
+ # @ broken-link-checker
1756
+ #: modules/containers/comment.php:166
1757
+ msgid "View comment"
1758
+ msgstr "Kommentar ansehen"
1759
+
1760
+ # @ broken-link-checker
1761
+ #: modules/containers/comment.php:183
1762
+ msgid "Comment"
1763
+ msgstr "Kommentar"
1764
+
1765
+ # @ broken-link-checker
1766
+ #: modules/containers/comment.php:367
1767
+ #, php-format
1768
+ msgid "%d comment has been deleted."
1769
+ msgid_plural "%d comments have been deleted."
1770
+ msgstr[0] "%d Kommentar wurde gelöscht."
1771
+ msgstr[1] "%d Kommentare wurde gelöscht."
1772
+
1773
+ # @ broken-link-checker
1774
+ #: modules/containers/comment.php:386
1775
+ #, php-format
1776
+ msgid "%d comment moved to the Trash."
1777
+ msgid_plural "%d comments moved to the Trash."
1778
+ msgstr[0] "%d Kommentar in den Papierkorb verschoben."
1779
+ msgstr[1] "%d Kommentare in den Papierkorb verschoben."
1780
+
1781
+ # @ broken-link-checker
1782
+ #: modules/containers/custom_field.php:84
1783
+ #, php-format
1784
+ msgid "Failed to update the meta field '%s' on %s [%d]"
1785
+ msgstr "Aktualisieren des Meta-Feldes '%s' in %s [%d] schlug fehl"
1786
+
1787
+ # @ broken-link-checker
1788
+ #: modules/containers/custom_field.php:110
1789
+ #, php-format
1790
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
1791
+ msgstr "Löschen des Meta-Feldes '%s' in %s [%d] schlug fehl"
1792
+
1793
+ # @ default
1794
+ #: modules/containers/custom_field.php:187
1795
+ msgid "Edit this post"
1796
+ msgstr "Bearbeiten Sie diesen Beitrag"
1797
+
1798
+ # @ broken-link-checker
1799
+ #: modules/containers/custom_field.php:217
1800
+ #, php-format
1801
+ msgid "View \"%s\""
1802
+ msgstr "\"%s\" ansehen"
1803
+
1804
+ # @ broken-link-checker
1805
+ #: modules/containers/dummy.php:34
1806
+ #: modules/containers/dummy.php:45
1807
+ #, php-format
1808
+ msgid "I don't know how to edit a '%s' [%d]."
1809
+ msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
1810
+
1811
+ # @ broken-link-checker
1812
+ #: modules/parsers/image.php:156
1813
+ msgid "Image"
1814
+ msgstr "Bild"
1815
+
1816
+ # @ broken-link-checker
1817
+ #: modules/parsers/metadata.php:117
1818
+ msgid "Custom field"
1819
+ msgstr "Benutzerdefiniertes Feld"
1820
 
1821
+ #. Plugin URI of the plugin/theme
1822
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1823
  msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1824
 
1825
+ #. Description of the plugin/theme
1826
+ msgid "Checks your blog for broken links and missing images and notifies you on the dashboard if any are found."
1827
+ msgstr "Überprüft Ihr Blog auf fehlerhafte Links und nicht vorhandene Bilder und benachrichtigt Sie im Dashboard, wenn nichts gefunden wird."
1828
 
1829
+ #. Author of the plugin/theme
1830
  msgid "Janis Elsts"
1831
  msgstr "Janis Elsts"
1832
 
1833
+ #. Author URI of the plugin/theme
1834
  msgid "http://w-shadow.com/blog/"
1835
  msgstr "http://w-shadow.com/blog/"
1836
 
languages/broken-link-checker-pt_PT.mo CHANGED
Binary file
languages/broken-link-checker-pt_PT.po CHANGED
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Poedit-Language: Portuguese\n"
21
  "X-Poedit-Country: PORTUGAL\n"
22
  "X-Poedit-SourceCharset: utf-8\n"
23
- "X-Poedit-KeywordsList: __;_n;_e;_x\n"
24
  "X-Poedit-Basepath: ..\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
 
@@ -714,10 +714,10 @@ msgstr "Erro ao apagar o post \"%s\" (%d)"
714
 
715
  #: includes/any-post.php:698
716
  #, php-format
717
- msgid "%d post deleted"
718
- msgid_plural "%d posts deleted"
719
- msgstr[0] "%d post apagado"
720
- msgstr[1] "%d posts apagados"
721
 
722
  #: includes/any-post.php:700
723
  #, php-format
@@ -1039,6 +1039,14 @@ msgstr ""
1039
  msgid "Hide debug info"
1040
  msgstr "Ocultar informação"
1041
 
 
 
 
 
 
 
 
 
1042
  #: includes/admin/search-form.php:42
1043
  msgid "Link text"
1044
  msgstr "Texto do link"
@@ -1071,6 +1079,10 @@ msgstr "Qualquer"
1071
  msgid "Links used in"
1072
  msgstr "Links utilizados em"
1073
 
 
 
 
 
1074
  #: includes/admin/table-printer.php:148
1075
  msgid "Compact View"
1076
  msgstr "Visão compacta"
@@ -1323,17 +1335,17 @@ msgstr "Comentário"
1323
 
1324
  #: modules/containers/comment.php:360
1325
  #, php-format
1326
- msgid "%d comment has been deleted"
1327
- msgid_plural "%d comments have been deleted"
1328
- msgstr[0] "%d comentário foi apagado"
1329
- msgstr[1] "%d comentários foram apagados"
1330
 
1331
  #: modules/containers/comment.php:379
1332
  #, php-format
1333
- msgid "%d comment moved to the trash"
1334
- msgid_plural "%d comments moved to the trash"
1335
- msgstr[0] "%d comentário movido para o lixo"
1336
- msgstr[1] "%d comentários movidos para o lixo"
1337
 
1338
  #: modules/containers/custom_field.php:84
1339
  #, php-format
20
  "X-Poedit-Language: Portuguese\n"
21
  "X-Poedit-Country: PORTUGAL\n"
22
  "X-Poedit-SourceCharset: utf-8\n"
23
+ "X-Poedit-KeywordsList: __;_n;_e;_x;esc_attr_e\n"
24
  "X-Poedit-Basepath: ..\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
 
714
 
715
  #: includes/any-post.php:698
716
  #, php-format
717
+ msgid "%d post deleted."
718
+ msgid_plural "%d posts deleted."
719
+ msgstr[0] "%d post apagado."
720
+ msgstr[1] "%d posts apagados."
721
 
722
  #: includes/any-post.php:700
723
  #, php-format
1039
  msgid "Hide debug info"
1040
  msgstr "Ocultar informação"
1041
 
1042
+ #: includes/admin/search-form.php:16
1043
+ msgid "Save This Search As a Filter"
1044
+ msgstr "Gravar esta Procura como um filtro"
1045
+
1046
+ #: includes/admin/search-form.php:26
1047
+ msgid "Delete This Filter"
1048
+ msgstr "Apagar este post definitivamente"
1049
+
1050
  #: includes/admin/search-form.php:42
1051
  msgid "Link text"
1052
  msgstr "Texto do link"
1079
  msgid "Links used in"
1080
  msgstr "Links utilizados em"
1081
 
1082
+ #: includes/admin/search-form.php:112
1083
+ msgid "Search Links"
1084
+ msgstr "Procurar"
1085
+
1086
  #: includes/admin/table-printer.php:148
1087
  msgid "Compact View"
1088
  msgstr "Visão compacta"
1335
 
1336
  #: modules/containers/comment.php:360
1337
  #, php-format
1338
+ msgid "%d comment has been deleted."
1339
+ msgid_plural "%d comments have been deleted."
1340
+ msgstr[0] "%d comentário foi apagado."
1341
+ msgstr[1] "%d comentários foram apagados."
1342
 
1343
  #: modules/containers/comment.php:379
1344
  #, php-format
1345
+ msgid "%d comment moved to the trash."
1346
+ msgid_plural "%d comments moved to the trash."
1347
+ msgstr[0] "%d comentário movido para o lixo."
1348
+ msgstr[1] "%d comentários movidos para o lixo."
1349
 
1350
  #: modules/containers/custom_field.php:84
1351
  #, php-format
languages/broken-link-checker.pot CHANGED
@@ -1,4 +1,4 @@
1
- # Translation of the WordPress plugin Broken Link Checker 0.9.5-alpha by Janis Elsts.
2
  # Copyright (C) 2010 Janis Elsts
3
  # This file is distributed under the same license as the Broken Link Checker package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
@@ -6,9 +6,9 @@
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: Broken Link Checker 0.9.5-alpha\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
11
- "POT-Creation-Date: 2010-08-04 07:17+0000\n"
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,179 +29,179 @@ msgstr ""
29
  msgid "Automatically expand the widget if broken links have been detected"
30
  msgstr ""
31
 
32
- #: core/core.php:459
33
  msgid "Link Checker Settings"
34
  msgstr ""
35
 
36
- #: core/core.php:460
37
  msgid "Link Checker"
38
  msgstr ""
39
 
40
- #: core/core.php:465 includes/link-query.php:26
41
  msgid "Broken Links"
42
  msgstr ""
43
 
44
- #: core/core.php:481
45
  msgid "View Broken Links"
46
  msgstr ""
47
 
48
- #: core/core.php:518
49
  msgid "Settings"
50
  msgstr ""
51
 
52
- #: core/core.php:530 core/core.php:1312
53
  #, php-format
54
  msgid ""
55
  "Error: The plugin's database tables are not up to date! (Current version : %"
56
  "d, expected : %d)"
57
  msgstr ""
58
 
59
- #: core/core.php:674
60
  msgid "Settings saved."
61
  msgstr ""
62
 
63
- #: core/core.php:681
64
  msgid "Complete site recheck started."
65
  msgstr ""
66
 
67
- #: core/core.php:693 core/core.php:2806 includes/admin/table-printer.php:521
68
  msgid "Details"
69
  msgstr ""
70
 
71
- #: core/core.php:707
72
  msgid "General"
73
  msgstr ""
74
 
75
- #: core/core.php:708
76
  msgid "Look For Links In"
77
  msgstr ""
78
 
79
- #: core/core.php:709
80
  msgid "Which Links To Check"
81
  msgstr ""
82
 
83
- #: core/core.php:710
84
  msgid "Protocols & APIs"
85
  msgstr ""
86
 
87
- #: core/core.php:711
88
  msgid "Advanced"
89
  msgstr ""
90
 
91
- #: core/core.php:715
92
  msgid "Broken Link Checker Options"
93
  msgstr ""
94
 
95
- #: core/core.php:741 includes/admin/table-printer.php:181
96
  msgid "Status"
97
  msgstr ""
98
 
99
- #: core/core.php:743 includes/admin/options-page-js.php:56
100
  msgid "Show debug info"
101
  msgstr ""
102
 
103
- #: core/core.php:771
104
  msgid "Check each link"
105
  msgstr ""
106
 
107
- #: core/core.php:776
108
  #, php-format
109
  msgid "Every %s hours"
110
  msgstr ""
111
 
112
- #: core/core.php:785
113
  msgid ""
114
  "Existing links will be checked this often. New links will usually be checked "
115
  "ASAP."
116
  msgstr ""
117
 
118
- #: core/core.php:792
119
  msgid "E-mail notifications"
120
  msgstr ""
121
 
122
- #: core/core.php:798
123
  msgid "Send me e-mail notifications about newly detected broken links"
124
  msgstr ""
125
 
126
- #: core/core.php:805
127
  msgid "Link tweaks"
128
  msgstr ""
129
 
130
- #: core/core.php:811
131
  msgid "Apply custom formatting to broken links"
132
  msgstr ""
133
 
134
- #: core/core.php:815 core/core.php:843
135
  msgid "Edit CSS"
136
  msgstr ""
137
 
138
- #: core/core.php:839
139
  msgid "Apply custom formatting to removed links"
140
  msgstr ""
141
 
142
- #: core/core.php:867
143
  msgid "Stop search engines from following broken links"
144
  msgstr ""
145
 
146
- #: core/core.php:884
147
  msgid "Look for links in"
148
  msgstr ""
149
 
150
- #: core/core.php:895
151
  msgid "Post statuses"
152
  msgstr ""
153
 
154
- #: core/core.php:928
155
  msgid "Link types"
156
  msgstr ""
157
 
158
- #: core/core.php:934
159
  msgid "Error : All link parsers missing!"
160
  msgstr ""
161
 
162
- #: core/core.php:941
163
  msgid "Exclusion list"
164
  msgstr ""
165
 
166
- #: core/core.php:942
167
  msgid ""
168
  "Don't check links where the URL contains any of these words (one per line) :"
169
  msgstr ""
170
 
171
- #: core/core.php:960
172
  msgid "Check links using"
173
  msgstr ""
174
 
175
- #: core/core.php:979 includes/links.php:855
176
  msgid "Timeout"
177
  msgstr ""
178
 
179
- #: core/core.php:985 core/core.php:1031 core/core.php:2933
180
  #, php-format
181
  msgid "%s seconds"
182
  msgstr ""
183
 
184
- #: core/core.php:994
185
  msgid "Links that take longer than this to load will be marked as broken."
186
  msgstr ""
187
 
188
- #: core/core.php:1001
189
  msgid "Link monitor"
190
  msgstr ""
191
 
192
- #: core/core.php:1009
193
  msgid "Run continuously while the Dashboard is open"
194
  msgstr ""
195
 
196
- #: core/core.php:1017
197
  msgid "Run hourly in the background"
198
  msgstr ""
199
 
200
- #: core/core.php:1025
201
  msgid "Max. execution time"
202
  msgstr ""
203
 
204
- #: core/core.php:1042
205
  msgid ""
206
  "The plugin works by periodically launching a background job that parses your "
207
  "posts for links, checks the discovered URLs, and performs other time-"
@@ -209,134 +209,157 @@ msgid ""
209
  "may run each time before stopping."
210
  msgstr ""
211
 
212
- #: core/core.php:1052
213
  msgid "Custom temporary directory"
214
  msgstr ""
215
 
216
- #: core/core.php:1061
217
  msgid "OK"
218
  msgstr ""
219
 
220
- #: core/core.php:1064
221
  msgid "Error : This directory isn't writable by PHP."
222
  msgstr ""
223
 
224
- #: core/core.php:1069
225
  msgid "Error : This directory doesn't exist."
226
  msgstr ""
227
 
228
- #: core/core.php:1077
229
  msgid ""
230
  "Set this field if you want the plugin to use a custom directory for its "
231
  "lockfiles. Otherwise, leave it blank."
232
  msgstr ""
233
 
234
- #: core/core.php:1084
235
  msgid "Server load limit"
236
  msgstr ""
237
 
238
- #: core/core.php:1102
 
 
 
 
 
239
  #, php-format
240
  msgid ""
241
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
242
  "a> rises above this number. Leave this field blank to disable load limiting."
243
  msgstr ""
244
 
245
- #: core/core.php:1112
 
 
 
 
246
  msgid ""
247
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
248
  "code> is present and accessible."
249
  msgstr ""
250
 
251
- #: core/core.php:1120
252
  msgid "Forced recheck"
253
  msgstr ""
254
 
255
- #: core/core.php:1123
256
  msgid "Re-check all pages"
257
  msgstr ""
258
 
259
- #: core/core.php:1127
260
  msgid ""
261
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
262
  "database and recheck the entire site from scratch."
263
  msgstr ""
264
 
265
- #: core/core.php:1138
266
  msgid "Save Changes"
267
  msgstr ""
268
 
269
- #: core/core.php:1183
270
  msgid "Configure"
271
  msgstr ""
272
 
273
- #: core/core.php:1243
274
  msgid "Upgrade to Pro to enable this feature"
275
  msgstr ""
276
 
277
- #: core/core.php:1278
278
  msgid "Check URLs entered in these custom fields (one per line) :"
279
  msgstr ""
280
 
281
- #: core/core.php:1414 core/core.php:1497 core/core.php:1529
282
  #, php-format
283
  msgid "Database error : %s"
284
  msgstr ""
285
 
286
- #: core/core.php:1479
287
  msgid "You must enter a filter name!"
288
  msgstr ""
289
 
290
- #: core/core.php:1483
291
  msgid "Invalid search query."
292
  msgstr ""
293
 
294
- #: core/core.php:1492
295
  #, php-format
296
  msgid "Filter \"%s\" created"
297
  msgstr ""
298
 
299
- #: core/core.php:1519
300
  msgid "Filter ID not specified."
301
  msgstr ""
302
 
303
- #: core/core.php:1526
304
  msgid "Filter deleted"
305
  msgstr ""
306
 
307
- #: core/core.php:1574
308
  #, php-format
309
  msgid "Replaced %d redirect with a direct link"
310
  msgid_plural "Replaced %d redirects with direct links"
311
  msgstr[0] ""
312
  msgstr[1] ""
313
 
314
- #: core/core.php:1585
315
  #, php-format
316
  msgid "Failed to fix %d redirect"
317
  msgid_plural "Failed to fix %d redirects"
318
  msgstr[0] ""
319
  msgstr[1] ""
320
 
321
- #: core/core.php:1595
322
  msgid "None of the selected links are redirects!"
323
  msgstr ""
324
 
325
- #: core/core.php:1641
 
 
 
 
 
 
 
 
 
 
 
 
 
 
326
  #, php-format
327
  msgid "%d link removed"
328
  msgid_plural "%d links removed"
329
  msgstr[0] ""
330
  msgstr[1] ""
331
 
332
- #: core/core.php:1652
333
  #, php-format
334
  msgid "Failed to remove %d link"
335
  msgid_plural "Failed to remove %d links"
336
  msgstr[0] ""
337
  msgstr[1] ""
338
 
339
- #: core/core.php:1761
340
  #, php-format
341
  msgid ""
342
  "%d item was skipped because it can't be moved to the Trash. You need to "
@@ -347,186 +370,186 @@ msgid_plural ""
347
  msgstr[0] ""
348
  msgstr[1] ""
349
 
350
- #: core/core.php:1782
351
  msgid "Didn't find anything to delete!"
352
  msgstr ""
353
 
354
- #: core/core.php:1810
355
  #, php-format
356
  msgid "%d link scheduled for rechecking"
357
  msgid_plural "%d links scheduled for rechecking"
358
  msgstr[0] ""
359
  msgstr[1] ""
360
 
361
- #: core/core.php:1855 core/core.php:2460
362
  msgid "This link was manually marked as working by the user."
363
  msgstr ""
364
 
365
- #: core/core.php:1862
366
  #, php-format
367
  msgid "Couldn't modify link %d"
368
  msgstr ""
369
 
370
- #: core/core.php:1873
371
  #, php-format
372
  msgid "%d link marked as not broken"
373
  msgid_plural "%d links marked as not broken"
374
  msgstr[0] ""
375
  msgstr[1] ""
376
 
377
- #: core/core.php:1913
378
  msgid "Table columns"
379
  msgstr ""
380
 
381
- #: core/core.php:1932
382
  msgid "Show on screen"
383
  msgstr ""
384
 
385
- #: core/core.php:1939
386
  msgid "links"
387
  msgstr ""
388
 
389
- #: core/core.php:1940 includes/admin/table-printer.php:134
390
  msgid "Apply"
391
  msgstr ""
392
 
393
- #: core/core.php:1944
394
  msgid "Misc"
395
  msgstr ""
396
 
397
- #: core/core.php:1959
398
  #, php-format
399
  msgid "Highlight links broken for at least %s days"
400
  msgstr ""
401
 
402
- #: core/core.php:1968
403
  msgid "Color-code status codes"
404
  msgstr ""
405
 
406
- #: core/core.php:1985 core/core.php:2445 core/core.php:2481 core/core.php:2544
407
  msgid "You're not allowed to do that!"
408
  msgstr ""
409
 
410
- #: core/core.php:2326
411
  msgid "View broken links"
412
  msgstr ""
413
 
414
- #: core/core.php:2327
415
  #, php-format
416
  msgid "Found %d broken link"
417
  msgid_plural "Found %d broken links"
418
  msgstr[0] ""
419
  msgstr[1] ""
420
 
421
- #: core/core.php:2333
422
  msgid "No broken links found."
423
  msgstr ""
424
 
425
- #: core/core.php:2340
426
  #, php-format
427
  msgid "%d URL in the work queue"
428
  msgid_plural "%d URLs in the work queue"
429
  msgstr[0] ""
430
  msgstr[1] ""
431
 
432
- #: core/core.php:2343
433
  msgid "No URLs in the work queue."
434
  msgstr ""
435
 
436
- #: core/core.php:2349
437
  #, php-format
438
  msgid "Detected %d unique URL"
439
  msgid_plural "Detected %d unique URLs"
440
  msgstr[0] ""
441
  msgstr[1] ""
442
 
443
- #: core/core.php:2350
444
  #, php-format
445
  msgid "in %d link"
446
  msgid_plural "in %d links"
447
  msgstr[0] ""
448
  msgstr[1] ""
449
 
450
- #: core/core.php:2355
451
  msgid "and still searching..."
452
  msgstr ""
453
 
454
- #: core/core.php:2361
455
  msgid "Searching your blog for links..."
456
  msgstr ""
457
 
458
- #: core/core.php:2363
459
  msgid "No links detected."
460
  msgstr ""
461
 
462
- #: core/core.php:2389
463
  msgctxt "current load"
464
  msgid "Unknown"
465
  msgstr ""
466
 
467
- #: core/core.php:2453 core/core.php:2491 core/core.php:2554
468
  #, php-format
469
  msgid "Oops, I can't find the link %d"
470
  msgstr ""
471
 
472
- #: core/core.php:2466
473
  msgid "Oops, couldn't modify the link!"
474
  msgstr ""
475
 
476
- #: core/core.php:2469 core/core.php:2580
477
  msgid "Error : link_id not specified"
478
  msgstr ""
479
 
480
- #: core/core.php:2501
481
  msgid "Oops, the new URL is invalid!"
482
  msgstr ""
483
 
484
- #: core/core.php:2512 core/core.php:2563
485
  msgid "An unexpected error occured!"
486
  msgstr ""
487
 
488
- #: core/core.php:2530
489
  msgid "Error : link_id or new_url not specified"
490
  msgstr ""
491
 
492
- #: core/core.php:2589
493
  msgid "You don't have sufficient privileges to access this information!"
494
  msgstr ""
495
 
496
- #: core/core.php:2602
497
  msgid "Error : link ID not specified"
498
  msgstr ""
499
 
500
- #: core/core.php:2616
501
  #, php-format
502
  msgid "Failed to load link details (%s)"
503
  msgstr ""
504
 
505
- #. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.5-alpha) #-#-#-#-#
506
  #. Plugin Name of the plugin/theme
507
- #: core/core.php:2778
508
  msgid "Broken Link Checker"
509
  msgstr ""
510
 
511
- #: core/core.php:2792
512
  #, php-format
513
  msgid ""
514
  "The current temporary directory is not accessible; please <a href=\"%s\">set "
515
  "a different one</a>."
516
  msgstr ""
517
 
518
- #: core/core.php:2797
519
  #, php-format
520
  msgid ""
521
  "Please make the directory <code>%1$s</code> writable by plugins or <a href="
522
  "\"%2$s\">set a custom temporary directory</a>."
523
  msgstr ""
524
 
525
- #: core/core.php:2804
526
  msgid "Broken Link Checker can't create a lockfile."
527
  msgstr ""
528
 
529
- #: core/core.php:2809
530
  msgid ""
531
  "The plugin uses a file-based locking mechanism to ensure that only one "
532
  "instance of the resource-heavy link checking algorithm is running at any "
@@ -537,72 +560,72 @@ msgid ""
537
  "specify a custom temporary directory in the plugin's settings."
538
  msgstr ""
539
 
540
- #: core/core.php:2828
541
  msgid "PHP version"
542
  msgstr ""
543
 
544
- #: core/core.php:2834
545
  msgid "MySQL version"
546
  msgstr ""
547
 
548
- #: core/core.php:2847
549
  msgid ""
550
  "You have an old version of CURL. Redirect detection may not work properly."
551
  msgstr ""
552
 
553
- #: core/core.php:2859 core/core.php:2875 core/core.php:2880
554
  msgid "Not installed"
555
  msgstr ""
556
 
557
- #: core/core.php:2862
558
  msgid "CURL version"
559
  msgstr ""
560
 
561
- #: core/core.php:2868
562
  msgid "Installed"
563
  msgstr ""
564
 
565
- #: core/core.php:2881
566
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
567
  msgstr ""
568
 
569
- #: core/core.php:2892
570
  msgid "On"
571
  msgstr ""
572
 
573
- #: core/core.php:2893
574
  msgid "Redirects may be detected as broken links when safe_mode is on."
575
  msgstr ""
576
 
577
- #: core/core.php:2898 core/core.php:2912
578
  msgid "Off"
579
  msgstr ""
580
 
581
- #: core/core.php:2906
582
  #, php-format
583
  msgid "On ( %s )"
584
  msgstr ""
585
 
586
- #: core/core.php:2907
587
  msgid "Redirects may be detected as broken links when open_basedir is on."
588
  msgstr ""
589
 
590
- #: core/core.php:2926
591
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
592
  msgstr ""
593
 
594
- #: core/core.php:2950
595
  msgid ""
596
  "If this value is zero even after several page reloads you have probably "
597
  "encountered a bug."
598
  msgstr ""
599
 
600
- #: core/core.php:3006
601
  #, php-format
602
  msgid "[%s] Broken links detected"
603
  msgstr ""
604
 
605
- #: core/core.php:3012
606
  #, php-format
607
  msgid "Broken Link Checker has detected %d new broken link on your site."
608
  msgid_plural ""
@@ -610,45 +633,45 @@ msgid_plural ""
610
  msgstr[0] ""
611
  msgstr[1] ""
612
 
613
- #: core/core.php:3027
614
  #, php-format
615
  msgid "Here's a list of the first %d broken links:"
616
  msgid_plural "Here's a list of the first %d broken links:"
617
  msgstr[0] ""
618
  msgstr[1] ""
619
 
620
- #: core/core.php:3035
621
  msgid "Here's a list of the new broken links: "
622
  msgstr ""
623
 
624
- #: core/core.php:3047
625
  #, php-format
626
  msgid "Link text : %s"
627
  msgstr ""
628
 
629
- #: core/core.php:3048
630
  #, php-format
631
  msgid "Link URL : <a href=\"%s\">%s</a>"
632
  msgstr ""
633
 
634
- #: core/core.php:3049
635
  #, php-format
636
  msgid "Source : %s"
637
  msgstr ""
638
 
639
- #: core/core.php:3063
640
  msgid "You can see all broken links here:"
641
  msgstr ""
642
 
643
- #: core/init.php:230
644
  msgid "Once Weekly"
645
  msgstr ""
646
 
647
- #: core/init.php:236
648
  msgid "Twice a Month"
649
  msgstr ""
650
 
651
- #: core/init.php:259
652
  msgid "Broken Link Checker installation failed"
653
  msgstr ""
654
 
@@ -661,8 +684,7 @@ msgstr ""
661
  msgid "Wait..."
662
  msgstr ""
663
 
664
- #: includes/admin/links-page-js.php:99 includes/admin/table-printer.php:530
665
- #: includes/admin/table-printer.php:620
666
  msgid "Not broken"
667
  msgstr ""
668
 
@@ -699,8 +721,8 @@ msgstr ""
699
  msgid "The plugin failed to remove the link."
700
  msgstr ""
701
 
702
- #: includes/admin/links-page-js.php:361 includes/admin/table-printer.php:249
703
- #: includes/admin/table-printer.php:524 includes/admin/table-printer.php:614
704
  msgid "Unlink"
705
  msgstr ""
706
 
@@ -721,6 +743,21 @@ msgid ""
721
  "'Cancel' to stop, 'OK' to delete"
722
  msgstr ""
723
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
724
  #: includes/admin/options-page-js.php:54
725
  msgid "Hide debug info"
726
  msgstr ""
@@ -741,12 +778,11 @@ msgstr ""
741
  msgid "Link text"
742
  msgstr ""
743
 
744
- #: includes/admin/search-form.php:45 includes/admin/table-printer.php:176
745
- #: includes/admin/table-printer.php:186
746
  msgid "URL"
747
  msgstr ""
748
 
749
- #: includes/admin/search-form.php:48 includes/admin/table-printer.php:422
750
  msgid "HTTP code"
751
  msgstr ""
752
 
@@ -770,266 +806,286 @@ msgstr ""
770
  msgid "Search Links"
771
  msgstr ""
772
 
773
- #: includes/admin/search-form.php:113 includes/admin/table-printer.php:540
774
- #: includes/admin/table-printer.php:628 includes/admin/table-printer.php:634
775
  msgid "Cancel"
776
  msgstr ""
777
 
778
- #: includes/admin/table-printer.php:147
779
  msgid "Compact View"
780
  msgstr ""
781
 
782
- #: includes/admin/table-printer.php:148
783
  msgid "Detailed View"
784
  msgstr ""
785
 
786
- #: includes/admin/table-printer.php:165
787
  msgid "Source"
788
  msgstr ""
789
 
790
- #: includes/admin/table-printer.php:171 includes/admin/table-printer.php:197
791
  msgid "Link Text"
792
  msgstr ""
793
 
794
- #: includes/admin/table-printer.php:191
795
- msgid "Used in"
796
  msgstr ""
797
 
798
- #: includes/admin/table-printer.php:245
799
- msgid "Bulk Actions"
800
  msgstr ""
801
 
802
- #: includes/admin/table-printer.php:246
803
  msgid "Recheck"
804
  msgstr ""
805
 
806
- #: includes/admin/table-printer.php:247
807
  msgid "Fix redirects"
808
  msgstr ""
809
 
810
- #: includes/admin/table-printer.php:248
811
  msgid "Mark as not broken"
812
  msgstr ""
813
 
814
- #: includes/admin/table-printer.php:252
815
  msgid "Move sources to Trash"
816
  msgstr ""
817
 
818
- #: includes/admin/table-printer.php:254
819
  msgid "Delete sources"
820
  msgstr ""
821
 
822
- #: includes/admin/table-printer.php:269
823
  msgid "&laquo;"
824
  msgstr ""
825
 
826
- #: includes/admin/table-printer.php:270
827
  msgid "&raquo;"
828
  msgstr ""
829
 
830
- #: includes/admin/table-printer.php:278
831
  #, php-format
832
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
833
  msgstr ""
834
 
835
- #: includes/admin/table-printer.php:407
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
836
  msgid "Post published on"
837
  msgstr ""
838
 
839
- #: includes/admin/table-printer.php:412
840
  msgid "Link last checked"
841
  msgstr ""
842
 
843
- #: includes/admin/table-printer.php:416
844
  msgid "Never"
845
  msgstr ""
846
 
847
- #: includes/admin/table-printer.php:427
848
  msgid "Response time"
849
  msgstr ""
850
 
851
- #: includes/admin/table-printer.php:429
852
  #, php-format
853
  msgid "%2.3f seconds"
854
  msgstr ""
855
 
856
- #: includes/admin/table-printer.php:432
857
  msgid "Final URL"
858
  msgstr ""
859
 
860
- #: includes/admin/table-printer.php:437
861
  msgid "Redirect count"
862
  msgstr ""
863
 
864
- #: includes/admin/table-printer.php:442
865
  msgid "Instance count"
866
  msgstr ""
867
 
868
- #: includes/admin/table-printer.php:451
869
  #, php-format
870
  msgid "This link has failed %d time."
871
  msgid_plural "This link has failed %d times."
872
  msgstr[0] ""
873
  msgstr[1] ""
874
 
875
- #: includes/admin/table-printer.php:459
876
  #, php-format
877
  msgid "This link has been broken for %s."
878
  msgstr ""
879
 
880
- #: includes/admin/table-printer.php:470
881
  msgid "Log"
882
  msgstr ""
883
 
884
- #: includes/admin/table-printer.php:506 includes/admin/table-printer.php:657
885
- msgid "[An orphaned link! This is a bug.]"
886
- msgstr ""
887
-
888
- #: includes/admin/table-printer.php:521 includes/admin/table-printer.php:557
889
  msgid "Show more info about this link"
890
  msgstr ""
891
 
892
- #: includes/admin/table-printer.php:523 includes/admin/table-printer.php:613
893
- msgid "Remove this link from all posts"
 
894
  msgstr ""
895
 
896
- #: includes/admin/table-printer.php:529 includes/admin/table-printer.php:619
897
- msgid "Remove this link from the list of broken links and mark it as valid"
898
  msgstr ""
899
 
900
- #: includes/admin/table-printer.php:534 includes/admin/table-printer.php:611
901
  msgid "Edit link URL"
902
  msgstr ""
903
 
904
- #: includes/admin/table-printer.php:534 includes/admin/table-printer.php:611
905
- msgid "Edit URL"
906
  msgstr ""
907
 
908
- #: includes/admin/table-printer.php:540 includes/admin/table-printer.php:628
909
- msgid "Cancel URL editing"
910
  msgstr ""
911
 
912
- #: includes/admin/table-printer.php:575
913
- msgctxt "checked how long ago"
914
- msgid "Checked"
915
  msgstr ""
916
 
917
- #: includes/admin/table-printer.php:591
918
- msgid "Broken for"
919
  msgstr ""
920
 
921
- #: includes/admin/table-printer.php:635
922
- msgid "Update URL"
923
  msgstr ""
924
 
925
- #: includes/any-post.php:384 modules/containers/blogroll.php:46
926
  #: modules/containers/comment.php:153 modules/containers/custom_field.php:197
927
  msgid "Edit"
928
  msgstr ""
929
 
930
- #: includes/any-post.php:392 modules/containers/custom_field.php:203
931
  msgid "Move this item to the Trash"
932
  msgstr ""
933
 
934
- #: includes/any-post.php:394 modules/containers/custom_field.php:205
935
  msgid "Trash"
936
  msgstr ""
937
 
938
- #: includes/any-post.php:399 modules/containers/custom_field.php:210
939
  msgid "Delete this item permanently"
940
  msgstr ""
941
 
942
- #: includes/any-post.php:401 modules/containers/blogroll.php:47
943
  #: modules/containers/custom_field.php:212
944
  msgid "Delete"
945
  msgstr ""
946
 
947
- #: includes/any-post.php:414
948
  #, php-format
949
  msgid "Preview &#8220;%s&#8221;"
950
  msgstr ""
951
 
952
- #: includes/any-post.php:415
953
  msgid "Preview"
954
  msgstr ""
955
 
956
- #: includes/any-post.php:422
957
  #, php-format
958
  msgid "View &#8220;%s&#8221;"
959
  msgstr ""
960
 
961
- #: includes/any-post.php:423 modules/containers/comment.php:166
962
  #: modules/containers/custom_field.php:217
963
  msgid "View"
964
  msgstr ""
965
 
966
- #: includes/any-post.php:442 modules/containers/custom_field.php:197
967
  msgid "Edit this item"
968
  msgstr ""
969
 
970
- #: includes/any-post.php:506 modules/containers/blogroll.php:83
971
  #: modules/containers/comment.php:43
972
  msgid "Nothing to update"
973
  msgstr ""
974
 
975
- #: includes/any-post.php:516
976
  #, php-format
977
  msgid "Updating post %d failed"
978
  msgstr ""
979
 
980
- #: includes/any-post.php:551 modules/containers/custom_field.php:284
981
  #, php-format
982
  msgid "Failed to delete post \"%s\" (%d)"
983
  msgstr ""
984
 
985
- #: includes/any-post.php:570 modules/containers/custom_field.php:303
986
  #, php-format
987
  msgid ""
988
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
989
  "disabled"
990
  msgstr ""
991
 
992
- #: includes/any-post.php:590 modules/containers/custom_field.php:322
993
  #, php-format
994
  msgid "Failed to move post \"%s\" (%d) to the trash"
995
  msgstr ""
996
 
997
- #: includes/any-post.php:698
998
  #, php-format
999
  msgid "%d post deleted."
1000
  msgid_plural "%d posts deleted."
1001
  msgstr[0] ""
1002
  msgstr[1] ""
1003
 
1004
- #: includes/any-post.php:700
1005
  #, php-format
1006
  msgid "%d page deleted."
1007
  msgid_plural "%d pages deleted."
1008
  msgstr[0] ""
1009
  msgstr[1] ""
1010
 
1011
- #: includes/any-post.php:702
1012
  #, php-format
1013
  msgid "%d \"%s\" deleted."
1014
  msgid_plural "%d \"%s\" deleted."
1015
  msgstr[0] ""
1016
  msgstr[1] ""
1017
 
1018
- #: includes/any-post.php:721
1019
  #, php-format
1020
  msgid "%d post moved to the Trash."
1021
  msgid_plural "%d posts moved to the Trash."
1022
  msgstr[0] ""
1023
  msgstr[1] ""
1024
 
1025
- #: includes/any-post.php:723
1026
  #, php-format
1027
  msgid "%d page moved to the Trash."
1028
  msgid_plural "%d pages moved to the Trash."
1029
  msgstr[0] ""
1030
  msgstr[1] ""
1031
 
1032
- #: includes/any-post.php:725
1033
  #, php-format
1034
  msgid "%d \"%s\" moved to the Trash."
1035
  msgid_plural "%d \"%s\" moved to the Trash."
@@ -1043,7 +1099,7 @@ msgid_plural "%d '%s' have been deleted"
1043
  msgstr[0] ""
1044
  msgstr[1] ""
1045
 
1046
- #: includes/containers.php:876 includes/containers.php:894
1047
  #, php-format
1048
  msgid "Container type '%s' not recognized"
1049
  msgstr ""
@@ -1178,171 +1234,176 @@ msgstr ""
1178
  msgid "No links found for your query"
1179
  msgstr ""
1180
 
1181
- #: includes/links.php:213
1182
  msgid "The plugin script was terminated while trying to check the link."
1183
  msgstr ""
1184
 
1185
- #: includes/links.php:259
1186
  msgid "The plugin doesn't know how to check this type of link."
1187
  msgstr ""
1188
 
1189
- #: includes/links.php:347
1190
  msgid "Link is valid."
1191
  msgstr ""
1192
 
1193
- #: includes/links.php:349
1194
  msgid "Link is broken."
1195
  msgstr ""
1196
 
1197
- #: includes/links.php:562 includes/links.php:664 includes/links.php:699
1198
  msgid "Link is not valid"
1199
  msgstr ""
1200
 
1201
- #: includes/links.php:579
1202
  msgid ""
1203
  "This link can not be edited because it is not used anywhere on this site."
1204
  msgstr ""
1205
 
1206
- #: includes/links.php:605
1207
  msgid "Failed to create a DB entry for the new URL."
1208
  msgstr ""
1209
 
1210
- #: includes/links.php:677
1211
  msgid "This link is not a redirect"
1212
  msgstr ""
1213
 
1214
- #: includes/links.php:726 includes/links.php:763
1215
  msgid "Couldn't delete the link's database record"
1216
  msgstr ""
1217
 
1218
- #: includes/links.php:837
1219
  msgctxt "link status"
1220
  msgid "Unknown"
1221
  msgstr ""
1222
 
1223
- #: includes/links.php:851 modules/checkers/http.php:255
1224
  msgid "Unknown Error"
1225
  msgstr ""
1226
 
1227
- #: includes/links.php:875
1228
  msgid "Not checked"
1229
  msgstr ""
1230
 
1231
- #: includes/links.php:878
1232
  msgid "False positive"
1233
  msgstr ""
1234
 
1235
- #: includes/links.php:881
1236
  msgctxt "link status"
1237
  msgid "OK"
1238
  msgstr ""
1239
 
1240
- #: includes/parsers.php:106
 
 
 
 
 
1241
  #, php-format
1242
  msgid "Editing is not implemented in the '%s' parser"
1243
  msgstr ""
1244
 
1245
- #: includes/parsers.php:121
1246
  #, php-format
1247
  msgid "Unlinking is not implemented in the '%s' parser"
1248
  msgstr ""
1249
 
1250
- #: includes/utility-class.php:291
1251
  #, php-format
1252
  msgid "%d second"
1253
  msgid_plural "%d seconds"
1254
  msgstr[0] ""
1255
  msgstr[1] ""
1256
 
1257
- #: includes/utility-class.php:292
1258
  #, php-format
1259
  msgid "%d second ago"
1260
  msgid_plural "%d seconds ago"
1261
  msgstr[0] ""
1262
  msgstr[1] ""
1263
 
1264
- #: includes/utility-class.php:295
1265
  #, php-format
1266
  msgid "%d minute"
1267
  msgid_plural "%d minutes"
1268
  msgstr[0] ""
1269
  msgstr[1] ""
1270
 
1271
- #: includes/utility-class.php:296
1272
  #, php-format
1273
  msgid "%d minute ago"
1274
  msgid_plural "%d minutes ago"
1275
  msgstr[0] ""
1276
  msgstr[1] ""
1277
 
1278
- #: includes/utility-class.php:299
1279
  #, php-format
1280
  msgid "%d hour"
1281
  msgid_plural "%d hours"
1282
  msgstr[0] ""
1283
  msgstr[1] ""
1284
 
1285
- #: includes/utility-class.php:300
1286
  #, php-format
1287
  msgid "%d hour ago"
1288
  msgid_plural "%d hours ago"
1289
  msgstr[0] ""
1290
  msgstr[1] ""
1291
 
1292
- #: includes/utility-class.php:303
1293
  #, php-format
1294
  msgid "%d day"
1295
  msgid_plural "%d days"
1296
  msgstr[0] ""
1297
  msgstr[1] ""
1298
 
1299
- #: includes/utility-class.php:304
1300
  #, php-format
1301
  msgid "%d day ago"
1302
  msgid_plural "%d days ago"
1303
  msgstr[0] ""
1304
  msgstr[1] ""
1305
 
1306
- #: includes/utility-class.php:307
1307
  #, php-format
1308
  msgid "%d month"
1309
  msgid_plural "%d months"
1310
  msgstr[0] ""
1311
  msgstr[1] ""
1312
 
1313
- #: includes/utility-class.php:308
1314
  #, php-format
1315
  msgid "%d month ago"
1316
  msgid_plural "%d months ago"
1317
  msgstr[0] ""
1318
  msgstr[1] ""
1319
 
1320
- #: modules/checkers/http.php:241
1321
  msgid "Server Not Found"
1322
  msgstr ""
1323
 
1324
- #: modules/checkers/http.php:250
1325
  msgid "Connection Failed"
1326
  msgstr ""
1327
 
1328
- #: modules/checkers/http.php:284 modules/checkers/http.php:354
1329
  #, php-format
1330
  msgid "HTTP code : %d"
1331
  msgstr ""
1332
 
1333
- #: modules/checkers/http.php:286 modules/checkers/http.php:356
1334
  msgid "(No response)"
1335
  msgstr ""
1336
 
1337
- #: modules/checkers/http.php:292
1338
  msgid "Most likely the connection timed out or the domain doesn't exist."
1339
  msgstr ""
1340
 
1341
- #: modules/checkers/http.php:363
1342
  msgid "Request timed out."
1343
  msgstr ""
1344
 
1345
- #: modules/checkers/http.php:381
1346
  msgid "Using Snoopy"
1347
  msgstr ""
1348
 
@@ -1418,14 +1479,14 @@ msgstr ""
1418
  msgid "Comment"
1419
  msgstr ""
1420
 
1421
- #: modules/containers/comment.php:360
1422
  #, php-format
1423
  msgid "%d comment has been deleted."
1424
  msgid_plural "%d comments have been deleted."
1425
  msgstr[0] ""
1426
  msgstr[1] ""
1427
 
1428
- #: modules/containers/comment.php:379
1429
  #, php-format
1430
  msgid "%d comment moved to the Trash."
1431
  msgid_plural "%d comments moved to the Trash."
1
+ # Translation of the WordPress plugin Broken Link Checker 0.9.6 by Janis Elsts.
2
  # Copyright (C) 2010 Janis Elsts
3
  # This file is distributed under the same license as the Broken Link Checker package.
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
6
  #, fuzzy
7
  msgid ""
8
  msgstr ""
9
+ "Project-Id-Version: Broken Link Checker 0.9.6\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
11
+ "POT-Creation-Date: 2010-10-08 16:08+0000\n"
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
29
  msgid "Automatically expand the widget if broken links have been detected"
30
  msgstr ""
31
 
32
+ #: core/core.php:342
33
  msgid "Link Checker Settings"
34
  msgstr ""
35
 
36
+ #: core/core.php:343
37
  msgid "Link Checker"
38
  msgstr ""
39
 
40
+ #: core/core.php:348 includes/link-query.php:26
41
  msgid "Broken Links"
42
  msgstr ""
43
 
44
+ #: core/core.php:364
45
  msgid "View Broken Links"
46
  msgstr ""
47
 
48
+ #: core/core.php:392
49
  msgid "Settings"
50
  msgstr ""
51
 
52
+ #: core/core.php:404 core/core.php:1186
53
  #, php-format
54
  msgid ""
55
  "Error: The plugin's database tables are not up to date! (Current version : %"
56
  "d, expected : %d)"
57
  msgstr ""
58
 
59
+ #: core/core.php:543
60
  msgid "Settings saved."
61
  msgstr ""
62
 
63
+ #: core/core.php:550
64
  msgid "Complete site recheck started."
65
  msgstr ""
66
 
67
+ #: core/core.php:564 core/core.php:2744
68
  msgid "Details"
69
  msgstr ""
70
 
71
+ #: core/core.php:578
72
  msgid "General"
73
  msgstr ""
74
 
75
+ #: core/core.php:579
76
  msgid "Look For Links In"
77
  msgstr ""
78
 
79
+ #: core/core.php:580
80
  msgid "Which Links To Check"
81
  msgstr ""
82
 
83
+ #: core/core.php:581
84
  msgid "Protocols & APIs"
85
  msgstr ""
86
 
87
+ #: core/core.php:582
88
  msgid "Advanced"
89
  msgstr ""
90
 
91
+ #: core/core.php:586
92
  msgid "Broken Link Checker Options"
93
  msgstr ""
94
 
95
+ #: core/core.php:612 includes/admin/table-printer.php:168
96
  msgid "Status"
97
  msgstr ""
98
 
99
+ #: core/core.php:614 includes/admin/options-page-js.php:56
100
  msgid "Show debug info"
101
  msgstr ""
102
 
103
+ #: core/core.php:642
104
  msgid "Check each link"
105
  msgstr ""
106
 
107
+ #: core/core.php:647
108
  #, php-format
109
  msgid "Every %s hours"
110
  msgstr ""
111
 
112
+ #: core/core.php:656
113
  msgid ""
114
  "Existing links will be checked this often. New links will usually be checked "
115
  "ASAP."
116
  msgstr ""
117
 
118
+ #: core/core.php:663
119
  msgid "E-mail notifications"
120
  msgstr ""
121
 
122
+ #: core/core.php:669
123
  msgid "Send me e-mail notifications about newly detected broken links"
124
  msgstr ""
125
 
126
+ #: core/core.php:676
127
  msgid "Link tweaks"
128
  msgstr ""
129
 
130
+ #: core/core.php:682
131
  msgid "Apply custom formatting to broken links"
132
  msgstr ""
133
 
134
+ #: core/core.php:686 core/core.php:714
135
  msgid "Edit CSS"
136
  msgstr ""
137
 
138
+ #: core/core.php:710
139
  msgid "Apply custom formatting to removed links"
140
  msgstr ""
141
 
142
+ #: core/core.php:738
143
  msgid "Stop search engines from following broken links"
144
  msgstr ""
145
 
146
+ #: core/core.php:755
147
  msgid "Look for links in"
148
  msgstr ""
149
 
150
+ #: core/core.php:766
151
  msgid "Post statuses"
152
  msgstr ""
153
 
154
+ #: core/core.php:799
155
  msgid "Link types"
156
  msgstr ""
157
 
158
+ #: core/core.php:805
159
  msgid "Error : All link parsers missing!"
160
  msgstr ""
161
 
162
+ #: core/core.php:812
163
  msgid "Exclusion list"
164
  msgstr ""
165
 
166
+ #: core/core.php:813
167
  msgid ""
168
  "Don't check links where the URL contains any of these words (one per line) :"
169
  msgstr ""
170
 
171
+ #: core/core.php:831
172
  msgid "Check links using"
173
  msgstr ""
174
 
175
+ #: core/core.php:850 includes/links.php:849
176
  msgid "Timeout"
177
  msgstr ""
178
 
179
+ #: core/core.php:856 core/core.php:902 core/core.php:2871
180
  #, php-format
181
  msgid "%s seconds"
182
  msgstr ""
183
 
184
+ #: core/core.php:865
185
  msgid "Links that take longer than this to load will be marked as broken."
186
  msgstr ""
187
 
188
+ #: core/core.php:872
189
  msgid "Link monitor"
190
  msgstr ""
191
 
192
+ #: core/core.php:880
193
  msgid "Run continuously while the Dashboard is open"
194
  msgstr ""
195
 
196
+ #: core/core.php:888
197
  msgid "Run hourly in the background"
198
  msgstr ""
199
 
200
+ #: core/core.php:896
201
  msgid "Max. execution time"
202
  msgstr ""
203
 
204
+ #: core/core.php:913
205
  msgid ""
206
  "The plugin works by periodically launching a background job that parses your "
207
  "posts for links, checks the discovered URLs, and performs other time-"
209
  "may run each time before stopping."
210
  msgstr ""
211
 
212
+ #: core/core.php:923
213
  msgid "Custom temporary directory"
214
  msgstr ""
215
 
216
+ #: core/core.php:932
217
  msgid "OK"
218
  msgstr ""
219
 
220
+ #: core/core.php:935
221
  msgid "Error : This directory isn't writable by PHP."
222
  msgstr ""
223
 
224
+ #: core/core.php:940
225
  msgid "Error : This directory doesn't exist."
226
  msgstr ""
227
 
228
+ #: core/core.php:948
229
  msgid ""
230
  "Set this field if you want the plugin to use a custom directory for its "
231
  "lockfiles. Otherwise, leave it blank."
232
  msgstr ""
233
 
234
+ #: core/core.php:955
235
  msgid "Server load limit"
236
  msgstr ""
237
 
238
+ #: core/core.php:970
239
+ #, php-format
240
+ msgid "Current load : %s"
241
+ msgstr ""
242
+
243
+ #: core/core.php:976
244
  #, php-format
245
  msgid ""
246
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
247
  "a> rises above this number. Leave this field blank to disable load limiting."
248
  msgstr ""
249
 
250
+ #: core/core.php:984
251
+ msgid "Not available"
252
+ msgstr ""
253
+
254
+ #: core/core.php:986
255
  msgid ""
256
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
257
  "code> is present and accessible."
258
  msgstr ""
259
 
260
+ #: core/core.php:994
261
  msgid "Forced recheck"
262
  msgstr ""
263
 
264
+ #: core/core.php:997
265
  msgid "Re-check all pages"
266
  msgstr ""
267
 
268
+ #: core/core.php:1001
269
  msgid ""
270
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
271
  "database and recheck the entire site from scratch."
272
  msgstr ""
273
 
274
+ #: core/core.php:1012
275
  msgid "Save Changes"
276
  msgstr ""
277
 
278
+ #: core/core.php:1057
279
  msgid "Configure"
280
  msgstr ""
281
 
282
+ #: core/core.php:1117
283
  msgid "Upgrade to Pro to enable this feature"
284
  msgstr ""
285
 
286
+ #: core/core.php:1152
287
  msgid "Check URLs entered in these custom fields (one per line) :"
288
  msgstr ""
289
 
290
+ #: core/core.php:1286 core/core.php:1370 core/core.php:1402
291
  #, php-format
292
  msgid "Database error : %s"
293
  msgstr ""
294
 
295
+ #: core/core.php:1352
296
  msgid "You must enter a filter name!"
297
  msgstr ""
298
 
299
+ #: core/core.php:1356
300
  msgid "Invalid search query."
301
  msgstr ""
302
 
303
+ #: core/core.php:1365
304
  #, php-format
305
  msgid "Filter \"%s\" created"
306
  msgstr ""
307
 
308
+ #: core/core.php:1392
309
  msgid "Filter ID not specified."
310
  msgstr ""
311
 
312
+ #: core/core.php:1399
313
  msgid "Filter deleted"
314
  msgstr ""
315
 
316
+ #: core/core.php:1447
317
  #, php-format
318
  msgid "Replaced %d redirect with a direct link"
319
  msgid_plural "Replaced %d redirects with direct links"
320
  msgstr[0] ""
321
  msgstr[1] ""
322
 
323
+ #: core/core.php:1458
324
  #, php-format
325
  msgid "Failed to fix %d redirect"
326
  msgid_plural "Failed to fix %d redirects"
327
  msgstr[0] ""
328
  msgstr[1] ""
329
 
330
+ #: core/core.php:1468
331
  msgid "None of the selected links are redirects!"
332
  msgstr ""
333
 
334
+ #: core/core.php:1547
335
+ #, php-format
336
+ msgid "%d link updated."
337
+ msgid_plural "%d links updated."
338
+ msgstr[0] ""
339
+ msgstr[1] ""
340
+
341
+ #: core/core.php:1558
342
+ #, php-format
343
+ msgid "Failed to update %d link."
344
+ msgid_plural "Failed to update %d links."
345
+ msgstr[0] ""
346
+ msgstr[1] ""
347
+
348
+ #: core/core.php:1612
349
  #, php-format
350
  msgid "%d link removed"
351
  msgid_plural "%d links removed"
352
  msgstr[0] ""
353
  msgstr[1] ""
354
 
355
+ #: core/core.php:1623
356
  #, php-format
357
  msgid "Failed to remove %d link"
358
  msgid_plural "Failed to remove %d links"
359
  msgstr[0] ""
360
  msgstr[1] ""
361
 
362
+ #: core/core.php:1732
363
  #, php-format
364
  msgid ""
365
  "%d item was skipped because it can't be moved to the Trash. You need to "
370
  msgstr[0] ""
371
  msgstr[1] ""
372
 
373
+ #: core/core.php:1753
374
  msgid "Didn't find anything to delete!"
375
  msgstr ""
376
 
377
+ #: core/core.php:1781
378
  #, php-format
379
  msgid "%d link scheduled for rechecking"
380
  msgid_plural "%d links scheduled for rechecking"
381
  msgstr[0] ""
382
  msgstr[1] ""
383
 
384
+ #: core/core.php:1826 core/core.php:2431
385
  msgid "This link was manually marked as working by the user."
386
  msgstr ""
387
 
388
+ #: core/core.php:1833
389
  #, php-format
390
  msgid "Couldn't modify link %d"
391
  msgstr ""
392
 
393
+ #: core/core.php:1844
394
  #, php-format
395
  msgid "%d link marked as not broken"
396
  msgid_plural "%d links marked as not broken"
397
  msgstr[0] ""
398
  msgstr[1] ""
399
 
400
+ #: core/core.php:1884
401
  msgid "Table columns"
402
  msgstr ""
403
 
404
+ #: core/core.php:1903
405
  msgid "Show on screen"
406
  msgstr ""
407
 
408
+ #: core/core.php:1910
409
  msgid "links"
410
  msgstr ""
411
 
412
+ #: core/core.php:1911 includes/admin/table-printer.php:136
413
  msgid "Apply"
414
  msgstr ""
415
 
416
+ #: core/core.php:1915
417
  msgid "Misc"
418
  msgstr ""
419
 
420
+ #: core/core.php:1930
421
  #, php-format
422
  msgid "Highlight links broken for at least %s days"
423
  msgstr ""
424
 
425
+ #: core/core.php:1939
426
  msgid "Color-code status codes"
427
  msgstr ""
428
 
429
+ #: core/core.php:1956 core/core.php:2416 core/core.php:2452 core/core.php:2515
430
  msgid "You're not allowed to do that!"
431
  msgstr ""
432
 
433
+ #: core/core.php:2297
434
  msgid "View broken links"
435
  msgstr ""
436
 
437
+ #: core/core.php:2298
438
  #, php-format
439
  msgid "Found %d broken link"
440
  msgid_plural "Found %d broken links"
441
  msgstr[0] ""
442
  msgstr[1] ""
443
 
444
+ #: core/core.php:2304
445
  msgid "No broken links found."
446
  msgstr ""
447
 
448
+ #: core/core.php:2311
449
  #, php-format
450
  msgid "%d URL in the work queue"
451
  msgid_plural "%d URLs in the work queue"
452
  msgstr[0] ""
453
  msgstr[1] ""
454
 
455
+ #: core/core.php:2314
456
  msgid "No URLs in the work queue."
457
  msgstr ""
458
 
459
+ #: core/core.php:2320
460
  #, php-format
461
  msgid "Detected %d unique URL"
462
  msgid_plural "Detected %d unique URLs"
463
  msgstr[0] ""
464
  msgstr[1] ""
465
 
466
+ #: core/core.php:2321
467
  #, php-format
468
  msgid "in %d link"
469
  msgid_plural "in %d links"
470
  msgstr[0] ""
471
  msgstr[1] ""
472
 
473
+ #: core/core.php:2326
474
  msgid "and still searching..."
475
  msgstr ""
476
 
477
+ #: core/core.php:2332
478
  msgid "Searching your blog for links..."
479
  msgstr ""
480
 
481
+ #: core/core.php:2334
482
  msgid "No links detected."
483
  msgstr ""
484
 
485
+ #: core/core.php:2360
486
  msgctxt "current load"
487
  msgid "Unknown"
488
  msgstr ""
489
 
490
+ #: core/core.php:2424 core/core.php:2462 core/core.php:2525
491
  #, php-format
492
  msgid "Oops, I can't find the link %d"
493
  msgstr ""
494
 
495
+ #: core/core.php:2437
496
  msgid "Oops, couldn't modify the link!"
497
  msgstr ""
498
 
499
+ #: core/core.php:2440 core/core.php:2551
500
  msgid "Error : link_id not specified"
501
  msgstr ""
502
 
503
+ #: core/core.php:2472
504
  msgid "Oops, the new URL is invalid!"
505
  msgstr ""
506
 
507
+ #: core/core.php:2483 core/core.php:2534
508
  msgid "An unexpected error occured!"
509
  msgstr ""
510
 
511
+ #: core/core.php:2501
512
  msgid "Error : link_id or new_url not specified"
513
  msgstr ""
514
 
515
+ #: core/core.php:2560
516
  msgid "You don't have sufficient privileges to access this information!"
517
  msgstr ""
518
 
519
+ #: core/core.php:2573
520
  msgid "Error : link ID not specified"
521
  msgstr ""
522
 
523
+ #: core/core.php:2587
524
  #, php-format
525
  msgid "Failed to load link details (%s)"
526
  msgstr ""
527
 
528
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.6) #-#-#-#-#
529
  #. Plugin Name of the plugin/theme
530
+ #: core/core.php:2716
531
  msgid "Broken Link Checker"
532
  msgstr ""
533
 
534
+ #: core/core.php:2730
535
  #, php-format
536
  msgid ""
537
  "The current temporary directory is not accessible; please <a href=\"%s\">set "
538
  "a different one</a>."
539
  msgstr ""
540
 
541
+ #: core/core.php:2735
542
  #, php-format
543
  msgid ""
544
  "Please make the directory <code>%1$s</code> writable by plugins or <a href="
545
  "\"%2$s\">set a custom temporary directory</a>."
546
  msgstr ""
547
 
548
+ #: core/core.php:2742
549
  msgid "Broken Link Checker can't create a lockfile."
550
  msgstr ""
551
 
552
+ #: core/core.php:2747
553
  msgid ""
554
  "The plugin uses a file-based locking mechanism to ensure that only one "
555
  "instance of the resource-heavy link checking algorithm is running at any "
560
  "specify a custom temporary directory in the plugin's settings."
561
  msgstr ""
562
 
563
+ #: core/core.php:2766
564
  msgid "PHP version"
565
  msgstr ""
566
 
567
+ #: core/core.php:2772
568
  msgid "MySQL version"
569
  msgstr ""
570
 
571
+ #: core/core.php:2785
572
  msgid ""
573
  "You have an old version of CURL. Redirect detection may not work properly."
574
  msgstr ""
575
 
576
+ #: core/core.php:2797 core/core.php:2813 core/core.php:2818
577
  msgid "Not installed"
578
  msgstr ""
579
 
580
+ #: core/core.php:2800
581
  msgid "CURL version"
582
  msgstr ""
583
 
584
+ #: core/core.php:2806
585
  msgid "Installed"
586
  msgstr ""
587
 
588
+ #: core/core.php:2819
589
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
590
  msgstr ""
591
 
592
+ #: core/core.php:2830
593
  msgid "On"
594
  msgstr ""
595
 
596
+ #: core/core.php:2831
597
  msgid "Redirects may be detected as broken links when safe_mode is on."
598
  msgstr ""
599
 
600
+ #: core/core.php:2836 core/core.php:2850
601
  msgid "Off"
602
  msgstr ""
603
 
604
+ #: core/core.php:2844
605
  #, php-format
606
  msgid "On ( %s )"
607
  msgstr ""
608
 
609
+ #: core/core.php:2845
610
  msgid "Redirects may be detected as broken links when open_basedir is on."
611
  msgstr ""
612
 
613
+ #: core/core.php:2864
614
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
615
  msgstr ""
616
 
617
+ #: core/core.php:2888
618
  msgid ""
619
  "If this value is zero even after several page reloads you have probably "
620
  "encountered a bug."
621
  msgstr ""
622
 
623
+ #: core/core.php:2959
624
  #, php-format
625
  msgid "[%s] Broken links detected"
626
  msgstr ""
627
 
628
+ #: core/core.php:2965
629
  #, php-format
630
  msgid "Broken Link Checker has detected %d new broken link on your site."
631
  msgid_plural ""
633
  msgstr[0] ""
634
  msgstr[1] ""
635
 
636
+ #: core/core.php:2980
637
  #, php-format
638
  msgid "Here's a list of the first %d broken links:"
639
  msgid_plural "Here's a list of the first %d broken links:"
640
  msgstr[0] ""
641
  msgstr[1] ""
642
 
643
+ #: core/core.php:2988
644
  msgid "Here's a list of the new broken links: "
645
  msgstr ""
646
 
647
+ #: core/core.php:3000
648
  #, php-format
649
  msgid "Link text : %s"
650
  msgstr ""
651
 
652
+ #: core/core.php:3001
653
  #, php-format
654
  msgid "Link URL : <a href=\"%s\">%s</a>"
655
  msgstr ""
656
 
657
+ #: core/core.php:3002
658
  #, php-format
659
  msgid "Source : %s"
660
  msgstr ""
661
 
662
+ #: core/core.php:3016
663
  msgid "You can see all broken links here:"
664
  msgstr ""
665
 
666
+ #: core/init.php:236
667
  msgid "Once Weekly"
668
  msgstr ""
669
 
670
+ #: core/init.php:242
671
  msgid "Twice a Month"
672
  msgstr ""
673
 
674
+ #: core/init.php:309
675
  msgid "Broken Link Checker installation failed"
676
  msgstr ""
677
 
684
  msgid "Wait..."
685
  msgstr ""
686
 
687
+ #: includes/admin/links-page-js.php:99 includes/admin/table-printer.php:592
 
688
  msgid "Not broken"
689
  msgstr ""
690
 
721
  msgid "The plugin failed to remove the link."
722
  msgstr ""
723
 
724
+ #: includes/admin/links-page-js.php:361 includes/admin/table-printer.php:237
725
+ #: includes/admin/table-printer.php:586
726
  msgid "Unlink"
727
  msgstr ""
728
 
743
  "'Cancel' to stop, 'OK' to delete"
744
  msgstr ""
745
 
746
+ #: includes/admin/links-page-js.php:449
747
+ msgid ""
748
+ "Are you sure you want to remove the selected links? This action can't be "
749
+ "undone.\n"
750
+ "'Cancel' to stop, 'OK' to remove"
751
+ msgstr ""
752
+
753
+ #: includes/admin/links-page-js.php:558
754
+ msgid "Enter a search string first."
755
+ msgstr ""
756
+
757
+ #: includes/admin/links-page-js.php:565
758
+ msgid "Select one or more links to edit."
759
+ msgstr ""
760
+
761
  #: includes/admin/options-page-js.php:54
762
  msgid "Hide debug info"
763
  msgstr ""
778
  msgid "Link text"
779
  msgstr ""
780
 
781
+ #: includes/admin/search-form.php:45 includes/admin/table-printer.php:173
 
782
  msgid "URL"
783
  msgstr ""
784
 
785
+ #: includes/admin/search-form.php:48 includes/admin/table-printer.php:460
786
  msgid "HTTP code"
787
  msgstr ""
788
 
806
  msgid "Search Links"
807
  msgstr ""
808
 
809
+ #: includes/admin/search-form.php:113 includes/admin/table-printer.php:318
810
+ #: includes/admin/table-printer.php:600 includes/admin/table-printer.php:606
811
  msgid "Cancel"
812
  msgstr ""
813
 
814
+ #: includes/admin/table-printer.php:150
815
  msgid "Compact View"
816
  msgstr ""
817
 
818
+ #: includes/admin/table-printer.php:151
819
  msgid "Detailed View"
820
  msgstr ""
821
 
822
+ #: includes/admin/table-printer.php:178
823
  msgid "Source"
824
  msgstr ""
825
 
826
+ #: includes/admin/table-printer.php:184
827
  msgid "Link Text"
828
  msgstr ""
829
 
830
+ #: includes/admin/table-printer.php:232
831
+ msgid "Bulk Actions"
832
  msgstr ""
833
 
834
+ #: includes/admin/table-printer.php:233 includes/admin/table-printer.php:583
835
+ msgid "Edit URL"
836
  msgstr ""
837
 
838
+ #: includes/admin/table-printer.php:234
839
  msgid "Recheck"
840
  msgstr ""
841
 
842
+ #: includes/admin/table-printer.php:235
843
  msgid "Fix redirects"
844
  msgstr ""
845
 
846
+ #: includes/admin/table-printer.php:236
847
  msgid "Mark as not broken"
848
  msgstr ""
849
 
850
+ #: includes/admin/table-printer.php:240
851
  msgid "Move sources to Trash"
852
  msgstr ""
853
 
854
+ #: includes/admin/table-printer.php:242
855
  msgid "Delete sources"
856
  msgstr ""
857
 
858
+ #: includes/admin/table-printer.php:262
859
  msgid "&laquo;"
860
  msgstr ""
861
 
862
+ #: includes/admin/table-printer.php:263
863
  msgid "&raquo;"
864
  msgstr ""
865
 
866
+ #: includes/admin/table-printer.php:271
867
  #, php-format
868
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
869
  msgstr ""
870
 
871
+ #: includes/admin/table-printer.php:294
872
+ msgid "Bulk Edit URLs"
873
+ msgstr ""
874
+
875
+ #: includes/admin/table-printer.php:296
876
+ msgid "Find"
877
+ msgstr ""
878
+
879
+ #: includes/admin/table-printer.php:300
880
+ msgid "Replace with"
881
+ msgstr ""
882
+
883
+ #: includes/admin/table-printer.php:308
884
+ msgid "Case sensitive"
885
+ msgstr ""
886
+
887
+ #: includes/admin/table-printer.php:312
888
+ msgid "Regular expression"
889
+ msgstr ""
890
+
891
+ #: includes/admin/table-printer.php:320
892
+ msgid "Update"
893
+ msgstr ""
894
+
895
+ #: includes/admin/table-printer.php:445
896
  msgid "Post published on"
897
  msgstr ""
898
 
899
+ #: includes/admin/table-printer.php:450
900
  msgid "Link last checked"
901
  msgstr ""
902
 
903
+ #: includes/admin/table-printer.php:454
904
  msgid "Never"
905
  msgstr ""
906
 
907
+ #: includes/admin/table-printer.php:465
908
  msgid "Response time"
909
  msgstr ""
910
 
911
+ #: includes/admin/table-printer.php:467
912
  #, php-format
913
  msgid "%2.3f seconds"
914
  msgstr ""
915
 
916
+ #: includes/admin/table-printer.php:470
917
  msgid "Final URL"
918
  msgstr ""
919
 
920
+ #: includes/admin/table-printer.php:475
921
  msgid "Redirect count"
922
  msgstr ""
923
 
924
+ #: includes/admin/table-printer.php:480
925
  msgid "Instance count"
926
  msgstr ""
927
 
928
+ #: includes/admin/table-printer.php:489
929
  #, php-format
930
  msgid "This link has failed %d time."
931
  msgid_plural "This link has failed %d times."
932
  msgstr[0] ""
933
  msgstr[1] ""
934
 
935
+ #: includes/admin/table-printer.php:497
936
  #, php-format
937
  msgid "This link has been broken for %s."
938
  msgstr ""
939
 
940
+ #: includes/admin/table-printer.php:508
941
  msgid "Log"
942
  msgstr ""
943
 
944
+ #: includes/admin/table-printer.php:529
 
 
 
 
945
  msgid "Show more info about this link"
946
  msgstr ""
947
 
948
+ #: includes/admin/table-printer.php:547
949
+ msgctxt "checked how long ago"
950
+ msgid "Checked"
951
  msgstr ""
952
 
953
+ #: includes/admin/table-printer.php:563
954
+ msgid "Broken for"
955
  msgstr ""
956
 
957
+ #: includes/admin/table-printer.php:583
958
  msgid "Edit link URL"
959
  msgstr ""
960
 
961
+ #: includes/admin/table-printer.php:585
962
+ msgid "Remove this link from all posts"
963
  msgstr ""
964
 
965
+ #: includes/admin/table-printer.php:591
966
+ msgid "Remove this link from the list of broken links and mark it as valid"
967
  msgstr ""
968
 
969
+ #: includes/admin/table-printer.php:600
970
+ msgid "Cancel URL editing"
 
971
  msgstr ""
972
 
973
+ #: includes/admin/table-printer.php:607
974
+ msgid "Update URL"
975
  msgstr ""
976
 
977
+ #: includes/admin/table-printer.php:629
978
+ msgid "[An orphaned link! This is a bug.]"
979
  msgstr ""
980
 
981
+ #: includes/any-post.php:398 modules/containers/blogroll.php:46
982
  #: modules/containers/comment.php:153 modules/containers/custom_field.php:197
983
  msgid "Edit"
984
  msgstr ""
985
 
986
+ #: includes/any-post.php:406 modules/containers/custom_field.php:203
987
  msgid "Move this item to the Trash"
988
  msgstr ""
989
 
990
+ #: includes/any-post.php:408 modules/containers/custom_field.php:205
991
  msgid "Trash"
992
  msgstr ""
993
 
994
+ #: includes/any-post.php:413 modules/containers/custom_field.php:210
995
  msgid "Delete this item permanently"
996
  msgstr ""
997
 
998
+ #: includes/any-post.php:415 modules/containers/blogroll.php:47
999
  #: modules/containers/custom_field.php:212
1000
  msgid "Delete"
1001
  msgstr ""
1002
 
1003
+ #: includes/any-post.php:428
1004
  #, php-format
1005
  msgid "Preview &#8220;%s&#8221;"
1006
  msgstr ""
1007
 
1008
+ #: includes/any-post.php:429
1009
  msgid "Preview"
1010
  msgstr ""
1011
 
1012
+ #: includes/any-post.php:436
1013
  #, php-format
1014
  msgid "View &#8220;%s&#8221;"
1015
  msgstr ""
1016
 
1017
+ #: includes/any-post.php:437 modules/containers/comment.php:166
1018
  #: modules/containers/custom_field.php:217
1019
  msgid "View"
1020
  msgstr ""
1021
 
1022
+ #: includes/any-post.php:456 modules/containers/custom_field.php:197
1023
  msgid "Edit this item"
1024
  msgstr ""
1025
 
1026
+ #: includes/any-post.php:520 modules/containers/blogroll.php:83
1027
  #: modules/containers/comment.php:43
1028
  msgid "Nothing to update"
1029
  msgstr ""
1030
 
1031
+ #: includes/any-post.php:530
1032
  #, php-format
1033
  msgid "Updating post %d failed"
1034
  msgstr ""
1035
 
1036
+ #: includes/any-post.php:565 modules/containers/custom_field.php:284
1037
  #, php-format
1038
  msgid "Failed to delete post \"%s\" (%d)"
1039
  msgstr ""
1040
 
1041
+ #: includes/any-post.php:584 modules/containers/custom_field.php:303
1042
  #, php-format
1043
  msgid ""
1044
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
1045
  "disabled"
1046
  msgstr ""
1047
 
1048
+ #: includes/any-post.php:604 modules/containers/custom_field.php:322
1049
  #, php-format
1050
  msgid "Failed to move post \"%s\" (%d) to the trash"
1051
  msgstr ""
1052
 
1053
+ #: includes/any-post.php:712
1054
  #, php-format
1055
  msgid "%d post deleted."
1056
  msgid_plural "%d posts deleted."
1057
  msgstr[0] ""
1058
  msgstr[1] ""
1059
 
1060
+ #: includes/any-post.php:714
1061
  #, php-format
1062
  msgid "%d page deleted."
1063
  msgid_plural "%d pages deleted."
1064
  msgstr[0] ""
1065
  msgstr[1] ""
1066
 
1067
+ #: includes/any-post.php:716
1068
  #, php-format
1069
  msgid "%d \"%s\" deleted."
1070
  msgid_plural "%d \"%s\" deleted."
1071
  msgstr[0] ""
1072
  msgstr[1] ""
1073
 
1074
+ #: includes/any-post.php:735
1075
  #, php-format
1076
  msgid "%d post moved to the Trash."
1077
  msgid_plural "%d posts moved to the Trash."
1078
  msgstr[0] ""
1079
  msgstr[1] ""
1080
 
1081
+ #: includes/any-post.php:737
1082
  #, php-format
1083
  msgid "%d page moved to the Trash."
1084
  msgid_plural "%d pages moved to the Trash."
1085
  msgstr[0] ""
1086
  msgstr[1] ""
1087
 
1088
+ #: includes/any-post.php:739
1089
  #, php-format
1090
  msgid "%d \"%s\" moved to the Trash."
1091
  msgid_plural "%d \"%s\" moved to the Trash."
1099
  msgstr[0] ""
1100
  msgstr[1] ""
1101
 
1102
+ #: includes/containers.php:882 includes/containers.php:900
1103
  #, php-format
1104
  msgid "Container type '%s' not recognized"
1105
  msgstr ""
1234
  msgid "No links found for your query"
1235
  msgstr ""
1236
 
1237
+ #: includes/links.php:215
1238
  msgid "The plugin script was terminated while trying to check the link."
1239
  msgstr ""
1240
 
1241
+ #: includes/links.php:261
1242
  msgid "The plugin doesn't know how to check this type of link."
1243
  msgstr ""
1244
 
1245
+ #: includes/links.php:349
1246
  msgid "Link is valid."
1247
  msgstr ""
1248
 
1249
+ #: includes/links.php:351
1250
  msgid "Link is broken."
1251
  msgstr ""
1252
 
1253
+ #: includes/links.php:564 includes/links.php:666 includes/links.php:693
1254
  msgid "Link is not valid"
1255
  msgstr ""
1256
 
1257
+ #: includes/links.php:581
1258
  msgid ""
1259
  "This link can not be edited because it is not used anywhere on this site."
1260
  msgstr ""
1261
 
1262
+ #: includes/links.php:607
1263
  msgid "Failed to create a DB entry for the new URL."
1264
  msgstr ""
1265
 
1266
+ #: includes/links.php:673
1267
  msgid "This link is not a redirect"
1268
  msgstr ""
1269
 
1270
+ #: includes/links.php:720 includes/links.php:757
1271
  msgid "Couldn't delete the link's database record"
1272
  msgstr ""
1273
 
1274
+ #: includes/links.php:831
1275
  msgctxt "link status"
1276
  msgid "Unknown"
1277
  msgstr ""
1278
 
1279
+ #: includes/links.php:845 modules/checkers/http.php:263
1280
  msgid "Unknown Error"
1281
  msgstr ""
1282
 
1283
+ #: includes/links.php:869
1284
  msgid "Not checked"
1285
  msgstr ""
1286
 
1287
+ #: includes/links.php:872
1288
  msgid "False positive"
1289
  msgstr ""
1290
 
1291
+ #: includes/links.php:875
1292
  msgctxt "link status"
1293
  msgid "OK"
1294
  msgstr ""
1295
 
1296
+ #: includes/module-manager.php:122 includes/module-manager.php:139
1297
+ msgctxt "module name"
1298
+ msgid "Name"
1299
+ msgstr ""
1300
+
1301
+ #: includes/parsers.php:109
1302
  #, php-format
1303
  msgid "Editing is not implemented in the '%s' parser"
1304
  msgstr ""
1305
 
1306
+ #: includes/parsers.php:124
1307
  #, php-format
1308
  msgid "Unlinking is not implemented in the '%s' parser"
1309
  msgstr ""
1310
 
1311
+ #: includes/utility-class.php:287
1312
  #, php-format
1313
  msgid "%d second"
1314
  msgid_plural "%d seconds"
1315
  msgstr[0] ""
1316
  msgstr[1] ""
1317
 
1318
+ #: includes/utility-class.php:288
1319
  #, php-format
1320
  msgid "%d second ago"
1321
  msgid_plural "%d seconds ago"
1322
  msgstr[0] ""
1323
  msgstr[1] ""
1324
 
1325
+ #: includes/utility-class.php:291
1326
  #, php-format
1327
  msgid "%d minute"
1328
  msgid_plural "%d minutes"
1329
  msgstr[0] ""
1330
  msgstr[1] ""
1331
 
1332
+ #: includes/utility-class.php:292
1333
  #, php-format
1334
  msgid "%d minute ago"
1335
  msgid_plural "%d minutes ago"
1336
  msgstr[0] ""
1337
  msgstr[1] ""
1338
 
1339
+ #: includes/utility-class.php:295
1340
  #, php-format
1341
  msgid "%d hour"
1342
  msgid_plural "%d hours"
1343
  msgstr[0] ""
1344
  msgstr[1] ""
1345
 
1346
+ #: includes/utility-class.php:296
1347
  #, php-format
1348
  msgid "%d hour ago"
1349
  msgid_plural "%d hours ago"
1350
  msgstr[0] ""
1351
  msgstr[1] ""
1352
 
1353
+ #: includes/utility-class.php:299
1354
  #, php-format
1355
  msgid "%d day"
1356
  msgid_plural "%d days"
1357
  msgstr[0] ""
1358
  msgstr[1] ""
1359
 
1360
+ #: includes/utility-class.php:300
1361
  #, php-format
1362
  msgid "%d day ago"
1363
  msgid_plural "%d days ago"
1364
  msgstr[0] ""
1365
  msgstr[1] ""
1366
 
1367
+ #: includes/utility-class.php:303
1368
  #, php-format
1369
  msgid "%d month"
1370
  msgid_plural "%d months"
1371
  msgstr[0] ""
1372
  msgstr[1] ""
1373
 
1374
+ #: includes/utility-class.php:304
1375
  #, php-format
1376
  msgid "%d month ago"
1377
  msgid_plural "%d months ago"
1378
  msgstr[0] ""
1379
  msgstr[1] ""
1380
 
1381
+ #: modules/checkers/http.php:242
1382
  msgid "Server Not Found"
1383
  msgstr ""
1384
 
1385
+ #: modules/checkers/http.php:257
1386
  msgid "Connection Failed"
1387
  msgstr ""
1388
 
1389
+ #: modules/checkers/http.php:292 modules/checkers/http.php:362
1390
  #, php-format
1391
  msgid "HTTP code : %d"
1392
  msgstr ""
1393
 
1394
+ #: modules/checkers/http.php:294 modules/checkers/http.php:364
1395
  msgid "(No response)"
1396
  msgstr ""
1397
 
1398
+ #: modules/checkers/http.php:300
1399
  msgid "Most likely the connection timed out or the domain doesn't exist."
1400
  msgstr ""
1401
 
1402
+ #: modules/checkers/http.php:371
1403
  msgid "Request timed out."
1404
  msgstr ""
1405
 
1406
+ #: modules/checkers/http.php:389
1407
  msgid "Using Snoopy"
1408
  msgstr ""
1409
 
1479
  msgid "Comment"
1480
  msgstr ""
1481
 
1482
+ #: modules/containers/comment.php:372
1483
  #, php-format
1484
  msgid "%d comment has been deleted."
1485
  msgid_plural "%d comments have been deleted."
1486
  msgstr[0] ""
1487
  msgstr[1] ""
1488
 
1489
+ #: modules/containers/comment.php:391
1490
  #, php-format
1491
  msgid "%d comment moved to the Trash."
1492
  msgid_plural "%d comments moved to the Trash."
modules/containers/comment.php CHANGED
@@ -208,6 +208,11 @@ class blcComment extends blcContainer{
208
  function get_edit_url(){
209
  return esc_url(admin_url("comment.php?action=editcomment&c={$this->container_id}"));
210
  }
 
 
 
 
 
211
  }
212
 
213
  class blcCommentManager extends blcContainerManager {
208
  function get_edit_url(){
209
  return esc_url(admin_url("comment.php?action=editcomment&c={$this->container_id}"));
210
  }
211
+
212
+ function base_url(){
213
+ $comment_permalink = get_comment_link($this->container_id);
214
+ return substr($comment_permalink, 0, strpos($comment_permalink, '#'));
215
+ }
216
  }
217
 
218
  class blcCommentManager extends blcContainerManager {
modules/parsers/html_link.php CHANGED
@@ -184,7 +184,11 @@ class blcHTMLLink extends blcParser {
184
  $config = & blc_get_configuration();
185
  if ( $config->options['mark_removed_links'] ){
186
  //Leave only the anchor text + the removed_link CSS class
187
- return '<span class="removed_link">' . $link['#link_text'] . '</span>';
 
 
 
 
188
  } else {
189
  //Just the anchor text
190
  return $link['#link_text'];
@@ -291,7 +295,7 @@ class blcHTMLLink extends blcParser {
291
  continue;
292
  }
293
 
294
- $new_html .= sprintf(' %s="%s"', $name, htmlentities( $value, ENT_COMPAT ));
295
  }
296
  $new_html .= '>' . $link['#link_text'] . '</a>';
297
  }
184
  $config = & blc_get_configuration();
185
  if ( $config->options['mark_removed_links'] ){
186
  //Leave only the anchor text + the removed_link CSS class
187
+ return sprintf(
188
+ '<span class="removed_link" title="%s">%s</span>',
189
+ esc_attr($link['href']),
190
+ $link['#link_text']
191
+ );
192
  } else {
193
  //Just the anchor text
194
  return $link['#link_text'];
295
  continue;
296
  }
297
 
298
+ $new_html .= sprintf(' %s="%s"', $name, esc_attr( $value ));
299
  }
300
  $new_html .= '>' . $link['#link_text'] . '</a>';
301
  }
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-alpha
7
- Stable tag: 0.9.6
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
 
@@ -82,7 +82,16 @@ To upgrade your installation
82
 
83
  == Changelog ==
84
 
85
- *This is an automatically generated changelog*
 
 
 
 
 
 
 
 
 
86
 
87
  = 0.9.6 =
88
  * Updated Danish translation.
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.0
6
  Tested up to: 3.1-alpha
7
+ Stable tag: 0.9.7
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
 
82
 
83
  == Changelog ==
84
 
85
+ = 0.9.7 =
86
+ * Allow custom field names with spaces.
87
+ * Updated German translation.
88
+ * Updated Portuguese translation
89
+ * Made the "Current load" label localizeable.
90
+ * Fixed a translation-related bug where the various checkboxes in the "Link types" and "Look for links in" sections would appear in English even when a valid translation was available.
91
+ * Fixed non-ASCII URLs being mangled when links are automatically marked with the "broken_link" CSS class.
92
+ * Fixed blog names that include quotes being displayed incorrectly in email notifications.
93
+ * When removing a link via the "Unlink" action, add the old URL as the title attribute of the now-unlinked anchor text.
94
+ * When resolving relative URLs posted in comments, use the comment's permalink as the base (previously the blog's homepage URL was used).
95
 
96
  = 0.9.6 =
97
  * Updated Danish translation.