Broken Link Checker - Version 1.2.3

Version Description

  • Updated Portuguese translation.
  • Updated German translation.
  • Switched to a simpler, MySQL-based locking mechanism. Note: This may cause trouble for people who've hacked their WP install to use persistent database connections.
  • Added a poll asking for feedback on a new BLC-related web application idea.
  • Minor wording change in the debug info table.
Download this release

Release Info

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

Code changes from version 1.2.2 to 1.2.3

broken-link-checker.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Broken Link Checker
4
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
5
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
6
- Version: 1.2.2
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
3
  Plugin Name: Broken Link Checker
4
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
5
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
6
+ Version: 1.2.3
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
core/core.php CHANGED
@@ -13,6 +13,7 @@ if ( !function_exists( 'microtime_float' ) ) {
13
 
14
  require BLC_DIRECTORY . '/includes/screen-options/screen-options.php';
15
  require BLC_DIRECTORY . '/includes/screen-meta-links.php';
 
16
 
17
  if (!class_exists('wsBrokenLinkChecker')) {
18
 
@@ -25,7 +26,6 @@ class wsBrokenLinkChecker {
25
  var $db_version = 5; //The required version of the plugin's DB schema.
26
 
27
  var $execution_start_time; //Used for a simple internal execution timer in start_timer()/execution_time()
28
- var $lockfile_handle = null;
29
 
30
  /**
31
  * wsBrokenLinkChecker::wsBrokenLinkChecker()
@@ -67,16 +67,6 @@ class wsBrokenLinkChecker {
67
  add_action( 'wp_ajax_blc_unlink', array(&$this,'ajax_unlink') );
68
  add_action( 'wp_ajax_blc_current_load', array(&$this,'ajax_current_load') );
69
 
70
- //Check if it's possible to create a lockfile and nag the user about it if not.
71
- if ( $this->lockfile_name() ){
72
- //Lockfiles work, so it's safe to enable the footer hook that will call the worker
73
- //function via AJAX.
74
- add_action('admin_footer', array(&$this,'admin_footer'));
75
- } else {
76
- //No lockfiles, nag nag nag!
77
- add_action( 'admin_notices', array( &$this, 'lockfile_warning' ) );
78
- }
79
-
80
  //Add/remove Cron events
81
  $this->setup_cron_events();
82
 
@@ -485,9 +475,6 @@ class wsBrokenLinkChecker {
485
  $diff2 = array_diff( $this->conf->options['custom_fields'], $new_custom_fields );
486
  $this->conf->options['custom_fields'] = $new_custom_fields;
487
 
488
- //Temporary file directory
489
- $this->conf->options['custom_tmp_dir'] = trim( stripslashes(strval($_POST['custom_tmp_dir'])) );
490
-
491
  //HTTP timeout
492
  $new_timeout = intval($_POST['timeout']);
493
  if( $new_timeout > 0 ){
@@ -953,39 +940,6 @@ class wsBrokenLinkChecker {
953
  </tr>
954
 
955
  <tr valign="top">
956
- <th scope="row">
957
- <a name='lockfile_directory'></a><?php _e('Custom temporary directory', 'broken-link-checker'); ?></th>
958
- <td>
959
-
960
- <input type="text" name="custom_tmp_dir" id="custom_tmp_dir"
961
- value="<?php echo htmlspecialchars( $this->conf->options['custom_tmp_dir'] ); ?>" size='53' maxlength='500'/>
962
- <?php
963
- if ( !empty( $this->conf->options['custom_tmp_dir'] ) ) {
964
- if ( @is_dir( $this->conf->options['custom_tmp_dir'] ) ){
965
- if ( @is_writable( $this->conf->options['custom_tmp_dir'] ) ){
966
- echo "<strong>", __('OK', 'broken-link-checker'), "</strong>";
967
- } else {
968
- echo '<span class="error">';
969
- _e("Error : This directory isn't writable by PHP.", 'broken-link-checker');
970
- echo '</span>';
971
- }
972
- } else {
973
- echo '<span class="error">';
974
- _e("Error : This directory doesn't exist.", 'broken-link-checker');
975
- echo '</span>';
976
- }
977
- }
978
-
979
- ?>
980
- <br/>
981
- <span class="description">
982
- <?php _e('Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank.','broken-link-checker'); ?>
983
- </span>
984
-
985
- </td>
986
- </tr>
987
-
988
- <tr valign="top">
989
  <th scope="row"><?php _e('Server load limit', 'broken-link-checker'); ?></th>
990
  <td>
991
  <?php
@@ -2614,99 +2568,23 @@ class wsBrokenLinkChecker {
2614
  }
2615
 
2616
  /**
2617
- * Create and lock a temporary file.
 
2618
  *
2619
  * @return bool
2620
  */
2621
  function acquire_lock(){
2622
- //Maybe we already have the lock?
2623
- if ( $this->lockfile_handle ){
2624
- return true;
2625
- }
2626
-
2627
- $fn = $this->lockfile_name();
2628
- if ( $fn ){
2629
- //Open the lockfile
2630
- $this->lockfile_handle = fopen($fn, 'w+');
2631
- if ( $this->lockfile_handle ){
2632
- //Do an exclusive lock
2633
- if (flock($this->lockfile_handle, LOCK_EX | LOCK_NB)) {
2634
- //File locked successfully
2635
- return true;
2636
- } else {
2637
- //Something went wrong
2638
- fclose($this->lockfile_handle);
2639
- $this->lockfile_handle = null;
2640
- return false;
2641
- }
2642
- } else {
2643
- //Can't open the file, fail.
2644
- return false;
2645
- }
2646
- } else {
2647
- //Uh oh, can't generate a lockfile name. This is bad.
2648
- //FB::error("Can't find a writable directory to use for my lock file!");
2649
- return false;
2650
- };
2651
  }
2652
 
2653
  /**
2654
- * Unlock and delete the temporary file
 
2655
  *
2656
  * @return bool
2657
  */
2658
  function release_lock(){
2659
- if ( $this->lockfile_handle ){
2660
- //Close the file (implicitly releasing the lock)
2661
- fclose( $this->lockfile_handle );
2662
- //Delete the file
2663
- $fn = $this->lockfile_name();
2664
- if ( file_exists( $fn ) ) {
2665
- unlink( $fn );
2666
- }
2667
- $this->lockfile_handle = null;
2668
- return true;
2669
- } else {
2670
- //We didn't have the lock anyway...
2671
- return false;
2672
- }
2673
- }
2674
-
2675
- /**
2676
- * Generate system-specific lockfile filename
2677
- *
2678
- * @return string A filename or FALSE on error
2679
- */
2680
- function lockfile_name(){
2681
- //Try the user-specified temp. directory first, if any
2682
- if ( !empty( $this->conf->options['custom_tmp_dir'] ) ) {
2683
- if ( @is_writable($this->conf->options['custom_tmp_dir']) && @is_dir($this->conf->options['custom_tmp_dir']) ) {
2684
- return trailingslashit($this->conf->options['custom_tmp_dir']) . 'wp_blc_lock';
2685
- } else {
2686
- return false;
2687
- }
2688
- }
2689
-
2690
- //Try the plugin's own directory.
2691
- if ( @is_writable( BLC_DIRECTORY ) ){
2692
- return BLC_DIRECTORY . '/wp_blc_lock';
2693
- } else {
2694
-
2695
- //Try the system-wide temp directory
2696
- $path = sys_get_temp_dir();
2697
- if ( $path && @is_writable($path)){
2698
- return trailingslashit($path) . 'wp_blc_lock';
2699
- }
2700
-
2701
- //Try the upload directory.
2702
- $path = ini_get('upload_tmp_dir');
2703
- if ( $path && @is_writable($path)){
2704
- return trailingslashit($path) . 'wp_blc_lock';
2705
- }
2706
-
2707
- //Fail
2708
- return false;
2709
- }
2710
  }
2711
 
2712
  /**
@@ -2744,37 +2622,6 @@ class wsBrokenLinkChecker {
2744
  }
2745
  }
2746
 
2747
- function lockfile_warning(){
2748
- $my_dir = '/plugins/' . basename(BLC_DIRECTORY) . '/';
2749
- $settings_page = admin_url( 'options-general.php?page=link-checker-settings#lockfile_directory' );
2750
-
2751
- //Make the notice customized to the current settings
2752
- if ( !empty($this->conf->options['custom_tmp_dir']) ){
2753
- $action_notice = sprintf(
2754
- __('The current temporary directory is not accessible; please <a href="%s">set a different one</a>.', 'broken-link-checker'),
2755
- $settings_page
2756
- );
2757
- } else {
2758
- $action_notice = sprintf(
2759
- __('Please make the directory <code>%1$s</code> writable by plugins or <a href="%2$s">set a custom temporary directory</a>.', 'broken-link-checker'),
2760
- $my_dir, $settings_page
2761
- );
2762
- }
2763
-
2764
- echo sprintf('
2765
- <div id="blc-lockfile-warning" class="error"><p>
2766
- <strong>' . __("Broken Link Checker can't create a lockfile.", 'broken-link-checker') .
2767
- '</strong> %s <a href="javascript:void(0)" onclick="jQuery(\'#blc-lockfile-details\').toggle()">' .
2768
- __('Details', 'broken-link-checker') . '</a> </p>
2769
-
2770
- <div id="blc-lockfile-details" style="display:none;"><p>' .
2771
- __("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.", 'broken-link-checker') .
2772
- '</p>
2773
- </div>
2774
- </div>',
2775
- $action_notice);
2776
- }
2777
-
2778
  /**
2779
  * Collect various debugging information and return it in an associative array
2780
  *
@@ -2875,20 +2722,6 @@ class wsBrokenLinkChecker {
2875
  );
2876
  }
2877
 
2878
- //Lockfile location
2879
- $lockfile = $this->lockfile_name();
2880
- if ( $lockfile ){
2881
- $debug['Lockfile'] = array(
2882
- 'state' => 'ok',
2883
- 'value' => $lockfile,
2884
- );
2885
- } else {
2886
- $debug['Lockfile'] = array(
2887
- 'state' => 'error',
2888
- 'message' => __("Can't create a lockfile. Please specify a custom temporary directory.", 'broken-link-checker'),
2889
- );
2890
- }
2891
-
2892
  //Default PHP execution time limit
2893
  $debug['Default PHP execution time limit'] = array(
2894
  'state' => 'ok',
@@ -2898,7 +2731,7 @@ class wsBrokenLinkChecker {
2898
  //Resynch flag.
2899
  $debug['Resynch. flag'] = array(
2900
  'state' => 'ok',
2901
- 'value' => sprintf('%d', $this->conf->options['need_resynch']),
2902
  );
2903
 
2904
  //Synch records
13
 
14
  require BLC_DIRECTORY . '/includes/screen-options/screen-options.php';
15
  require BLC_DIRECTORY . '/includes/screen-meta-links.php';
16
+ require BLC_DIRECTORY . '/includes/wp-mutex.php';
17
 
18
  if (!class_exists('wsBrokenLinkChecker')) {
19
 
26
  var $db_version = 5; //The required version of the plugin's DB schema.
27
 
28
  var $execution_start_time; //Used for a simple internal execution timer in start_timer()/execution_time()
 
29
 
30
  /**
31
  * wsBrokenLinkChecker::wsBrokenLinkChecker()
67
  add_action( 'wp_ajax_blc_unlink', array(&$this,'ajax_unlink') );
68
  add_action( 'wp_ajax_blc_current_load', array(&$this,'ajax_current_load') );
69
 
 
 
 
 
 
 
 
 
 
 
70
  //Add/remove Cron events
71
  $this->setup_cron_events();
72
 
475
  $diff2 = array_diff( $this->conf->options['custom_fields'], $new_custom_fields );
476
  $this->conf->options['custom_fields'] = $new_custom_fields;
477
 
 
 
 
478
  //HTTP timeout
479
  $new_timeout = intval($_POST['timeout']);
480
  if( $new_timeout > 0 ){
940
  </tr>
941
 
942
  <tr valign="top">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
943
  <th scope="row"><?php _e('Server load limit', 'broken-link-checker'); ?></th>
944
  <td>
945
  <?php
2568
  }
2569
 
2570
  /**
2571
+ * Acquire an exclusive lock.
2572
+ * If we already hold a lock, it will be released and a new one will be acquired.
2573
  *
2574
  * @return bool
2575
  */
2576
  function acquire_lock(){
2577
+ return WPMutex::acquire('blc_lock');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2578
  }
2579
 
2580
  /**
2581
+ * Relese our exclusive lock.
2582
+ * Does nothing if the lock has already been released.
2583
  *
2584
  * @return bool
2585
  */
2586
  function release_lock(){
2587
+ return WPMutex::release('blc_lock');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2588
  }
2589
 
2590
  /**
2622
  }
2623
  }
2624
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2625
  /**
2626
  * Collect various debugging information and return it in an associative array
2627
  *
2722
  );
2723
  }
2724
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2725
  //Default PHP execution time limit
2726
  $debug['Default PHP execution time limit'] = array(
2727
  'state' => 'ok',
2731
  //Resynch flag.
2732
  $debug['Resynch. flag'] = array(
2733
  'state' => 'ok',
2734
+ 'value' => sprintf('%d', $this->conf->options['need_resynch'] ? '1 (resynch. required)' : '0 (resynch. not required)'),
2735
  );
2736
 
2737
  //Synch records
core/init.php CHANGED
@@ -100,10 +100,6 @@ $blc_config_manager = new blcConfigurationManager(
100
  'need_resynch' => false, //[Internal flag] True if there are unparsed items.
101
  'current_db_version' => 0, //The currently set-up version of the plugin's tables
102
 
103
- 'custom_tmp_dir' => '', //The lockfile will be stored in this directory.
104
- //If this option is not set, the plugin's own directory or the
105
- //system-wide /tmp directory will be used instead.
106
-
107
  'timeout' => 30, //(in seconds) Links that take longer than this to respond will be treated as broken.
108
 
109
  'highlight_permanent_failures' => false,//Highlight links that have appear to be permanently broken (in Tools -> Broken Links).
100
  'need_resynch' => false, //[Internal flag] True if there are unparsed items.
101
  'current_db_version' => 0, //The currently set-up version of the plugin's tables
102
 
 
 
 
 
103
  'timeout' => 30, //(in seconds) Links that take longer than this to respond will be treated as broken.
104
 
105
  'highlight_permanent_failures' => false,//Highlight links that have appear to be permanently broken (in Tools -> Broken Links).
includes/admin/sidebar.php CHANGED
@@ -30,6 +30,23 @@
30
  </div>
31
  </div>
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  <div id="advertising" class="postbox">
34
  <h3 class="hndle"><?php _e('Recommended', 'broken-link-checker'); ?></h3>
35
  <div class="inside" style="text-align: center;">
@@ -39,3 +56,6 @@
39
  <img src="http://impression.clickinc.com/impressions/servlet/Impression?merchant=70291&&type=impression&&affId=102167&&img=c_160x600_maxcdn_simple.gif" style="display:none" border=0>
40
  </div>
41
  </div>
 
 
 
30
  </div>
31
  </div>
32
 
33
+ <?php
34
+ if ( time() < strtotime('2011-02-20') ):
35
+ //Note: i18n intentionally omitted for this part because the link (below) leads to an English-only page.
36
+ ?>
37
+ <div id="advertising" class="postbox">
38
+ <h3 class="hndle">Poll</h3>
39
+ <div class="inside" style="text-align: center;">
40
+ <a href="https://spreadsheets.google.com/viewform?formkey=dFA2VEFsdURoWjc2YlQ5WGxPSXc2Z3c6MQ">
41
+ Would you use a link checker that works with
42
+ <span style="white-space: nowrap;">non-WordPress</span> sites?
43
+ </a>
44
+ </div>
45
+ </div>
46
+ <?php
47
+ endif;
48
+ /*//Advertising temporarily disabled.
49
+ ?>
50
  <div id="advertising" class="postbox">
51
  <h3 class="hndle"><?php _e('Recommended', 'broken-link-checker'); ?></h3>
52
  <div class="inside" style="text-align: center;">
56
  <img src="http://impression.clickinc.com/impressions/servlet/Impression?merchant=70291&&type=impression&&affId=102167&&img=c_160x600_maxcdn_simple.gif" style="display:none" border=0>
57
  </div>
58
  </div>
59
+ <?php
60
+ //*/
61
+ ?>
includes/wp-mutex.php ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( !class_exists('WPMutex') ):
4
+
5
+ class WPMutex {
6
+ /**
7
+ * Get an exclusive named lock.
8
+ *
9
+ * @param string $name
10
+ * @param integer $timeout
11
+ * @param bool $network_wide
12
+ * @return bool
13
+ */
14
+ function acquire($name, $timeout = 0, $network_wide = false){
15
+ global $wpdb;
16
+ if ( !$network_wide ){
17
+ $name = WPMutex::_get_private_name($name);
18
+ }
19
+ $state = $wpdb->get_var($wpdb->prepare('SELECT GET_LOCK(%s, %d)', $name, $timeout));
20
+ return $state == 1;
21
+ }
22
+
23
+ /**
24
+ * Release a named lock.
25
+ *
26
+ * @param string $name
27
+ * @param bool $network_wide
28
+ * @return bool
29
+ */
30
+ function release($name, $network_wide = false){
31
+ global $wpdb;
32
+ if ( !$network_wide ){
33
+ $name = WPMutex::_get_private_name($name);
34
+ }
35
+ $released = $wpdb->get_var($wpdb->prepare('SELECT RELEASE_LOCK(%s)', $name));
36
+ return $released == 1;
37
+ }
38
+
39
+ /**
40
+ * Given a generic lock name, create a new one that's unique to the current blog.
41
+ *
42
+ * @access private
43
+ *
44
+ * @param string $name
45
+ * @return string
46
+ */
47
+ function _get_private_name($name){
48
+ global $current_blog;
49
+ if ( function_exists('is_multisite') && is_multisite() && isset($current_blog->blog_id) ){
50
+ $name .= '-blog-' . $current_blog->blog_id;
51
+ }
52
+ return $name;
53
+ }
54
+ }
55
+
56
+ endif;
57
+
58
+ ?>
languages/broken-link-checker-de_DE.mo CHANGED
Binary file
languages/broken-link-checker-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker | V0.9.7.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
- "POT-Creation-Date: 2010-10-08 16:08+0000\n"
6
- "PO-Revision-Date: 2010-10-10 19:14+0100\n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -19,798 +19,1137 @@ msgstr ""
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:1186
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 noch einmal gestartet."
80
 
81
  # @ broken-link-checker
82
- #: core/core.php:564
83
- #: core/core.php:2744
84
  msgid "Details"
85
  msgstr "Details"
86
 
87
  # @ broken-link-checker
88
- #: core/core.php:578
89
  msgid "General"
90
  msgstr "Allgemein"
91
 
92
  # @ broken-link-checker
93
- #: core/core.php:579
94
  msgid "Look For Links In"
95
  msgstr "Suchen Sie nach Links in"
96
 
97
  # @ broken-link-checker
98
- #: core/core.php:580
99
  msgid "Which Links To Check"
100
  msgstr "Welche Links überprüfen"
101
 
102
  # @ broken-link-checker
103
- #: core/core.php:581
104
  msgid "Protocols & APIs"
105
  msgstr "Protokoll & Schnittstellen"
106
 
107
  # @ broken-link-checker
108
- #: core/core.php:582
109
  msgid "Advanced"
110
  msgstr "Erweitert"
111
 
112
  # @ broken-link-checker
113
- #: core/core.php:586
114
  msgid "Broken Link Checker Options"
115
  msgstr "Broken Link Checker Optionen"
116
 
117
  # @ broken-link-checker
118
- #: core/core.php:612
119
  #: includes/admin/table-printer.php:168
120
  msgid "Status"
121
  msgstr "Status"
122
 
123
  # @ broken-link-checker
124
- #: core/core.php:614
125
  #: includes/admin/options-page-js.php:56
126
  msgid "Show debug info"
127
  msgstr "Debug Infos anzeigen"
128
 
129
  # @ broken-link-checker
130
- #: core/core.php:642
131
  msgid "Check each link"
132
  msgstr "Überprüfe jeden Link"
133
 
134
  # @ broken-link-checker
135
- #: core/core.php:647
136
- #, php-format
137
  msgid "Every %s hours"
138
  msgstr "Alle %s Stunden"
139
 
140
  # @ broken-link-checker
141
- #: core/core.php:656
142
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
143
  msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
144
 
145
  # @ broken-link-checker
146
- #: core/core.php:663
147
  msgid "E-mail notifications"
148
  msgstr "Email Benachrichtigungen"
149
 
150
  # @ broken-link-checker
151
- #: core/core.php:669
152
  msgid "Send me e-mail notifications about newly detected broken links"
153
  msgstr "Senden Sie mir eine Email Benachrichtigung, wenn neue fehlerhafte Links erkannt werden"
154
 
155
  # @ broken-link-checker
156
- #: core/core.php:676
157
  msgid "Link tweaks"
158
  msgstr "Link Einstellungen"
159
 
160
  # @ broken-link-checker
161
- #: core/core.php:682
162
  msgid "Apply custom formatting to broken links"
163
  msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
164
 
165
  # @ broken-link-checker
166
- #: core/core.php:686
167
- #: core/core.php:714
168
  msgid "Edit CSS"
169
  msgstr "Bearbeite CSS"
170
 
171
  # @ broken-link-checker
172
- #: core/core.php:710
173
  msgid "Apply custom formatting to removed links"
174
  msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
175
 
176
  # @ broken-link-checker
177
- #: core/core.php:738
178
  msgid "Stop search engines from following broken links"
179
  msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
180
 
181
  # @ broken-link-checker
182
- #: core/core.php:755
183
  msgid "Look for links in"
184
  msgstr "Suchen Sie nach Links in"
185
 
186
  # @ broken-link-checker
187
- #: core/core.php:766
188
  msgid "Post statuses"
189
  msgstr "Beitrag Status"
190
 
191
  # @ broken-link-checker
192
- #: core/core.php:799
193
  msgid "Link types"
194
  msgstr "Link Typen"
195
 
196
  # @ broken-link-checker
197
- #: core/core.php:805
198
  msgid "Error : All link parsers missing!"
199
  msgstr "Fehler: Alle Link-Parser fehlen!"
200
 
201
  # @ broken-link-checker
202
- #: core/core.php:812
203
  msgid "Exclusion list"
204
  msgstr "Ausschlussliste"
205
 
206
  # @ broken-link-checker
207
- #: core/core.php:813
208
  msgid "Don't check links where the URL contains any of these words (one per line) :"
209
  msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
210
 
211
  # @ broken-link-checker
212
- #: core/core.php:831
213
  msgid "Check links using"
214
  msgstr "Überprüfe Links"
215
 
216
  # @ broken-link-checker
217
- #: core/core.php:850
218
  #: includes/links.php:849
219
  msgid "Timeout"
220
  msgstr "Zeitüberschreitung"
221
 
222
  # @ broken-link-checker
223
  # @ default
224
- #: core/core.php:856
225
- #: core/core.php:902
226
- #: core/core.php:2871
227
- #, php-format
228
  msgid "%s seconds"
229
  msgstr "%s Sekunden"
230
 
231
  # @ broken-link-checker
232
- #: core/core.php:865
233
  msgid "Links that take longer than this to load will be marked as broken."
234
  msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
235
 
236
  # @ broken-link-checker
237
- #: core/core.php:872
238
  msgid "Link monitor"
239
  msgstr "Link Monitor"
240
 
241
  # @ broken-link-checker
242
- #: core/core.php:880
243
  msgid "Run continuously while the Dashboard is open"
244
  msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
245
 
246
  # @ broken-link-checker
247
- #: core/core.php:888
248
  msgid "Run hourly in the background"
249
  msgstr "Stündlich im Hintergrund arbeiten"
250
 
251
  # @ broken-link-checker
252
- #: core/core.php:896
253
  msgid "Max. execution time"
254
  msgstr "Max. Ausführungszeit"
255
 
256
  # @ broken-link-checker
257
- #: core/core.php:913
258
  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."
259
  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."
260
 
261
  # @ broken-link-checker
262
- #: core/core.php:923
263
  msgid "Custom temporary directory"
264
  msgstr "Temporäres Verzeichnis"
265
 
266
  # @ broken-link-checker
267
- #: core/core.php:932
268
- msgid "OK"
269
- msgstr "OK"
270
-
271
- # @ broken-link-checker
272
- #: core/core.php:935
273
  msgid "Error : This directory isn't writable by PHP."
274
  msgstr "Fehler: Dieses Verzeichnis ist nicht beschreibbar durch PHP."
275
 
276
  # @ broken-link-checker
277
- #: core/core.php:940
278
  msgid "Error : This directory doesn't exist."
279
  msgstr "Fehler: Dieses Verzeichnis existiert nicht."
280
 
281
  # @ broken-link-checker
282
- #: core/core.php:948
283
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
284
  msgstr "Verzeichnis in das Feld eingeben, wenn das Plugin ein benutzerdefiniertes Verzeichnis für die Lock-Dateien verwenden soll. Ansonsten nichts eintragen."
285
 
286
  # @ broken-link-checker
287
- #: core/core.php:955
288
  msgid "Server load limit"
289
  msgstr "Server Belastungsgrenze"
290
 
291
- #: core/core.php:970
292
- #, php-format
293
  msgid "Current load : %s"
294
  msgstr "Aktuelle Belastung: %s"
295
 
296
  # @ broken-link-checker
297
- #: core/core.php:976
298
- #, php-format
299
  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."
300
  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."
301
 
302
  # @ broken-link-checker
303
- #: core/core.php:984
304
  msgid "Not available"
305
  msgstr "Nicht verfügbar"
306
 
307
  # @ broken-link-checker
308
- #: core/core.php:986
309
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
310
  msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
311
 
312
  # @ broken-link-checker
313
- #: core/core.php:994
314
  msgid "Forced recheck"
315
  msgstr "Erneute Überprüfung erzwingen"
316
 
317
  # @ broken-link-checker
318
- #: core/core.php:997
319
  msgid "Re-check all pages"
320
  msgstr "Überprüfe alle Seiten noch einmal"
321
 
322
  # @ broken-link-checker
323
- #: core/core.php:1001
324
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
325
  msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
326
 
327
  # @ default
328
- #: core/core.php:1012
329
  msgid "Save Changes"
330
  msgstr "Änderungen speichern"
331
 
332
  # @ broken-link-checker
333
- #: core/core.php:1057
334
  msgid "Configure"
335
  msgstr "Konfigurieren"
336
 
337
  # @ broken-link-checker
338
- #: core/core.php:1117
339
- msgid "Upgrade to Pro to enable this feature"
340
- msgstr "Upgrade auf Pro um diese Funktion zu aktivieren"
341
-
342
- # @ broken-link-checker
343
- #: core/core.php:1152
344
  msgid "Check URLs entered in these custom fields (one per line) :"
345
  msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
346
 
347
  # @ broken-link-checker
348
- #: core/core.php:1286
349
- #: core/core.php:1370
350
- #: core/core.php:1402
351
- #, php-format
352
  msgid "Database error : %s"
353
  msgstr "Datenbank Fehler: %s"
354
 
355
  # @ broken-link-checker
356
- #: core/core.php:1352
357
  msgid "You must enter a filter name!"
358
  msgstr "Sie müssen einen Filter Namen eingeben!"
359
 
360
  # @ broken-link-checker
361
- #: core/core.php:1356
362
  msgid "Invalid search query."
363
  msgstr "Ungültige Suchanfrage."
364
 
365
  # @ broken-link-checker
366
- #: core/core.php:1365
367
- #, php-format
368
  msgid "Filter \"%s\" created"
369
  msgstr "Filter \"%s\" erstellt"
370
 
371
  # @ broken-link-checker
372
- #: core/core.php:1392
373
  msgid "Filter ID not specified."
374
  msgstr "Link ID nicht spezifiziert."
375
 
376
  # @ broken-link-checker
377
- #: core/core.php:1399
378
  msgid "Filter deleted"
379
  msgstr "Filter gelöscht"
380
 
381
  # @ broken-link-checker
382
- #: core/core.php:1447
383
- #, php-format
384
  msgid "Replaced %d redirect with a direct link"
385
  msgid_plural "Replaced %d redirects with direct links"
386
  msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
387
  msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
388
 
389
  # @ broken-link-checker
390
- #: core/core.php:1458
391
- #, php-format
392
  msgid "Failed to fix %d redirect"
393
  msgid_plural "Failed to fix %d redirects"
394
  msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
395
  msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
396
 
397
  # @ broken-link-checker
398
- #: core/core.php:1468
399
  msgid "None of the selected links are redirects!"
400
  msgstr "Keiner der ausgewählten Links sind Umleitungen!"
401
 
402
  # @ broken-link-checker
403
- #: core/core.php:1547
404
- #, php-format
405
  msgid "%d link updated."
406
  msgid_plural "%d links updated."
407
  msgstr[0] "Link %d aktualisiert."
408
  msgstr[1] "Links %d aktualisiert."
409
 
410
  # @ broken-link-checker
411
- #: core/core.php:1558
412
- #, php-format
413
  msgid "Failed to update %d link."
414
  msgid_plural "Failed to update %d links."
415
  msgstr[0] "Link %d konnte nicht aktualisiert werden."
416
  msgstr[1] "Links %d konnten nicht aktualisiert werden."
417
 
418
  # @ broken-link-checker
419
- #: core/core.php:1612
420
- #, php-format
421
  msgid "%d link removed"
422
  msgid_plural "%d links removed"
423
  msgstr[0] "%d Link entfernt"
424
  msgstr[1] "%d Links entfernt"
425
 
426
  # @ broken-link-checker
427
- #: core/core.php:1623
428
- #, php-format
429
  msgid "Failed to remove %d link"
430
  msgid_plural "Failed to remove %d links"
431
  msgstr[0] "Link %d konnte nicht entfernt werden"
432
  msgstr[1] "Links %d konnten nicht entfernt werden"
433
 
434
  # @ default
435
- #: core/core.php:1732
436
- #, php-format
437
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
438
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
439
  msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
440
  msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
441
 
442
  # @ broken-link-checker
443
- #: core/core.php:1753
444
  msgid "Didn't find anything to delete!"
445
  msgstr "Nichts gefunden um zu löschen!"
446
 
447
  # @ broken-link-checker
448
- #: core/core.php:1781
449
- #, php-format
450
  msgid "%d link scheduled for rechecking"
451
  msgid_plural "%d links scheduled for rechecking"
452
  msgstr[0] "%d Link zur erneuten Überprüfung geplant"
453
  msgstr[1] "%d Links zur erneuten Überprüfung geplant"
454
 
455
  # @ broken-link-checker
456
- #: core/core.php:1826
457
- #: core/core.php:2431
458
  msgid "This link was manually marked as working by the user."
459
  msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
460
 
461
  # @ broken-link-checker
462
- #: core/core.php:1833
463
- #, php-format
464
  msgid "Couldn't modify link %d"
465
  msgstr "Link %d konnte nicht geändert werden"
466
 
467
  # @ broken-link-checker
468
- #: core/core.php:1844
469
- #, php-format
470
  msgid "%d link marked as not broken"
471
  msgid_plural "%d links marked as not broken"
472
  msgstr[0] "%d Link als nicht fehlerhaft markiert"
473
  msgstr[1] "%d Links als nicht fehlerhaft markiert"
474
 
475
  # @ broken-link-checker
476
- #: core/core.php:1884
477
  msgid "Table columns"
478
  msgstr "Tabellenspalten"
479
 
480
  # @ default
481
- #: core/core.php:1903
482
  msgid "Show on screen"
483
  msgstr "Auf dem Bildschirm anzeigen"
484
 
485
  # @ broken-link-checker
486
- #: core/core.php:1910
487
  msgid "links"
488
  msgstr "Links"
489
 
490
  # @ default
491
  # @ broken-link-checker
492
- #: core/core.php:1911
493
  #: includes/admin/table-printer.php:136
494
  msgid "Apply"
495
  msgstr "Anwenden"
496
 
497
  # @ broken-link-checker
498
- #: core/core.php:1915
499
  msgid "Misc"
500
  msgstr "Sonstige"
501
 
502
  # @ broken-link-checker
503
- #: core/core.php:1930
504
- #, php-format
505
  msgid "Highlight links broken for at least %s days"
506
  msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
507
 
508
  # @ broken-link-checker
509
- #: core/core.php:1939
510
  msgid "Color-code status codes"
511
  msgstr "Farb-Code Status Codes"
512
 
513
  # @ broken-link-checker
514
- #: core/core.php:1956
515
- #: core/core.php:2416
516
- #: core/core.php:2452
517
- #: core/core.php:2515
518
  msgid "You're not allowed to do that!"
519
  msgstr "Sie haben nicht die Erlaubnis das zu tun!"
520
 
521
  # @ broken-link-checker
522
- #: core/core.php:2297
523
  msgid "View broken links"
524
  msgstr "Fehlerhafte Links anschauen"
525
 
526
  # @ broken-link-checker
527
- #: core/core.php:2298
528
- #, php-format
529
  msgid "Found %d broken link"
530
  msgid_plural "Found %d broken links"
531
  msgstr[0] "%d fehlerhafte Links gefunden"
532
  msgstr[1] "%d fehlerhafte Links gefunden"
533
 
534
  # @ broken-link-checker
535
- #: core/core.php:2304
536
  msgid "No broken links found."
537
  msgstr "Keine fehlerhaften Links gefunden."
538
 
539
  # @ broken-link-checker
540
- #: core/core.php:2311
541
- #, php-format
542
  msgid "%d URL in the work queue"
543
  msgid_plural "%d URLs in the work queue"
544
  msgstr[0] "%d URL in der Warteschlange"
545
  msgstr[1] "%d URLs in der Warteschlange"
546
 
547
  # @ broken-link-checker
548
- #: core/core.php:2314
549
  msgid "No URLs in the work queue."
550
  msgstr "Keine URLs in der Warteschlange."
551
 
552
  # @ broken-link-checker
553
- #: core/core.php:2320
554
- #, php-format
555
  msgid "Detected %d unique URL"
556
  msgid_plural "Detected %d unique URLs"
557
  msgstr[0] "%d eindeutige URL gefunden"
558
  msgstr[1] "%d eindeutige URLs gefunden"
559
 
560
  # @ broken-link-checker
561
- #: core/core.php:2321
562
- #, php-format
563
  msgid "in %d link"
564
  msgid_plural "in %d links"
565
  msgstr[0] "in %d Link"
566
  msgstr[1] "in %d Links"
567
 
568
  # @ broken-link-checker
569
- #: core/core.php:2326
570
  msgid "and still searching..."
571
  msgstr "und sucht immer noch ..."
572
 
573
  # @ broken-link-checker
574
- #: core/core.php:2332
575
  msgid "Searching your blog for links..."
576
  msgstr "Durchsucht Ihr Blog nach Links ..."
577
 
578
  # @ broken-link-checker
579
- #: core/core.php:2334
580
  msgid "No links detected."
581
  msgstr "Keine Links gefunden."
582
 
583
  # @ broken-link-checker
584
- #: core/core.php:2360
585
  msgctxt "current load"
586
  msgid "Unknown"
587
  msgstr "Unbekannt"
588
 
589
  # @ broken-link-checker
590
- #: core/core.php:2424
591
- #: core/core.php:2462
592
- #: core/core.php:2525
593
- #, php-format
594
  msgid "Oops, I can't find the link %d"
595
  msgstr "Hossa, Ich kann den link %d nicht finden"
596
 
597
  # @ broken-link-checker
598
- #: core/core.php:2437
599
  msgid "Oops, couldn't modify the link!"
600
  msgstr "Mistverdammter, konnte den Link nicht modifizieren!"
601
 
602
  # @ broken-link-checker
603
- #: core/core.php:2440
604
- #: core/core.php:2551
605
  msgid "Error : link_id not specified"
606
  msgstr "Fehler: link_id nicht spezifiziert"
607
 
608
  # @ broken-link-checker
609
- #: core/core.php:2472
610
  msgid "Oops, the new URL is invalid!"
611
  msgstr "Ohoh, die neue URL funktioniert nicht!"
612
 
613
  # @ broken-link-checker
614
- #: core/core.php:2483
615
- #: core/core.php:2534
616
  msgid "An unexpected error occured!"
617
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
618
 
619
  # @ broken-link-checker
620
- #: core/core.php:2501
621
  msgid "Error : link_id or new_url not specified"
622
  msgstr "Fehler: link_id oder new_url sind nicht spezifiziert"
623
 
624
  # @ broken-link-checker
625
- #: core/core.php:2560
626
  msgid "You don't have sufficient privileges to access this information!"
627
  msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
628
 
629
  # @ broken-link-checker
630
- #: core/core.php:2573
631
  msgid "Error : link ID not specified"
632
  msgstr "Fehler: Link ID nicht spezifiziert"
633
 
634
  # @ broken-link-checker
635
- #: core/core.php:2587
636
- #, php-format
637
  msgid "Failed to load link details (%s)"
638
  msgstr "Laden der Link Details (%s) schlug fehl"
639
 
640
  # @ broken-link-checker
641
- #. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.6) #-#-#-#-#
642
  #. Plugin Name of the plugin/theme
643
- #: core/core.php:2716
644
  msgid "Broken Link Checker"
645
  msgstr "Broken Link Checker"
646
 
647
  # @ broken-link-checker
648
- #: core/core.php:2730
649
- #, php-format
650
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
651
  msgstr "Das aktuelle temporäre Verzeichnis ist nicht erreichbar; Bitte <a href=\"%s\">setzen Sie ein anderes Verzeichnis</a>."
652
 
653
  # @ broken-link-checker
654
- #: core/core.php:2735
655
- #, php-format
656
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
657
  msgstr "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
658
 
659
  # @ broken-link-checker
660
- #: core/core.php:2742
661
  msgid "Broken Link Checker can't create a lockfile."
662
  msgstr "Broken Link Checker kann keine Lock-Dateien erstellen."
663
 
664
  # @ broken-link-checker
665
- #: core/core.php:2747
666
  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."
667
  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."
668
 
669
  # @ broken-link-checker
670
- #: core/core.php:2766
671
  msgid "PHP version"
672
  msgstr "PHP Version"
673
 
674
  # @ broken-link-checker
675
- #: core/core.php:2772
676
  msgid "MySQL version"
677
  msgstr "MySQL Version"
678
 
679
  # @ broken-link-checker
680
- #: core/core.php:2785
681
  msgid "You have an old version of CURL. Redirect detection may not work properly."
682
  msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
683
 
684
  # @ broken-link-checker
685
- #: core/core.php:2797
686
- #: core/core.php:2813
687
- #: core/core.php:2818
688
  msgid "Not installed"
689
  msgstr "Nicht installiert"
690
 
691
  # @ broken-link-checker
692
- #: core/core.php:2800
693
  msgid "CURL version"
694
  msgstr "CURL Version"
695
 
696
  # @ broken-link-checker
697
- #: core/core.php:2806
698
  msgid "Installed"
699
  msgstr "Installiert"
700
 
701
  # @ broken-link-checker
702
- #: core/core.php:2819
703
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
704
  msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
705
 
706
  # @ broken-link-checker
707
- #: core/core.php:2830
708
  msgid "On"
709
  msgstr "An"
710
 
711
  # @ broken-link-checker
712
- #: core/core.php:2831
713
  msgid "Redirects may be detected as broken links when safe_mode is on."
714
  msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
715
 
716
  # @ broken-link-checker
717
- #: core/core.php:2836
718
- #: core/core.php:2850
719
  msgid "Off"
720
  msgstr "Aus"
721
 
722
  # @ broken-link-checker
723
- #: core/core.php:2844
724
- #, php-format
725
  msgid "On ( %s )"
726
  msgstr "An (%s)"
727
 
728
  # @ broken-link-checker
729
- #: core/core.php:2845
730
  msgid "Redirects may be detected as broken links when open_basedir is on."
731
  msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
732
 
733
  # @ broken-link-checker
734
- #: core/core.php:2864
735
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
736
  msgstr "Lock-Datei kann nicht erstellt werden. Bitte bestimmen Sie ein benutzerdefiniertes temporäres Verzeichnis."
737
 
738
  # @ broken-link-checker
739
- #: core/core.php:2888
740
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
741
  msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
742
 
743
  # @ broken-link-checker
744
- #: core/core.php:2959
745
- #, php-format
746
  msgid "[%s] Broken links detected"
747
  msgstr "[%s] Fehlerhafte Links entdeckt"
748
 
749
  # @ broken-link-checker
750
- #: core/core.php:2965
751
- #, php-format
752
  msgid "Broken Link Checker has detected %d new broken link on your site."
753
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
754
  msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
755
  msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
756
 
757
  # @ broken-link-checker
758
- #: core/core.php:2980
759
- #, php-format
760
  msgid "Here's a list of the first %d broken links:"
761
  msgid_plural "Here's a list of the first %d broken links:"
762
  msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
763
  msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
764
 
765
  # @ broken-link-checker
766
- #: core/core.php:2988
767
  msgid "Here's a list of the new broken links: "
768
  msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
769
 
770
  # @ broken-link-checker
771
- #: core/core.php:3000
772
- #, php-format
773
  msgid "Link text : %s"
774
  msgstr "Link Text: %s"
775
 
776
  # @ broken-link-checker
777
- #: core/core.php:3001
778
- #, php-format
779
  msgid "Link URL : <a href=\"%s\">%s</a>"
780
  msgstr "Link URL: <a href=\"%s\">%s</a>"
781
 
782
  # @ broken-link-checker
783
- #: core/core.php:3002
784
- #, php-format
785
  msgid "Source : %s"
786
  msgstr "Quelle: %s"
787
 
788
  # @ brokenk-link-checker
789
- #: core/core.php:3016
790
  msgid "You can see all broken links here:"
791
  msgstr "Hier sehen Sie alle fehlerhaften Links:"
792
 
793
- # @ default
794
- #: core/init.php:236
795
- msgid "Once Weekly"
796
- msgstr "Einmal wöchentlich"
797
-
798
- # @ default
799
- #: core/init.php:242
800
- msgid "Twice a Month"
801
- msgstr "Zweimal im Monat"
802
-
803
- # @ broken-link-checker
804
- #: core/init.php:309
805
- msgid "Broken Link Checker installation failed"
806
- msgstr "Broken Link Checker Installation fehlgeschlagen"
807
-
808
- # @ broken-link-checker
809
- #: includes/admin/db-upgrade.php:95
810
- #, php-format
811
- msgid "Failed to delete old DB tables. Database error : %s"
812
- msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
813
-
814
  # @ broken-link-checker
815
  #: includes/admin/links-page-js.php:58
816
  #: includes/admin/links-page-js.php:301
@@ -819,19 +1158,17 @@ msgstr "Warte ..."
819
 
820
  # @ broken-link-checker
821
  #: includes/admin/links-page-js.php:99
822
- #: includes/admin/table-printer.php:592
823
  msgid "Not broken"
824
  msgstr "Nicht fehlerhaft"
825
 
826
  # @ broken-link-checker
827
  #: includes/admin/links-page-js.php:213
828
- #, php-format
829
  msgid "%d instances of the link were successfully modified."
830
  msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
831
 
832
  # @ broken-link-checker
833
  #: includes/admin/links-page-js.php:219
834
- #, php-format
835
  msgid "However, %d instances couldn't be edited and still point to the old URL."
836
  msgstr "Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem noch auf die alte URL."
837
 
@@ -848,13 +1185,11 @@ msgstr "Folgende Fehler sind aufgetreten:"
848
 
849
  # @ broken-link-checker
850
  #: includes/admin/links-page-js.php:339
851
- #, php-format
852
  msgid "%d instances of the link were successfully unlinked."
853
  msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
854
 
855
  # @ broken-link-checker
856
  #: includes/admin/links-page-js.php:345
857
- #, php-format
858
  msgid "However, %d instances couldn't be removed."
859
  msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
860
 
@@ -866,7 +1201,7 @@ msgstr "Das Plugin konnte den Link nicht entfernen."
866
  # @ broken-link-checker
867
  #: includes/admin/links-page-js.php:361
868
  #: includes/admin/table-printer.php:237
869
- #: includes/admin/table-printer.php:586
870
  msgid "Unlink"
871
  msgstr "Link aufheben"
872
 
@@ -910,11 +1245,6 @@ msgstr "Geben Sie zuerst einen Suchbegriff ein."
910
  msgid "Select one or more links to edit."
911
  msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
912
 
913
- # @ broken-link-checker
914
- #: includes/admin/options-page-js.php:54
915
- msgid "Hide debug info"
916
- msgstr "Debug Info verbergen"
917
-
918
  # @ broken-link-checker
919
  #: includes/admin/search-form.php:16
920
  msgid "Save This Search As a Filter"
@@ -944,7 +1274,7 @@ msgstr "URL"
944
 
945
  # @ broken-link-checker
946
  #: includes/admin/search-form.php:48
947
- #: includes/admin/table-printer.php:460
948
  msgid "HTTP code"
949
  msgstr "HTTP Code"
950
 
@@ -976,12 +1306,34 @@ msgstr "Suche Links"
976
 
977
  # @ broken-link-checker
978
  #: includes/admin/search-form.php:113
979
- #: includes/admin/table-printer.php:318
980
- #: includes/admin/table-printer.php:600
981
- #: includes/admin/table-printer.php:606
982
  msgid "Cancel"
983
  msgstr "Abbrechen"
984
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
985
  # @ broken-link-checker
986
  #: includes/admin/table-printer.php:150
987
  msgid "Compact View"
@@ -1009,7 +1361,7 @@ msgstr "Massenänderung"
1009
 
1010
  # @ broken-link-checker
1011
  #: includes/admin/table-printer.php:233
1012
- #: includes/admin/table-printer.php:583
1013
  msgid "Edit URL"
1014
  msgstr "Bearbeite URL"
1015
 
@@ -1039,423 +1391,164 @@ msgid "Delete sources"
1039
  msgstr "Quellen löschen"
1040
 
1041
  # @ default
1042
- #: includes/admin/table-printer.php:262
1043
  msgid "&laquo;"
1044
  msgstr "&laquo;"
1045
 
1046
  # @ default
1047
- #: includes/admin/table-printer.php:263
1048
  msgid "&raquo;"
1049
  msgstr "&raquo;"
1050
 
1051
  # @ broken-link-checker
1052
- #: includes/admin/table-printer.php:271
1053
- #, php-format
1054
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1055
  msgstr "Anzeigen %s&#8211;%s von <span class=\"current-link-count\">%s</span>"
1056
 
1057
  # @ broken-link-checker
1058
- #: includes/admin/table-printer.php:294
1059
  msgid "Bulk Edit URLs"
1060
  msgstr "Mehrere URLs bearbeiten"
1061
 
1062
- #: includes/admin/table-printer.php:296
1063
  msgid "Find"
1064
  msgstr "Finden"
1065
 
1066
- #: includes/admin/table-printer.php:300
1067
  msgid "Replace with"
1068
  msgstr "Ersetzen mit"
1069
 
1070
  # @ broken-link-checker
1071
- #: includes/admin/table-printer.php:308
1072
  msgid "Case sensitive"
1073
  msgstr "Gross- und Kleinschreibung"
1074
 
1075
- #: includes/admin/table-printer.php:312
1076
  msgid "Regular expression"
1077
  msgstr "Regulärer Ausdruck"
1078
 
1079
  # @ broken-link-checker
1080
- #: includes/admin/table-printer.php:320
1081
  msgid "Update"
1082
  msgstr "Aktualisieren"
1083
 
1084
  # @ broken-link-checker
1085
- #: includes/admin/table-printer.php:445
1086
  msgid "Post published on"
1087
  msgstr "Beitrag publiziert am"
1088
 
1089
  # @ broken-link-checker
1090
- #: includes/admin/table-printer.php:450
1091
  msgid "Link last checked"
1092
  msgstr "Link zuletzt geprüft"
1093
 
1094
  # @ broken-link-checker
1095
- #: includes/admin/table-printer.php:454
1096
  msgid "Never"
1097
- msgstr "Nie"
1098
-
1099
- # @ broken-link-checker
1100
- #: includes/admin/table-printer.php:465
1101
- msgid "Response time"
1102
- msgstr "Reaktionszeit"
1103
-
1104
- # @ broken-link-checker
1105
- #: includes/admin/table-printer.php:467
1106
- #, php-format
1107
- msgid "%2.3f seconds"
1108
- msgstr "%2.3f Sekunden"
1109
-
1110
- # @ broken-link-checker
1111
- #: includes/admin/table-printer.php:470
1112
- msgid "Final URL"
1113
- msgstr "Endgültige URL"
1114
-
1115
- # @ broken-link-checker
1116
- #: includes/admin/table-printer.php:475
1117
- msgid "Redirect count"
1118
- msgstr "Weiterleitung Anzahl"
1119
-
1120
- # @ broken-link-checker
1121
- #: includes/admin/table-printer.php:480
1122
- msgid "Instance count"
1123
- msgstr "Instanz Anzahl"
1124
-
1125
- # @ broken-link-checker
1126
- #: includes/admin/table-printer.php:489
1127
- #, php-format
1128
- msgid "This link has failed %d time."
1129
- msgid_plural "This link has failed %d times."
1130
- msgstr[0] "Dieser Link schlug %d mal fehl."
1131
- msgstr[1] "Dieser Link schlug %d mal fehl."
1132
-
1133
- # @ broken-link-checker
1134
- #: includes/admin/table-printer.php:497
1135
- #, php-format
1136
- msgid "This link has been broken for %s."
1137
- msgstr "Dieser Links ist fehlerhaft seit %s."
1138
-
1139
- # @ broken-link-checker
1140
- #: includes/admin/table-printer.php:508
1141
- msgid "Log"
1142
- msgstr "Log"
1143
-
1144
- # @ broken-link-checker
1145
- #: includes/admin/table-printer.php:529
1146
- msgid "Show more info about this link"
1147
- msgstr "Mehr Informationen über diesen Link anzeigen"
1148
-
1149
- # @ broken-link-checker
1150
- #: includes/admin/table-printer.php:547
1151
- msgctxt "checked how long ago"
1152
- msgid "Checked"
1153
- msgstr "Geprüft"
1154
-
1155
- # @ broken-link-checker
1156
- #: includes/admin/table-printer.php:563
1157
- msgid "Broken for"
1158
- msgstr "Fehlerhaft für"
1159
-
1160
- # @ broken-link-checker
1161
- #: includes/admin/table-printer.php:583
1162
- msgid "Edit link URL"
1163
- msgstr "Bearbeite URL Link"
1164
-
1165
- # @ broken-link-checker
1166
- #: includes/admin/table-printer.php:585
1167
- msgid "Remove this link from all posts"
1168
- msgstr "Löschen Sie diesen Link von allen Beiträgen"
1169
-
1170
- # @ broken-link-checker
1171
- #: includes/admin/table-printer.php:591
1172
- msgid "Remove this link from the list of broken links and mark it as valid"
1173
- msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
1174
-
1175
- # @ broken-link-checker
1176
- #: includes/admin/table-printer.php:600
1177
- msgid "Cancel URL editing"
1178
- msgstr "URL Bearbeitung abbrechen"
1179
-
1180
- # @ broken-link-checker
1181
- #: includes/admin/table-printer.php:607
1182
- msgid "Update URL"
1183
- msgstr "Update URL"
1184
-
1185
- # @ broken-link-checker
1186
- #: includes/admin/table-printer.php:629
1187
- msgid "[An orphaned link! This is a bug.]"
1188
- msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
1189
-
1190
- # @ default
1191
- #: includes/any-post.php:398
1192
- #: modules/containers/blogroll.php:46
1193
- #: modules/containers/comment.php:153
1194
- #: modules/containers/custom_field.php:197
1195
- msgid "Edit"
1196
- msgstr "Bearbeiten"
1197
-
1198
- # @ default
1199
- #: includes/any-post.php:406
1200
- #: modules/containers/custom_field.php:203
1201
- msgid "Move this item to the Trash"
1202
- msgstr "Element in den Papierkorb verschieben"
1203
-
1204
- # @ default
1205
- #: includes/any-post.php:408
1206
- #: modules/containers/custom_field.php:205
1207
- msgid "Trash"
1208
- msgstr "Papierkorb"
1209
-
1210
- # @ default
1211
- #: includes/any-post.php:413
1212
- #: modules/containers/custom_field.php:210
1213
- msgid "Delete this item permanently"
1214
- msgstr "Element endgültig löschen"
1215
-
1216
- # @ default
1217
- #: includes/any-post.php:415
1218
- #: modules/containers/blogroll.php:47
1219
- #: modules/containers/custom_field.php:212
1220
- msgid "Delete"
1221
- msgstr "Löschen"
1222
-
1223
- # @ default
1224
- #: includes/any-post.php:428
1225
- #, php-format
1226
- msgid "Preview &#8220;%s&#8221;"
1227
- msgstr "Vorschau &#8220;%s&#8221;"
1228
-
1229
- # @ default
1230
- #: includes/any-post.php:429
1231
- msgid "Preview"
1232
- msgstr "Vorschau"
1233
-
1234
- # @ default
1235
- #: includes/any-post.php:436
1236
- #, php-format
1237
- msgid "View &#8220;%s&#8221;"
1238
- msgstr "Ansehen &#8220;%s&#8221;"
1239
-
1240
- # @ default
1241
- #: includes/any-post.php:437
1242
- #: modules/containers/comment.php:166
1243
- #: modules/containers/custom_field.php:217
1244
- msgid "View"
1245
- msgstr "Ansehen"
1246
-
1247
- # @ default
1248
- #: includes/any-post.php:456
1249
- #: modules/containers/custom_field.php:197
1250
- msgid "Edit this item"
1251
- msgstr "Bearbeiten Sie dieses Element"
1252
-
1253
- # @ broken-link-checker
1254
- #: includes/any-post.php:520
1255
- #: modules/containers/blogroll.php:83
1256
- #: modules/containers/comment.php:43
1257
- msgid "Nothing to update"
1258
- msgstr "Nichts zu aktualisieren"
1259
-
1260
- # @ broken-link-checker
1261
- #: includes/any-post.php:530
1262
- #, php-format
1263
- msgid "Updating post %d failed"
1264
- msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
1265
-
1266
- # @ broken-link-checker
1267
- #: includes/any-post.php:565
1268
- #: modules/containers/custom_field.php:284
1269
- #, php-format
1270
- msgid "Failed to delete post \"%s\" (%d)"
1271
- msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
1272
-
1273
- # @ broken-link-checker
1274
- #: includes/any-post.php:584
1275
- #: modules/containers/custom_field.php:303
1276
- #, php-format
1277
- msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1278
- msgstr "Der Beitrag \"%s\" (%d) kann nicht in den Papierkorb verschoben werden, weil diese Funktion deaktiviert ist"
1279
-
1280
- # @ broken-link-checker
1281
- #: includes/any-post.php:604
1282
- #: modules/containers/custom_field.php:322
1283
- #, php-format
1284
- msgid "Failed to move post \"%s\" (%d) to the trash"
1285
- msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
1286
-
1287
- # @ broken-link-checker
1288
- #: includes/any-post.php:712
1289
- #, php-format
1290
- msgid "%d post deleted."
1291
- msgid_plural "%d posts deleted."
1292
- msgstr[0] "%d Artikel gelöscht."
1293
- msgstr[1] "%d Artikel gelöscht."
1294
-
1295
- # @ broken-link-checker
1296
- #: includes/any-post.php:714
1297
- #, php-format
1298
- msgid "%d page deleted."
1299
- msgid_plural "%d pages deleted."
1300
- msgstr[0] "%d Seite gelöscht."
1301
- msgstr[1] "%d Seiten gelöscht."
1302
-
1303
- # @ broken-link-checker
1304
- #: includes/any-post.php:716
1305
- #, php-format
1306
- msgid "%d \"%s\" deleted."
1307
- msgid_plural "%d \"%s\" deleted."
1308
- msgstr[0] "%d \"%s\" gelöscht."
1309
- msgstr[1] "%d \"%s\" gelöscht."
1310
-
1311
- # @ broken-link-checker
1312
- #: includes/any-post.php:735
1313
- #, php-format
1314
- msgid "%d post moved to the Trash."
1315
- msgid_plural "%d posts moved to the Trash."
1316
- msgstr[0] "%d Artikel in den Papierkorb verschoben."
1317
- msgstr[1] "%d Artikel in den Papierkorb verschoben."
1318
-
1319
- # @ broken-link-checker
1320
- #: includes/any-post.php:737
1321
- #, php-format
1322
- msgid "%d page moved to the Trash."
1323
- msgid_plural "%d pages moved to the Trash."
1324
- msgstr[0] "%d Seite in den Papierkorb verschoben."
1325
- msgstr[1] "%d Seiten in den Papierkorb verschoben."
1326
-
1327
- # @ broken-link-checker
1328
- #: includes/any-post.php:739
1329
- #, php-format
1330
- msgid "%d \"%s\" moved to the Trash."
1331
- msgid_plural "%d \"%s\" moved to the Trash."
1332
- msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
1333
- msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
1334
 
1335
  # @ broken-link-checker
1336
- #: includes/containers.php:122
1337
- #, php-format
1338
- msgid "%d '%s' has been deleted"
1339
- msgid_plural "%d '%s' have been deleted"
1340
- msgstr[0] "%d '%s' wurde gelöscht"
1341
- msgstr[1] "%d '%s' wurden gelöscht"
1342
 
1343
  # @ broken-link-checker
1344
- #: includes/containers.php:882
1345
- #: includes/containers.php:900
1346
- #, php-format
1347
- msgid "Container type '%s' not recognized"
1348
- msgstr "Container Typ '%s' nicht erkannt"
1349
 
1350
  # @ broken-link-checker
1351
- #: includes/extra-strings.php:2
1352
- msgctxt "module name"
1353
- msgid "Basic HTTP"
1354
- msgstr "Standard HTTP"
1355
 
1356
  # @ broken-link-checker
1357
- #: includes/extra-strings.php:3
1358
- msgctxt "module name"
1359
- msgid "Blogroll items"
1360
- msgstr "Blogroll Elemente"
1361
 
1362
  # @ broken-link-checker
1363
- #: includes/extra-strings.php:4
1364
- msgctxt "module name"
1365
- msgid "Comments"
1366
- msgstr "Kommentare"
1367
 
1368
  # @ broken-link-checker
1369
- #: includes/extra-strings.php:5
1370
- msgctxt "module name"
1371
- msgid "Custom fields"
1372
- msgstr "Benutzerdefinierte Felder"
 
1373
 
1374
  # @ broken-link-checker
1375
- #: includes/extra-strings.php:6
1376
- msgctxt "module name"
1377
- msgid "Embedded DailyMotion videos"
1378
- msgstr "Eingebettete DailyMotion Videos"
1379
 
1380
  # @ broken-link-checker
1381
- #: includes/extra-strings.php:7
1382
- msgctxt "module name"
1383
- msgid "Embedded Vimeo videos"
1384
- msgstr "Eingebettete Vimeo Videos"
1385
 
1386
  # @ broken-link-checker
1387
- #: includes/extra-strings.php:8
1388
- msgctxt "module name"
1389
- msgid "Embedded YouTube videos"
1390
- msgstr "Eingebettete YouTube Videos"
1391
 
1392
  # @ broken-link-checker
1393
- #: includes/extra-strings.php:9
1394
- msgctxt "module name"
1395
- msgid "HTML images"
1396
- msgstr "HTML Bilder"
1397
 
1398
  # @ broken-link-checker
1399
- #: includes/extra-strings.php:10
1400
- msgctxt "module name"
1401
- msgid "HTML links"
1402
- msgstr "HTML Links"
1403
 
1404
  # @ broken-link-checker
1405
- #: includes/extra-strings.php:11
1406
- msgctxt "module name"
1407
- msgid "MediaFire API"
1408
- msgstr "MediaFire API"
1409
 
1410
  # @ broken-link-checker
1411
- #: includes/extra-strings.php:12
1412
- msgctxt "module name"
1413
- msgid "MegaUpload API"
1414
- msgstr "MegaUpload API"
1415
 
1416
  # @ broken-link-checker
1417
- #: includes/extra-strings.php:13
1418
- msgctxt "module name"
1419
- msgid "Plaintext URLs"
1420
- msgstr "Klartext URLs"
1421
 
1422
  # @ broken-link-checker
1423
- #: includes/extra-strings.php:14
1424
- msgctxt "module name"
1425
- msgid "RapidShare API"
1426
- msgstr "RapidShare API"
1427
 
1428
  # @ broken-link-checker
1429
- #: includes/extra-strings.php:15
1430
- msgctxt "module name"
1431
- msgid "YouTube API"
1432
- msgstr "YouTube API"
1433
 
1434
  # @ broken-link-checker
1435
- #: includes/extra-strings.php:16
1436
- msgctxt "module name"
1437
- msgid "Posts"
1438
- msgstr "Beiträge"
1439
 
1440
  # @ broken-link-checker
1441
- #: includes/extra-strings.php:17
1442
- msgctxt "module name"
1443
- msgid "Pages"
1444
- msgstr "Seiten"
1445
 
1446
  # @ broken-link-checker
1447
- #: includes/instances.php:102
1448
- #: includes/instances.php:158
1449
- #, php-format
1450
- msgid "Container %s[%d] not found"
1451
- msgstr "Container %s[%d] nicht gefunden"
1452
 
1453
  # @ broken-link-checker
1454
- #: includes/instances.php:111
1455
- #: includes/instances.php:167
1456
- #, php-format
1457
- msgid "Parser '%s' not found."
1458
- msgstr "Parser '%s' nicht gefunden."
1459
 
1460
  # @ broken-link-checker
1461
  #: includes/link-query.php:25
@@ -1508,6 +1601,81 @@ msgstr "Such Resultat"
1508
  msgid "No links found for your query"
1509
  msgstr "Keine Links für Deine Anfrage gefunden"
1510
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1511
  # @ broken-link-checker
1512
  #: includes/links.php:215
1513
  msgid "The plugin script was terminated while trying to check the link."
@@ -1546,327 +1714,209 @@ msgid "Failed to create a DB entry for the new URL."
1546
  msgstr "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
1547
 
1548
  # @ broken-link-checker
1549
- #: includes/links.php:673
1550
- msgid "This link is not a redirect"
1551
- msgstr "Dieser Link ist keine Umleitung"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1552
 
1553
  # @ broken-link-checker
1554
- #: includes/links.php:720
1555
- #: includes/links.php:757
1556
- msgid "Couldn't delete the link's database record"
1557
- msgstr "Links können nicht aus der Datenbank gelöscht werden"
1558
 
1559
  # @ broken-link-checker
1560
- #: includes/links.php:831
1561
- msgctxt "link status"
1562
- msgid "Unknown"
1563
- msgstr "Unbekannt"
1564
 
1565
- # @ link status
1566
  # @ broken-link-checker
1567
- #: includes/links.php:845
1568
- #: modules/checkers/http.php:263
1569
- msgid "Unknown Error"
1570
- msgstr "Unbekannter Fehler"
1571
 
1572
  # @ broken-link-checker
1573
- #: includes/links.php:869
1574
- msgid "Not checked"
1575
- msgstr "Nicht überprüft"
 
1576
 
1577
  # @ broken-link-checker
1578
- #: includes/links.php:872
1579
- msgid "False positive"
1580
- msgstr "Falsch positiv"
 
1581
 
1582
  # @ broken-link-checker
1583
- #: includes/links.php:875
1584
- msgctxt "link status"
1585
- msgid "OK"
1586
- msgstr "OK"
1587
 
1588
- #: includes/module-manager.php:122
1589
- #: includes/module-manager.php:139
1590
  msgctxt "module name"
1591
- msgid "Name"
1592
- msgstr "Name"
1593
 
1594
  # @ broken-link-checker
1595
- #: includes/parsers.php:109
1596
- #, php-format
1597
- msgid "Editing is not implemented in the '%s' parser"
1598
- msgstr "Editieren ist nicht im '%s' Parser implementiert"
1599
 
1600
  # @ broken-link-checker
1601
- #: includes/parsers.php:124
1602
- #, php-format
1603
- msgid "Unlinking is not implemented in the '%s' parser"
1604
- msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
1605
 
1606
  # @ default
1607
- #: includes/utility-class.php:287
1608
- #, php-format
1609
  msgid "%d second"
1610
  msgid_plural "%d seconds"
1611
  msgstr[0] "%s Sekunde"
1612
  msgstr[1] "%s Sekunden"
1613
 
1614
  # @ default
1615
- #: includes/utility-class.php:288
1616
- #, php-format
1617
  msgid "%d second ago"
1618
  msgid_plural "%d seconds ago"
1619
  msgstr[0] "%s Sekunde vergangen"
1620
  msgstr[1] "%s Sekunden vergangen"
1621
 
1622
  # @ default
1623
- #: includes/utility-class.php:291
1624
- #, php-format
1625
  msgid "%d minute"
1626
  msgid_plural "%d minutes"
1627
  msgstr[0] "%d Minute"
1628
  msgstr[1] "%d Minuten"
1629
 
1630
  # @ default
1631
- #: includes/utility-class.php:292
1632
- #, php-format
1633
  msgid "%d minute ago"
1634
  msgid_plural "%d minutes ago"
1635
  msgstr[0] "%d Minute vergangen"
1636
  msgstr[1] "%d Minuten vergangen"
1637
 
1638
  # @ default
1639
- #: includes/utility-class.php:295
1640
- #, php-format
1641
  msgid "%d hour"
1642
  msgid_plural "%d hours"
1643
  msgstr[0] "%d Stunde"
1644
  msgstr[1] "%d Stunden"
1645
 
1646
  # @ default
1647
- #: includes/utility-class.php:296
1648
- #, php-format
1649
  msgid "%d hour ago"
1650
  msgid_plural "%d hours ago"
1651
  msgstr[0] "%d Stunde vergangen"
1652
  msgstr[1] "%d Stunden vergangen"
1653
 
1654
  # @ default
1655
- #: includes/utility-class.php:299
1656
- #, php-format
1657
  msgid "%d day"
1658
  msgid_plural "%d days"
1659
  msgstr[0] "%d Tag"
1660
  msgstr[1] "%d Tage"
1661
 
1662
  # @ default
1663
- #: includes/utility-class.php:300
1664
- #, php-format
1665
  msgid "%d day ago"
1666
  msgid_plural "%d days ago"
1667
  msgstr[0] "%d Tag vergangen"
1668
  msgstr[1] "%d Tage vergangen"
1669
 
1670
  # @ default
1671
- #: includes/utility-class.php:303
1672
- #, php-format
1673
  msgid "%d month"
1674
  msgid_plural "%d months"
1675
  msgstr[0] "%d Monat"
1676
  msgstr[1] "%d Monate"
1677
 
1678
  # @ default
1679
- #: includes/utility-class.php:304
1680
- #, php-format
1681
  msgid "%d month ago"
1682
  msgid_plural "%d months ago"
1683
  msgstr[0] "%d Monat vergangen"
1684
  msgstr[1] "%d Monate vergangen"
1685
 
1686
  # @ broken-link-checker
1687
- #: modules/checkers/http.php:242
1688
- msgid "Server Not Found"
1689
- msgstr "Server nicht gefunden"
1690
-
1691
- # @ broken-link-checker
1692
- #: modules/checkers/http.php:257
1693
- msgid "Connection Failed"
1694
- msgstr "Verbindung fehlgeschlagen"
1695
-
1696
- # @ broken-link-checker
1697
- #: modules/checkers/http.php:292
1698
- #: modules/checkers/http.php:362
1699
- #, php-format
1700
- msgid "HTTP code : %d"
1701
- msgstr "HTTP Code: %d"
1702
-
1703
- # @ broken-link-checker
1704
- #: modules/checkers/http.php:294
1705
- #: modules/checkers/http.php:364
1706
- msgid "(No response)"
1707
- msgstr "(Keine Antwort)"
1708
-
1709
- # @ broken-link-checker
1710
- #: modules/checkers/http.php:300
1711
- msgid "Most likely the connection timed out or the domain doesn't exist."
1712
- msgstr "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
1713
-
1714
- # @ broken-link-checker
1715
- #: modules/checkers/http.php:371
1716
- msgid "Request timed out."
1717
- msgstr "Erfordert Zeitlimit."
1718
-
1719
- # @ broken-link-checker
1720
- #: modules/checkers/http.php:389
1721
- msgid "Using Snoopy"
1722
- msgstr "Benutzt Snoopy"
1723
-
1724
- # @ broken-link-checker
1725
- #: modules/containers/blogroll.php:21
1726
- msgid "Bookmark"
1727
- msgstr "Lesezeichen"
1728
-
1729
- # @ broken-link-checker
1730
- #: modules/containers/blogroll.php:27
1731
- #: modules/containers/blogroll.php:46
1732
- msgid "Edit this bookmark"
1733
- msgstr "Lesezeichen bearbeiten"
1734
-
1735
- # @ default
1736
- #: modules/containers/blogroll.php:47
1737
- #, php-format
1738
- msgid ""
1739
- "You are about to delete this link '%s'\n"
1740
- " 'Cancel' to stop, 'OK' to delete."
1741
- msgstr ""
1742
- "Möchten Sie diesen Link löschen '%s'\n"
1743
- " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
1744
-
1745
- # @ broken-link-checker
1746
- #: modules/containers/blogroll.php:97
1747
- #, php-format
1748
- msgid "Updating bookmark %d failed"
1749
- msgstr "Lesezeichen Aktualisierung %d fehlgeschlagen"
1750
-
1751
- # @ broken-link-checker
1752
- #: modules/containers/blogroll.php:128
1753
- #, php-format
1754
- msgid "Failed to delete blogroll link \"%s\" (%d)"
1755
- msgstr "Löschen des Blogroll Link \"%s\" (%d) schlug fehl"
1756
-
1757
- # @ broken-link-checker
1758
- #: modules/containers/blogroll.php:299
1759
- #, php-format
1760
- msgid "%d blogroll link deleted."
1761
- msgid_plural "%d blogroll links deleted."
1762
- msgstr[0] "%d Blogroll Link gelöscht."
1763
- msgstr[1] "%d Blogroll Links gelöscht."
1764
-
1765
- # @ broken-link-checker
1766
- #: modules/containers/comment.php:53
1767
- #, php-format
1768
- msgid "Updating comment %d failed"
1769
- msgstr "Kommentar Aktualisierung %d fehlgeschlagen"
1770
-
1771
- # @ broken-link-checker
1772
- #: modules/containers/comment.php:74
1773
- #, php-format
1774
- msgid "Failed to delete comment %d"
1775
- msgstr "Fehler beim Kommentar löschen %d"
1776
-
1777
- # @ broken-link-checker
1778
- #: modules/containers/comment.php:95
1779
- #, php-format
1780
- msgid "Can't move comment %d to the trash"
1781
- msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
1782
-
1783
- # @ default
1784
- #: modules/containers/comment.php:153
1785
- #: modules/containers/comment.php:195
1786
- msgid "Edit comment"
1787
- msgstr "Kommentar bearbeiten"
1788
-
1789
- # @ default
1790
- #: modules/containers/comment.php:160
1791
- msgid "Delete Permanently"
1792
- msgstr "Endgültig löschen"
1793
-
1794
- # @ default
1795
- #: modules/containers/comment.php:162
1796
- msgid "Move this comment to the trash"
1797
- msgstr "%d Kommentar in den Papierkorb verschieben"
1798
-
1799
- # @ default
1800
- #: modules/containers/comment.php:162
1801
- msgctxt "verb"
1802
- msgid "Trash"
1803
- msgstr "Papierkorb"
1804
-
1805
- # @ broken-link-checker
1806
- #: modules/containers/comment.php:166
1807
- msgid "View comment"
1808
- msgstr "Kommentar ansehen"
1809
-
1810
- # @ broken-link-checker
1811
- #: modules/containers/comment.php:183
1812
- msgid "Comment"
1813
- msgstr "Kommentar"
1814
-
1815
- # @ broken-link-checker
1816
- #: modules/containers/comment.php:372
1817
- #, php-format
1818
- msgid "%d comment has been deleted."
1819
- msgid_plural "%d comments have been deleted."
1820
- msgstr[0] "%d Kommentar wurde gelöscht."
1821
- msgstr[1] "%d Kommentare wurde gelöscht."
1822
-
1823
- # @ broken-link-checker
1824
- #: modules/containers/comment.php:391
1825
- #, php-format
1826
- msgid "%d comment moved to the Trash."
1827
- msgid_plural "%d comments moved to the Trash."
1828
- msgstr[0] "%d Kommentar in den Papierkorb verschoben."
1829
- msgstr[1] "%d Kommentare in den Papierkorb verschoben."
1830
-
1831
- # @ broken-link-checker
1832
- #: modules/containers/custom_field.php:84
1833
- #, php-format
1834
- msgid "Failed to update the meta field '%s' on %s [%d]"
1835
- msgstr "Aktualisieren des Meta-Feldes '%s' in %s [%d] schlug fehl"
1836
-
1837
- # @ broken-link-checker
1838
- #: modules/containers/custom_field.php:110
1839
- #, php-format
1840
- msgid "Failed to delete the meta field '%s' on %s [%d]"
1841
- msgstr "Löschen des Meta-Feldes '%s' in %s [%d] schlug fehl"
1842
-
1843
- # @ default
1844
- #: modules/containers/custom_field.php:187
1845
- msgid "Edit this post"
1846
- msgstr "Bearbeiten Sie diesen Beitrag"
1847
-
1848
- # @ broken-link-checker
1849
- #: modules/containers/custom_field.php:217
1850
- #, php-format
1851
- msgid "View \"%s\""
1852
- msgstr "\"%s\" ansehen"
1853
-
1854
- # @ broken-link-checker
1855
- #: modules/containers/dummy.php:34
1856
- #: modules/containers/dummy.php:45
1857
- #, php-format
1858
- msgid "I don't know how to edit a '%s' [%d]."
1859
- msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
1860
-
1861
- # @ broken-link-checker
1862
- #: modules/parsers/image.php:156
1863
- msgid "Image"
1864
- msgstr "Bild"
1865
 
1866
  # @ broken-link-checker
1867
- #: modules/parsers/metadata.php:117
1868
- msgid "Custom field"
1869
- msgstr "Benutzerdefiniertes Feld"
 
1870
 
1871
  #. Plugin URI of the plugin/theme
1872
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker | V1.2.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2010-12-25 11:10:52+00:00\n"
6
+ "PO-Revision-Date: 2011-01-02 17:29+0100\n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ broken-link-checker
22
+ #: modules/containers/dummy.php:34
23
+ #: modules/containers/dummy.php:45
24
+ msgid "I don't know how to edit a '%s' [%d]."
25
+ msgstr "Das Bearbeiten von '%s' [%d] ist fehlgeschlagen."
26
+
27
+ # @ broken-link-checker
28
+ #: modules/containers/custom_field.php:84
29
+ msgid "Failed to update the meta field '%s' on %s [%d]"
30
+ msgstr "Aktualisieren des Meta-Feldes '%s' in %s [%d] schlug fehl"
31
+
32
+ # @ broken-link-checker
33
+ #: modules/containers/custom_field.php:110
34
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
35
+ msgstr "Löschen des Meta-Feldes '%s' in %s [%d] schlug fehl"
36
+
37
+ # @ default
38
+ #: modules/containers/custom_field.php:187
39
+ msgid "Edit this post"
40
+ msgstr "Bearbeiten Sie diesen Beitrag"
41
+
42
+ # @ default
43
+ #: modules/containers/custom_field.php:197
44
+ #: includes/any-post.php:455
45
+ msgid "Edit this item"
46
+ msgstr "Bearbeiten Sie dieses Element"
47
+
48
+ # @ default
49
+ #: modules/containers/custom_field.php:197
50
+ #: modules/containers/blogroll.php:46
51
+ #: modules/containers/comment.php:153
52
+ #: includes/any-post.php:397
53
+ msgid "Edit"
54
+ msgstr "Bearbeiten"
55
+
56
+ # @ default
57
+ #: modules/containers/custom_field.php:203
58
+ #: includes/any-post.php:405
59
+ msgid "Move this item to the Trash"
60
+ msgstr "Element in den Papierkorb verschieben"
61
+
62
+ # @ default
63
+ #: modules/containers/custom_field.php:205
64
+ #: includes/any-post.php:407
65
+ msgid "Trash"
66
+ msgstr "Papierkorb"
67
+
68
+ # @ default
69
+ #: modules/containers/custom_field.php:210
70
+ #: includes/any-post.php:412
71
+ msgid "Delete this item permanently"
72
+ msgstr "Element endgültig löschen"
73
+
74
+ # @ default
75
+ #: modules/containers/custom_field.php:212
76
+ #: modules/containers/blogroll.php:47
77
+ #: includes/any-post.php:414
78
+ msgid "Delete"
79
+ msgstr "Löschen"
80
+
81
+ # @ broken-link-checker
82
+ #: modules/containers/custom_field.php:217
83
+ msgid "View \"%s\""
84
+ msgstr "\"%s\" ansehen"
85
+
86
+ # @ default
87
+ #: modules/containers/custom_field.php:217
88
+ #: modules/containers/comment.php:166
89
+ #: includes/any-post.php:436
90
+ msgid "View"
91
+ msgstr "Ansehen"
92
+
93
+ # @ broken-link-checker
94
+ #: modules/containers/custom_field.php:284
95
+ #: includes/any-post.php:564
96
+ msgid "Failed to delete post \"%s\" (%d)"
97
+ msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
98
+
99
+ # @ broken-link-checker
100
+ #: modules/containers/custom_field.php:303
101
+ #: includes/any-post.php:583
102
+ msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
103
+ msgstr "Der Beitrag \"%s\" (%d) kann nicht in den Papierkorb verschoben werden, weil diese Funktion deaktiviert ist"
104
+
105
+ # @ broken-link-checker
106
+ #: modules/containers/custom_field.php:322
107
+ #: includes/any-post.php:603
108
+ msgid "Failed to move post \"%s\" (%d) to the trash"
109
+ msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
110
+
111
+ # @ broken-link-checker
112
+ #: modules/containers/blogroll.php:21
113
+ msgid "Bookmark"
114
+ msgstr "Lesezeichen"
115
+
116
+ # @ broken-link-checker
117
+ #: modules/containers/blogroll.php:27
118
+ #: modules/containers/blogroll.php:46
119
+ msgid "Edit this bookmark"
120
+ msgstr "Lesezeichen bearbeiten"
121
+
122
+ # @ default
123
+ #: modules/containers/blogroll.php:47
124
+ msgid ""
125
+ "You are about to delete this link '%s'\n"
126
+ " 'Cancel' to stop, 'OK' to delete."
127
+ msgstr ""
128
+ "Möchten Sie diesen Link löschen '%s'\n"
129
+ " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
130
+
131
+ # @ broken-link-checker
132
+ #: modules/containers/blogroll.php:83
133
+ #: modules/containers/comment.php:43
134
+ #: includes/any-post.php:519
135
+ msgid "Nothing to update"
136
+ msgstr "Nichts zu aktualisieren"
137
+
138
+ # @ broken-link-checker
139
+ #: modules/containers/blogroll.php:97
140
+ msgid "Updating bookmark %d failed"
141
+ msgstr "Lesezeichen Aktualisierung %d fehlgeschlagen"
142
+
143
+ # @ broken-link-checker
144
+ #: modules/containers/blogroll.php:128
145
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
146
+ msgstr "Löschen des Blogroll Link \"%s\" (%d) schlug fehl"
147
+
148
+ # @ broken-link-checker
149
+ #: modules/containers/blogroll.php:298
150
+ msgid "%d blogroll link deleted."
151
+ msgid_plural "%d blogroll links deleted."
152
+ msgstr[0] "%d Blogroll Link gelöscht."
153
+ msgstr[1] "%d Blogroll Links gelöscht."
154
+
155
+ # @ broken-link-checker
156
+ #: modules/containers/comment.php:53
157
+ msgid "Updating comment %d failed"
158
+ msgstr "Kommentar Aktualisierung %d fehlgeschlagen"
159
+
160
+ # @ broken-link-checker
161
+ #: modules/containers/comment.php:74
162
+ msgid "Failed to delete comment %d"
163
+ msgstr "Fehler beim Kommentar löschen %d"
164
+
165
+ # @ broken-link-checker
166
+ #: modules/containers/comment.php:95
167
+ msgid "Can't move comment %d to the trash"
168
+ msgstr "Kommentar %d kann nicht in den Papierkorb verschoben werden"
169
+
170
+ # @ default
171
+ #: modules/containers/comment.php:153
172
+ #: modules/containers/comment.php:195
173
+ msgid "Edit comment"
174
+ msgstr "Kommentar bearbeiten"
175
+
176
+ # @ default
177
+ #: modules/containers/comment.php:160
178
+ msgid "Delete Permanently"
179
+ msgstr "Endgültig löschen"
180
+
181
+ # @ default
182
+ #: modules/containers/comment.php:162
183
+ msgid "Move this comment to the trash"
184
+ msgstr "%d Kommentar in den Papierkorb verschieben"
185
+
186
+ # @ default
187
+ #: modules/containers/comment.php:162
188
+ msgctxt "verb"
189
+ msgid "Trash"
190
+ msgstr "Papierkorb"
191
+
192
+ # @ broken-link-checker
193
+ #: modules/containers/comment.php:166
194
+ msgid "View comment"
195
+ msgstr "Kommentar ansehen"
196
+
197
+ # @ broken-link-checker
198
+ #: modules/containers/comment.php:183
199
+ msgid "Comment"
200
+ msgstr "Kommentar"
201
+
202
+ # @ broken-link-checker
203
+ #: modules/containers/comment.php:371
204
+ msgid "%d comment has been deleted."
205
+ msgid_plural "%d comments have been deleted."
206
+ msgstr[0] "%d Kommentar wurde gelöscht."
207
+ msgstr[1] "%d Kommentare wurde gelöscht."
208
+
209
+ # @ broken-link-checker
210
+ #: modules/containers/comment.php:390
211
+ msgid "%d comment moved to the Trash."
212
+ msgid_plural "%d comments moved to the Trash."
213
+ msgstr[0] "%d Kommentar in den Papierkorb verschoben."
214
+ msgstr[1] "%d Kommentare in den Papierkorb verschoben."
215
+
216
+ # @ broken-link-checker
217
+ #: modules/checkers/http.php:242
218
+ msgid "Server Not Found"
219
+ msgstr "Server nicht gefunden"
220
+
221
+ # @ broken-link-checker
222
+ #: modules/checkers/http.php:257
223
+ msgid "Connection Failed"
224
+ msgstr "Verbindung fehlgeschlagen"
225
+
226
+ # @ link status
227
+ # @ broken-link-checker
228
+ #: modules/checkers/http.php:263
229
+ #: modules/extras/mediafire.php:96
230
+ #: includes/links.php:845
231
+ msgid "Unknown Error"
232
+ msgstr "Unbekannter Fehler"
233
+
234
+ # @ broken-link-checker
235
+ #: modules/checkers/http.php:292
236
+ #: modules/checkers/http.php:362
237
+ msgid "HTTP code : %d"
238
+ msgstr "HTTP Code: %d"
239
+
240
+ # @ broken-link-checker
241
+ #: modules/checkers/http.php:294
242
+ #: modules/checkers/http.php:364
243
+ msgid "(No response)"
244
+ msgstr "(Keine Antwort)"
245
+
246
+ # @ broken-link-checker
247
+ #: modules/checkers/http.php:300
248
+ msgid "Most likely the connection timed out or the domain doesn't exist."
249
+ msgstr "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
250
+
251
+ # @ broken-link-checker
252
+ #: modules/checkers/http.php:371
253
+ msgid "Request timed out."
254
+ msgstr "Erfordert Zeitlimit."
255
+
256
+ # @ broken-link-checker
257
+ #: modules/checkers/http.php:389
258
+ msgid "Using Snoopy"
259
+ msgstr "Benutzt Snoopy"
260
+
261
+ # @ broken-link-checker
262
+ #: modules/parsers/image.php:156
263
+ msgid "Image"
264
+ msgstr "Bild"
265
+
266
+ # @ broken-link-checker
267
+ #: modules/parsers/metadata.php:117
268
+ msgid "Custom field"
269
+ msgstr "Benutzerdefiniertes Feld"
270
+
271
+ # @ broken-link-checker
272
+ #: modules/extras/dailymotion-embed.php:23
273
+ msgid "DailyMotion Video"
274
+ msgstr "DailyMotion Video"
275
+
276
+ # @ broken-link-checker
277
+ #: modules/extras/dailymotion-embed.php:24
278
+ msgid "Embedded DailyMotion video"
279
+ msgstr "Eingebettete DailyMotion Videos"
280
+
281
+ # @ broken-link-checker
282
+ #: modules/extras/rapidshare.php:142
283
+ #: modules/extras/mediafire.php:91
284
+ #: modules/extras/megaupload.php:109
285
+ msgid "Not Found"
286
+ msgstr "Nicht gefunden"
287
+
288
+ # @ broken-link-checker
289
+ #: modules/extras/rapidshare.php:148
290
+ #: modules/extras/rapidshare.php:154
291
+ #: modules/extras/rapidshare.php:181
292
+ #: modules/extras/megaupload.php:101
293
+ #: includes/links.php:875
294
+ msgctxt "link status"
295
+ msgid "OK"
296
+ msgstr "OK"
297
+
298
+ # @ broken-link-checker
299
+ #: modules/extras/rapidshare.php:161
300
+ msgid "RS Server Down"
301
+ msgstr "RS Server nicht verfügbar"
302
+
303
+ # @ broken-link-checker
304
+ #: modules/extras/rapidshare.php:168
305
+ msgid "File Blocked"
306
+ msgstr "Datei blockiert"
307
+
308
+ #: modules/extras/rapidshare.php:175
309
+ msgid "File Locked"
310
+ msgstr "Datei gesperrt"
311
+
312
+ # @ broken-link-checker
313
+ #: modules/extras/rapidshare.php:186
314
+ msgid "RapidShare : %s"
315
+ msgstr "RapidShare: %s"
316
+
317
+ # @ broken-link-checker
318
+ #: modules/extras/rapidshare.php:192
319
+ msgid "RapidShare API error: %s"
320
+ msgstr "RapidShare API Fehler: %s"
321
+
322
+ #: modules/extras/embed-parser-base.php:140
323
+ msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
324
+ msgstr "Eingebettete Videos können mit Broken Link Checker nicht editiert werden. Bitte ändern oder ersetzen Sie das betreffende Video manuell."
325
+
326
+ # @ broken-link-checker
327
+ #: modules/extras/vimeo-embed.php:24
328
+ msgid "Vimeo Video"
329
+ msgstr "Vimeo Video"
330
+
331
+ # @ broken-link-checker
332
+ #: modules/extras/vimeo-embed.php:25
333
+ msgid "Embedded Vimeo video"
334
+ msgstr "Eingebettete Vimeo Videos"
335
+
336
+ # @ broken-link-checker
337
+ #: modules/extras/youtube.php:63
338
+ #: modules/extras/youtube.php:66
339
+ msgid "Video Not Found"
340
+ msgstr "Video nicht gefunden"
341
+
342
+ #: modules/extras/youtube.php:74
343
+ msgid "Video Removed"
344
+ msgstr "Video entfernt"
345
+
346
+ #: modules/extras/youtube.php:82
347
+ msgid "Invalid Video ID"
348
+ msgstr "Ungültige Video ID"
349
+
350
+ #: modules/extras/youtube.php:94
351
+ msgid "Video OK"
352
+ msgstr "Video OK"
353
+
354
+ # @ broken-link-checker
355
+ #: modules/extras/youtube.php:95
356
+ #: modules/extras/youtube.php:122
357
+ #: core/core.php:966
358
+ msgid "OK"
359
+ msgstr "OK"
360
+
361
+ #: modules/extras/youtube.php:108
362
+ msgid "Video status : %s%s"
363
+ msgstr "Video Status : %s%s"
364
+
365
+ #: modules/extras/youtube.php:127
366
+ msgid "Video Restricted"
367
+ msgstr "Video mit Einschränkungen"
368
+
369
+ #: modules/extras/youtube.php:144
370
+ msgid "Unknown YouTube API response received."
371
+ msgstr "Unbekannte Antwort der YouTube API erhalten."
372
+
373
+ # @ broken-link-checker
374
+ #: modules/extras/youtube-embed.php:22
375
+ msgid "YouTube Video"
376
+ msgstr "YouTube Video"
377
+
378
+ # @ broken-link-checker
379
+ #: modules/extras/youtube-embed.php:23
380
+ msgid "Embedded YouTube video"
381
+ msgstr "Eingebettete YouTube Videos"
382
+
383
+ #: modules/extras/megaupload.php:116
384
+ msgid "File Temporarily Unavailable"
385
+ msgstr "Datei vorübergehend nicht erreichbar"
386
+
387
+ #: modules/extras/megaupload.php:122
388
+ msgid "API Error"
389
+ msgstr "API Fehler"
390
+
391
+ # @ default
392
+ #: core/init.php:234
393
+ msgid "Once Weekly"
394
+ msgstr "Einmal wöchentlich"
395
+
396
+ # @ default
397
+ #: core/init.php:240
398
+ msgid "Twice a Month"
399
+ msgstr "Zweimal im Monat"
400
+
401
+ # @ broken-link-checker
402
+ #: core/init.php:309
403
+ msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
404
+ msgstr "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
405
+
406
+ # @ broken-link-checker
407
+ #: core/core.php:153
408
  #: includes/admin/links-page-js.php:37
409
  msgid "Loading..."
410
  msgstr "Wird geladen ..."
411
 
412
  # @ broken-link-checker
413
+ #: core/core.php:177
414
  #: includes/admin/options-page-js.php:18
415
  msgid "[ Network error ]"
416
  msgstr "[ Netzwerk Fehler ]"
417
 
418
  # @ broken-link-checker
419
+ #: core/core.php:202
420
  msgid "Automatically expand the widget if broken links have been detected"
421
  msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
422
 
423
  # @ broken-link-checker
424
+ #: core/core.php:324
425
  msgid "Link Checker Settings"
426
  msgstr "Link Checker Einstellungen"
427
 
428
  # @ broken-link-checker
429
+ #: core/core.php:325
430
  msgid "Link Checker"
431
  msgstr "Link Checker"
432
 
433
  # @ broken-link-checker
434
+ #: core/core.php:330
435
  #: includes/link-query.php:26
436
  msgid "Broken Links"
437
  msgstr "Fehlerhafte Links"
438
 
439
  # @ broken-link-checker
440
+ #: core/core.php:346
441
  msgid "View Broken Links"
442
  msgstr "Fehlerhafte Links anschauen"
443
 
444
+ #: core/core.php:361
445
+ msgid "Feedback"
446
+ msgstr "Feedback"
447
+
448
+ # @ default
449
+ #: core/core.php:373
450
+ msgid "Go to Settings"
451
+ msgstr "Gehe zu Einstellungen"
452
+
453
+ # @ broken-link-checker
454
+ #: core/core.php:380
455
+ msgid "Go to Broken Links"
456
+ msgstr "Gehe zu fehlerhaften Links"
457
+
458
  # @ default
459
+ #: core/core.php:398
460
  msgid "Settings"
461
  msgstr "Einstellungen"
462
 
463
  # @ broken-link-checker
464
+ #: core/core.php:410
465
+ #: core/core.php:1213
 
466
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
467
  msgstr "Error: Die Datenbanktabellen des Plugins sind nicht mehr aktuell! (Vorhandene Version: %d, neue Version: %d)"
468
 
469
  # @ broken-link-checker
470
+ #: core/core.php:549
471
  msgid "Settings saved."
472
  msgstr "Einstellungen gespeichert."
473
 
474
+ #: core/core.php:555
475
+ msgid "Thank you for your donation!"
476
+ msgstr "Besten Dank für Ihre Spende!"
477
+
478
  # @ broken-link-checker
479
+ #: core/core.php:562
480
  msgid "Complete site recheck started."
481
  msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
482
 
483
  # @ broken-link-checker
484
+ #: core/core.php:571
485
+ #: core/core.php:2768
486
  msgid "Details"
487
  msgstr "Details"
488
 
489
  # @ broken-link-checker
490
+ #: core/core.php:585
491
  msgid "General"
492
  msgstr "Allgemein"
493
 
494
  # @ broken-link-checker
495
+ #: core/core.php:586
496
  msgid "Look For Links In"
497
  msgstr "Suchen Sie nach Links in"
498
 
499
  # @ broken-link-checker
500
+ #: core/core.php:587
501
  msgid "Which Links To Check"
502
  msgstr "Welche Links überprüfen"
503
 
504
  # @ broken-link-checker
505
+ #: core/core.php:588
506
  msgid "Protocols & APIs"
507
  msgstr "Protokoll & Schnittstellen"
508
 
509
  # @ broken-link-checker
510
+ #: core/core.php:589
511
  msgid "Advanced"
512
  msgstr "Erweitert"
513
 
514
  # @ broken-link-checker
515
+ #: core/core.php:604
516
  msgid "Broken Link Checker Options"
517
  msgstr "Broken Link Checker Optionen"
518
 
519
  # @ broken-link-checker
520
+ #: core/core.php:646
521
  #: includes/admin/table-printer.php:168
522
  msgid "Status"
523
  msgstr "Status"
524
 
525
  # @ broken-link-checker
526
+ #: core/core.php:648
527
  #: includes/admin/options-page-js.php:56
528
  msgid "Show debug info"
529
  msgstr "Debug Infos anzeigen"
530
 
531
  # @ broken-link-checker
532
+ #: core/core.php:676
533
  msgid "Check each link"
534
  msgstr "Überprüfe jeden Link"
535
 
536
  # @ broken-link-checker
537
+ #: core/core.php:681
 
538
  msgid "Every %s hours"
539
  msgstr "Alle %s Stunden"
540
 
541
  # @ broken-link-checker
542
+ #: core/core.php:690
543
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
544
  msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
545
 
546
  # @ broken-link-checker
547
+ #: core/core.php:697
548
  msgid "E-mail notifications"
549
  msgstr "Email Benachrichtigungen"
550
 
551
  # @ broken-link-checker
552
+ #: core/core.php:703
553
  msgid "Send me e-mail notifications about newly detected broken links"
554
  msgstr "Senden Sie mir eine Email Benachrichtigung, wenn neue fehlerhafte Links erkannt werden"
555
 
556
  # @ broken-link-checker
557
+ #: core/core.php:710
558
  msgid "Link tweaks"
559
  msgstr "Link Einstellungen"
560
 
561
  # @ broken-link-checker
562
+ #: core/core.php:716
563
  msgid "Apply custom formatting to broken links"
564
  msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
565
 
566
  # @ broken-link-checker
567
+ #: core/core.php:720
568
+ #: core/core.php:748
569
  msgid "Edit CSS"
570
  msgstr "Bearbeite CSS"
571
 
572
  # @ broken-link-checker
573
+ #: core/core.php:744
574
  msgid "Apply custom formatting to removed links"
575
  msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
576
 
577
  # @ broken-link-checker
578
+ #: core/core.php:772
579
  msgid "Stop search engines from following broken links"
580
  msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
581
 
582
  # @ broken-link-checker
583
+ #: core/core.php:789
584
  msgid "Look for links in"
585
  msgstr "Suchen Sie nach Links in"
586
 
587
  # @ broken-link-checker
588
+ #: core/core.php:800
589
  msgid "Post statuses"
590
  msgstr "Beitrag Status"
591
 
592
  # @ broken-link-checker
593
+ #: core/core.php:833
594
  msgid "Link types"
595
  msgstr "Link Typen"
596
 
597
  # @ broken-link-checker
598
+ #: core/core.php:839
599
  msgid "Error : All link parsers missing!"
600
  msgstr "Fehler: Alle Link-Parser fehlen!"
601
 
602
  # @ broken-link-checker
603
+ #: core/core.php:846
604
  msgid "Exclusion list"
605
  msgstr "Ausschlussliste"
606
 
607
  # @ broken-link-checker
608
+ #: core/core.php:847
609
  msgid "Don't check links where the URL contains any of these words (one per line) :"
610
  msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
611
 
612
  # @ broken-link-checker
613
+ #: core/core.php:865
614
  msgid "Check links using"
615
  msgstr "Überprüfe Links"
616
 
617
  # @ broken-link-checker
618
+ #: core/core.php:884
619
  #: includes/links.php:849
620
  msgid "Timeout"
621
  msgstr "Zeitüberschreitung"
622
 
623
  # @ broken-link-checker
624
  # @ default
625
+ #: core/core.php:890
626
+ #: core/core.php:936
627
+ #: core/core.php:2895
 
628
  msgid "%s seconds"
629
  msgstr "%s Sekunden"
630
 
631
  # @ broken-link-checker
632
+ #: core/core.php:899
633
  msgid "Links that take longer than this to load will be marked as broken."
634
  msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
635
 
636
  # @ broken-link-checker
637
+ #: core/core.php:906
638
  msgid "Link monitor"
639
  msgstr "Link Monitor"
640
 
641
  # @ broken-link-checker
642
+ #: core/core.php:914
643
  msgid "Run continuously while the Dashboard is open"
644
  msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
645
 
646
  # @ broken-link-checker
647
+ #: core/core.php:922
648
  msgid "Run hourly in the background"
649
  msgstr "Stündlich im Hintergrund arbeiten"
650
 
651
  # @ broken-link-checker
652
+ #: core/core.php:930
653
  msgid "Max. execution time"
654
  msgstr "Max. Ausführungszeit"
655
 
656
  # @ broken-link-checker
657
+ #: core/core.php:947
658
  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."
659
  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."
660
 
661
  # @ broken-link-checker
662
+ #: core/core.php:957
663
  msgid "Custom temporary directory"
664
  msgstr "Temporäres Verzeichnis"
665
 
666
  # @ broken-link-checker
667
+ #: core/core.php:969
 
 
 
 
 
668
  msgid "Error : This directory isn't writable by PHP."
669
  msgstr "Fehler: Dieses Verzeichnis ist nicht beschreibbar durch PHP."
670
 
671
  # @ broken-link-checker
672
+ #: core/core.php:974
673
  msgid "Error : This directory doesn't exist."
674
  msgstr "Fehler: Dieses Verzeichnis existiert nicht."
675
 
676
  # @ broken-link-checker
677
+ #: core/core.php:982
678
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
679
  msgstr "Verzeichnis in das Feld eingeben, wenn das Plugin ein benutzerdefiniertes Verzeichnis für die Lock-Dateien verwenden soll. Ansonsten nichts eintragen."
680
 
681
  # @ broken-link-checker
682
+ #: core/core.php:989
683
  msgid "Server load limit"
684
  msgstr "Server Belastungsgrenze"
685
 
686
+ #: core/core.php:1004
 
687
  msgid "Current load : %s"
688
  msgstr "Aktuelle Belastung: %s"
689
 
690
  # @ broken-link-checker
691
+ #: core/core.php:1009
 
692
  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."
693
  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."
694
 
695
  # @ broken-link-checker
696
+ #: core/core.php:1018
697
  msgid "Not available"
698
  msgstr "Nicht verfügbar"
699
 
700
  # @ broken-link-checker
701
+ #: core/core.php:1020
702
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
703
  msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
704
 
705
  # @ broken-link-checker
706
+ #: core/core.php:1028
707
  msgid "Forced recheck"
708
  msgstr "Erneute Überprüfung erzwingen"
709
 
710
  # @ broken-link-checker
711
+ #: core/core.php:1031
712
  msgid "Re-check all pages"
713
  msgstr "Überprüfe alle Seiten noch einmal"
714
 
715
  # @ broken-link-checker
716
+ #: core/core.php:1035
717
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
718
  msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
719
 
720
  # @ default
721
+ #: core/core.php:1046
722
  msgid "Save Changes"
723
  msgstr "Änderungen speichern"
724
 
725
  # @ broken-link-checker
726
+ #: core/core.php:1097
727
  msgid "Configure"
728
  msgstr "Konfigurieren"
729
 
730
  # @ broken-link-checker
731
+ #: core/core.php:1179
 
 
 
 
 
732
  msgid "Check URLs entered in these custom fields (one per line) :"
733
  msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
734
 
735
  # @ broken-link-checker
736
+ #: core/core.php:1313
737
+ #: core/core.php:1395
738
+ #: core/core.php:1427
 
739
  msgid "Database error : %s"
740
  msgstr "Datenbank Fehler: %s"
741
 
742
  # @ broken-link-checker
743
+ #: core/core.php:1377
744
  msgid "You must enter a filter name!"
745
  msgstr "Sie müssen einen Filter Namen eingeben!"
746
 
747
  # @ broken-link-checker
748
+ #: core/core.php:1381
749
  msgid "Invalid search query."
750
  msgstr "Ungültige Suchanfrage."
751
 
752
  # @ broken-link-checker
753
+ #: core/core.php:1390
 
754
  msgid "Filter \"%s\" created"
755
  msgstr "Filter \"%s\" erstellt"
756
 
757
  # @ broken-link-checker
758
+ #: core/core.php:1417
759
  msgid "Filter ID not specified."
760
  msgstr "Link ID nicht spezifiziert."
761
 
762
  # @ broken-link-checker
763
+ #: core/core.php:1424
764
  msgid "Filter deleted"
765
  msgstr "Filter gelöscht"
766
 
767
  # @ broken-link-checker
768
+ #: core/core.php:1471
 
769
  msgid "Replaced %d redirect with a direct link"
770
  msgid_plural "Replaced %d redirects with direct links"
771
  msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
772
  msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
773
 
774
  # @ broken-link-checker
775
+ #: core/core.php:1482
 
776
  msgid "Failed to fix %d redirect"
777
  msgid_plural "Failed to fix %d redirects"
778
  msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
779
  msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
780
 
781
  # @ broken-link-checker
782
+ #: core/core.php:1493
783
  msgid "None of the selected links are redirects!"
784
  msgstr "Keiner der ausgewählten Links sind Umleitungen!"
785
 
786
  # @ broken-link-checker
787
+ #: core/core.php:1571
 
788
  msgid "%d link updated."
789
  msgid_plural "%d links updated."
790
  msgstr[0] "Link %d aktualisiert."
791
  msgstr[1] "Links %d aktualisiert."
792
 
793
  # @ broken-link-checker
794
+ #: core/core.php:1582
 
795
  msgid "Failed to update %d link."
796
  msgid_plural "Failed to update %d links."
797
  msgstr[0] "Link %d konnte nicht aktualisiert werden."
798
  msgstr[1] "Links %d konnten nicht aktualisiert werden."
799
 
800
  # @ broken-link-checker
801
+ #: core/core.php:1636
 
802
  msgid "%d link removed"
803
  msgid_plural "%d links removed"
804
  msgstr[0] "%d Link entfernt"
805
  msgstr[1] "%d Links entfernt"
806
 
807
  # @ broken-link-checker
808
+ #: core/core.php:1647
 
809
  msgid "Failed to remove %d link"
810
  msgid_plural "Failed to remove %d links"
811
  msgstr[0] "Link %d konnte nicht entfernt werden"
812
  msgstr[1] "Links %d konnten nicht entfernt werden"
813
 
814
  # @ default
815
+ #: core/core.php:1756
 
816
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
817
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
818
  msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
819
  msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
820
 
821
  # @ broken-link-checker
822
+ #: core/core.php:1778
823
  msgid "Didn't find anything to delete!"
824
  msgstr "Nichts gefunden um zu löschen!"
825
 
826
  # @ broken-link-checker
827
+ #: core/core.php:1805
 
828
  msgid "%d link scheduled for rechecking"
829
  msgid_plural "%d links scheduled for rechecking"
830
  msgstr[0] "%d Link zur erneuten Überprüfung geplant"
831
  msgstr[1] "%d Links zur erneuten Überprüfung geplant"
832
 
833
  # @ broken-link-checker
834
+ #: core/core.php:1851
835
+ #: core/core.php:2455
836
  msgid "This link was manually marked as working by the user."
837
  msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
838
 
839
  # @ broken-link-checker
840
+ #: core/core.php:1858
 
841
  msgid "Couldn't modify link %d"
842
  msgstr "Link %d konnte nicht geändert werden"
843
 
844
  # @ broken-link-checker
845
+ #: core/core.php:1868
 
846
  msgid "%d link marked as not broken"
847
  msgid_plural "%d links marked as not broken"
848
  msgstr[0] "%d Link als nicht fehlerhaft markiert"
849
  msgstr[1] "%d Links als nicht fehlerhaft markiert"
850
 
851
  # @ broken-link-checker
852
+ #: core/core.php:1908
853
  msgid "Table columns"
854
  msgstr "Tabellenspalten"
855
 
856
  # @ default
857
+ #: core/core.php:1927
858
  msgid "Show on screen"
859
  msgstr "Auf dem Bildschirm anzeigen"
860
 
861
  # @ broken-link-checker
862
+ #: core/core.php:1934
863
  msgid "links"
864
  msgstr "Links"
865
 
866
  # @ default
867
  # @ broken-link-checker
868
+ #: core/core.php:1935
869
  #: includes/admin/table-printer.php:136
870
  msgid "Apply"
871
  msgstr "Anwenden"
872
 
873
  # @ broken-link-checker
874
+ #: core/core.php:1939
875
  msgid "Misc"
876
  msgstr "Sonstige"
877
 
878
  # @ broken-link-checker
879
+ #: core/core.php:1954
 
880
  msgid "Highlight links broken for at least %s days"
881
  msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
882
 
883
  # @ broken-link-checker
884
+ #: core/core.php:1963
885
  msgid "Color-code status codes"
886
  msgstr "Farb-Code Status Codes"
887
 
888
  # @ broken-link-checker
889
+ #: core/core.php:1980
890
+ #: core/core.php:2440
891
+ #: core/core.php:2476
892
+ #: core/core.php:2539
893
  msgid "You're not allowed to do that!"
894
  msgstr "Sie haben nicht die Erlaubnis das zu tun!"
895
 
896
  # @ broken-link-checker
897
+ #: core/core.php:2321
898
  msgid "View broken links"
899
  msgstr "Fehlerhafte Links anschauen"
900
 
901
  # @ broken-link-checker
902
+ #: core/core.php:2322
 
903
  msgid "Found %d broken link"
904
  msgid_plural "Found %d broken links"
905
  msgstr[0] "%d fehlerhafte Links gefunden"
906
  msgstr[1] "%d fehlerhafte Links gefunden"
907
 
908
  # @ broken-link-checker
909
+ #: core/core.php:2328
910
  msgid "No broken links found."
911
  msgstr "Keine fehlerhaften Links gefunden."
912
 
913
  # @ broken-link-checker
914
+ #: core/core.php:2335
 
915
  msgid "%d URL in the work queue"
916
  msgid_plural "%d URLs in the work queue"
917
  msgstr[0] "%d URL in der Warteschlange"
918
  msgstr[1] "%d URLs in der Warteschlange"
919
 
920
  # @ broken-link-checker
921
+ #: core/core.php:2338
922
  msgid "No URLs in the work queue."
923
  msgstr "Keine URLs in der Warteschlange."
924
 
925
  # @ broken-link-checker
926
+ #: core/core.php:2344
 
927
  msgid "Detected %d unique URL"
928
  msgid_plural "Detected %d unique URLs"
929
  msgstr[0] "%d eindeutige URL gefunden"
930
  msgstr[1] "%d eindeutige URLs gefunden"
931
 
932
  # @ broken-link-checker
933
+ #: core/core.php:2345
 
934
  msgid "in %d link"
935
  msgid_plural "in %d links"
936
  msgstr[0] "in %d Link"
937
  msgstr[1] "in %d Links"
938
 
939
  # @ broken-link-checker
940
+ #: core/core.php:2350
941
  msgid "and still searching..."
942
  msgstr "und sucht immer noch ..."
943
 
944
  # @ broken-link-checker
945
+ #: core/core.php:2356
946
  msgid "Searching your blog for links..."
947
  msgstr "Durchsucht Ihr Blog nach Links ..."
948
 
949
  # @ broken-link-checker
950
+ #: core/core.php:2358
951
  msgid "No links detected."
952
  msgstr "Keine Links gefunden."
953
 
954
  # @ broken-link-checker
955
+ #: core/core.php:2384
956
  msgctxt "current load"
957
  msgid "Unknown"
958
  msgstr "Unbekannt"
959
 
960
  # @ broken-link-checker
961
+ #: core/core.php:2448
962
+ #: core/core.php:2486
963
+ #: core/core.php:2549
 
964
  msgid "Oops, I can't find the link %d"
965
  msgstr "Hossa, Ich kann den link %d nicht finden"
966
 
967
  # @ broken-link-checker
968
+ #: core/core.php:2461
969
  msgid "Oops, couldn't modify the link!"
970
  msgstr "Mistverdammter, konnte den Link nicht modifizieren!"
971
 
972
  # @ broken-link-checker
973
+ #: core/core.php:2464
974
+ #: core/core.php:2575
975
  msgid "Error : link_id not specified"
976
  msgstr "Fehler: link_id nicht spezifiziert"
977
 
978
  # @ broken-link-checker
979
+ #: core/core.php:2496
980
  msgid "Oops, the new URL is invalid!"
981
  msgstr "Ohoh, die neue URL funktioniert nicht!"
982
 
983
  # @ broken-link-checker
984
+ #: core/core.php:2507
985
+ #: core/core.php:2558
986
  msgid "An unexpected error occured!"
987
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
988
 
989
  # @ broken-link-checker
990
+ #: core/core.php:2525
991
  msgid "Error : link_id or new_url not specified"
992
  msgstr "Fehler: link_id oder new_url sind nicht spezifiziert"
993
 
994
  # @ broken-link-checker
995
+ #: core/core.php:2584
996
  msgid "You don't have sufficient privileges to access this information!"
997
  msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
998
 
999
  # @ broken-link-checker
1000
+ #: core/core.php:2597
1001
  msgid "Error : link ID not specified"
1002
  msgstr "Fehler: Link ID nicht spezifiziert"
1003
 
1004
  # @ broken-link-checker
1005
+ #: core/core.php:2611
 
1006
  msgid "Failed to load link details (%s)"
1007
  msgstr "Laden der Link Details (%s) schlug fehl"
1008
 
1009
  # @ broken-link-checker
1010
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.2.2) #-#-#-#-#
1011
  #. Plugin Name of the plugin/theme
1012
+ #: core/core.php:2740
1013
  msgid "Broken Link Checker"
1014
  msgstr "Broken Link Checker"
1015
 
1016
  # @ broken-link-checker
1017
+ #: core/core.php:2754
 
1018
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
1019
  msgstr "Das aktuelle temporäre Verzeichnis ist nicht erreichbar; Bitte <a href=\"%s\">setzen Sie ein anderes Verzeichnis</a>."
1020
 
1021
  # @ broken-link-checker
1022
+ #: core/core.php:2759
 
1023
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
1024
  msgstr "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
1025
 
1026
  # @ broken-link-checker
1027
+ #: core/core.php:2766
1028
  msgid "Broken Link Checker can't create a lockfile."
1029
  msgstr "Broken Link Checker kann keine Lock-Dateien erstellen."
1030
 
1031
  # @ broken-link-checker
1032
+ #: core/core.php:2771
1033
  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."
1034
  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."
1035
 
1036
  # @ broken-link-checker
1037
+ #: core/core.php:2790
1038
  msgid "PHP version"
1039
  msgstr "PHP Version"
1040
 
1041
  # @ broken-link-checker
1042
+ #: core/core.php:2796
1043
  msgid "MySQL version"
1044
  msgstr "MySQL Version"
1045
 
1046
  # @ broken-link-checker
1047
+ #: core/core.php:2809
1048
  msgid "You have an old version of CURL. Redirect detection may not work properly."
1049
  msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
1050
 
1051
  # @ broken-link-checker
1052
+ #: core/core.php:2821
1053
+ #: core/core.php:2837
1054
+ #: core/core.php:2842
1055
  msgid "Not installed"
1056
  msgstr "Nicht installiert"
1057
 
1058
  # @ broken-link-checker
1059
+ #: core/core.php:2824
1060
  msgid "CURL version"
1061
  msgstr "CURL Version"
1062
 
1063
  # @ broken-link-checker
1064
+ #: core/core.php:2830
1065
  msgid "Installed"
1066
  msgstr "Installiert"
1067
 
1068
  # @ broken-link-checker
1069
+ #: core/core.php:2843
1070
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
1071
  msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
1072
 
1073
  # @ broken-link-checker
1074
+ #: core/core.php:2854
1075
  msgid "On"
1076
  msgstr "An"
1077
 
1078
  # @ broken-link-checker
1079
+ #: core/core.php:2855
1080
  msgid "Redirects may be detected as broken links when safe_mode is on."
1081
  msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
1082
 
1083
  # @ broken-link-checker
1084
+ #: core/core.php:2860
1085
+ #: core/core.php:2874
1086
  msgid "Off"
1087
  msgstr "Aus"
1088
 
1089
  # @ broken-link-checker
1090
+ #: core/core.php:2868
 
1091
  msgid "On ( %s )"
1092
  msgstr "An (%s)"
1093
 
1094
  # @ broken-link-checker
1095
+ #: core/core.php:2869
1096
  msgid "Redirects may be detected as broken links when open_basedir is on."
1097
  msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
1098
 
1099
  # @ broken-link-checker
1100
+ #: core/core.php:2888
1101
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
1102
  msgstr "Lock-Datei kann nicht erstellt werden. Bitte bestimmen Sie ein benutzerdefiniertes temporäres Verzeichnis."
1103
 
1104
  # @ broken-link-checker
1105
+ #: core/core.php:2912
1106
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
1107
  msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
1108
 
1109
  # @ broken-link-checker
1110
+ #: core/core.php:2983
 
1111
  msgid "[%s] Broken links detected"
1112
  msgstr "[%s] Fehlerhafte Links entdeckt"
1113
 
1114
  # @ broken-link-checker
1115
+ #: core/core.php:2988
 
1116
  msgid "Broken Link Checker has detected %d new broken link on your site."
1117
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
1118
  msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
1119
  msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
1120
 
1121
  # @ broken-link-checker
1122
+ #: core/core.php:3003
 
1123
  msgid "Here's a list of the first %d broken links:"
1124
  msgid_plural "Here's a list of the first %d broken links:"
1125
  msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
1126
  msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
1127
 
1128
  # @ broken-link-checker
1129
+ #: core/core.php:3012
1130
  msgid "Here's a list of the new broken links: "
1131
  msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
1132
 
1133
  # @ broken-link-checker
1134
+ #: core/core.php:3024
 
1135
  msgid "Link text : %s"
1136
  msgstr "Link Text: %s"
1137
 
1138
  # @ broken-link-checker
1139
+ #: core/core.php:3025
 
1140
  msgid "Link URL : <a href=\"%s\">%s</a>"
1141
  msgstr "Link URL: <a href=\"%s\">%s</a>"
1142
 
1143
  # @ broken-link-checker
1144
+ #: core/core.php:3026
 
1145
  msgid "Source : %s"
1146
  msgstr "Quelle: %s"
1147
 
1148
  # @ brokenk-link-checker
1149
+ #: core/core.php:3040
1150
  msgid "You can see all broken links here:"
1151
  msgstr "Hier sehen Sie alle fehlerhaften Links:"
1152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1153
  # @ broken-link-checker
1154
  #: includes/admin/links-page-js.php:58
1155
  #: includes/admin/links-page-js.php:301
1158
 
1159
  # @ broken-link-checker
1160
  #: includes/admin/links-page-js.php:99
1161
+ #: includes/admin/table-printer.php:587
1162
  msgid "Not broken"
1163
  msgstr "Nicht fehlerhaft"
1164
 
1165
  # @ broken-link-checker
1166
  #: includes/admin/links-page-js.php:213
 
1167
  msgid "%d instances of the link were successfully modified."
1168
  msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
1169
 
1170
  # @ broken-link-checker
1171
  #: includes/admin/links-page-js.php:219
 
1172
  msgid "However, %d instances couldn't be edited and still point to the old URL."
1173
  msgstr "Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem noch auf die alte URL."
1174
 
1185
 
1186
  # @ broken-link-checker
1187
  #: includes/admin/links-page-js.php:339
 
1188
  msgid "%d instances of the link were successfully unlinked."
1189
  msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
1190
 
1191
  # @ broken-link-checker
1192
  #: includes/admin/links-page-js.php:345
 
1193
  msgid "However, %d instances couldn't be removed."
1194
  msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
1195
 
1201
  # @ broken-link-checker
1202
  #: includes/admin/links-page-js.php:361
1203
  #: includes/admin/table-printer.php:237
1204
+ #: includes/admin/table-printer.php:581
1205
  msgid "Unlink"
1206
  msgstr "Link aufheben"
1207
 
1245
  msgid "Select one or more links to edit."
1246
  msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
1247
 
 
 
 
 
 
1248
  # @ broken-link-checker
1249
  #: includes/admin/search-form.php:16
1250
  msgid "Save This Search As a Filter"
1274
 
1275
  # @ broken-link-checker
1276
  #: includes/admin/search-form.php:48
1277
+ #: includes/admin/table-printer.php:455
1278
  msgid "HTTP code"
1279
  msgstr "HTTP Code"
1280
 
1306
 
1307
  # @ broken-link-checker
1308
  #: includes/admin/search-form.php:113
1309
+ #: includes/admin/table-printer.php:313
1310
+ #: includes/admin/table-printer.php:595
1311
+ #: includes/admin/table-printer.php:601
1312
  msgid "Cancel"
1313
  msgstr "Abbrechen"
1314
 
1315
+ #: includes/admin/sidebar.php:2
1316
+ msgid "Donate $10, $20 or $50!"
1317
+ msgstr "Spenden Sie $10, $20 oder $50!"
1318
+
1319
+ #: includes/admin/sidebar.php:5
1320
+ msgid "If you like this plugin, please donate to support development and maintenance!"
1321
+ msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
1322
+
1323
+ #: includes/admin/sidebar.php:22
1324
+ msgid "Return to WordPress Dashboard"
1325
+ msgstr "Zurück zum Wordpress Dashboard"
1326
+
1327
+ # @ broken-link-checker
1328
+ #: includes/admin/sidebar.php:34
1329
+ msgid "Recommended"
1330
+ msgstr "Empfohlen"
1331
+
1332
+ # @ broken-link-checker
1333
+ #: includes/admin/options-page-js.php:54
1334
+ msgid "Hide debug info"
1335
+ msgstr "Debug Info verbergen"
1336
+
1337
  # @ broken-link-checker
1338
  #: includes/admin/table-printer.php:150
1339
  msgid "Compact View"
1361
 
1362
  # @ broken-link-checker
1363
  #: includes/admin/table-printer.php:233
1364
+ #: includes/admin/table-printer.php:578
1365
  msgid "Edit URL"
1366
  msgstr "Bearbeite URL"
1367
 
1391
  msgstr "Quellen löschen"
1392
 
1393
  # @ default
1394
+ #: includes/admin/table-printer.php:257
1395
  msgid "&laquo;"
1396
  msgstr "&laquo;"
1397
 
1398
  # @ default
1399
+ #: includes/admin/table-printer.php:258
1400
  msgid "&raquo;"
1401
  msgstr "&raquo;"
1402
 
1403
  # @ broken-link-checker
1404
+ #: includes/admin/table-printer.php:266
 
1405
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1406
  msgstr "Anzeigen %s&#8211;%s von <span class=\"current-link-count\">%s</span>"
1407
 
1408
  # @ broken-link-checker
1409
+ #: includes/admin/table-printer.php:289
1410
  msgid "Bulk Edit URLs"
1411
  msgstr "Mehrere URLs bearbeiten"
1412
 
1413
+ #: includes/admin/table-printer.php:291
1414
  msgid "Find"
1415
  msgstr "Finden"
1416
 
1417
+ #: includes/admin/table-printer.php:295
1418
  msgid "Replace with"
1419
  msgstr "Ersetzen mit"
1420
 
1421
  # @ broken-link-checker
1422
+ #: includes/admin/table-printer.php:303
1423
  msgid "Case sensitive"
1424
  msgstr "Gross- und Kleinschreibung"
1425
 
1426
+ #: includes/admin/table-printer.php:307
1427
  msgid "Regular expression"
1428
  msgstr "Regulärer Ausdruck"
1429
 
1430
  # @ broken-link-checker
1431
+ #: includes/admin/table-printer.php:315
1432
  msgid "Update"
1433
  msgstr "Aktualisieren"
1434
 
1435
  # @ broken-link-checker
1436
+ #: includes/admin/table-printer.php:440
1437
  msgid "Post published on"
1438
  msgstr "Beitrag publiziert am"
1439
 
1440
  # @ broken-link-checker
1441
+ #: includes/admin/table-printer.php:445
1442
  msgid "Link last checked"
1443
  msgstr "Link zuletzt geprüft"
1444
 
1445
  # @ broken-link-checker
1446
+ #: includes/admin/table-printer.php:449
1447
  msgid "Never"
1448
+ msgstr "Nie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1449
 
1450
  # @ broken-link-checker
1451
+ #: includes/admin/table-printer.php:460
1452
+ msgid "Response time"
1453
+ msgstr "Reaktionszeit"
 
 
 
1454
 
1455
  # @ broken-link-checker
1456
+ #: includes/admin/table-printer.php:462
1457
+ msgid "%2.3f seconds"
1458
+ msgstr "%2.3f Sekunden"
 
 
1459
 
1460
  # @ broken-link-checker
1461
+ #: includes/admin/table-printer.php:465
1462
+ msgid "Final URL"
1463
+ msgstr "Endgültige URL"
 
1464
 
1465
  # @ broken-link-checker
1466
+ #: includes/admin/table-printer.php:470
1467
+ msgid "Redirect count"
1468
+ msgstr "Weiterleitung Anzahl"
 
1469
 
1470
  # @ broken-link-checker
1471
+ #: includes/admin/table-printer.php:475
1472
+ msgid "Instance count"
1473
+ msgstr "Instanz Anzahl"
 
1474
 
1475
  # @ broken-link-checker
1476
+ #: includes/admin/table-printer.php:484
1477
+ msgid "This link has failed %d time."
1478
+ msgid_plural "This link has failed %d times."
1479
+ msgstr[0] "Dieser Link schlug %d mal fehl."
1480
+ msgstr[1] "Dieser Link schlug %d mal fehl."
1481
 
1482
  # @ broken-link-checker
1483
+ #: includes/admin/table-printer.php:492
1484
+ msgid "This link has been broken for %s."
1485
+ msgstr "Dieser Links ist fehlerhaft seit %s."
 
1486
 
1487
  # @ broken-link-checker
1488
+ #: includes/admin/table-printer.php:503
1489
+ msgid "Log"
1490
+ msgstr "Log"
 
1491
 
1492
  # @ broken-link-checker
1493
+ #: includes/admin/table-printer.php:524
1494
+ msgid "Show more info about this link"
1495
+ msgstr "Mehr Informationen über diesen Link anzeigen"
 
1496
 
1497
  # @ broken-link-checker
1498
+ #: includes/admin/table-printer.php:542
1499
+ msgctxt "checked how long ago"
1500
+ msgid "Checked"
1501
+ msgstr "Geprüft"
1502
 
1503
  # @ broken-link-checker
1504
+ #: includes/admin/table-printer.php:558
1505
+ msgid "Broken for"
1506
+ msgstr "Fehlerhaft für"
 
1507
 
1508
  # @ broken-link-checker
1509
+ #: includes/admin/table-printer.php:578
1510
+ msgid "Edit link URL"
1511
+ msgstr "Bearbeite URL Link"
 
1512
 
1513
  # @ broken-link-checker
1514
+ #: includes/admin/table-printer.php:580
1515
+ msgid "Remove this link from all posts"
1516
+ msgstr "Löschen Sie diesen Link von allen Beiträgen"
 
1517
 
1518
  # @ broken-link-checker
1519
+ #: includes/admin/table-printer.php:586
1520
+ msgid "Remove this link from the list of broken links and mark it as valid"
1521
+ msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
 
1522
 
1523
  # @ broken-link-checker
1524
+ #: includes/admin/table-printer.php:595
1525
+ msgid "Cancel URL editing"
1526
+ msgstr "URL Bearbeitung abbrechen"
 
1527
 
1528
  # @ broken-link-checker
1529
+ #: includes/admin/table-printer.php:602
1530
+ msgid "Update URL"
1531
+ msgstr "Update URL"
 
1532
 
1533
  # @ broken-link-checker
1534
+ #: includes/admin/table-printer.php:624
1535
+ msgid "[An orphaned link! This is a bug.]"
1536
+ msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
 
1537
 
1538
  # @ broken-link-checker
1539
+ #: includes/admin/db-upgrade.php:95
1540
+ msgid "Failed to delete old DB tables. Database error : %s"
1541
+ msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
 
1542
 
1543
  # @ broken-link-checker
1544
+ #: includes/parsers.php:109
1545
+ msgid "Editing is not implemented in the '%s' parser"
1546
+ msgstr "Editieren ist nicht im '%s' Parser implementiert"
 
 
1547
 
1548
  # @ broken-link-checker
1549
+ #: includes/parsers.php:124
1550
+ msgid "Unlinking is not implemented in the '%s' parser"
1551
+ msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
 
 
1552
 
1553
  # @ broken-link-checker
1554
  #: includes/link-query.php:25
1601
  msgid "No links found for your query"
1602
  msgstr "Keine Links für Deine Anfrage gefunden"
1603
 
1604
+ # @ default
1605
+ #: includes/any-post.php:427
1606
+ msgid "Preview &#8220;%s&#8221;"
1607
+ msgstr "Vorschau &#8220;%s&#8221;"
1608
+
1609
+ # @ default
1610
+ #: includes/any-post.php:428
1611
+ msgid "Preview"
1612
+ msgstr "Vorschau"
1613
+
1614
+ # @ default
1615
+ #: includes/any-post.php:435
1616
+ msgid "View &#8220;%s&#8221;"
1617
+ msgstr "Ansehen &#8220;%s&#8221;"
1618
+
1619
+ # @ broken-link-checker
1620
+ #: includes/any-post.php:529
1621
+ msgid "Updating post %d failed"
1622
+ msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
1623
+
1624
+ # @ broken-link-checker
1625
+ #: includes/any-post.php:711
1626
+ msgid "%d post deleted."
1627
+ msgid_plural "%d posts deleted."
1628
+ msgstr[0] "%d Artikel gelöscht."
1629
+ msgstr[1] "%d Artikel gelöscht."
1630
+
1631
+ # @ broken-link-checker
1632
+ #: includes/any-post.php:713
1633
+ msgid "%d page deleted."
1634
+ msgid_plural "%d pages deleted."
1635
+ msgstr[0] "%d Seite gelöscht."
1636
+ msgstr[1] "%d Seiten gelöscht."
1637
+
1638
+ # @ broken-link-checker
1639
+ #: includes/any-post.php:715
1640
+ msgid "%d \"%s\" deleted."
1641
+ msgid_plural "%d \"%s\" deleted."
1642
+ msgstr[0] "%d \"%s\" gelöscht."
1643
+ msgstr[1] "%d \"%s\" gelöscht."
1644
+
1645
+ # @ broken-link-checker
1646
+ #: includes/any-post.php:734
1647
+ msgid "%d post moved to the Trash."
1648
+ msgid_plural "%d posts moved to the Trash."
1649
+ msgstr[0] "%d Artikel in den Papierkorb verschoben."
1650
+ msgstr[1] "%d Artikel in den Papierkorb verschoben."
1651
+
1652
+ # @ broken-link-checker
1653
+ #: includes/any-post.php:736
1654
+ msgid "%d page moved to the Trash."
1655
+ msgid_plural "%d pages moved to the Trash."
1656
+ msgstr[0] "%d Seite in den Papierkorb verschoben."
1657
+ msgstr[1] "%d Seiten in den Papierkorb verschoben."
1658
+
1659
+ # @ broken-link-checker
1660
+ #: includes/any-post.php:738
1661
+ msgid "%d \"%s\" moved to the Trash."
1662
+ msgid_plural "%d \"%s\" moved to the Trash."
1663
+ msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
1664
+ msgstr[1] "%d \"%s\" in den Papierkorb verschoben."
1665
+
1666
+ # @ broken-link-checker
1667
+ #: includes/containers.php:122
1668
+ msgid "%d '%s' has been deleted"
1669
+ msgid_plural "%d '%s' have been deleted"
1670
+ msgstr[0] "%d '%s' wurde gelöscht"
1671
+ msgstr[1] "%d '%s' wurden gelöscht"
1672
+
1673
+ # @ broken-link-checker
1674
+ #: includes/containers.php:883
1675
+ #: includes/containers.php:901
1676
+ msgid "Container type '%s' not recognized"
1677
+ msgstr "Container Typ '%s' nicht erkannt"
1678
+
1679
  # @ broken-link-checker
1680
  #: includes/links.php:215
1681
  msgid "The plugin script was terminated while trying to check the link."
1714
  msgstr "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
1715
 
1716
  # @ broken-link-checker
1717
+ #: includes/links.php:673
1718
+ msgid "This link is not a redirect"
1719
+ msgstr "Dieser Link ist keine Umleitung"
1720
+
1721
+ # @ broken-link-checker
1722
+ #: includes/links.php:720
1723
+ #: includes/links.php:757
1724
+ msgid "Couldn't delete the link's database record"
1725
+ msgstr "Links können nicht aus der Datenbank gelöscht werden"
1726
+
1727
+ # @ broken-link-checker
1728
+ #: includes/links.php:831
1729
+ msgctxt "link status"
1730
+ msgid "Unknown"
1731
+ msgstr "Unbekannt"
1732
+
1733
+ # @ broken-link-checker
1734
+ #: includes/links.php:869
1735
+ msgid "Not checked"
1736
+ msgstr "Nicht überprüft"
1737
+
1738
+ # @ broken-link-checker
1739
+ #: includes/links.php:872
1740
+ msgid "False positive"
1741
+ msgstr "Falsch positiv"
1742
+
1743
+ # @ broken-link-checker
1744
+ #: includes/extra-strings.php:2
1745
+ msgctxt "module name"
1746
+ msgid "Basic HTTP"
1747
+ msgstr "Standard HTTP"
1748
+
1749
+ # @ broken-link-checker
1750
+ #: includes/extra-strings.php:3
1751
+ msgctxt "module name"
1752
+ msgid "Blogroll items"
1753
+ msgstr "Blogroll Elemente"
1754
+
1755
+ # @ broken-link-checker
1756
+ #: includes/extra-strings.php:4
1757
+ msgctxt "module name"
1758
+ msgid "Comments"
1759
+ msgstr "Kommentare"
1760
+
1761
+ # @ broken-link-checker
1762
+ #: includes/extra-strings.php:5
1763
+ msgctxt "module name"
1764
+ msgid "Custom fields"
1765
+ msgstr "Benutzerdefinierte Felder"
1766
+
1767
+ # @ broken-link-checker
1768
+ #: includes/extra-strings.php:6
1769
+ msgctxt "module name"
1770
+ msgid "Embedded DailyMotion videos"
1771
+ msgstr "Eingebettete DailyMotion Videos"
1772
+
1773
+ # @ broken-link-checker
1774
+ #: includes/extra-strings.php:7
1775
+ msgctxt "module name"
1776
+ msgid "Embedded Vimeo videos"
1777
+ msgstr "Eingebettete Vimeo Videos"
1778
+
1779
+ # @ broken-link-checker
1780
+ #: includes/extra-strings.php:8
1781
+ msgctxt "module name"
1782
+ msgid "Embedded YouTube videos"
1783
+ msgstr "Eingebettete YouTube Videos"
1784
 
1785
  # @ broken-link-checker
1786
+ #: includes/extra-strings.php:9
1787
+ msgctxt "module name"
1788
+ msgid "HTML images"
1789
+ msgstr "HTML Bilder"
1790
 
1791
  # @ broken-link-checker
1792
+ #: includes/extra-strings.php:10
1793
+ msgctxt "module name"
1794
+ msgid "HTML links"
1795
+ msgstr "HTML Links"
1796
 
 
1797
  # @ broken-link-checker
1798
+ #: includes/extra-strings.php:11
1799
+ msgctxt "module name"
1800
+ msgid "MediaFire API"
1801
+ msgstr "MediaFire API"
1802
 
1803
  # @ broken-link-checker
1804
+ #: includes/extra-strings.php:12
1805
+ msgctxt "module name"
1806
+ msgid "MegaUpload API"
1807
+ msgstr "MegaUpload API"
1808
 
1809
  # @ broken-link-checker
1810
+ #: includes/extra-strings.php:13
1811
+ msgctxt "module name"
1812
+ msgid "Plaintext URLs"
1813
+ msgstr "Klartext URLs"
1814
 
1815
  # @ broken-link-checker
1816
+ #: includes/extra-strings.php:14
1817
+ msgctxt "module name"
1818
+ msgid "RapidShare API"
1819
+ msgstr "RapidShare API"
1820
 
1821
+ # @ broken-link-checker
1822
+ #: includes/extra-strings.php:15
1823
  msgctxt "module name"
1824
+ msgid "YouTube API"
1825
+ msgstr "YouTube API"
1826
 
1827
  # @ broken-link-checker
1828
+ #: includes/extra-strings.php:16
1829
+ msgctxt "module name"
1830
+ msgid "Posts"
1831
+ msgstr "Beiträge"
1832
 
1833
  # @ broken-link-checker
1834
+ #: includes/extra-strings.php:17
1835
+ msgctxt "module name"
1836
+ msgid "Pages"
1837
+ msgstr "Seiten"
1838
 
1839
  # @ default
1840
+ #: includes/utility-class.php:286
 
1841
  msgid "%d second"
1842
  msgid_plural "%d seconds"
1843
  msgstr[0] "%s Sekunde"
1844
  msgstr[1] "%s Sekunden"
1845
 
1846
  # @ default
1847
+ #: includes/utility-class.php:287
 
1848
  msgid "%d second ago"
1849
  msgid_plural "%d seconds ago"
1850
  msgstr[0] "%s Sekunde vergangen"
1851
  msgstr[1] "%s Sekunden vergangen"
1852
 
1853
  # @ default
1854
+ #: includes/utility-class.php:290
 
1855
  msgid "%d minute"
1856
  msgid_plural "%d minutes"
1857
  msgstr[0] "%d Minute"
1858
  msgstr[1] "%d Minuten"
1859
 
1860
  # @ default
1861
+ #: includes/utility-class.php:291
 
1862
  msgid "%d minute ago"
1863
  msgid_plural "%d minutes ago"
1864
  msgstr[0] "%d Minute vergangen"
1865
  msgstr[1] "%d Minuten vergangen"
1866
 
1867
  # @ default
1868
+ #: includes/utility-class.php:294
 
1869
  msgid "%d hour"
1870
  msgid_plural "%d hours"
1871
  msgstr[0] "%d Stunde"
1872
  msgstr[1] "%d Stunden"
1873
 
1874
  # @ default
1875
+ #: includes/utility-class.php:295
 
1876
  msgid "%d hour ago"
1877
  msgid_plural "%d hours ago"
1878
  msgstr[0] "%d Stunde vergangen"
1879
  msgstr[1] "%d Stunden vergangen"
1880
 
1881
  # @ default
1882
+ #: includes/utility-class.php:298
 
1883
  msgid "%d day"
1884
  msgid_plural "%d days"
1885
  msgstr[0] "%d Tag"
1886
  msgstr[1] "%d Tage"
1887
 
1888
  # @ default
1889
+ #: includes/utility-class.php:299
 
1890
  msgid "%d day ago"
1891
  msgid_plural "%d days ago"
1892
  msgstr[0] "%d Tag vergangen"
1893
  msgstr[1] "%d Tage vergangen"
1894
 
1895
  # @ default
1896
+ #: includes/utility-class.php:302
 
1897
  msgid "%d month"
1898
  msgid_plural "%d months"
1899
  msgstr[0] "%d Monat"
1900
  msgstr[1] "%d Monate"
1901
 
1902
  # @ default
1903
+ #: includes/utility-class.php:303
 
1904
  msgid "%d month ago"
1905
  msgid_plural "%d months ago"
1906
  msgstr[0] "%d Monat vergangen"
1907
  msgstr[1] "%d Monate vergangen"
1908
 
1909
  # @ broken-link-checker
1910
+ #: includes/instances.php:102
1911
+ #: includes/instances.php:158
1912
+ msgid "Container %s[%d] not found"
1913
+ msgstr "Container %s[%d] nicht gefunden"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1914
 
1915
  # @ broken-link-checker
1916
+ #: includes/instances.php:111
1917
+ #: includes/instances.php:167
1918
+ msgid "Parser '%s' not found."
1919
+ msgstr "Parser '%s' nicht gefunden."
1920
 
1921
  #. Plugin URI of the plugin/theme
1922
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
languages/broken-link-checker-pt_PT.mo CHANGED
Binary file
languages/broken-link-checker-pt_PT.po CHANGED
@@ -1,7 +1,7 @@
1
- # Translation of the WordPress plugin Broken Link Checker Pro 1.2 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
- # Tradução em português pt_PT do plugin Broken Link Checker Pro 1.2 - 8/11/2010
5
  # Autor: PedroDM - <pm[at]mowster[dot]net>
6
  # Website: http://jobs.mowster.net/ - <jobs@mowster.net>
7
  #
@@ -9,14 +9,14 @@ msgid ""
9
  msgstr ""
10
  "Project-Id-Version: Broken Link Checker PT\n"
11
  "Report-Msgid-Bugs-To: \n"
12
- "POT-Creation-Date: 2010-11-07 19:35-0000\n"
13
  "PO-Revision-Date: \n"
14
- "Last-Translator: \n"
15
  "Language-Team: MwJobs | http://jobs.mowster.net <jobs@mowster.net>\n"
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
  "X-Poedit-Language: Portuguese\n"
21
  "X-Poedit-Country: PORTUGAL\n"
22
  "X-Poedit-SourceCharset: utf-8\n"
@@ -36,735 +36,756 @@ msgstr "[ Problema na rede ]"
36
  msgid "Automatically expand the widget if broken links have been detected"
37
  msgstr "Expandir automaticamente a caixa se existirem links offline"
38
 
39
- #: core/core.php:343
40
  msgid "Link Checker Settings"
41
  msgstr "Definições do Links offline"
42
 
43
- #: core/core.php:344
44
  msgid "Link Checker"
45
  msgstr "Links offline"
46
 
47
- #: core/core.php:349
 
48
  msgid "Broken Links"
49
  msgstr "Links offline"
50
 
51
- #: core/core.php:365
52
  msgid "View Broken Links"
53
  msgstr "Ver Links offline"
54
 
55
- #: core/core.php:393
 
 
 
 
 
 
 
 
 
 
 
 
56
  msgid "Settings"
57
  msgstr "Definições"
58
 
59
- #: core/core.php:405
60
- #: core/core.php:1187
61
  #, php-format
62
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
63
  msgstr "Erro: As tabelas do plugin na Base de dados não estão actualizadas! (Versão actual : %d, obrigatória : %d)"
64
 
65
- #: core/core.php:544
66
  msgid "Settings saved."
67
  msgstr "Definições guardadas."
68
 
69
- #: core/core.php:551
 
 
 
 
70
  msgid "Complete site recheck started."
71
  msgstr "Re-verificação completa do sitío iniciada."
72
 
73
- #: core/core.php:565
74
- #: core/core.php:2745
75
  msgid "Details"
76
  msgstr "Detalhes"
77
 
78
- #: core/core.php:579
79
  msgid "General"
80
  msgstr "Geral"
81
 
82
- #: core/core.php:580
83
  msgid "Look For Links In"
84
  msgstr "Procurar links"
85
 
86
- #: core/core.php:581
87
  msgid "Which Links To Check"
88
  msgstr "Links para verificar"
89
 
90
- #: core/core.php:582
91
  msgid "Protocols & APIs"
92
  msgstr "Protocolos & APIs"
93
 
94
- #: core/core.php:583
95
  msgid "Advanced"
96
  msgstr "Avançado"
97
 
98
- #: core/core.php:587
99
  msgid "Broken Link Checker Options"
100
  msgstr "Opções : Links offline"
101
 
102
- #: core/core.php:613
103
  msgid "Status"
104
  msgstr "Estado"
105
 
106
- #: core/core.php:615
107
  msgid "Show debug info"
108
  msgstr "Mostrar sistema"
109
 
110
- #: core/core.php:643
111
  msgid "Check each link"
112
  msgstr "Verificar cada link"
113
 
114
- #: core/core.php:648
115
  #, php-format
116
  msgid "Every %s hours"
117
  msgstr "Cada %s horas"
118
 
119
- #: core/core.php:657
120
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
121
  msgstr "Os links existentes serão verificados com esta frequência. Os novos links comprovados logo que possível."
122
 
123
- #: core/core.php:664
124
  msgid "E-mail notifications"
125
  msgstr "Notificações por e-mail"
126
 
127
- #: core/core.php:670
128
  msgid "Send me e-mail notifications about newly detected broken links"
129
  msgstr "Enviar um e-mail notificando sobre os novos links offline detectados"
130
 
131
- #: core/core.php:677
132
  msgid "Link tweaks"
133
  msgstr "Links puxados"
134
 
135
- #: core/core.php:683
136
  msgid "Apply custom formatting to broken links"
137
  msgstr "Aplicar formatação personalizada para os links offline"
138
 
139
- #: core/core.php:687
140
- #: core/core.php:715
141
  msgid "Edit CSS"
142
  msgstr "Editar CSS"
143
 
144
- #: core/core.php:711
145
  msgid "Apply custom formatting to removed links"
146
  msgstr "Aplicar formatação personalizada para os links removidos"
147
 
148
- #: core/core.php:739
149
  msgid "Stop search engines from following broken links"
150
  msgstr "Não permitir aos motores de busca seguir os links offline"
151
 
152
- #: core/core.php:756
153
  msgid "Look for links in"
154
  msgstr "Procurar links em"
155
 
156
- #: core/core.php:767
157
  msgid "Post statuses"
158
  msgstr "Estado do Post"
159
 
160
- #: core/core.php:800
161
  msgid "Link types"
162
  msgstr "Tipos de link"
163
 
164
- #: core/core.php:806
165
  msgid "Error : All link parsers missing!"
166
  msgstr "Erro: Análises aos links não encontradas!"
167
 
168
- #: core/core.php:813
169
  msgid "Exclusion list"
170
  msgstr "Lista de exclusão"
171
 
172
- #: core/core.php:814
173
  msgid "Don't check links where the URL contains any of these words (one per line) :"
174
  msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha):"
175
 
176
- #: core/core.php:832
177
  msgid "Check links using"
178
  msgstr "Verificar links utilizados"
179
 
180
- #: core/core.php:851
 
181
  msgid "Timeout"
182
  msgstr "Intervalo"
183
 
184
- #: core/core.php:857
185
- #: core/core.php:903
186
- #: core/core.php:2872
187
  #, php-format
188
  msgid "%s seconds"
189
  msgstr "%s segundos"
190
 
191
- #: core/core.php:866
192
  msgid "Links that take longer than this to load will be marked as broken."
193
  msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
194
 
195
- #: core/core.php:873
196
  msgid "Link monitor"
197
  msgstr "Monitor de links"
198
 
199
- #: core/core.php:881
200
  msgid "Run continuously while the Dashboard is open"
201
  msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
202
 
203
- #: core/core.php:889
204
  msgid "Run hourly in the background"
205
  msgstr "Executar a cada hora em segundo plano"
206
 
207
- #: core/core.php:897
208
  msgid "Max. execution time"
209
  msgstr "Tempo máximo de execução"
210
 
211
- #: core/core.php:914
212
  msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
213
  msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analiza os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
214
 
215
- #: core/core.php:924
216
  msgid "Custom temporary directory"
217
  msgstr "Pasta temporária personalizada"
218
 
219
- #: core/core.php:933
 
220
  msgid "OK"
221
  msgstr "Aceitar"
222
 
223
- #: core/core.php:936
224
  msgid "Error : This directory isn't writable by PHP."
225
  msgstr "Erro: PHP não pode escrever nesse directório."
226
 
227
- #: core/core.php:941
228
  msgid "Error : This directory doesn't exist."
229
  msgstr "Erro: Não existe esse directório."
230
 
231
- #: core/core.php:949
232
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
233
  msgstr "Preencha este campo se deseja que o plugin utilize um directório personalizado para seus ficheiros temporários. Caso contrário, deixa-lo em branco."
234
 
235
- #: core/core.php:956
236
  msgid "Server load limit"
237
  msgstr "Limite de carregamento do servidor"
238
 
239
- #: core/core.php:971
240
  #, php-format
241
  msgid "Current load : %s"
242
  msgstr "Carga actual : %s"
243
 
244
- #: core/core.php:977
245
  #, php-format
246
  msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
247
  msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
248
 
249
- #: core/core.php:985
250
  msgid "Not available"
251
  msgstr "Não disponível"
252
 
253
- #: core/core.php:987
254
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
255
  msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
256
 
257
- #: core/core.php:995
258
  msgid "Forced recheck"
259
  msgstr "Re-verificação forçada"
260
 
261
- #: core/core.php:998
262
  msgid "Re-check all pages"
263
  msgstr "Verificar de novo todas as páginas"
264
 
265
- #: core/core.php:1002
266
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
267
  msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados do plugin e re-verificar todo o sítio desde o início."
268
 
269
- #: core/core.php:1013
270
  msgid "Save Changes"
271
  msgstr "Guardar alterações"
272
 
273
- #: core/core.php:1058
274
  msgid "Configure"
275
  msgstr "Configurar"
276
 
277
- #: core/core.php:1118
278
- msgid "Upgrade to Pro to enable this feature"
279
- msgstr "Actualizar para Pro para aceder a esta função"
280
-
281
- #: core/core.php:1153
282
  msgid "Check URLs entered in these custom fields (one per line) :"
283
  msgstr "Verificar as seguintes URL personalizadas (uma por linha):"
284
 
285
- #: core/core.php:1287
286
- #: core/core.php:1371
287
- #: core/core.php:1403
288
  #, php-format
289
  msgid "Database error : %s"
290
  msgstr "Erro na Base de dados: %s"
291
 
292
- #: core/core.php:1353
293
  msgid "You must enter a filter name!"
294
  msgstr "Deve introduzir um nome para o filtro!"
295
 
296
- #: core/core.php:1357
297
  msgid "Invalid search query."
298
  msgstr "Procura inválida."
299
 
300
- #: core/core.php:1366
301
  #, php-format
302
  msgid "Filter \"%s\" created"
303
  msgstr "Filtro \"%s\" criado"
304
 
305
- #: core/core.php:1393
306
  msgid "Filter ID not specified."
307
  msgstr "ID do Filtro não especificado."
308
 
309
- #: core/core.php:1400
310
  msgid "Filter deleted"
311
  msgstr "Filtro eliminado"
312
 
313
- #: core/core.php:1448
314
  #, php-format
315
  msgid "Replaced %d redirect with a direct link"
316
  msgid_plural "Replaced %d redirects with direct links"
317
  msgstr[0] "Substituído %d redirect com link directo"
318
  msgstr[1] "Substituídos %d redirects com links directos"
319
 
320
- #: core/core.php:1459
321
  #, php-format
322
  msgid "Failed to fix %d redirect"
323
  msgid_plural "Failed to fix %d redirects"
324
  msgstr[0] "Não foi possível reparar %d redirect"
325
  msgstr[1] "Não foi possível reparar %d redirects"
326
 
327
- #: core/core.php:1469
328
  msgid "None of the selected links are redirects!"
329
  msgstr "Nenhum dos links seleccionados são redirects!"
330
 
331
- #: core/core.php:1548
332
  #, php-format
333
  msgid "%d link updated."
334
  msgid_plural "%d links updated."
335
  msgstr[0] "%d link actualizado."
336
  msgstr[1] "%d links actualizados."
337
 
338
- #: core/core.php:1559
339
  #, php-format
340
  msgid "Failed to update %d link."
341
  msgid_plural "Failed to update %d links."
342
  msgstr[0] "Erro a actualizar %d link."
343
  msgstr[1] "Erro a actualizar %d links."
344
 
345
- #: core/core.php:1613
346
  #, php-format
347
  msgid "%d link removed"
348
  msgid_plural "%d links removed"
349
  msgstr[0] "%d link eliminado"
350
  msgstr[1] "%d links eliminados"
351
 
352
- #: core/core.php:1624
353
  #, php-format
354
  msgid "Failed to remove %d link"
355
  msgid_plural "Failed to remove %d links"
356
  msgstr[0] "Erro a remover %d link"
357
  msgstr[1] "Erro a remover %d links"
358
 
359
- #: core/core.php:1733
360
  #, php-format
361
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
362
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
363
  msgstr[0] "%d item foi evitado porque não pode ser movido para o lixo. Necessita de efectua-lo manualmente."
364
  msgstr[1] "%d itens foram evitados porque não podem ser movidos para o lixo. Necessita de efectua-lo manualmente."
365
 
366
- #: core/core.php:1754
367
  msgid "Didn't find anything to delete!"
368
  msgstr "Não foi encontrado nada para apagar!"
369
 
370
- #: core/core.php:1782
371
  #, php-format
372
  msgid "%d link scheduled for rechecking"
373
  msgid_plural "%d links scheduled for rechecking"
374
  msgstr[0] "%d link agendado para verificação"
375
  msgstr[1] "%d links agendados para verificação"
376
 
377
- #: core/core.php:1827
378
- #: core/core.php:2432
379
  msgid "This link was manually marked as working by the user."
380
  msgstr "Este link foi marcado manualmente como válido por outro utilizador."
381
 
382
- #: core/core.php:1834
383
  #, php-format
384
  msgid "Couldn't modify link %d"
385
  msgstr "Oops, impossível modificar o link %d"
386
 
387
- #: core/core.php:1845
388
  #, php-format
389
  msgid "%d link marked as not broken"
390
  msgid_plural "%d links marked as not broken"
391
  msgstr[0] "%d link marcado como funcional"
392
  msgstr[1] "%d links marcados como funcionais"
393
 
394
- #: core/core.php:1885
395
  msgid "Table columns"
396
  msgstr "Colunas da Tabela"
397
 
398
- #: core/core.php:1904
399
  msgid "Show on screen"
400
  msgstr "Mostrar no ecrán"
401
 
402
- #: core/core.php:1911
403
  msgid "links"
404
  msgstr "links"
405
 
406
- #: core/core.php:1912
407
  msgid "Apply"
408
  msgstr "Aplicar"
409
 
410
- #: core/core.php:1916
411
  msgid "Misc"
412
  msgstr "Vários"
413
 
414
- #: core/core.php:1931
415
  #, php-format
416
  msgid "Highlight links broken for at least %s days"
417
  msgstr "Sublinhar links offline pelo menos por %s dias"
418
 
419
- #: core/core.php:1940
420
  msgid "Color-code status codes"
421
  msgstr "Cor-código status códigos"
422
 
423
- #: core/core.php:1957
424
- #: core/core.php:2417
425
- #: core/core.php:2453
426
- #: core/core.php:2516
427
  msgid "You're not allowed to do that!"
428
  msgstr "Não permitido!"
429
 
430
- #: core/core.php:2298
431
  msgid "View broken links"
432
  msgstr "Ver links offline"
433
 
434
- #: core/core.php:2299
435
  #, php-format
436
  msgid "Found %d broken link"
437
  msgid_plural "Found %d broken links"
438
  msgstr[0] "Encontrado %d Link offline"
439
  msgstr[1] "Encontrados %d Links offline"
440
 
441
- #: core/core.php:2305
442
  msgid "No broken links found."
443
  msgstr "Não existem links offline."
444
 
445
- #: core/core.php:2312
446
  #, php-format
447
  msgid "%d URL in the work queue"
448
  msgid_plural "%d URLs in the work queue"
449
  msgstr[0] "%d URL em espera"
450
  msgstr[1] "%d URLs em espera"
451
 
452
- #: core/core.php:2315
453
  msgid "No URLs in the work queue."
454
  msgstr "Não existem URL em espera para verificação."
455
 
456
- #: core/core.php:2321
457
  #, php-format
458
  msgid "Detected %d unique URL"
459
  msgid_plural "Detected %d unique URLs"
460
  msgstr[0] "Detectada %d URL única"
461
  msgstr[1] "Detectadas %d URL únicas"
462
 
463
- #: core/core.php:2322
464
  #, php-format
465
  msgid "in %d link"
466
  msgid_plural "in %d links"
467
  msgstr[0] "em %d link"
468
  msgstr[1] "em %d links"
469
 
470
- #: core/core.php:2327
471
  msgid "and still searching..."
472
  msgstr "e procurando..."
473
 
474
- #: core/core.php:2333
475
  msgid "Searching your blog for links..."
476
  msgstr "Procurando links..."
477
 
478
- #: core/core.php:2335
479
- msgid "[%s] Broken links detected"
480
- msgstr "[%s] Links offline encontrados"
481
 
482
- #: core/core.php:2361
 
483
  msgid "Unknown"
484
  msgstr "Desconhecido"
485
 
486
- #: core/core.php:2425
487
- #: core/core.php:2463
488
- #: core/core.php:2526
489
  #, php-format
490
  msgid "Oops, I can't find the link %d"
491
  msgstr "Oops, não é possível encontrar o link %d"
492
 
493
- #: core/core.php:2438
494
  msgid "Oops, couldn't modify the link!"
495
  msgstr "Oops, não é possível modificar o link!"
496
 
497
- #: core/core.php:2441
498
- #: core/core.php:2552
499
  msgid "Error : link_id not specified"
500
  msgstr "Erro: link_id não especificado"
501
 
502
- #: core/core.php:2473
503
  msgid "Oops, the new URL is invalid!"
504
  msgstr "Oops, a nova URL não é válida"
505
 
506
- #: core/core.php:2484
507
- #: core/core.php:2535
508
  msgid "An unexpected error occured!"
509
  msgstr "Ocorreu um erro inesperado!"
510
 
511
- #: core/core.php:2502
512
  msgid "Error : link_id or new_url not specified"
513
  msgstr "Erro: link_id ou new_url não especificado"
514
 
515
- #: core/core.php:2561
516
  msgid "You don't have sufficient privileges to access this information!"
517
  msgstr "Não tem previlégios suficientes para aceder a esta informação!"
518
 
519
- #: core/core.php:2574
520
  msgid "Error : link ID not specified"
521
  msgstr "Erro: link ID não especificado"
522
 
523
- #: core/core.php:2588
524
  #, php-format
525
  msgid "Failed to load link details (%s)"
526
  msgstr "Erro a carregar os detalhes do link (%s)"
527
 
528
- #: core/core.php:2717
529
  msgid "Broken Link Checker"
530
  msgstr "Links offline"
531
 
532
- #: core/core.php:2731
533
  #, php-format
534
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
535
  msgstr "O directório temporário não está acessível; por favor, <a href=\"%s\">especifique um diferente</a>."
536
 
537
- #: core/core.php:2736
538
  #, php-format
539
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
540
  msgstr "Por favor, deve permitir que os plugins possam gravar dados no directório <code>%1$s</code> ou <a href=\"%2$s\">especificar um directório temporário personalizado</a>."
541
 
542
- #: core/core.php:2743
543
  msgid "Broken Link Checker can't create a lockfile."
544
  msgstr "Links offline não pode criar um ficheiro temporário."
545
 
546
- #: core/core.php:2748
547
  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."
548
  msgstr "Este plugin utiliza um sistema de bloqueio de ficheiros para garantir que somente se executa uma instância do algoritmo de verificação de links num momento determinado, uma vez que consome bastantes recursos. Infelizmente, o plugin não pode encontrar um directório que possa armazenar um ficheiro temporário - erro ao detectar a localização do directório temporário no servidor, assim como o própio directório do plugin não permite a escrita pelo PHP. Para resolver, terá que dar permissões de escrita ao directório ou especificar um directório temporário na configuração do plugin."
549
 
550
- #: core/core.php:2767
551
  msgid "PHP version"
552
  msgstr "Versão PHP"
553
 
554
- #: core/core.php:2773
555
  msgid "MySQL version"
556
  msgstr "Versão MySQL"
557
 
558
- #: core/core.php:2786
559
  msgid "You have an old version of CURL. Redirect detection may not work properly."
560
  msgstr "Versão de CURL obsoleta. A detecção de redirects pode não funcionar correctamente."
561
 
562
- #: core/core.php:2798
563
- #: core/core.php:2814
564
- #: core/core.php:2819
565
  msgid "Not installed"
566
  msgstr "Não instalado"
567
 
568
- #: core/core.php:2801
569
  msgid "CURL version"
570
  msgstr "Versão CURL"
571
 
572
- #: core/core.php:2807
573
  msgid "Installed"
574
  msgstr "Instalado"
575
 
576
- #: core/core.php:2820
577
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
578
  msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
579
 
580
- #: core/core.php:2831
581
  msgid "On"
582
  msgstr "Activado"
583
 
584
- #: core/core.php:2832
585
  msgid "Redirects may be detected as broken links when safe_mode is on."
586
  msgstr "Os redirects podem ser detectados como links offline quando o safe_mode está habilitado."
587
 
588
- #: core/core.php:2837
589
- #: core/core.php:2851
590
  msgid "Off"
591
  msgstr "Desactivado"
592
 
593
- #: core/core.php:2845
594
  #, php-format
595
  msgid "On ( %s )"
596
  msgstr "Activado ( %s )"
597
 
598
- #: core/core.php:2846
599
  msgid "Redirects may be detected as broken links when open_basedir is on."
600
  msgstr "Os redirects podem ser considerados links offline quando o open_basedir está activo."
601
 
602
- #: core/core.php:2865
603
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
604
  msgstr "Não foi possível criar um ficheiro. Por favor, especifique um directório temporário personalizado."
605
 
606
- #: core/core.php:2889
607
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
608
  msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
609
 
610
- #: core/core.php:2960
 
 
 
 
 
611
  #, php-format
612
  msgid "Broken Link Checker has detected %d new broken link on your site."
613
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
614
  msgstr[0] "Links offline detectou %d novo link sem ligação."
615
  msgstr[1] "Links offline detectou %d novos links sem ligação."
616
 
617
- #: core/core.php:2981
618
  #, php-format
619
  msgid "Here's a list of the first %d broken links:"
620
  msgid_plural "Here's a list of the first %d broken links:"
621
  msgstr[0] "Lista do primeiro %d link sem ligação:"
622
  msgstr[1] "Lista dos primeiros %d links sem ligação:"
623
 
624
- #: core/core.php:2989
625
  msgid "Here's a list of the new broken links: "
626
  msgstr "Novos links offline:"
627
 
628
- #: core/core.php:3001
629
  #, php-format
630
  msgid "Link text : %s"
631
  msgstr "Texto do Link : %s"
632
 
633
- #: core/core.php:3002
634
  #, php-format
635
  msgid "Link URL : <a href=\"%s\">%s</a>"
636
  msgstr "Link URL : <a href=\"%s\">%s</a>"
637
 
638
- #: core/core.php:3003
639
  #, php-format
640
  msgid "Source : %s"
641
  msgstr "Fonte : %s"
642
 
643
- #: core/core.php:3017
644
  msgid "You can see all broken links here:"
645
  msgstr "Links offline:"
646
 
647
- #: core/init.php:237
648
  msgid "Once Weekly"
649
  msgstr "Uma vez por semana"
650
 
651
- #: core/init.php:243
652
  msgid "Twice a Month"
653
  msgstr "Bi-Mensal"
654
 
655
  #: core/init.php:309
656
- msgid "Broken Link Checker installation failed"
657
- msgstr "Opções : Links offline"
658
 
659
- #: includes/any-post.php:398
660
  msgid "Edit"
661
  msgstr "Editar"
662
 
663
- #: includes/any-post.php:406
664
  msgid "Move this item to the Trash"
665
  msgstr "Mover este post para o lixo"
666
 
667
- #: includes/any-post.php:408
668
  msgid "Trash"
669
  msgstr "Lixo"
670
 
671
- #: includes/any-post.php:413
672
  msgid "Delete this item permanently"
673
  msgstr "Apagar este post definitivamente"
674
 
675
- #: includes/any-post.php:415
676
  msgid "Delete"
677
  msgstr "Apagar"
678
 
679
- #: includes/any-post.php:428
680
  #, php-format
681
  msgid "Preview &#8220;%s&#8221;"
682
  msgstr "Prever &#8220;%s&#8221;"
683
 
684
- #: includes/any-post.php:429
685
  msgid "Preview"
686
  msgstr "Pré-visualizar"
687
 
688
- #: includes/any-post.php:436
689
  #, php-format
690
  msgid "View &#8220;%s&#8221;"
691
  msgstr "Visualizar &#8220;%s&#8221;"
692
 
693
- #: includes/any-post.php:437
694
  msgid "View"
695
  msgstr "Ver"
696
 
697
- #: includes/any-post.php:456
698
  msgid "Edit this item"
699
  msgstr "Editar post"
700
 
701
- #: includes/any-post.php:520
702
  msgid "Nothing to update"
703
  msgstr "Sem actualização"
704
 
705
- #: includes/any-post.php:530
706
  #, php-format
707
  msgid "Updating post %d failed"
708
  msgstr "Actualização do post %d falhou"
709
 
710
- #: includes/any-post.php:565
711
  #, php-format
712
  msgid "Failed to delete post \"%s\" (%d)"
713
  msgstr "Erro ao apagar o post \"%s\" (%d)"
714
 
715
- #: includes/any-post.php:584
716
  #, php-format
717
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
718
  msgstr "Não é possível mover o post \"%s\" (%d) para o lixo porque a função está desabilitada"
719
 
720
- #: includes/any-post.php:604
721
  #, php-format
722
  msgid "Failed to move post \"%s\" (%d) to the trash"
723
  msgstr "Erro ao apagar o post \"%s\" (%d)"
724
 
725
- #: includes/any-post.php:712
726
  #, php-format
727
  msgid "%d post deleted."
728
  msgid_plural "%d posts deleted."
729
  msgstr[0] "%d post apagado."
730
  msgstr[1] "%d posts apagados."
731
 
732
- #: includes/any-post.php:714
733
  #, php-format
734
  msgid "%d page deleted."
735
  msgid_plural "%d pages deleted."
736
  msgstr[0] "%d página apagada."
737
  msgstr[1] "%d páginas apagadas."
738
 
739
- #: includes/any-post.php:716
740
  #, php-format
741
  msgid "%d \"%s\" deleted."
742
  msgid_plural "%d \"%s\" deleted."
743
  msgstr[0] "%d \"%s\" apagado."
744
  msgstr[1] "%d \"%s\" apagados."
745
 
746
- #: includes/any-post.php:735
747
  #, php-format
748
  msgid "%d post moved to the Trash."
749
  msgid_plural "%d posts moved to the Trash."
750
  msgstr[0] "%d post transferido para o lixo."
751
  msgstr[1] "%d posts transferidos para o lixo."
752
 
753
- #: includes/any-post.php:737
754
  #, php-format
755
  msgid "%d page moved to the Trash."
756
  msgid_plural "%d pages moved to the Trash."
757
  msgstr[0] "%d página transferida para o lixo."
758
  msgstr[1] "%d páginas transferidas para o lixo."
759
 
760
- #: includes/any-post.php:739
761
  #, php-format
762
  msgid "%d \"%s\" moved to the Trash."
763
  msgid_plural "%d \"%s\" moved to the Trash."
764
  msgstr[0] "%d \"%s\" transferido para o lixo."
765
  msgstr[1] "%d \"%s\" transferidos para o lixo."
766
 
767
- #: includes/containers.php:122
768
  #, php-format
769
  msgid "%d '%s' has been deleted"
770
  msgid_plural "%d '%s' have been deleted"
@@ -886,7 +907,6 @@ msgid "No links found (yet)"
886
  msgstr "Links (0)"
887
 
888
  #: includes/link-query.php:53
889
- #: includes/admin/search-form.php:32
890
  msgid "Search"
891
  msgstr "Procurar"
892
 
@@ -971,7 +991,7 @@ msgid "Wait..."
971
  msgstr "Espere ..."
972
 
973
  #: includes/admin/links-page-js.php:99
974
- #: includes/admin/table-printer.php:592
975
  msgid "Not broken"
976
  msgstr "Funcional"
977
 
@@ -1010,7 +1030,7 @@ msgstr "O plugin não removeu o link."
1010
 
1011
  #: includes/admin/links-page-js.php:361
1012
  #: includes/admin/table-printer.php:237
1013
- #: includes/admin/table-printer.php:586
1014
  msgid "Unlink"
1015
  msgstr "Remover link"
1016
 
@@ -1074,7 +1094,7 @@ msgid "URL"
1074
  msgstr "URL"
1075
 
1076
  #: includes/admin/search-form.php:48
1077
- #: includes/admin/table-printer.php:460
1078
  msgid "HTTP code"
1079
  msgstr "Código HTTP"
1080
 
@@ -1100,12 +1120,28 @@ msgid "Search Links"
1100
  msgstr "Procurar"
1101
 
1102
  #: includes/admin/search-form.php:113
1103
- #: includes/admin/table-printer.php:318
1104
- #: includes/admin/table-printer.php:600
1105
- #: includes/admin/table-printer.php:606
1106
  msgid "Cancel"
1107
  msgstr "Cancelar"
1108
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1109
  #: includes/admin/table-printer.php:150
1110
  msgid "Compact View"
1111
  msgstr "Visão compacta"
@@ -1127,7 +1163,7 @@ msgid "Bulk Actions"
1127
  msgstr "Edição em Massa"
1128
 
1129
  #: includes/admin/table-printer.php:233
1130
- #: includes/admin/table-printer.php:583
1131
  msgid "Edit URL"
1132
  msgstr "Editar URL"
1133
 
@@ -1151,125 +1187,125 @@ msgstr "Mover este post para o lixo"
1151
  msgid "Delete sources"
1152
  msgstr "Apagar fontes"
1153
 
1154
- #: includes/admin/table-printer.php:262
1155
  msgid "&laquo;"
1156
  msgstr "&laquo;"
1157
 
1158
- #: includes/admin/table-printer.php:263
1159
  msgid "&raquo;"
1160
  msgstr "&raquo;"
1161
 
1162
- #: includes/admin/table-printer.php:271
1163
  #, php-format
1164
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1165
  msgstr "Mostrando %s&#8211;%s de <span class=\"current-link-count\">%s</span>"
1166
 
1167
- #: includes/admin/table-printer.php:294
1168
  msgid "Bulk Edit URLs"
1169
  msgstr "Editar URLs em massa"
1170
 
1171
- #: includes/admin/table-printer.php:296
1172
  msgid "Find"
1173
  msgstr "Procura"
1174
 
1175
- #: includes/admin/table-printer.php:300
1176
  msgid "Replace with"
1177
  msgstr "Substituir com"
1178
 
1179
- #: includes/admin/table-printer.php:308
1180
  msgid "Case sensitive"
1181
  msgstr "Coincidir maiúsculas/minúsculas"
1182
 
1183
- #: includes/admin/table-printer.php:312
1184
  msgid "Regular expression"
1185
  msgstr "Expressão regular"
1186
 
1187
- #: includes/admin/table-printer.php:320
1188
  msgid "Update"
1189
  msgstr "Actualizar"
1190
 
1191
- #: includes/admin/table-printer.php:445
1192
  msgid "Post published on"
1193
  msgstr "Post publicado em"
1194
 
1195
- #: includes/admin/table-printer.php:450
1196
  msgid "Link last checked"
1197
  msgstr "Última verificação"
1198
 
1199
- #: includes/admin/table-printer.php:454
1200
  msgid "Never"
1201
  msgstr "Nunca"
1202
 
1203
- #: includes/admin/table-printer.php:465
1204
  msgid "Response time"
1205
  msgstr "Tempo de resposta"
1206
 
1207
- #: includes/admin/table-printer.php:467
1208
  #, php-format
1209
  msgid "%2.3f seconds"
1210
  msgstr "%2.3f segundos"
1211
 
1212
- #: includes/admin/table-printer.php:470
1213
  msgid "Final URL"
1214
  msgstr "URL final"
1215
 
1216
- #: includes/admin/table-printer.php:475
1217
  msgid "Redirect count"
1218
  msgstr "Contagem de redirects"
1219
 
1220
- #: includes/admin/table-printer.php:480
1221
  msgid "Instance count"
1222
  msgstr "Contagem de casos"
1223
 
1224
- #: includes/admin/table-printer.php:489
1225
  #, php-format
1226
  msgid "This link has failed %d time."
1227
  msgid_plural "This link has failed %d times."
1228
  msgstr[0] "Este link falhou %d vez."
1229
  msgstr[1] "Este link falhou %d vezes."
1230
 
1231
- #: includes/admin/table-printer.php:497
1232
  #, php-format
1233
  msgid "This link has been broken for %s."
1234
  msgstr "Link offline durante %s."
1235
 
1236
- #: includes/admin/table-printer.php:508
1237
  msgid "Log"
1238
  msgstr "Registro"
1239
 
1240
- #: includes/admin/table-printer.php:529
1241
  msgid "Show more info about this link"
1242
  msgstr "Mostrar mais informação sobre este link"
1243
 
1244
- #: includes/admin/table-printer.php:547
1245
  msgid "Checked"
1246
  msgstr "Verificado"
1247
 
1248
- #: includes/admin/table-printer.php:563
1249
  msgid "Broken for"
1250
  msgstr "Offline"
1251
 
1252
- #: includes/admin/table-printer.php:583
1253
  msgid "Edit link URL"
1254
  msgstr "Editar URL do link"
1255
 
1256
- #: includes/admin/table-printer.php:585
1257
  msgid "Remove this link from all posts"
1258
  msgstr "Eliminar este link"
1259
 
1260
- #: includes/admin/table-printer.php:591
1261
  msgid "Remove this link from the list of broken links and mark it as valid"
1262
  msgstr "Eliminar este link da lista dos links offline e marca-lo como válido"
1263
 
1264
- #: includes/admin/table-printer.php:600
1265
  msgid "Cancel URL editing"
1266
  msgstr "Cancelar a edição do URL"
1267
 
1268
- #: includes/admin/table-printer.php:607
1269
  msgid "Update URL"
1270
  msgstr "Actualizar URL"
1271
 
1272
- #: includes/admin/table-printer.php:629
1273
  msgid "[An orphaned link! This is a bug.]"
1274
  msgstr "[Um link orfão! Bug.]"
1275
 
@@ -1405,11 +1441,11 @@ msgstr "Ver \"%s\""
1405
  msgid "I don't know how to edit a '%s' [%d]."
1406
  msgstr "Não é possível editar '%s' [%d]."
1407
 
1408
- #: modules/extras/dailymotion-embed.php:24
1409
  msgid "DailyMotion Video"
1410
  msgstr "Vídeo DailyMotion"
1411
 
1412
- #: modules/extras/dailymotion-embed.php:25
1413
  msgid "Embedded DailyMotion video"
1414
  msgstr "Vídeo DailyMotion embutido"
1415
 
@@ -1417,85 +1453,85 @@ msgstr "Vídeo DailyMotion embutido"
1417
  msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1418
  msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
1419
 
1420
- #: modules/extras/mediafire.php:92
1421
- #: modules/extras/megaupload.php:110
1422
- #: modules/extras/rapidshare.php:143
1423
  msgid "Not Found"
1424
  msgstr "Não Encontrado"
1425
 
1426
- #: modules/extras/megaupload.php:117
1427
  msgid "File Temporarily Unavailable"
1428
  msgstr "Ficheiro Temporariamente Indisponível"
1429
 
1430
- #: modules/extras/megaupload.php:123
1431
  msgid "API Error"
1432
  msgstr "Erro API"
1433
 
1434
- #: modules/extras/rapidshare.php:162
1435
  msgid "RS Server Down"
1436
  msgstr "Servidor RS Desligado"
1437
 
1438
- #: modules/extras/rapidshare.php:169
1439
  msgid "File Blocked"
1440
  msgstr "Ficheiro Bloqueado"
1441
 
1442
- #: modules/extras/rapidshare.php:176
1443
  msgid "File Locked"
1444
  msgstr "Ficheiro Bloqueado"
1445
 
1446
- #: modules/extras/rapidshare.php:187
1447
  #, php-format
1448
  msgid "RapidShare : %s"
1449
  msgstr "Rapidshare : %s"
1450
 
1451
- #: modules/extras/rapidshare.php:193
1452
  #, php-format
1453
  msgid "RapidShare API error: %s"
1454
  msgstr "Rapidshare erro API: %s"
1455
 
1456
- #: modules/extras/vimeo-embed.php:25
1457
  msgid "Vimeo Video"
1458
  msgstr "Vídeo Vimeo"
1459
 
1460
- #: modules/extras/vimeo-embed.php:26
1461
  msgid "Embedded Vimeo video"
1462
  msgstr "Vídeo Vimeo embutido"
1463
 
1464
- #: modules/extras/youtube-embed.php:23
1465
  msgid "YouTube Video"
1466
  msgstr "Vídeo YouTube"
1467
 
1468
- #: modules/extras/youtube-embed.php:24
1469
  msgid "Embedded YouTube video"
1470
  msgstr "Vídeo YouTube embutido"
1471
 
1472
- #: modules/extras/youtube.php:64
1473
- #: modules/extras/youtube.php:67
1474
  msgid "Video Not Found"
1475
  msgstr "Vídeo Não Encontrado"
1476
 
1477
- #: modules/extras/youtube.php:75
1478
  msgid "Video Removed"
1479
  msgstr "Vídeo Apagado"
1480
 
1481
- #: modules/extras/youtube.php:83
1482
  msgid "Invalid Video ID"
1483
  msgstr "Vídeo ID Inválido"
1484
 
1485
- #: modules/extras/youtube.php:95
1486
  msgid "Video OK"
1487
  msgstr "Vídeo Ok"
1488
 
1489
- #: modules/extras/youtube.php:109
1490
  #, php-format
1491
  msgid "Video status : %s%s"
1492
  msgstr "Vídeo status : %s%s"
1493
 
1494
- #: modules/extras/youtube.php:128
1495
  msgid "Video Restricted"
1496
  msgstr "Vídeo Restricto"
1497
 
1498
- #: modules/extras/youtube.php:145
1499
  msgid "Unknown YouTube API response received."
1500
  msgstr "Resposta API YouTube desconhecida."
1501
 
@@ -1507,6 +1543,9 @@ msgstr "Imagem"
1507
  msgid "Custom field"
1508
  msgstr "Campo personalizado"
1509
 
 
 
 
1510
  #~ msgid ""
1511
  #~ "Checks your blog for broken links and missing images and notifies you on "
1512
  #~ "the dashboard if any are found."
1
+ # Translation of the WordPress plugin Broken Link Checker Pro 1.2.2 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
+ # Tradução em português pt_PT do plugin Broken Link Checker Pro 1.2.2 - 29/12/2010
5
  # Autor: PedroDM - <pm[at]mowster[dot]net>
6
  # Website: http://jobs.mowster.net/ - <jobs@mowster.net>
7
  #
9
  msgstr ""
10
  "Project-Id-Version: Broken Link Checker PT\n"
11
  "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2010-12-29 23:50-0000\n"
13
  "PO-Revision-Date: \n"
14
+ "Last-Translator: Janis Elsts <whiteshadow@w-shadow.com>\n"
15
  "Language-Team: MwJobs | http://jobs.mowster.net <jobs@mowster.net>\n"
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
  "X-Poedit-Language: Portuguese\n"
21
  "X-Poedit-Country: PORTUGAL\n"
22
  "X-Poedit-SourceCharset: utf-8\n"
36
  msgid "Automatically expand the widget if broken links have been detected"
37
  msgstr "Expandir automaticamente a caixa se existirem links offline"
38
 
39
+ #: core/core.php:324
40
  msgid "Link Checker Settings"
41
  msgstr "Definições do Links offline"
42
 
43
+ #: core/core.php:325
44
  msgid "Link Checker"
45
  msgstr "Links offline"
46
 
47
+ #: core/core.php:330
48
+ #: includes/link-query.php:26
49
  msgid "Broken Links"
50
  msgstr "Links offline"
51
 
52
+ #: core/core.php:346
53
  msgid "View Broken Links"
54
  msgstr "Ver Links offline"
55
 
56
+ #: core/core.php:361
57
+ msgid "Feedback"
58
+ msgstr "Feedback"
59
+
60
+ #: core/core.php:373
61
+ msgid "Go to Settings"
62
+ msgstr "Ir a Definições"
63
+
64
+ #: core/core.php:380
65
+ msgid "Go to Broken Links"
66
+ msgstr "Ir a Links offline"
67
+
68
+ #: core/core.php:398
69
  msgid "Settings"
70
  msgstr "Definições"
71
 
72
+ #: core/core.php:410
73
+ #: core/core.php:1213
74
  #, php-format
75
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
76
  msgstr "Erro: As tabelas do plugin na Base de dados não estão actualizadas! (Versão actual : %d, obrigatória : %d)"
77
 
78
+ #: core/core.php:549
79
  msgid "Settings saved."
80
  msgstr "Definições guardadas."
81
 
82
+ #: core/core.php:555
83
+ msgid "Thank you for your donation!"
84
+ msgstr "Obrigado pela sua colaboração!"
85
+
86
+ #: core/core.php:562
87
  msgid "Complete site recheck started."
88
  msgstr "Re-verificação completa do sitío iniciada."
89
 
90
+ #: core/core.php:571
91
+ #: core/core.php:2768
92
  msgid "Details"
93
  msgstr "Detalhes"
94
 
95
+ #: core/core.php:585
96
  msgid "General"
97
  msgstr "Geral"
98
 
99
+ #: core/core.php:586
100
  msgid "Look For Links In"
101
  msgstr "Procurar links"
102
 
103
+ #: core/core.php:587
104
  msgid "Which Links To Check"
105
  msgstr "Links para verificar"
106
 
107
+ #: core/core.php:588
108
  msgid "Protocols & APIs"
109
  msgstr "Protocolos & APIs"
110
 
111
+ #: core/core.php:589
112
  msgid "Advanced"
113
  msgstr "Avançado"
114
 
115
+ #: core/core.php:604
116
  msgid "Broken Link Checker Options"
117
  msgstr "Opções : Links offline"
118
 
119
+ #: core/core.php:646
120
  msgid "Status"
121
  msgstr "Estado"
122
 
123
+ #: core/core.php:648
124
  msgid "Show debug info"
125
  msgstr "Mostrar sistema"
126
 
127
+ #: core/core.php:676
128
  msgid "Check each link"
129
  msgstr "Verificar cada link"
130
 
131
+ #: core/core.php:681
132
  #, php-format
133
  msgid "Every %s hours"
134
  msgstr "Cada %s horas"
135
 
136
+ #: core/core.php:690
137
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
138
  msgstr "Os links existentes serão verificados com esta frequência. Os novos links comprovados logo que possível."
139
 
140
+ #: core/core.php:697
141
  msgid "E-mail notifications"
142
  msgstr "Notificações por e-mail"
143
 
144
+ #: core/core.php:703
145
  msgid "Send me e-mail notifications about newly detected broken links"
146
  msgstr "Enviar um e-mail notificando sobre os novos links offline detectados"
147
 
148
+ #: core/core.php:710
149
  msgid "Link tweaks"
150
  msgstr "Links puxados"
151
 
152
+ #: core/core.php:716
153
  msgid "Apply custom formatting to broken links"
154
  msgstr "Aplicar formatação personalizada para os links offline"
155
 
156
+ #: core/core.php:720
157
+ #: core/core.php:748
158
  msgid "Edit CSS"
159
  msgstr "Editar CSS"
160
 
161
+ #: core/core.php:744
162
  msgid "Apply custom formatting to removed links"
163
  msgstr "Aplicar formatação personalizada para os links removidos"
164
 
165
+ #: core/core.php:772
166
  msgid "Stop search engines from following broken links"
167
  msgstr "Não permitir aos motores de busca seguir os links offline"
168
 
169
+ #: core/core.php:789
170
  msgid "Look for links in"
171
  msgstr "Procurar links em"
172
 
173
+ #: core/core.php:800
174
  msgid "Post statuses"
175
  msgstr "Estado do Post"
176
 
177
+ #: core/core.php:833
178
  msgid "Link types"
179
  msgstr "Tipos de link"
180
 
181
+ #: core/core.php:839
182
  msgid "Error : All link parsers missing!"
183
  msgstr "Erro: Análises aos links não encontradas!"
184
 
185
+ #: core/core.php:846
186
  msgid "Exclusion list"
187
  msgstr "Lista de exclusão"
188
 
189
+ #: core/core.php:847
190
  msgid "Don't check links where the URL contains any of these words (one per line) :"
191
  msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha):"
192
 
193
+ #: core/core.php:865
194
  msgid "Check links using"
195
  msgstr "Verificar links utilizados"
196
 
197
+ #: core/core.php:884
198
+ #: includes/links.php:849
199
  msgid "Timeout"
200
  msgstr "Intervalo"
201
 
202
+ #: core/core.php:890
203
+ #: core/core.php:936
204
+ #: core/core.php:2895
205
  #, php-format
206
  msgid "%s seconds"
207
  msgstr "%s segundos"
208
 
209
+ #: core/core.php:899
210
  msgid "Links that take longer than this to load will be marked as broken."
211
  msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
212
 
213
+ #: core/core.php:906
214
  msgid "Link monitor"
215
  msgstr "Monitor de links"
216
 
217
+ #: core/core.php:914
218
  msgid "Run continuously while the Dashboard is open"
219
  msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
220
 
221
+ #: core/core.php:922
222
  msgid "Run hourly in the background"
223
  msgstr "Executar a cada hora em segundo plano"
224
 
225
+ #: core/core.php:930
226
  msgid "Max. execution time"
227
  msgstr "Tempo máximo de execução"
228
 
229
+ #: core/core.php:947
230
  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."
231
  msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analiza os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
232
 
233
+ #: core/core.php:957
234
  msgid "Custom temporary directory"
235
  msgstr "Pasta temporária personalizada"
236
 
237
+ #: core/core.php:966
238
+ #: includes/links.php:875
239
  msgid "OK"
240
  msgstr "Aceitar"
241
 
242
+ #: core/core.php:969
243
  msgid "Error : This directory isn't writable by PHP."
244
  msgstr "Erro: PHP não pode escrever nesse directório."
245
 
246
+ #: core/core.php:974
247
  msgid "Error : This directory doesn't exist."
248
  msgstr "Erro: Não existe esse directório."
249
 
250
+ #: core/core.php:982
251
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
252
  msgstr "Preencha este campo se deseja que o plugin utilize um directório personalizado para seus ficheiros temporários. Caso contrário, deixa-lo em branco."
253
 
254
+ #: core/core.php:989
255
  msgid "Server load limit"
256
  msgstr "Limite de carregamento do servidor"
257
 
258
+ #: core/core.php:1004
259
  #, php-format
260
  msgid "Current load : %s"
261
  msgstr "Carga actual : %s"
262
 
263
+ #: core/core.php:1010
264
  #, php-format
265
  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."
266
  msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
267
 
268
+ #: core/core.php:1018
269
  msgid "Not available"
270
  msgstr "Não disponível"
271
 
272
+ #: core/core.php:1020
273
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
274
  msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
275
 
276
+ #: core/core.php:1028
277
  msgid "Forced recheck"
278
  msgstr "Re-verificação forçada"
279
 
280
+ #: core/core.php:1031
281
  msgid "Re-check all pages"
282
  msgstr "Verificar de novo todas as páginas"
283
 
284
+ #: core/core.php:1035
285
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
286
  msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados do plugin e re-verificar todo o sítio desde o início."
287
 
288
+ #: core/core.php:1046
289
  msgid "Save Changes"
290
  msgstr "Guardar alterações"
291
 
292
+ #: core/core.php:1097
293
  msgid "Configure"
294
  msgstr "Configurar"
295
 
296
+ #: core/core.php:1179
 
 
 
 
297
  msgid "Check URLs entered in these custom fields (one per line) :"
298
  msgstr "Verificar as seguintes URL personalizadas (uma por linha):"
299
 
300
+ #: core/core.php:1313
301
+ #: core/core.php:1395
302
+ #: core/core.php:1427
303
  #, php-format
304
  msgid "Database error : %s"
305
  msgstr "Erro na Base de dados: %s"
306
 
307
+ #: core/core.php:1377
308
  msgid "You must enter a filter name!"
309
  msgstr "Deve introduzir um nome para o filtro!"
310
 
311
+ #: core/core.php:1381
312
  msgid "Invalid search query."
313
  msgstr "Procura inválida."
314
 
315
+ #: core/core.php:1390
316
  #, php-format
317
  msgid "Filter \"%s\" created"
318
  msgstr "Filtro \"%s\" criado"
319
 
320
+ #: core/core.php:1417
321
  msgid "Filter ID not specified."
322
  msgstr "ID do Filtro não especificado."
323
 
324
+ #: core/core.php:1424
325
  msgid "Filter deleted"
326
  msgstr "Filtro eliminado"
327
 
328
+ #: core/core.php:1472
329
  #, php-format
330
  msgid "Replaced %d redirect with a direct link"
331
  msgid_plural "Replaced %d redirects with direct links"
332
  msgstr[0] "Substituído %d redirect com link directo"
333
  msgstr[1] "Substituídos %d redirects com links directos"
334
 
335
+ #: core/core.php:1483
336
  #, php-format
337
  msgid "Failed to fix %d redirect"
338
  msgid_plural "Failed to fix %d redirects"
339
  msgstr[0] "Não foi possível reparar %d redirect"
340
  msgstr[1] "Não foi possível reparar %d redirects"
341
 
342
+ #: core/core.php:1493
343
  msgid "None of the selected links are redirects!"
344
  msgstr "Nenhum dos links seleccionados são redirects!"
345
 
346
+ #: core/core.php:1572
347
  #, php-format
348
  msgid "%d link updated."
349
  msgid_plural "%d links updated."
350
  msgstr[0] "%d link actualizado."
351
  msgstr[1] "%d links actualizados."
352
 
353
+ #: core/core.php:1583
354
  #, php-format
355
  msgid "Failed to update %d link."
356
  msgid_plural "Failed to update %d links."
357
  msgstr[0] "Erro a actualizar %d link."
358
  msgstr[1] "Erro a actualizar %d links."
359
 
360
+ #: core/core.php:1637
361
  #, php-format
362
  msgid "%d link removed"
363
  msgid_plural "%d links removed"
364
  msgstr[0] "%d link eliminado"
365
  msgstr[1] "%d links eliminados"
366
 
367
+ #: core/core.php:1648
368
  #, php-format
369
  msgid "Failed to remove %d link"
370
  msgid_plural "Failed to remove %d links"
371
  msgstr[0] "Erro a remover %d link"
372
  msgstr[1] "Erro a remover %d links"
373
 
374
+ #: core/core.php:1757
375
  #, php-format
376
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
377
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
378
  msgstr[0] "%d item foi evitado porque não pode ser movido para o lixo. Necessita de efectua-lo manualmente."
379
  msgstr[1] "%d itens foram evitados porque não podem ser movidos para o lixo. Necessita de efectua-lo manualmente."
380
 
381
+ #: core/core.php:1778
382
  msgid "Didn't find anything to delete!"
383
  msgstr "Não foi encontrado nada para apagar!"
384
 
385
+ #: core/core.php:1806
386
  #, php-format
387
  msgid "%d link scheduled for rechecking"
388
  msgid_plural "%d links scheduled for rechecking"
389
  msgstr[0] "%d link agendado para verificação"
390
  msgstr[1] "%d links agendados para verificação"
391
 
392
+ #: core/core.php:1851
393
+ #: core/core.php:2455
394
  msgid "This link was manually marked as working by the user."
395
  msgstr "Este link foi marcado manualmente como válido por outro utilizador."
396
 
397
+ #: core/core.php:1858
398
  #, php-format
399
  msgid "Couldn't modify link %d"
400
  msgstr "Oops, impossível modificar o link %d"
401
 
402
+ #: core/core.php:1869
403
  #, php-format
404
  msgid "%d link marked as not broken"
405
  msgid_plural "%d links marked as not broken"
406
  msgstr[0] "%d link marcado como funcional"
407
  msgstr[1] "%d links marcados como funcionais"
408
 
409
+ #: core/core.php:1908
410
  msgid "Table columns"
411
  msgstr "Colunas da Tabela"
412
 
413
+ #: core/core.php:1927
414
  msgid "Show on screen"
415
  msgstr "Mostrar no ecrán"
416
 
417
+ #: core/core.php:1934
418
  msgid "links"
419
  msgstr "links"
420
 
421
+ #: core/core.php:1935
422
  msgid "Apply"
423
  msgstr "Aplicar"
424
 
425
+ #: core/core.php:1939
426
  msgid "Misc"
427
  msgstr "Vários"
428
 
429
+ #: core/core.php:1954
430
  #, php-format
431
  msgid "Highlight links broken for at least %s days"
432
  msgstr "Sublinhar links offline pelo menos por %s dias"
433
 
434
+ #: core/core.php:1963
435
  msgid "Color-code status codes"
436
  msgstr "Cor-código status códigos"
437
 
438
+ #: core/core.php:1980
439
+ #: core/core.php:2440
440
+ #: core/core.php:2476
441
+ #: core/core.php:2539
442
  msgid "You're not allowed to do that!"
443
  msgstr "Não permitido!"
444
 
445
+ #: core/core.php:2321
446
  msgid "View broken links"
447
  msgstr "Ver links offline"
448
 
449
+ #: core/core.php:2322
450
  #, php-format
451
  msgid "Found %d broken link"
452
  msgid_plural "Found %d broken links"
453
  msgstr[0] "Encontrado %d Link offline"
454
  msgstr[1] "Encontrados %d Links offline"
455
 
456
+ #: core/core.php:2328
457
  msgid "No broken links found."
458
  msgstr "Não existem links offline."
459
 
460
+ #: core/core.php:2335
461
  #, php-format
462
  msgid "%d URL in the work queue"
463
  msgid_plural "%d URLs in the work queue"
464
  msgstr[0] "%d URL em espera"
465
  msgstr[1] "%d URLs em espera"
466
 
467
+ #: core/core.php:2338
468
  msgid "No URLs in the work queue."
469
  msgstr "Não existem URL em espera para verificação."
470
 
471
+ #: core/core.php:2344
472
  #, php-format
473
  msgid "Detected %d unique URL"
474
  msgid_plural "Detected %d unique URLs"
475
  msgstr[0] "Detectada %d URL única"
476
  msgstr[1] "Detectadas %d URL únicas"
477
 
478
+ #: core/core.php:2345
479
  #, php-format
480
  msgid "in %d link"
481
  msgid_plural "in %d links"
482
  msgstr[0] "em %d link"
483
  msgstr[1] "em %d links"
484
 
485
+ #: core/core.php:2350
486
  msgid "and still searching..."
487
  msgstr "e procurando..."
488
 
489
+ #: core/core.php:2356
490
  msgid "Searching your blog for links..."
491
  msgstr "Procurando links..."
492
 
493
+ #: core/core.php:2358
494
+ msgid "No links detected."
495
+ msgstr "Nenhuns links encontrados."
496
 
497
+ #: core/core.php:2384
498
+ #: includes/links.php:831
499
  msgid "Unknown"
500
  msgstr "Desconhecido"
501
 
502
+ #: core/core.php:2448
503
+ #: core/core.php:2486
504
+ #: core/core.php:2549
505
  #, php-format
506
  msgid "Oops, I can't find the link %d"
507
  msgstr "Oops, não é possível encontrar o link %d"
508
 
509
+ #: core/core.php:2461
510
  msgid "Oops, couldn't modify the link!"
511
  msgstr "Oops, não é possível modificar o link!"
512
 
513
+ #: core/core.php:2464
514
+ #: core/core.php:2575
515
  msgid "Error : link_id not specified"
516
  msgstr "Erro: link_id não especificado"
517
 
518
+ #: core/core.php:2496
519
  msgid "Oops, the new URL is invalid!"
520
  msgstr "Oops, a nova URL não é válida"
521
 
522
+ #: core/core.php:2507
523
+ #: core/core.php:2558
524
  msgid "An unexpected error occured!"
525
  msgstr "Ocorreu um erro inesperado!"
526
 
527
+ #: core/core.php:2525
528
  msgid "Error : link_id or new_url not specified"
529
  msgstr "Erro: link_id ou new_url não especificado"
530
 
531
+ #: core/core.php:2584
532
  msgid "You don't have sufficient privileges to access this information!"
533
  msgstr "Não tem previlégios suficientes para aceder a esta informação!"
534
 
535
+ #: core/core.php:2597
536
  msgid "Error : link ID not specified"
537
  msgstr "Erro: link ID não especificado"
538
 
539
+ #: core/core.php:2611
540
  #, php-format
541
  msgid "Failed to load link details (%s)"
542
  msgstr "Erro a carregar os detalhes do link (%s)"
543
 
544
+ #: core/core.php:2740
545
  msgid "Broken Link Checker"
546
  msgstr "Links offline"
547
 
548
+ #: core/core.php:2754
549
  #, php-format
550
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
551
  msgstr "O directório temporário não está acessível; por favor, <a href=\"%s\">especifique um diferente</a>."
552
 
553
+ #: core/core.php:2759
554
  #, php-format
555
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
556
  msgstr "Por favor, deve permitir que os plugins possam gravar dados no directório <code>%1$s</code> ou <a href=\"%2$s\">especificar um directório temporário personalizado</a>."
557
 
558
+ #: core/core.php:2766
559
  msgid "Broken Link Checker can't create a lockfile."
560
  msgstr "Links offline não pode criar um ficheiro temporário."
561
 
562
+ #: core/core.php:2771
563
  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."
564
  msgstr "Este plugin utiliza um sistema de bloqueio de ficheiros para garantir que somente se executa uma instância do algoritmo de verificação de links num momento determinado, uma vez que consome bastantes recursos. Infelizmente, o plugin não pode encontrar um directório que possa armazenar um ficheiro temporário - erro ao detectar a localização do directório temporário no servidor, assim como o própio directório do plugin não permite a escrita pelo PHP. Para resolver, terá que dar permissões de escrita ao directório ou especificar um directório temporário na configuração do plugin."
565
 
566
+ #: core/core.php:2790
567
  msgid "PHP version"
568
  msgstr "Versão PHP"
569
 
570
+ #: core/core.php:2796
571
  msgid "MySQL version"
572
  msgstr "Versão MySQL"
573
 
574
+ #: core/core.php:2809
575
  msgid "You have an old version of CURL. Redirect detection may not work properly."
576
  msgstr "Versão de CURL obsoleta. A detecção de redirects pode não funcionar correctamente."
577
 
578
+ #: core/core.php:2821
579
+ #: core/core.php:2837
580
+ #: core/core.php:2842
581
  msgid "Not installed"
582
  msgstr "Não instalado"
583
 
584
+ #: core/core.php:2824
585
  msgid "CURL version"
586
  msgstr "Versão CURL"
587
 
588
+ #: core/core.php:2830
589
  msgid "Installed"
590
  msgstr "Instalado"
591
 
592
+ #: core/core.php:2843
593
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
594
  msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
595
 
596
+ #: core/core.php:2854
597
  msgid "On"
598
  msgstr "Activado"
599
 
600
+ #: core/core.php:2855
601
  msgid "Redirects may be detected as broken links when safe_mode is on."
602
  msgstr "Os redirects podem ser detectados como links offline quando o safe_mode está habilitado."
603
 
604
+ #: core/core.php:2860
605
+ #: core/core.php:2874
606
  msgid "Off"
607
  msgstr "Desactivado"
608
 
609
+ #: core/core.php:2868
610
  #, php-format
611
  msgid "On ( %s )"
612
  msgstr "Activado ( %s )"
613
 
614
+ #: core/core.php:2869
615
  msgid "Redirects may be detected as broken links when open_basedir is on."
616
  msgstr "Os redirects podem ser considerados links offline quando o open_basedir está activo."
617
 
618
+ #: core/core.php:2888
619
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
620
  msgstr "Não foi possível criar um ficheiro. Por favor, especifique um directório temporário personalizado."
621
 
622
+ #: core/core.php:2912
623
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
624
  msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
625
 
626
+ #: core/core.php:2983
627
+ #, php-format
628
+ msgid "[%s] Broken links detected"
629
+ msgstr "[%s] Links offline encontrados"
630
+
631
+ #: core/core.php:2989
632
  #, php-format
633
  msgid "Broken Link Checker has detected %d new broken link on your site."
634
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
635
  msgstr[0] "Links offline detectou %d novo link sem ligação."
636
  msgstr[1] "Links offline detectou %d novos links sem ligação."
637
 
638
+ #: core/core.php:3004
639
  #, php-format
640
  msgid "Here's a list of the first %d broken links:"
641
  msgid_plural "Here's a list of the first %d broken links:"
642
  msgstr[0] "Lista do primeiro %d link sem ligação:"
643
  msgstr[1] "Lista dos primeiros %d links sem ligação:"
644
 
645
+ #: core/core.php:3012
646
  msgid "Here's a list of the new broken links: "
647
  msgstr "Novos links offline:"
648
 
649
+ #: core/core.php:3024
650
  #, php-format
651
  msgid "Link text : %s"
652
  msgstr "Texto do Link : %s"
653
 
654
+ #: core/core.php:3025
655
  #, php-format
656
  msgid "Link URL : <a href=\"%s\">%s</a>"
657
  msgstr "Link URL : <a href=\"%s\">%s</a>"
658
 
659
+ #: core/core.php:3026
660
  #, php-format
661
  msgid "Source : %s"
662
  msgstr "Fonte : %s"
663
 
664
+ #: core/core.php:3040
665
  msgid "You can see all broken links here:"
666
  msgstr "Links offline:"
667
 
668
+ #: core/init.php:234
669
  msgid "Once Weekly"
670
  msgstr "Uma vez por semana"
671
 
672
+ #: core/init.php:240
673
  msgid "Twice a Month"
674
  msgstr "Bi-Mensal"
675
 
676
  #: core/init.php:309
677
+ msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
678
+ msgstr "A instalação do plugin Links offline falhou. Desactive e reactive o plugin."
679
 
680
+ #: includes/any-post.php:397
681
  msgid "Edit"
682
  msgstr "Editar"
683
 
684
+ #: includes/any-post.php:405
685
  msgid "Move this item to the Trash"
686
  msgstr "Mover este post para o lixo"
687
 
688
+ #: includes/any-post.php:407
689
  msgid "Trash"
690
  msgstr "Lixo"
691
 
692
+ #: includes/any-post.php:412
693
  msgid "Delete this item permanently"
694
  msgstr "Apagar este post definitivamente"
695
 
696
+ #: includes/any-post.php:414
697
  msgid "Delete"
698
  msgstr "Apagar"
699
 
700
+ #: includes/any-post.php:427
701
  #, php-format
702
  msgid "Preview &#8220;%s&#8221;"
703
  msgstr "Prever &#8220;%s&#8221;"
704
 
705
+ #: includes/any-post.php:428
706
  msgid "Preview"
707
  msgstr "Pré-visualizar"
708
 
709
+ #: includes/any-post.php:435
710
  #, php-format
711
  msgid "View &#8220;%s&#8221;"
712
  msgstr "Visualizar &#8220;%s&#8221;"
713
 
714
+ #: includes/any-post.php:436
715
  msgid "View"
716
  msgstr "Ver"
717
 
718
+ #: includes/any-post.php:455
719
  msgid "Edit this item"
720
  msgstr "Editar post"
721
 
722
+ #: includes/any-post.php:519
723
  msgid "Nothing to update"
724
  msgstr "Sem actualização"
725
 
726
+ #: includes/any-post.php:529
727
  #, php-format
728
  msgid "Updating post %d failed"
729
  msgstr "Actualização do post %d falhou"
730
 
731
+ #: includes/any-post.php:564
732
  #, php-format
733
  msgid "Failed to delete post \"%s\" (%d)"
734
  msgstr "Erro ao apagar o post \"%s\" (%d)"
735
 
736
+ #: includes/any-post.php:583
737
  #, php-format
738
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
739
  msgstr "Não é possível mover o post \"%s\" (%d) para o lixo porque a função está desabilitada"
740
 
741
+ #: includes/any-post.php:603
742
  #, php-format
743
  msgid "Failed to move post \"%s\" (%d) to the trash"
744
  msgstr "Erro ao apagar o post \"%s\" (%d)"
745
 
746
+ #: includes/any-post.php:711
747
  #, php-format
748
  msgid "%d post deleted."
749
  msgid_plural "%d posts deleted."
750
  msgstr[0] "%d post apagado."
751
  msgstr[1] "%d posts apagados."
752
 
753
+ #: includes/any-post.php:713
754
  #, php-format
755
  msgid "%d page deleted."
756
  msgid_plural "%d pages deleted."
757
  msgstr[0] "%d página apagada."
758
  msgstr[1] "%d páginas apagadas."
759
 
760
+ #: includes/any-post.php:715
761
  #, php-format
762
  msgid "%d \"%s\" deleted."
763
  msgid_plural "%d \"%s\" deleted."
764
  msgstr[0] "%d \"%s\" apagado."
765
  msgstr[1] "%d \"%s\" apagados."
766
 
767
+ #: includes/any-post.php:734
768
  #, php-format
769
  msgid "%d post moved to the Trash."
770
  msgid_plural "%d posts moved to the Trash."
771
  msgstr[0] "%d post transferido para o lixo."
772
  msgstr[1] "%d posts transferidos para o lixo."
773
 
774
+ #: includes/any-post.php:736
775
  #, php-format
776
  msgid "%d page moved to the Trash."
777
  msgid_plural "%d pages moved to the Trash."
778
  msgstr[0] "%d página transferida para o lixo."
779
  msgstr[1] "%d páginas transferidas para o lixo."
780
 
781
+ #: includes/any-post.php:738
782
  #, php-format
783
  msgid "%d \"%s\" moved to the Trash."
784
  msgid_plural "%d \"%s\" moved to the Trash."
785
  msgstr[0] "%d \"%s\" transferido para o lixo."
786
  msgstr[1] "%d \"%s\" transferidos para o lixo."
787
 
788
+ #: includes/containers.php:123
789
  #, php-format
790
  msgid "%d '%s' has been deleted"
791
  msgid_plural "%d '%s' have been deleted"
907
  msgstr "Links (0)"
908
 
909
  #: includes/link-query.php:53
 
910
  msgid "Search"
911
  msgstr "Procurar"
912
 
991
  msgstr "Espere ..."
992
 
993
  #: includes/admin/links-page-js.php:99
994
+ #: includes/admin/table-printer.php:587
995
  msgid "Not broken"
996
  msgstr "Funcional"
997
 
1030
 
1031
  #: includes/admin/links-page-js.php:361
1032
  #: includes/admin/table-printer.php:237
1033
+ #: includes/admin/table-printer.php:581
1034
  msgid "Unlink"
1035
  msgstr "Remover link"
1036
 
1094
  msgstr "URL"
1095
 
1096
  #: includes/admin/search-form.php:48
1097
+ #: includes/admin/table-printer.php:455
1098
  msgid "HTTP code"
1099
  msgstr "Código HTTP"
1100
 
1120
  msgstr "Procurar"
1121
 
1122
  #: includes/admin/search-form.php:113
1123
+ #: includes/admin/table-printer.php:313
1124
+ #: includes/admin/table-printer.php:595
1125
+ #: includes/admin/table-printer.php:601
1126
  msgid "Cancel"
1127
  msgstr "Cancelar"
1128
 
1129
+ #: includes/admin/sidebar.php:2
1130
+ msgid "Donate $10, $20 or $50!"
1131
+ msgstr "Donativo $10, $20 ou $50!"
1132
+
1133
+ #: includes/admin/sidebar.php:5
1134
+ msgid "If you like this plugin, please donate to support development and maintenance!"
1135
+ msgstr "Se gosta deste plugin, por favor faça um donativo para financiar o seu desenvolvimento e manutenção!"
1136
+
1137
+ #: includes/admin/sidebar.php:22
1138
+ msgid "Return to WordPress Dashboard"
1139
+ msgstr "Regressar ao Painel"
1140
+
1141
+ #: includes/admin/sidebar.php:34
1142
+ msgid "Recommended"
1143
+ msgstr "Recomendado"
1144
+
1145
  #: includes/admin/table-printer.php:150
1146
  msgid "Compact View"
1147
  msgstr "Visão compacta"
1163
  msgstr "Edição em Massa"
1164
 
1165
  #: includes/admin/table-printer.php:233
1166
+ #: includes/admin/table-printer.php:578
1167
  msgid "Edit URL"
1168
  msgstr "Editar URL"
1169
 
1187
  msgid "Delete sources"
1188
  msgstr "Apagar fontes"
1189
 
1190
+ #: includes/admin/table-printer.php:257
1191
  msgid "&laquo;"
1192
  msgstr "&laquo;"
1193
 
1194
+ #: includes/admin/table-printer.php:258
1195
  msgid "&raquo;"
1196
  msgstr "&raquo;"
1197
 
1198
+ #: includes/admin/table-printer.php:266
1199
  #, php-format
1200
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1201
  msgstr "Mostrando %s&#8211;%s de <span class=\"current-link-count\">%s</span>"
1202
 
1203
+ #: includes/admin/table-printer.php:289
1204
  msgid "Bulk Edit URLs"
1205
  msgstr "Editar URLs em massa"
1206
 
1207
+ #: includes/admin/table-printer.php:291
1208
  msgid "Find"
1209
  msgstr "Procura"
1210
 
1211
+ #: includes/admin/table-printer.php:295
1212
  msgid "Replace with"
1213
  msgstr "Substituir com"
1214
 
1215
+ #: includes/admin/table-printer.php:303
1216
  msgid "Case sensitive"
1217
  msgstr "Coincidir maiúsculas/minúsculas"
1218
 
1219
+ #: includes/admin/table-printer.php:307
1220
  msgid "Regular expression"
1221
  msgstr "Expressão regular"
1222
 
1223
+ #: includes/admin/table-printer.php:315
1224
  msgid "Update"
1225
  msgstr "Actualizar"
1226
 
1227
+ #: includes/admin/table-printer.php:440
1228
  msgid "Post published on"
1229
  msgstr "Post publicado em"
1230
 
1231
+ #: includes/admin/table-printer.php:445
1232
  msgid "Link last checked"
1233
  msgstr "Última verificação"
1234
 
1235
+ #: includes/admin/table-printer.php:449
1236
  msgid "Never"
1237
  msgstr "Nunca"
1238
 
1239
+ #: includes/admin/table-printer.php:460
1240
  msgid "Response time"
1241
  msgstr "Tempo de resposta"
1242
 
1243
+ #: includes/admin/table-printer.php:462
1244
  #, php-format
1245
  msgid "%2.3f seconds"
1246
  msgstr "%2.3f segundos"
1247
 
1248
+ #: includes/admin/table-printer.php:465
1249
  msgid "Final URL"
1250
  msgstr "URL final"
1251
 
1252
+ #: includes/admin/table-printer.php:470
1253
  msgid "Redirect count"
1254
  msgstr "Contagem de redirects"
1255
 
1256
+ #: includes/admin/table-printer.php:475
1257
  msgid "Instance count"
1258
  msgstr "Contagem de casos"
1259
 
1260
+ #: includes/admin/table-printer.php:484
1261
  #, php-format
1262
  msgid "This link has failed %d time."
1263
  msgid_plural "This link has failed %d times."
1264
  msgstr[0] "Este link falhou %d vez."
1265
  msgstr[1] "Este link falhou %d vezes."
1266
 
1267
+ #: includes/admin/table-printer.php:492
1268
  #, php-format
1269
  msgid "This link has been broken for %s."
1270
  msgstr "Link offline durante %s."
1271
 
1272
+ #: includes/admin/table-printer.php:503
1273
  msgid "Log"
1274
  msgstr "Registro"
1275
 
1276
+ #: includes/admin/table-printer.php:524
1277
  msgid "Show more info about this link"
1278
  msgstr "Mostrar mais informação sobre este link"
1279
 
1280
+ #: includes/admin/table-printer.php:542
1281
  msgid "Checked"
1282
  msgstr "Verificado"
1283
 
1284
+ #: includes/admin/table-printer.php:558
1285
  msgid "Broken for"
1286
  msgstr "Offline"
1287
 
1288
+ #: includes/admin/table-printer.php:578
1289
  msgid "Edit link URL"
1290
  msgstr "Editar URL do link"
1291
 
1292
+ #: includes/admin/table-printer.php:580
1293
  msgid "Remove this link from all posts"
1294
  msgstr "Eliminar este link"
1295
 
1296
+ #: includes/admin/table-printer.php:586
1297
  msgid "Remove this link from the list of broken links and mark it as valid"
1298
  msgstr "Eliminar este link da lista dos links offline e marca-lo como válido"
1299
 
1300
+ #: includes/admin/table-printer.php:595
1301
  msgid "Cancel URL editing"
1302
  msgstr "Cancelar a edição do URL"
1303
 
1304
+ #: includes/admin/table-printer.php:602
1305
  msgid "Update URL"
1306
  msgstr "Actualizar URL"
1307
 
1308
+ #: includes/admin/table-printer.php:624
1309
  msgid "[An orphaned link! This is a bug.]"
1310
  msgstr "[Um link orfão! Bug.]"
1311
 
1441
  msgid "I don't know how to edit a '%s' [%d]."
1442
  msgstr "Não é possível editar '%s' [%d]."
1443
 
1444
+ #: modules/extras/dailymotion-embed.php:23
1445
  msgid "DailyMotion Video"
1446
  msgstr "Vídeo DailyMotion"
1447
 
1448
+ #: modules/extras/dailymotion-embed.php:24
1449
  msgid "Embedded DailyMotion video"
1450
  msgstr "Vídeo DailyMotion embutido"
1451
 
1453
  msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1454
  msgstr "Vídeos embutidos não podem ser editados utilizando o Links offline. Por favor, editar ou substituir manualmente o vídeo em questão."
1455
 
1456
+ #: modules/extras/mediafire.php:91
1457
+ #: modules/extras/megaupload.php:109
1458
+ #: modules/extras/rapidshare.php:142
1459
  msgid "Not Found"
1460
  msgstr "Não Encontrado"
1461
 
1462
+ #: modules/extras/megaupload.php:116
1463
  msgid "File Temporarily Unavailable"
1464
  msgstr "Ficheiro Temporariamente Indisponível"
1465
 
1466
+ #: modules/extras/megaupload.php:122
1467
  msgid "API Error"
1468
  msgstr "Erro API"
1469
 
1470
+ #: modules/extras/rapidshare.php:161
1471
  msgid "RS Server Down"
1472
  msgstr "Servidor RS Desligado"
1473
 
1474
+ #: modules/extras/rapidshare.php:168
1475
  msgid "File Blocked"
1476
  msgstr "Ficheiro Bloqueado"
1477
 
1478
+ #: modules/extras/rapidshare.php:175
1479
  msgid "File Locked"
1480
  msgstr "Ficheiro Bloqueado"
1481
 
1482
+ #: modules/extras/rapidshare.php:186
1483
  #, php-format
1484
  msgid "RapidShare : %s"
1485
  msgstr "Rapidshare : %s"
1486
 
1487
+ #: modules/extras/rapidshare.php:192
1488
  #, php-format
1489
  msgid "RapidShare API error: %s"
1490
  msgstr "Rapidshare erro API: %s"
1491
 
1492
+ #: modules/extras/vimeo-embed.php:24
1493
  msgid "Vimeo Video"
1494
  msgstr "Vídeo Vimeo"
1495
 
1496
+ #: modules/extras/vimeo-embed.php:25
1497
  msgid "Embedded Vimeo video"
1498
  msgstr "Vídeo Vimeo embutido"
1499
 
1500
+ #: modules/extras/youtube-embed.php:22
1501
  msgid "YouTube Video"
1502
  msgstr "Vídeo YouTube"
1503
 
1504
+ #: modules/extras/youtube-embed.php:23
1505
  msgid "Embedded YouTube video"
1506
  msgstr "Vídeo YouTube embutido"
1507
 
1508
+ #: modules/extras/youtube.php:63
1509
+ #: modules/extras/youtube.php:66
1510
  msgid "Video Not Found"
1511
  msgstr "Vídeo Não Encontrado"
1512
 
1513
+ #: modules/extras/youtube.php:74
1514
  msgid "Video Removed"
1515
  msgstr "Vídeo Apagado"
1516
 
1517
+ #: modules/extras/youtube.php:82
1518
  msgid "Invalid Video ID"
1519
  msgstr "Vídeo ID Inválido"
1520
 
1521
+ #: modules/extras/youtube.php:94
1522
  msgid "Video OK"
1523
  msgstr "Vídeo Ok"
1524
 
1525
+ #: modules/extras/youtube.php:108
1526
  #, php-format
1527
  msgid "Video status : %s%s"
1528
  msgstr "Vídeo status : %s%s"
1529
 
1530
+ #: modules/extras/youtube.php:127
1531
  msgid "Video Restricted"
1532
  msgstr "Vídeo Restricto"
1533
 
1534
+ #: modules/extras/youtube.php:144
1535
  msgid "Unknown YouTube API response received."
1536
  msgstr "Resposta API YouTube desconhecida."
1537
 
1543
  msgid "Custom field"
1544
  msgstr "Campo personalizado"
1545
 
1546
+ #~ msgid "Upgrade to Pro to enable this feature"
1547
+ #~ msgstr "Actualizar para Pro para aceder a esta função"
1548
+
1549
  #~ msgid ""
1550
  #~ "Checks your blog for broken links and missing images and notifies you on "
1551
  #~ "the dashboard if any are found."
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
- Stable tag: 1.2.2
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
@@ -84,6 +84,13 @@ To upgrade your installation
84
 
85
  == Changelog ==
86
 
 
 
 
 
 
 
 
87
  = 1.2.2 =
88
  * All Pro features now included in the free version!
89
  * Updated Japanese translation.
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
+ Stable tag: 1.2.3
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
84
 
85
  == Changelog ==
86
 
87
+ = 1.2.3 =
88
+ * Updated Portuguese translation.
89
+ * Updated German translation.
90
+ * Switched to a simpler, MySQL-based locking mechanism. Note: This may cause trouble for people who've hacked their WP install to use persistent database connections.
91
+ * Added a poll asking for feedback on a new BLC-related web application idea.
92
+ * Minor wording change in the debug info table.
93
+
94
  = 1.2.2 =
95
  * All Pro features now included in the free version!
96
  * Updated Japanese translation.