Broken Link Checker - Version 0.9.4.2

Version Description

  • Added more debugging data to the "Show debug info" table.
  • Added missing indexes to the instance table.
  • Yet more PHP4 compatibility fixes.
  • Added a notification bubble with the current number of broken links to the Tools -> Broken Links menu item.
Download this release

Release Info

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

Code changes from version 0.9.4.1 to 0.9.4.2

broken-link-checker.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Broken Link Checker
5
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
6
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
7
- Version: 0.9.4.1
8
  Author: Janis Elsts
9
  Author URI: http://w-shadow.com/blog/
10
  Text Domain: broken-link-checker
@@ -86,7 +86,8 @@ $blc_config_manager = new blcConfigurationManager(
86
  'custom_fields' => array(), //List of custom fields that can contain URLs and should be checked.
87
  'check_comment_links' => true, //Whether to check links found in comments
88
 
89
- 'autoexpand_widget' => true, //Autoexpand the Dashboard widget if broken links are detected
 
90
 
91
  'need_resynch' => false, //[Internal flag] True if there are unparsed items.
92
  'current_db_version' => 0, //The currently set-up version of the plugin's tables
4
  Plugin Name: Broken Link Checker
5
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
6
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
7
+ Version: 0.9.4.2
8
  Author: Janis Elsts
9
  Author URI: http://w-shadow.com/blog/
10
  Text Domain: broken-link-checker
86
  'custom_fields' => array(), //List of custom fields that can contain URLs and should be checked.
87
  'check_comment_links' => true, //Whether to check links found in comments
88
 
89
+ 'autoexpand_widget' => true, //Autoexpand the Dashboard widget if broken links are detected
90
+ 'show_link_count_bubble' => true, //Display a notification bubble in the menu when broken links are found
91
 
92
  'need_resynch' => false, //[Internal flag] True if there are unparsed items.
93
  'current_db_version' => 0, //The currently set-up version of the plugin's tables
core.php CHANGED
@@ -527,7 +527,8 @@ EOD;
527
 
528
  PRIMARY KEY (`instance_id`),
529
  KEY `link_id` (`link_id`),
530
- KEY `source_id` (`container_id`,`container_type`)
 
531
  ) {$charset_collate};
532
  EOT;
533
  if ( $wpdb->query($q) === false ){
@@ -663,6 +664,12 @@ EOZ;
663
  $this->optimize_database();
664
  }
665
 
 
 
 
 
 
 
666
  function admin_menu(){
667
  if (current_user_can('manage_options'))
668
  add_filter('plugin_action_links', array(&$this, 'plugin_action_links'), 10, 2);
@@ -674,9 +681,24 @@ EOZ;
674
  'link-checker-settings',array(&$this, 'options_page')
675
  );
676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
677
  $links_page_hook = add_management_page(
678
  __('View Broken Links', 'broken-link-checker'),
679
- __('Broken Links', 'broken-link-checker'),
680
  'edit_others_posts',
681
  'view-broken-links',array(&$this, 'links_page')
682
  );
@@ -832,7 +854,7 @@ EOZ;
832
  }
833
  $this->conf->options['send_email_notifications'] = $email_notifications;
834
 
835
- //Commen link checking on/off
836
  $old_setting = $this->conf->options['check_comment_links'];
837
  $this->conf->options['check_comment_links'] = !empty($_POST['check_comment_links']);
838
  //If comment link checking was just turned on we need to load the comment manager
@@ -840,7 +862,7 @@ EOZ;
840
  //TODO: More elegant handling of freshly enabled/disabled container types
841
  if ( !$old_setting && $this->conf->options['check_comment_links'] ){
842
  include $blc_directory . '/includes/containers/comment.php';
843
- $containerRegistry = blcContainerRegistry::getInstance();
844
  $comment_manager = $containerRegistry->get_manager('comment');
845
  if ( $comment_manager ){
846
  $comment_manager->resynch();
@@ -859,7 +881,7 @@ EOZ;
859
  inefficient.
860
  */
861
  if ( ( count($diff1) > 0 ) || ( count($diff2) > 0 ) ){
862
- $containerRegistry = blcContainerRegistry::getInstance();
863
  $manager = $containerRegistry->get_manager('custom_field');
864
  if ( !is_null($manager) ){
865
  $manager->resynch();
@@ -1270,7 +1292,7 @@ EOZ;
1270
 
1271
  function links_page(){
1272
  global $wpdb, $blclog;
1273
- $blc_link_query = blcLinkQuery::getInstance();
1274
 
1275
  //Sanity check : Make sure the plugin's tables are all set up.
1276
  if ( $this->db_version != $this->conf->options['current_db_version'] ) {
@@ -1390,11 +1412,12 @@ EOZ;
1390
  <script type='text/javascript'>
1391
  var blc_current_filter = '<?php echo $filter_id; ?>';
1392
  var blc_is_broken_filter = <?php
1393
- if ( ($filter_id == 'broken') || ( isset($current_filter['params']['s_filter']) && ($current_filter['params']['s_filter'] = 'broken') ) ){
1394
- echo 'true';
1395
- } else {
1396
- echo 'false';
1397
- }
 
1398
  ?>;
1399
  </script>
1400
 
@@ -1694,7 +1717,7 @@ EOZ;
1694
  $msg_class = 'error';
1695
  } else {
1696
  //Save the new filter
1697
- $blc_link_query = blcLinkQuery::getInstance();
1698
  $filter_id = $blc_link_query->create_custom_filter($_POST['name'], $_POST['params']);
1699
 
1700
  if ( $filter_id ){
@@ -1730,7 +1753,7 @@ EOZ;
1730
  $msg_class = 'error';
1731
  } else {
1732
  //Try to delete the filter
1733
- $blc_link_query = blcLinkQuery::getInstance();
1734
  if ( $blc_link_query->delete_custom_filter($_POST['filter_id']) ){
1735
  //Success
1736
  $message = __('Filter deleted', 'broken-link-checker');
@@ -1881,7 +1904,7 @@ EOZ;
1881
  * @return array Confirmation message and its CSS class.
1882
  */
1883
  function do_bulk_delete_sources($selected_links){
1884
- $blc_container_registry = blcContainerRegistry::getInstance();
1885
 
1886
  $message = '';
1887
  $msg_class = 'updated';
@@ -2461,12 +2484,12 @@ EOZ;
2461
 
2462
  //Only check links that have at least one valid instance (i.e. an instance exists and
2463
  //it corresponds to one of the currently loaded container/parser types).
2464
- $containerRegistry = blcContainerRegistry::getInstance();
2465
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
2466
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
2467
  $loaded_containers = "'" . implode("', '", $loaded_containers) . "'";
2468
 
2469
- $parserRegistry = blcParserRegistry::getInstance();
2470
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
2471
  $loaded_parsers = array_map(array(&$wpdb, 'escape'), $loaded_parsers);
2472
  $loaded_parsers = "'" . implode("', '", $loaded_parsers) . "'";
@@ -2647,7 +2670,7 @@ EOZ;
2647
  */
2648
  function get_status(){
2649
  global $wpdb;
2650
- $blc_link_query = blcLinkQuery::getInstance();
2651
 
2652
  $check_threshold=date('Y-m-d H:i:s', strtotime('-'.$this->conf->options['check_threshold'].' hours'));
2653
  $recheck_threshold=date('Y-m-d H:i:s', time() - $this->conf->options['recheck_threshold']);
@@ -3193,6 +3216,51 @@ EOZ;
3193
  'value' => sprintf(__('%s seconds'), ini_get('max_execution_time')),
3194
  );
3195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3196
  return $debug;
3197
  }
3198
 
527
 
528
  PRIMARY KEY (`instance_id`),
529
  KEY `link_id` (`link_id`),
530
+ KEY `source_id` (`container_type`, `container_id`),
531
+ KEY `parser_type` (`parser_type`)
532
  ) {$charset_collate};
533
  EOT;
534
  if ( $wpdb->query($q) === false ){
664
  $this->optimize_database();
665
  }
666
 
667
+ /**
668
+ * Create the plugin's menu items and enqueue their scripts and CSS.
669
+ * Callback for the 'admin_menu' action.
670
+ *
671
+ * @return void
672
+ */
673
  function admin_menu(){
674
  if (current_user_can('manage_options'))
675
  add_filter('plugin_action_links', array(&$this, 'plugin_action_links'), 10, 2);
681
  'link-checker-settings',array(&$this, 'options_page')
682
  );
683
 
684
+ $menu_title = __('Broken Links', 'broken-link-checker');
685
+ if ( $this->conf->options['show_link_count_bubble'] ){
686
+ //To make it easier to notice when broken links appear, display the current number of
687
+ //broken links in a little bubble notification in the "Broken Links" menu.
688
+ //(Similar to how the number of plugin updates and unmoderated comments is displayed).
689
+ $blc_link_query = & blcLinkQuery::getInstance();
690
+ $broken_links = $blc_link_query->get_filter_links('broken', array('count_only' => true));
691
+ if ( $broken_links > 0 ){
692
+ //TODO: Appropriating existing CSS classes for my own purposes is hacky. Fix eventually.
693
+ $menu_title .= sprintf(
694
+ ' <span class="update-plugins"><span class="update-count blc-menu-bubble">%d</span></span>',
695
+ $broken_links
696
+ );
697
+ }
698
+ }
699
  $links_page_hook = add_management_page(
700
  __('View Broken Links', 'broken-link-checker'),
701
+ $menu_title,
702
  'edit_others_posts',
703
  'view-broken-links',array(&$this, 'links_page')
704
  );
854
  }
855
  $this->conf->options['send_email_notifications'] = $email_notifications;
856
 
857
+ //Comment link checking on/off
858
  $old_setting = $this->conf->options['check_comment_links'];
859
  $this->conf->options['check_comment_links'] = !empty($_POST['check_comment_links']);
860
  //If comment link checking was just turned on we need to load the comment manager
862
  //TODO: More elegant handling of freshly enabled/disabled container types
863
  if ( !$old_setting && $this->conf->options['check_comment_links'] ){
864
  include $blc_directory . '/includes/containers/comment.php';
865
+ $containerRegistry = & blcContainerRegistry::getInstance();
866
  $comment_manager = $containerRegistry->get_manager('comment');
867
  if ( $comment_manager ){
868
  $comment_manager->resynch();
881
  inefficient.
882
  */
883
  if ( ( count($diff1) > 0 ) || ( count($diff2) > 0 ) ){
884
+ $containerRegistry = & blcContainerRegistry::getInstance();
885
  $manager = $containerRegistry->get_manager('custom_field');
886
  if ( !is_null($manager) ){
887
  $manager->resynch();
1292
 
1293
  function links_page(){
1294
  global $wpdb, $blclog;
1295
+ $blc_link_query = & blcLinkQuery::getInstance();
1296
 
1297
  //Sanity check : Make sure the plugin's tables are all set up.
1298
  if ( $this->db_version != $this->conf->options['current_db_version'] ) {
1412
  <script type='text/javascript'>
1413
  var blc_current_filter = '<?php echo $filter_id; ?>';
1414
  var blc_is_broken_filter = <?php
1415
+ //TODO: Simplify this. Maybe overhaul the filter system to let us query the effective filter.
1416
+ $is_broken_filter =
1417
+ ($filter_id == 'broken')
1418
+ || ( isset($current_filter['params']['s_filter']) && ($current_filter['params']['s_filter'] == 'broken') )
1419
+ || ( isset($_GET['s_filter']) && ($_GET['s_filter'] == 'broken') );
1420
+ echo $is_broken_filter ? 'true' : 'false';
1421
  ?>;
1422
  </script>
1423
 
1717
  $msg_class = 'error';
1718
  } else {
1719
  //Save the new filter
1720
+ $blc_link_query = & blcLinkQuery::getInstance();
1721
  $filter_id = $blc_link_query->create_custom_filter($_POST['name'], $_POST['params']);
1722
 
1723
  if ( $filter_id ){
1753
  $msg_class = 'error';
1754
  } else {
1755
  //Try to delete the filter
1756
+ $blc_link_query = & blcLinkQuery::getInstance();
1757
  if ( $blc_link_query->delete_custom_filter($_POST['filter_id']) ){
1758
  //Success
1759
  $message = __('Filter deleted', 'broken-link-checker');
1904
  * @return array Confirmation message and its CSS class.
1905
  */
1906
  function do_bulk_delete_sources($selected_links){
1907
+ $blc_container_registry = & blcContainerRegistry::getInstance();
1908
 
1909
  $message = '';
1910
  $msg_class = 'updated';
2484
 
2485
  //Only check links that have at least one valid instance (i.e. an instance exists and
2486
  //it corresponds to one of the currently loaded container/parser types).
2487
+ $containerRegistry = & blcContainerRegistry::getInstance();
2488
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
2489
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
2490
  $loaded_containers = "'" . implode("', '", $loaded_containers) . "'";
2491
 
2492
+ $parserRegistry = & blcParserRegistry::getInstance();
2493
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
2494
  $loaded_parsers = array_map(array(&$wpdb, 'escape'), $loaded_parsers);
2495
  $loaded_parsers = "'" . implode("', '", $loaded_parsers) . "'";
2670
  */
2671
  function get_status(){
2672
  global $wpdb;
2673
+ $blc_link_query = & blcLinkQuery::getInstance();
2674
 
2675
  $check_threshold=date('Y-m-d H:i:s', strtotime('-'.$this->conf->options['check_threshold'].' hours'));
2676
  $recheck_threshold=date('Y-m-d H:i:s', time() - $this->conf->options['recheck_threshold']);
3216
  'value' => sprintf(__('%s seconds'), ini_get('max_execution_time')),
3217
  );
3218
 
3219
+ //Resynch flag.
3220
+ $debug['Resynch. flag'] = array(
3221
+ 'state' => 'ok',
3222
+ 'value' => sprintf('%d', $this->conf->options['need_resynch']),
3223
+ );
3224
+
3225
+ //Synch records
3226
+ $synch_records = intval($wpdb->get_var("SELECT COUNT(*) FROM {$wpdb->prefix}blc_synch"));
3227
+ $data = array(
3228
+ 'state' => 'ok',
3229
+ 'value' => sprintf('%d', $synch_records),
3230
+ );
3231
+ if ( $synch_records == 0 ){
3232
+ $data['state'] = 'warning';
3233
+ $data['message'] = __('If this value is zero even after several page reloads you have probably encountered a bug.', 'broken-link-checker');
3234
+ }
3235
+ $debug['Synch. records'] = $data;
3236
+
3237
+ //Total links and instances (including invalid ones)
3238
+ $all_links = intval($wpdb->get_var("SELECT COUNT(*) FROM {$wpdb->prefix}blc_links"));
3239
+ $all_instances = intval($wpdb->get_var("SELECT COUNT(*) FROM {$wpdb->prefix}blc_instances"));
3240
+
3241
+ //Show the number of unparsed containers. Useful for debugging. For performance,
3242
+ //this is only shown when we have no links/instances yet.
3243
+ if( ($all_links == 0) && ($all_instances == 0) ){
3244
+ $unparsed_items = intval($wpdb->get_var("SELECT COUNT(*) FROM {$wpdb->prefix}blc_synch WHERE synched=0"));
3245
+ $debug['Unparsed items'] = array(
3246
+ 'state' => 'warning',
3247
+ 'value' => $unparsed_items,
3248
+ );
3249
+ }
3250
+
3251
+ //Links & instances
3252
+ if ( ($all_links > 0) && ($all_instances > 0) ){
3253
+ $debug['Link records'] = array(
3254
+ 'state' => 'ok',
3255
+ 'value' => sprintf('%d (%d)', $all_links, $all_instances),
3256
+ );
3257
+ } else {
3258
+ $debug['Link records'] = array(
3259
+ 'state' => 'warning',
3260
+ 'value' => sprintf('%d (%d)', $all_links, $all_instances),
3261
+ );
3262
+ }
3263
+
3264
  return $debug;
3265
  }
3266
 
includes/admin/links-page-js.php CHANGED
@@ -1,9 +1,23 @@
1
  <script type='text/javascript'>
2
 
3
  function alterLinkCounter(factor){
4
- cnt = parseInt(jQuery('.current-link-count').eq(0).html());
5
  cnt = cnt + factor;
6
  jQuery('.current-link-count').html(cnt);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  }
8
 
9
  function replaceLinkId(old_id, new_id){
1
  <script type='text/javascript'>
2
 
3
  function alterLinkCounter(factor){
4
+ var cnt = parseInt(jQuery('.current-link-count').eq(0).html());
5
  cnt = cnt + factor;
6
  jQuery('.current-link-count').html(cnt);
7
+
8
+ if ( blc_is_broken_filter ){
9
+ //Update the broken link count displayed beside the "Broken Links" menu
10
+ var menuBubble = jQuery('span.blc-menu-bubble');
11
+ if ( menuBubble.length > 0 ){
12
+ cnt = parseInt(menuBubble.eq(0).html());
13
+ cnt = cnt + factor;
14
+ if ( cnt > 0 ){
15
+ menuBubble.html(cnt);
16
+ } else {
17
+ menuBubble.parent().hide();
18
+ }
19
+ }
20
+ }
21
  }
22
 
23
  function replaceLinkId(old_id, new_id){
includes/admin/search-form.php CHANGED
@@ -54,7 +54,7 @@
54
  $search_subfilter = $filter_id;
55
  }
56
 
57
- $linkQuery = blcLinkQuery::getInstance();
58
  foreach ($linkQuery->native_filters as $filter => $data){
59
  $selected = ($search_subfilter == $filter)?' selected="selected"':'';
60
  printf('<option value="%s"%s>%s</option>', $filter, $selected, $data['name']);
54
  $search_subfilter = $filter_id;
55
  }
56
 
57
+ $linkQuery = & blcLinkQuery::getInstance();
58
  foreach ($linkQuery->native_filters as $filter => $data){
59
  $selected = ($search_subfilter == $filter)?' selected="selected"':'';
60
  printf('<option value="%s"%s>%s</option>', $filter, $selected, $data['name']);
includes/containers.php CHANGED
@@ -35,7 +35,12 @@ class blcContainerRegistry {
35
  $this->__construct();
36
  }
37
 
38
- function getInstance(){
 
 
 
 
 
39
  static $instance = null;
40
  if ( is_null($instance) ){
41
  $instance = new blcContainerRegistry;
@@ -284,7 +289,7 @@ class blcContainerRegistry {
284
  }
285
 
286
  //Init the container registry & make it global
287
- $GLOBALS['blc_container_registry'] = blcContainerRegistry::getInstance();
288
 
289
 
290
 
@@ -834,7 +839,7 @@ class blcContainerManager {
834
  * @return bool True if the container was successfully registered, false otherwise.
835
  */
836
  function blc_register_container( $container_type, $manager_class ){
837
- $instance = blcContainerRegistry::getInstance();
838
  return $instance->register_container($container_type, $manager_class);
839
  }
840
 
@@ -845,7 +850,7 @@ function blc_register_container( $container_type, $manager_class ){
845
  * @return blcContainer|null Returns null if the container type is unrecognized.
846
  */
847
  function blc_get_container($container){
848
- $instance = blcContainerRegistry::getInstance();
849
  return $instance->get_container($container);
850
  }
851
 
@@ -873,7 +878,7 @@ function blc_get_container($container){
873
  * @return array of blcContainer indexed by 'container_type|container_id'
874
  */
875
  function blc_get_containers( $containers, $purpose = '', $load_wrapped_objects = false ){
876
- $instance = blcContainerRegistry::getInstance();
877
  return $instance->get_containers($containers, $purpose, '', $load_wrapped_objects);
878
  }
879
 
@@ -884,7 +889,7 @@ function blc_get_containers( $containers, $purpose = '', $load_wrapped_objects =
884
  * @return array of blcContainer
885
  */
886
  function blc_get_unsynched_containers($max_results = 0){
887
- $instance = blcContainerRegistry::getInstance();
888
  return $instance->get_unsynched_containers($max_results);
889
  }
890
 
@@ -896,7 +901,7 @@ function blc_get_unsynched_containers($max_results = 0){
896
  * @return void
897
  */
898
  function blc_resynch_containers($forced = false){
899
- $instance = blcContainerRegistry::getInstance();
900
  $instance->resynch($forced);
901
  }
902
 
@@ -908,7 +913,7 @@ function blc_resynch_containers($forced = false){
908
  function blc_cleanup_containers(){
909
  global $wpdb;
910
 
911
- $containerRegistry = blcContainerRegistry::getInstance();
912
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
913
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
914
  $loaded_containers = "'" . implode("', '", $loaded_containers) . "'";
35
  $this->__construct();
36
  }
37
 
38
+ /**
39
+ * Return a singleton instance of this class.
40
+ *
41
+ * @return blcContainerRegistry
42
+ */
43
+ function &getInstance(){
44
  static $instance = null;
45
  if ( is_null($instance) ){
46
  $instance = new blcContainerRegistry;
289
  }
290
 
291
  //Init the container registry & make it global
292
+ $GLOBALS['blc_container_registry'] = & blcContainerRegistry::getInstance();
293
 
294
 
295
 
839
  * @return bool True if the container was successfully registered, false otherwise.
840
  */
841
  function blc_register_container( $container_type, $manager_class ){
842
+ $instance = & blcContainerRegistry::getInstance();
843
  return $instance->register_container($container_type, $manager_class);
844
  }
845
 
850
  * @return blcContainer|null Returns null if the container type is unrecognized.
851
  */
852
  function blc_get_container($container){
853
+ $instance = & blcContainerRegistry::getInstance();
854
  return $instance->get_container($container);
855
  }
856
 
878
  * @return array of blcContainer indexed by 'container_type|container_id'
879
  */
880
  function blc_get_containers( $containers, $purpose = '', $load_wrapped_objects = false ){
881
+ $instance = & blcContainerRegistry::getInstance();
882
  return $instance->get_containers($containers, $purpose, '', $load_wrapped_objects);
883
  }
884
 
889
  * @return array of blcContainer
890
  */
891
  function blc_get_unsynched_containers($max_results = 0){
892
+ $instance = & blcContainerRegistry::getInstance();
893
  return $instance->get_unsynched_containers($max_results);
894
  }
895
 
901
  * @return void
902
  */
903
  function blc_resynch_containers($forced = false){
904
+ $instance = & blcContainerRegistry::getInstance();
905
  $instance->resynch($forced);
906
  }
907
 
913
  function blc_cleanup_containers(){
914
  global $wpdb;
915
 
916
+ $containerRegistry = & blcContainerRegistry::getInstance();
917
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
918
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
919
  $loaded_containers = "'" . implode("', '", $loaded_containers) . "'";
includes/instances.php CHANGED
@@ -482,9 +482,9 @@ function blc_get_instances( $link_ids, $purpose = '', $load_containers = false,
482
 
483
  //Skip instances that reference containers or parsers that aren't currently loaded
484
  if ( !$include_invalid ){
485
- $containerRegistry = blcContainerRegistry::getInstance();
486
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
487
- $parserRegistry = blcParserRegistry::getInstance();
488
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
489
 
490
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
@@ -550,9 +550,9 @@ function blc_get_usable_instance_count(){
550
  $q = "SELECT COUNT(instance_id) FROM {$wpdb->prefix}blc_instances WHERE 1";
551
 
552
  //Skip instances that reference containers or parsers that aren't currently loaded
553
- $containerRegistry = blcContainerRegistry::getInstance();
554
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
555
- $parserRegistry = blcParserRegistry::getInstance();
556
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
557
 
558
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
@@ -581,9 +581,9 @@ function blc_cleanup_instances(){
581
  synch.container_id IS NULL";
582
  $rez = $wpdb->query($q);
583
 
584
- $containerRegistry = blcContainerRegistry::getInstance();
585
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
586
- $parserRegistry = blcParserRegistry::getInstance();
587
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
588
 
589
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
482
 
483
  //Skip instances that reference containers or parsers that aren't currently loaded
484
  if ( !$include_invalid ){
485
+ $containerRegistry = & blcContainerRegistry::getInstance();
486
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
487
+ $parserRegistry = & blcParserRegistry::getInstance();
488
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
489
 
490
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
550
  $q = "SELECT COUNT(instance_id) FROM {$wpdb->prefix}blc_instances WHERE 1";
551
 
552
  //Skip instances that reference containers or parsers that aren't currently loaded
553
+ $containerRegistry = & blcContainerRegistry::getInstance();
554
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
555
+ $parserRegistry = & blcParserRegistry::getInstance();
556
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
557
 
558
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
581
  synch.container_id IS NULL";
582
  $rez = $wpdb->query($q);
583
 
584
+ $containerRegistry = & blcContainerRegistry::getInstance();
585
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
586
+ $parserRegistry = & blcParserRegistry::getInstance();
587
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
588
 
589
  $loaded_containers = array_map(array(&$wpdb, 'escape'), $loaded_containers);
includes/links.php CHANGED
@@ -823,7 +823,7 @@ class blcLinkQuery {
823
  $this->__construct();
824
  }
825
 
826
- function getInstance(){
827
  static $instance = null;
828
  if ( is_null($instance) ){
829
  $instance = new blcLinkQuery;
@@ -1011,9 +1011,9 @@ class blcLinkQuery {
1011
  if ( empty($params['include_invalid']) ){
1012
  $join_instances = true;
1013
 
1014
- $containerRegistry = blcContainerRegistry::getInstance();
1015
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
1016
- $parserRegistry = blcParserRegistry::getInstance();
1017
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
1018
 
1019
  if ( empty($s_parser_type) ){
@@ -1379,7 +1379,7 @@ class blcLinkQuery {
1379
  * @return int|array Either an array of blcLink objects, or the number of results for the query.
1380
  */
1381
  function blc_get_links($params = null){
1382
- $instance = blcLinkQuery::getInstance();
1383
  return $instance->get_links($params, $purpose);
1384
  }
1385
 
823
  $this->__construct();
824
  }
825
 
826
+ function &getInstance(){
827
  static $instance = null;
828
  if ( is_null($instance) ){
829
  $instance = new blcLinkQuery;
1011
  if ( empty($params['include_invalid']) ){
1012
  $join_instances = true;
1013
 
1014
+ $containerRegistry = & blcContainerRegistry::getInstance();
1015
  $loaded_containers = array_keys($containerRegistry->get_registered_containers());
1016
+ $parserRegistry = & blcParserRegistry::getInstance();
1017
  $loaded_parsers = array_keys($parserRegistry->get_registered_parsers());
1018
 
1019
  if ( empty($s_parser_type) ){
1379
  * @return int|array Either an array of blcLink objects, or the number of results for the query.
1380
  */
1381
  function blc_get_links($params = null){
1382
+ $instance = & blcLinkQuery::getInstance();
1383
  return $instance->get_links($params, $purpose);
1384
  }
1385
 
includes/parsers.php CHANGED
@@ -20,7 +20,7 @@ class blcParserRegistry {
20
  *
21
  * @return blcParserRegistry
22
  */
23
- function getInstance(){
24
  static $instance = null;
25
  if ( is_null($instance) ){
26
  $instance = new blcParserRegistry;
@@ -92,7 +92,7 @@ class blcParserRegistry {
92
  }
93
 
94
  //Create the parser registry singleton.
95
- $GLOBALS['blc_parser_registry'] = blcParserRegistry::getInstance();
96
 
97
 
98
  /**
@@ -343,7 +343,7 @@ class blcParser {
343
  * @return bool
344
  */
345
  function blc_register_parser( $parser_type, $class_name ) {
346
- $instance = blcParserRegistry::getInstance();
347
  return $instance->register_parser($parser_type, $class_name);
348
  }
349
 
@@ -356,7 +356,7 @@ function blc_register_parser( $parser_type, $class_name ) {
356
  * @return blcParser|null
357
  */
358
  function blc_get_parser( $parser_type ){
359
- $instance = blcParserRegistry::getInstance();
360
  return $instance->get_parser($parser_type);
361
  }
362
 
@@ -370,7 +370,7 @@ function blc_get_parser( $parser_type ){
370
  * @return array of blcParser
371
  */
372
  function blc_get_parsers( $format, $container_type ){
373
- $instance = blcParserRegistry::getInstance();
374
  return $instance->get_parsers($format, $container_type);
375
  }
376
 
20
  *
21
  * @return blcParserRegistry
22
  */
23
+ function &getInstance(){
24
  static $instance = null;
25
  if ( is_null($instance) ){
26
  $instance = new blcParserRegistry;
92
  }
93
 
94
  //Create the parser registry singleton.
95
+ $GLOBALS['blc_parser_registry'] = & blcParserRegistry::getInstance();
96
 
97
 
98
  /**
343
  * @return bool
344
  */
345
  function blc_register_parser( $parser_type, $class_name ) {
346
+ $instance = & blcParserRegistry::getInstance();
347
  return $instance->register_parser($parser_type, $class_name);
348
  }
349
 
356
  * @return blcParser|null
357
  */
358
  function blc_get_parser( $parser_type ){
359
+ $instance = & blcParserRegistry::getInstance();
360
  return $instance->get_parser($parser_type);
361
  }
362
 
370
  * @return array of blcParser
371
  */
372
  function blc_get_parsers( $format, $container_type ){
373
+ $instance = & blcParserRegistry::getInstance();
374
  return $instance->get_parsers($format, $container_type);
375
  }
376
 
languages/broken-link-checker-da_DK.mo CHANGED
Binary file
languages/broken-link-checker-da_DK.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker 0.9.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-06-13 19:40+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
@@ -17,724 +17,758 @@ msgstr ""
17
  "X-Poedit-Basepath: d:\\wordpress\\plugins\\broken-link-checker\n"
18
  "X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\broken-link-checker\n"
19
 
20
- #: d:\wordpress\plugins\broken-link-checker/broken-link-checker.php:304
21
  msgid "Once Weekly"
22
  msgstr "Engang om ugen"
23
 
24
- #: d:\wordpress\plugins\broken-link-checker/broken-link-checker.php:326
 
 
 
 
25
  msgid "Broken Link Checker installation failed"
26
  msgstr "Installation af Broken Link Checker mislykkedes"
27
 
28
- #: d:\wordpress\plugins\broken-link-checker/core.php:138
29
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:21
30
  msgid "Loading..."
31
  msgstr "Indlæser ..."
32
 
33
- #: d:\wordpress\plugins\broken-link-checker/core.php:161
34
- #: d:\wordpress\plugins\broken-link-checker/core.php:850
35
  msgid "[ Network error ]"
36
  msgstr "[ Network-fejl ]"
37
 
38
- #: d:\wordpress\plugins\broken-link-checker/core.php:186
39
  msgid "Automatically expand the widget if broken links have been detected"
40
  msgstr "Automatisk udvid widgetten, hvis der er fundet døde links"
41
 
42
- #: d:\wordpress\plugins\broken-link-checker/core.php:422
43
  #, php-format
44
  msgid "Failed to delete old DB tables. Database error : %s"
45
  msgstr "Det mislykkedes at slette gamle databasetabeller. Databasefejl: %s"
46
 
47
- #: d:\wordpress\plugins\broken-link-checker/core.php:440
48
  #, php-format
49
  msgid "Unexpected error: The plugin doesn't know how to upgrade its database to version '%d'."
50
  msgstr "Uventet fejl: Pluginnet ved ikke, hvordan den skal opdatere dens database til version '%d'."
51
 
52
- #: d:\wordpress\plugins\broken-link-checker/core.php:480
53
- #: d:\wordpress\plugins\broken-link-checker/core.php:513
54
- #: d:\wordpress\plugins\broken-link-checker/core.php:559
55
- #: d:\wordpress\plugins\broken-link-checker/core.php:588
56
  #, php-format
57
  msgid "Failed to create table '%s'. Database error: %s"
58
  msgstr "Det mislykkedes at oprette tabellen '%s'. Databasefejl: %s"
59
 
60
- #: d:\wordpress\plugins\broken-link-checker/core.php:621
61
  msgid "Link Checker Settings"
62
  msgstr "Link Checker-indstillinger"
63
 
64
- #: d:\wordpress\plugins\broken-link-checker/core.php:622
65
  msgid "Link Checker"
66
  msgstr "Link Checker"
67
 
68
- #: d:\wordpress\plugins\broken-link-checker/core.php:628
69
  msgid "View Broken Links"
70
  msgstr "Se døde links"
71
 
72
- #: d:\wordpress\plugins\broken-link-checker/core.php:629
73
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:771
74
  msgid "Broken Links"
75
  msgstr "Døde links"
76
 
77
- #: d:\wordpress\plugins\broken-link-checker/core.php:654
78
  #, php-format
79
  msgid "Highlight links broken for at least %s days"
80
  msgstr "Fremhæv links, der har været døde i mindst %s dage"
81
 
82
- #: d:\wordpress\plugins\broken-link-checker/core.php:680
83
  msgid "Settings"
84
  msgstr "Indstillinger"
85
 
86
- #: d:\wordpress\plugins\broken-link-checker/core.php:690
87
- #: d:\wordpress\plugins\broken-link-checker/core.php:1193
88
  #, php-format
89
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
90
  msgstr "Fejl: Pluginnets databasetabeller er ikke up-to-date! (Nuværende version: %d; forventet: %d)"
91
 
92
- #: d:\wordpress\plugins\broken-link-checker/core.php:806
93
  msgid "Settings saved."
94
  msgstr "Indstillinger gemt."
95
 
96
- #: d:\wordpress\plugins\broken-link-checker/core.php:815
97
  msgid "Broken Link Checker Options"
98
  msgstr "Indstillinger for Broken Link Checker"
99
 
100
- #: d:\wordpress\plugins\broken-link-checker/core.php:828
101
  msgid "Status"
102
  msgstr "Status"
103
 
104
- #: d:\wordpress\plugins\broken-link-checker/core.php:830
105
- #: d:\wordpress\plugins\broken-link-checker/core.php:1172
106
  msgid "Show debug info"
107
  msgstr "Vis debug-info"
108
 
109
- #: d:\wordpress\plugins\broken-link-checker/core.php:863
110
  msgid "Re-check all pages"
111
  msgstr "Tjek alle sider igen"
112
 
113
- #: d:\wordpress\plugins\broken-link-checker/core.php:887
114
  msgid "Check each link"
115
  msgstr "Tjek hvert link"
116
 
117
- #: d:\wordpress\plugins\broken-link-checker/core.php:892
118
  #, php-format
119
  msgid "Every %s hours"
120
  msgstr "hver %s timer"
121
 
122
- #: d:\wordpress\plugins\broken-link-checker/core.php:901
123
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
124
  msgstr "Eksisterende links vil blive tjekket med dette mellemrum. Nye links tjekkes normalt så hurtigt som muligt."
125
 
126
- #: d:\wordpress\plugins\broken-link-checker/core.php:908
127
  msgid "Broken link CSS"
128
  msgstr "CSS for Broken link"
129
 
130
- #: d:\wordpress\plugins\broken-link-checker/core.php:913
131
  msgid "Apply <em>class=\"broken_link\"</em> to broken links"
132
  msgstr "Tilføj <em>class=\"broken_link\"</em> til døde links"
133
 
134
- #: d:\wordpress\plugins\broken-link-checker/core.php:925
135
  msgid "Removed link CSS"
136
  msgstr "Fjern link-CSS"
137
 
138
- #: d:\wordpress\plugins\broken-link-checker/core.php:930
139
  msgid "Apply <em>class=\"removed_link\"</em> to unlinked links"
140
  msgstr "Anvend <em>class=\"removed_link\"</em> til links, hvor linket er fjernet"
141
 
142
- #: d:\wordpress\plugins\broken-link-checker/core.php:942
143
  msgid "Broken link SEO"
144
  msgstr "Broken link SEO"
145
 
146
- #: d:\wordpress\plugins\broken-link-checker/core.php:947
147
  msgid "Apply <em>rel=\"nofollow\"</em> to broken links"
148
  msgstr "Anvend <em>rel=\"nofolow\"</em> på døde links"
149
 
150
- #: d:\wordpress\plugins\broken-link-checker/core.php:953
151
  msgid "Exclusion list"
152
  msgstr "Eksklusionsliste"
153
 
154
- #: d:\wordpress\plugins\broken-link-checker/core.php:954
155
  msgid "Don't check links where the URL contains any of these words (one per line) :"
156
  msgstr "Tjek ikke links, hvor URL&#39;en indeholder et af disse ord (et ord per linje):"
157
 
158
- #: d:\wordpress\plugins\broken-link-checker/core.php:964
159
  msgid "Custom fields"
160
  msgstr "Egne felter"
161
 
162
- #: d:\wordpress\plugins\broken-link-checker/core.php:965
163
  msgid "Check URLs entered in these custom fields (one per line) :"
164
  msgstr "Tjek URL&#39;er i disse Egne felter (en per linje):"
165
 
166
- #: d:\wordpress\plugins\broken-link-checker/core.php:975
 
 
 
 
 
 
 
 
167
  msgid "E-mail notifications"
168
  msgstr "E-mail-meddelelser"
169
 
170
- #: d:\wordpress\plugins\broken-link-checker/core.php:981
171
  msgid "Send me e-mail notifications about newly detected broken links"
172
  msgstr "Send mig e-mail-meddelelser om nyligt opdagede døde links"
173
 
174
- #: d:\wordpress\plugins\broken-link-checker/core.php:989
175
  msgid "Advanced"
176
  msgstr "Avanceret"
177
 
178
- #: d:\wordpress\plugins\broken-link-checker/core.php:994
179
  msgid "Timeout"
180
  msgstr "Timeout"
181
 
182
- #: d:\wordpress\plugins\broken-link-checker/core.php:1000
183
- #: d:\wordpress\plugins\broken-link-checker/core.php:1044
 
184
  #, php-format
185
  msgid "%s seconds"
186
  msgstr "%s sekunder"
187
 
188
- #: d:\wordpress\plugins\broken-link-checker/core.php:1009
189
  msgid "Links that take longer than this to load will be marked as broken."
190
  msgstr "Links, som tager længere tid at tjekke end dette, vil blive markeret som døde."
191
 
192
- #: d:\wordpress\plugins\broken-link-checker/core.php:1016
193
  msgid "Link monitor"
194
  msgstr "Linkovervågning"
195
 
196
- #: d:\wordpress\plugins\broken-link-checker/core.php:1022
197
  msgid "Run continuously while the Dashboard is open"
198
  msgstr "Kør kontinuerligt, når kontrolpanelet er åbent"
199
 
200
- #: d:\wordpress\plugins\broken-link-checker/core.php:1030
201
  msgid "Run hourly in the background"
202
  msgstr "Kør hver time i baggrunden"
203
 
204
- #: d:\wordpress\plugins\broken-link-checker/core.php:1038
205
  msgid "Max. execution time"
206
  msgstr "Max udførelsestid"
207
 
208
- #: d:\wordpress\plugins\broken-link-checker/core.php:1055
209
  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."
210
  msgstr "Pluginnet fungerer ved med mellemrum at oprette et job i baggrunden, som undersøger dine indlæg for links, tjekker de fundne URL&#39;er og foretager andre tidskrævende opgaver. Her kan du angive, hvor længe linkovervågningen max må køre hver gang, inden den skal stoppe."
211
 
212
- #: d:\wordpress\plugins\broken-link-checker/core.php:1065
213
  msgid "Custom temporary directory"
214
  msgstr "Brugerdefineret tmp-mappe"
215
 
216
- #: d:\wordpress\plugins\broken-link-checker/core.php:1074
217
  msgid "OK"
218
  msgstr "OK"
219
 
220
- #: d:\wordpress\plugins\broken-link-checker/core.php:1077
221
  msgid "Error : This directory isn't writable by PHP."
222
  msgstr "Fejl: Denne mappe er ikke skrivbar for PHP."
223
 
224
- #: d:\wordpress\plugins\broken-link-checker/core.php:1082
225
  msgid "Error : This directory doesn't exist."
226
  msgstr "Fejl: Denne mappe eksisterer ikke."
227
 
228
- #: d:\wordpress\plugins\broken-link-checker/core.php:1090
229
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
230
  msgstr "Sæt dette felt, hvis du ønsker, at pluginnet skal bruge en brugerdefineret mappe til sine lock-filer. Ellers skal det ikke udfyldes."
231
 
232
- #: d:\wordpress\plugins\broken-link-checker/core.php:1097
233
  msgid "Server load limit"
234
  msgstr "Begrænsning på serverbelastning"
235
 
236
- #: d:\wordpress\plugins\broken-link-checker/core.php:1138
237
  #, php-format
238
  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."
239
  msgstr "Linktjekning vil blive midlertidigt afbrudt, hvis den gennemsnitlige <a href=\"%s\">serverbelastning</a> er større end dette tal. Lad feltet stå tomt, hvis du vil deaktivere begrænsning af belastningen."
240
 
241
- #: d:\wordpress\plugins\broken-link-checker/core.php:1148
242
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
243
  msgstr "Begrænsning af belastning virker kun på Linux-lignende systemer, hvor <code>/proc/loadavg</code> findes og er tilgængelig."
244
 
245
- #: d:\wordpress\plugins\broken-link-checker/core.php:1157
246
  msgid "Save Changes"
247
  msgstr "Gem ændringer"
248
 
249
- #: d:\wordpress\plugins\broken-link-checker/core.php:1170
250
  msgid "Hide debug info"
251
  msgstr "Skjul debug-info"
252
 
253
- #: d:\wordpress\plugins\broken-link-checker/core.php:1279
254
- #: d:\wordpress\plugins\broken-link-checker/core.php:1614
255
- #: d:\wordpress\plugins\broken-link-checker/core.php:1646
256
  #, php-format
257
  msgid "Database error : %s"
258
  msgstr "Database-fejl : %s"
259
 
260
- #: d:\wordpress\plugins\broken-link-checker/core.php:1356
261
  msgid "Bulk Actions"
262
  msgstr "Massehandlinger"
263
 
264
- #: d:\wordpress\plugins\broken-link-checker/core.php:1357
265
  msgid "Recheck"
266
  msgstr "Tjek igen"
267
 
268
- #: d:\wordpress\plugins\broken-link-checker/core.php:1358
269
  msgid "Fix redirects"
270
  msgstr "Fix redirigerede"
271
 
272
- #: d:\wordpress\plugins\broken-link-checker/core.php:1359
273
- #: d:\wordpress\plugins\broken-link-checker/core.php:1513
 
 
 
 
274
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:293
275
  msgid "Unlink"
276
  msgstr "Fjern link"
277
 
278
- #: d:\wordpress\plugins\broken-link-checker/core.php:1360
279
  msgid "Delete sources"
280
  msgstr "Slet kilder"
281
 
282
- #: d:\wordpress\plugins\broken-link-checker/core.php:1374
283
- #: d:\wordpress\plugins\broken-link-checker/core.php:1548
284
  msgid "Apply"
285
  msgstr "Anvend"
286
 
287
- #: d:\wordpress\plugins\broken-link-checker/core.php:1381
288
  msgid "&laquo;"
289
  msgstr "&laquo;"
290
 
291
- #: d:\wordpress\plugins\broken-link-checker/core.php:1382
292
  msgid "&raquo;"
293
  msgstr "&raquo;"
294
 
295
- #: d:\wordpress\plugins\broken-link-checker/core.php:1389
296
- #: d:\wordpress\plugins\broken-link-checker/core.php:1554
297
  #, php-format
298
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
299
  msgstr "Viser %s&#8211;%s af <span class=\"current-link-count\">%s</span>"
300
 
301
- #: d:\wordpress\plugins\broken-link-checker/core.php:1408
302
  msgid "Source"
303
  msgstr "Kilde"
304
 
305
- #: d:\wordpress\plugins\broken-link-checker/core.php:1409
306
  msgid "Link Text"
307
  msgstr "Linktekst"
308
 
309
- #: d:\wordpress\plugins\broken-link-checker/core.php:1410
310
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:42
311
  msgid "URL"
312
  msgstr "URL"
313
 
314
- #: d:\wordpress\plugins\broken-link-checker/core.php:1486
315
  msgid "[An orphaned link! This is a bug.]"
316
  msgstr "[En forælderløs link! Dette er en bug.]"
317
 
318
- #: d:\wordpress\plugins\broken-link-checker/core.php:1510
319
  msgid "Show more info about this link"
320
  msgstr "Vis flere oplysninger om dette link"
321
 
322
- #: d:\wordpress\plugins\broken-link-checker/core.php:1510
323
- #: d:\wordpress\plugins\broken-link-checker/core.php:2885
324
  msgid "Details"
325
  msgstr "Detaljer"
326
 
327
- #: d:\wordpress\plugins\broken-link-checker/core.php:1512
328
  msgid "Remove this link from all posts"
329
  msgstr "Fjern dette link fra alle indlæg"
330
 
331
- #: d:\wordpress\plugins\broken-link-checker/core.php:1518
332
  msgid "Remove this link from the list of broken links and mark it as valid"
333
  msgstr "Fjern dette link fra listen over døde links og markér det som aktivt"
334
 
335
- #: d:\wordpress\plugins\broken-link-checker/core.php:1519
336
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:78
337
  msgid "Not broken"
338
  msgstr "Ikke død"
339
 
340
- #: d:\wordpress\plugins\broken-link-checker/core.php:1523
341
  msgid "Edit link URL"
342
  msgstr "Redigér link-URL"
343
 
344
- #: d:\wordpress\plugins\broken-link-checker/core.php:1523
345
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:199
346
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:227
347
  msgid "Edit URL"
348
  msgstr "Redigér URL"
349
 
350
- #: d:\wordpress\plugins\broken-link-checker/core.php:1529
351
  msgid "Cancel URL editing"
352
  msgstr "Anullér redigering af URL"
353
 
354
- #: d:\wordpress\plugins\broken-link-checker/core.php:1529
355
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:87
356
  msgid "Cancel"
357
  msgstr "Annullér"
358
 
359
- #: d:\wordpress\plugins\broken-link-checker/core.php:1597
360
  msgid "You must enter a filter name!"
361
  msgstr "Du <i>skal</i> indtaste et filternavn!"
362
 
363
- #: d:\wordpress\plugins\broken-link-checker/core.php:1601
364
  msgid "Invalid search query."
365
  msgstr "Ugyldig søgeforespørgsel."
366
 
367
- #: d:\wordpress\plugins\broken-link-checker/core.php:1609
368
  #, php-format
369
  msgid "Filter \"%s\" created"
370
  msgstr "Filter \"%s\" oprettet"
371
 
372
- #: d:\wordpress\plugins\broken-link-checker/core.php:1637
373
  msgid "Filter ID not specified."
374
  msgstr "Filter-id ikke angivet."
375
 
376
- #: d:\wordpress\plugins\broken-link-checker/core.php:1643
377
  msgid "Filter deleted"
378
  msgstr "Filter slettet"
379
 
380
- #: d:\wordpress\plugins\broken-link-checker/core.php:1691
381
  #, php-format
382
  msgid "Replaced %d redirect with a direct link"
383
  msgid_plural "Replaced %d redirects with direct links"
384
  msgstr[0] "Erstattede %d redirigeret link med et direkte link"
385
  msgstr[1] "Erstattede %d redirigerede links med direkte links"
386
 
387
- #: d:\wordpress\plugins\broken-link-checker/core.php:1702
388
  #, php-format
389
  msgid "Failed to fix %d redirect"
390
  msgid_plural "Failed to fix %d redirects"
391
  msgstr[0] "Det lykkedes ikke at fixe %d redirigeret link"
392
  msgstr[1] "Det lykkedes ikke at fixe %d redirigerede links"
393
 
394
- #: d:\wordpress\plugins\broken-link-checker/core.php:1712
395
  msgid "None of the selected links are redirects!"
396
  msgstr "Ingen af de valgte links er redirigerede links!"
397
 
398
- #: d:\wordpress\plugins\broken-link-checker/core.php:1758
399
  #, php-format
400
  msgid "%d link removed"
401
  msgid_plural "%d links removed"
402
  msgstr[0] "%d link fjernet"
403
  msgstr[1] "%d links fjernet"
404
 
405
- #: d:\wordpress\plugins\broken-link-checker/core.php:1769
406
  #, php-format
407
  msgid "Failed to remove %d link"
408
  msgid_plural "Failed to remove %d links"
409
  msgstr[0] "Det mislykkedes for pluginnet at fjerne %d link."
410
  msgstr[1] "Det mislykkedes for pluginnet at fjerne %d links."
411
 
412
- #: d:\wordpress\plugins\broken-link-checker/core.php:1857
413
  msgid "Didn't find anything to delete!"
414
  msgstr "Fandt ikke noget, der kan slettes!"
415
 
416
- #: d:\wordpress\plugins\broken-link-checker/core.php:1885
417
  #, php-format
418
  msgid "%d link scheduled for rechecking"
419
  msgid_plural "%d links scheduled for rechecking"
420
  msgstr[0] "%d link er planlagt til at blive tjekket igen"
421
  msgstr[1] "%d links er planlagt til at blive tjekket igen"
422
 
423
- #: d:\wordpress\plugins\broken-link-checker/core.php:1909
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
  msgid "Post published on"
425
  msgstr "Indlæg udgivet den"
426
 
427
- #: d:\wordpress\plugins\broken-link-checker/core.php:1914
428
  msgid "Link last checked"
429
  msgstr "Link sidst tjekket"
430
 
431
- #: d:\wordpress\plugins\broken-link-checker/core.php:1918
432
  msgid "Never"
433
  msgstr "Aldrig"
434
 
435
- #: d:\wordpress\plugins\broken-link-checker/core.php:1924
436
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:45
437
  msgid "HTTP code"
438
  msgstr "HTTP-kode"
439
 
440
- #: d:\wordpress\plugins\broken-link-checker/core.php:1929
441
  msgid "Response time"
442
  msgstr "Svartid"
443
 
444
- #: d:\wordpress\plugins\broken-link-checker/core.php:1931
445
  #, php-format
446
  msgid "%2.3f seconds"
447
  msgstr "%2.3f sekunder"
448
 
449
- #: d:\wordpress\plugins\broken-link-checker/core.php:1934
450
  msgid "Final URL"
451
  msgstr "Endelige URL"
452
 
453
- #: d:\wordpress\plugins\broken-link-checker/core.php:1939
454
  msgid "Redirect count"
455
  msgstr "Antal redirigeringer"
456
 
457
- #: d:\wordpress\plugins\broken-link-checker/core.php:1944
458
  msgid "Instance count"
459
  msgstr "Antal instanser"
460
 
461
- #: d:\wordpress\plugins\broken-link-checker/core.php:1953
462
  #, php-format
463
  msgid "This link has failed %d time."
464
  msgid_plural "This link has failed %d times."
465
  msgstr[0] "Der har været fejl på dette link %d gang."
466
  msgstr[1] "Der har været fejl på dette link %d gange."
467
 
468
- #: d:\wordpress\plugins\broken-link-checker/core.php:1961
469
  #, php-format
470
  msgid "This link has been broken for %s."
471
  msgstr "Dette link har været dødt i %s."
472
 
473
- #: d:\wordpress\plugins\broken-link-checker/core.php:1972
474
  msgid "Log"
475
  msgstr "Log"
476
 
477
- #: d:\wordpress\plugins\broken-link-checker/core.php:1998
478
  msgid "less than a minute"
479
  msgstr "mindre end et minut"
480
 
481
- #: d:\wordpress\plugins\broken-link-checker/core.php:2006
482
  #, php-format
483
  msgid "%d minute"
484
  msgid_plural "%d minutes"
485
  msgstr[0] "%d minut"
486
  msgstr[1] "%d minutter"
487
 
488
- #: d:\wordpress\plugins\broken-link-checker/core.php:2020
489
- #: d:\wordpress\plugins\broken-link-checker/core.php:2047
490
  #, php-format
491
  msgid "%d hour"
492
  msgid_plural "%d hours"
493
  msgstr[0] "%d time"
494
  msgstr[1] "%d timer"
495
 
496
- #: d:\wordpress\plugins\broken-link-checker/core.php:2035
497
- #: d:\wordpress\plugins\broken-link-checker/core.php:2076
498
  #, php-format
499
  msgid "%d day"
500
  msgid_plural "%d days"
501
  msgstr[0] "%d dag"
502
  msgstr[1] "%d dage"
503
 
504
- #: d:\wordpress\plugins\broken-link-checker/core.php:2065
505
  #, php-format
506
  msgid "%d month"
507
  msgid_plural "%d months"
508
  msgstr[0] "%d måned"
509
  msgstr[1] "%d måneder"
510
 
511
- #: d:\wordpress\plugins\broken-link-checker/core.php:2388
512
  msgid "View broken links"
513
  msgstr "Se døde links"
514
 
515
- #: d:\wordpress\plugins\broken-link-checker/core.php:2389
516
  #, php-format
517
  msgid "Found %d broken link"
518
  msgid_plural "Found %d broken links"
519
  msgstr[0] "Har fundet %d dødt link"
520
  msgstr[1] "Har fundet %d døde links"
521
 
522
- #: d:\wordpress\plugins\broken-link-checker/core.php:2395
523
  msgid "No broken links found."
524
  msgstr "Ingen døde links fundet."
525
 
526
- #: d:\wordpress\plugins\broken-link-checker/core.php:2402
527
  #, php-format
528
  msgid "%d URL in the work queue"
529
  msgid_plural "%d URLs in the work queue"
530
  msgstr[0] "%d URL i arbejdskøen"
531
  msgstr[1] "%d URL&#39;er i arbejdskøen"
532
 
533
- #: d:\wordpress\plugins\broken-link-checker/core.php:2405
534
  msgid "No URLs in the work queue."
535
  msgstr "Ingen URL&#39;er i arbejdskøen"
536
 
537
- #: d:\wordpress\plugins\broken-link-checker/core.php:2411
538
  #, php-format
539
  msgid "Detected %d unique URL"
540
  msgid_plural "Detected %d unique URLs"
541
  msgstr[0] "Fandt %d unik URL"
542
  msgstr[1] "Fandt %d unikke URL&#39;er"
543
 
544
- #: d:\wordpress\plugins\broken-link-checker/core.php:2412
545
  #, php-format
546
  msgid "in %d link"
547
  msgid_plural "in %d links"
548
  msgstr[0] "i %d link"
549
  msgstr[1] "i %d links"
550
 
551
- #: d:\wordpress\plugins\broken-link-checker/core.php:2417
552
  msgid "and still searching..."
553
  msgstr "og leder stadig ..."
554
 
555
- #: d:\wordpress\plugins\broken-link-checker/core.php:2423
556
  msgid "Searching your blog for links..."
557
  msgstr "Gennemsøger din blog for links ..."
558
 
559
- #: d:\wordpress\plugins\broken-link-checker/core.php:2425
560
  msgid "No links detected."
561
  msgstr "Ingen links fundet."
562
 
563
- #: d:\wordpress\plugins\broken-link-checker/core.php:2509
564
- #: d:\wordpress\plugins\broken-link-checker/core.php:2545
565
- #: d:\wordpress\plugins\broken-link-checker/core.php:2608
566
- #: d:\wordpress\plugins\broken-link-checker/core.php:2690
567
  msgid "You're not allowed to do that!"
568
  msgstr "Du har ikke lov til at gøre dette!"
569
 
570
- #: d:\wordpress\plugins\broken-link-checker/core.php:2517
571
- #: d:\wordpress\plugins\broken-link-checker/core.php:2555
572
- #: d:\wordpress\plugins\broken-link-checker/core.php:2618
573
  #, php-format
574
  msgid "Oops, I can't find the link %d"
575
  msgstr "Ups. Jeg kan ikke finde linket %d"
576
 
577
- #: d:\wordpress\plugins\broken-link-checker/core.php:2524
578
- msgid "This link was manually marked as working by the user."
579
- msgstr "Dette link blev markeret manuelt som et aktivt link af brugeren."
580
-
581
- #: d:\wordpress\plugins\broken-link-checker/core.php:2530
582
  msgid "Oops, couldn't modify the link!"
583
  msgstr "Ups, kunne ikke ændre linket!"
584
 
585
- #: d:\wordpress\plugins\broken-link-checker/core.php:2533
586
- #: d:\wordpress\plugins\broken-link-checker/core.php:2644
587
  msgid "Error : link_id not specified"
588
  msgstr "Fejl: link_id ikke angivet"
589
 
590
- #: d:\wordpress\plugins\broken-link-checker/core.php:2565
591
  msgid "Oops, the new URL is invalid!"
592
  msgstr "Ups. Den nye URL er ugyldig!"
593
 
594
- #: d:\wordpress\plugins\broken-link-checker/core.php:2576
595
- #: d:\wordpress\plugins\broken-link-checker/core.php:2627
596
  msgid "An unexpected error occured!"
597
  msgstr "En uventet fejl opstod!"
598
 
599
- #: d:\wordpress\plugins\broken-link-checker/core.php:2594
600
  msgid "Error : link_id or new_url not specified"
601
  msgstr "Fejl: link_id eller new_url ikke angivet"
602
 
603
- #: d:\wordpress\plugins\broken-link-checker/core.php:2653
604
  msgid "You don't have sufficient privileges to access this information!"
605
  msgstr "Du har ikke tilstrækkelige rettigheder til at tilgå denne information!"
606
 
607
- #: d:\wordpress\plugins\broken-link-checker/core.php:2666
608
  msgid "Error : link ID not specified"
609
  msgstr "Fejl: link-id ikke angivet"
610
 
611
- #: d:\wordpress\plugins\broken-link-checker/core.php:2677
612
  #, php-format
613
  msgid "Failed to load link details (%s)"
614
  msgstr "Det mislykkedes at indlæse link-detaljer (%s)"
615
 
616
- #: d:\wordpress\plugins\broken-link-checker/core.php:2871
 
 
 
 
617
  #, php-format
618
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
619
  msgstr "Der er ikke adgang til den aktuelle tmp-mappe; angiv venligst <a href=\"%s\">en anden</a>."
620
 
621
- #: d:\wordpress\plugins\broken-link-checker/core.php:2876
622
  #, php-format
623
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
624
  msgstr "Gør venligst mappen <code>%1$s</code> skrivbar for pluginnet eller <a href=\"%2$s\">angiv en brugerdefineret tmp-mappe</a>."
625
 
626
- #: d:\wordpress\plugins\broken-link-checker/core.php:2883
627
  msgid "Broken Link Checker can't create a lockfile."
628
  msgstr "Broken Link Checker kan ikke oprette en lock-fil."
629
 
630
- #: d:\wordpress\plugins\broken-link-checker/core.php:2888
631
  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."
632
  msgstr "Pluginnet bruger en filbaseret lock-mekanisme for at sikre, at kun én instans af den ressourcekrævende linktjekningsalgoritme kører på én gang. Desværre kan BLC ikke finde en skrivbar mappe til at gemme lock-filen i. Det mislykkedes at finde placeringen af din servers tmp-mappe, og pluginnets egen mappe er ikke skrivbar for PHP. For at løse dette problem skal du gøre pluginnets mappe skrivbar eller indtaste en brugerdefineret tmp-mappe i pluginnets indstillinger."
633
 
634
- #: d:\wordpress\plugins\broken-link-checker/core.php:2907
635
  msgid "PHP version"
636
  msgstr "PHP version"
637
 
638
- #: d:\wordpress\plugins\broken-link-checker/core.php:2913
639
  msgid "MySQL version"
640
  msgstr "MySQL version"
641
 
642
- #: d:\wordpress\plugins\broken-link-checker/core.php:2926
643
  msgid "You have an old version of CURL. Redirect detection may not work properly."
644
  msgstr "Du har en gammel version af cURL. Det er ikke sikkert, at detektion af redirigeringer fungerer ordentligt."
645
 
646
- #: d:\wordpress\plugins\broken-link-checker/core.php:2938
647
- #: d:\wordpress\plugins\broken-link-checker/core.php:2954
648
- #: d:\wordpress\plugins\broken-link-checker/core.php:2959
649
  msgid "Not installed"
650
  msgstr "Ikke installeret"
651
 
652
- #: d:\wordpress\plugins\broken-link-checker/core.php:2941
653
  msgid "CURL version"
654
  msgstr "cURL version"
655
 
656
- #: d:\wordpress\plugins\broken-link-checker/core.php:2947
657
  msgid "Installed"
658
  msgstr "Installeret"
659
 
660
- #: d:\wordpress\plugins\broken-link-checker/core.php:2960
661
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
662
  msgstr "Du skal have enten cURL eller Snoopy installeret, hvis pluginnet skal virke!"
663
 
664
- #: d:\wordpress\plugins\broken-link-checker/core.php:2971
665
  msgid "On"
666
  msgstr "Til"
667
 
668
- #: d:\wordpress\plugins\broken-link-checker/core.php:2972
669
  msgid "Redirects may be detected as broken links when safe_mode is on."
670
  msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når safe_mode er til."
671
 
672
- #: d:\wordpress\plugins\broken-link-checker/core.php:2977
673
- #: d:\wordpress\plugins\broken-link-checker/core.php:2991
674
  msgid "Off"
675
  msgstr "Fra"
676
 
677
- #: d:\wordpress\plugins\broken-link-checker/core.php:2985
678
  #, php-format
679
  msgid "On ( %s )"
680
  msgstr "Fra ( %s )"
681
 
682
- #: d:\wordpress\plugins\broken-link-checker/core.php:2986
683
  msgid "Redirects may be detected as broken links when open_basedir is on."
684
  msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når open_basedir er til."
685
 
686
- #: d:\wordpress\plugins\broken-link-checker/core.php:3005
687
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
688
  msgstr "Kan ikke oprette lock-fil. Angiv venligst en brugerdefineret tmp-mappe."
689
 
690
- #: d:\wordpress\plugins\broken-link-checker/core.php:3034
691
  #, php-format
692
  msgid "[%s] Broken links detected"
693
  msgstr "[%s] døde links fundet"
694
 
695
- #: d:\wordpress\plugins\broken-link-checker/core.php:3040
696
  #, php-format
697
  msgid "Broken Link Checker has detected %d new broken link on your site."
698
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
699
  msgstr[0] "Broken Link Checker har opdaget %d nyt dødt link på din site."
700
  msgstr[1] "Broken Link Checker har opdaget %d nye døde links på din site."
701
 
702
- #: d:\wordpress\plugins\broken-link-checker/core.php:3055
703
  #, php-format
704
  msgid "Here's a list of the first %d broken links:"
705
  msgid_plural "Here's a list of the first %d broken links:"
706
  msgstr[0] "Her er en liste med det første døde link:"
707
  msgstr[1] "Her er en liste med de første %d døde links:"
708
 
709
- #: d:\wordpress\plugins\broken-link-checker/core.php:3063
710
  msgid "Here's a list of the new broken links: "
711
  msgstr "Her er en liste med de nye døde links: "
712
 
713
- #: d:\wordpress\plugins\broken-link-checker/core.php:3075
714
  #, php-format
715
  msgid "Link text : %s"
716
  msgstr "Linktekst: %s"
717
 
718
- #: d:\wordpress\plugins\broken-link-checker/core.php:3076
719
  #, php-format
720
  msgid "Link URL : <a href=\"%s\">%s</a>"
721
  msgstr "Link-URL: <a href=\"%s\">%s</a>"
722
 
723
- #: d:\wordpress\plugins\broken-link-checker/core.php:3077
724
  #, php-format
725
  msgid "Source : %s"
726
  msgstr "Kilde: %s"
727
 
728
- #: d:\wordpress\plugins\broken-link-checker/core.php:3091
729
  msgid "You can see all broken links here:"
730
  msgstr "Du kan se alle de døde links her:"
731
 
732
- #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:262
733
  #, php-format
734
  msgid "Container type '%s' not recognized"
735
  msgstr "Container-type '%s' ikke genkendt"
736
 
737
- #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:792
738
  #, php-format
739
  msgid "%d '%s' has been deleted"
740
  msgid_plural "%d '%s' have been deleted"
@@ -753,97 +787,97 @@ msgstr "Container %s[%d] ikke fundet"
753
  msgid "Parser '%s' not found."
754
  msgstr "Parser '%s' ikke fundet."
755
 
756
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:157
757
  msgid "The plugin script was terminated while trying to check the link."
758
  msgstr "Pluginskriptet blev afbrudt, mens det prøvede at tjekke et link."
759
 
760
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:201
761
  msgid "The plugin doesn't know how to check this type of link."
762
  msgstr "Pluginnet ved ikke, hvordan det skal tjekke denne type links."
763
 
764
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:289
765
  msgid "Link is valid."
766
  msgstr "Link er aktivt."
767
 
768
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:291
769
  msgid "Link is broken."
770
  msgstr "Link er dødt."
771
 
772
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:484
773
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:586
774
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:621
775
  msgid "Link is not valid"
776
  msgstr "Link er ikke gyldigt"
777
 
778
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:501
779
  msgid "This link can not be edited because it is not used anywhere on this site."
780
  msgstr "Dette link kan ikke redigeres, fordi det ikke bruges noget steds på denne site."
781
 
782
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:527
783
  msgid "Failed to create a DB entry for the new URL."
784
  msgstr "Det mislykkedes at oprette en databasepost for den nye URL."
785
 
786
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:599
787
  msgid "This link is not a redirect"
788
  msgstr "Dette link er ikke en redirect"
789
 
790
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:648
791
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:685
792
  msgid "Couldn't delete the link's database record"
793
  msgstr "Kunne ikke slette linkets databasepost"
794
 
795
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:770
796
  msgid "Broken"
797
  msgstr "Døde"
798
 
799
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:772
800
  msgid "No broken links found"
801
  msgstr "Ingen døde links fundet"
802
 
803
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:779
804
  msgid "Redirects"
805
  msgstr "Redirigerede"
806
 
807
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:780
808
  msgid "Redirected Links"
809
  msgstr "Redirigerede links"
810
 
811
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:781
812
  msgid "No redirects found"
813
  msgstr "Ingen redirigeringer fundet"
814
 
815
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:789
816
  msgid "All"
817
  msgstr "Alle"
818
 
819
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:790
820
  msgid "Detected Links"
821
  msgstr "Fundne links"
822
 
823
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:791
824
  msgid "No links found (yet)"
825
  msgstr "Ingen links fundet (endnu)"
826
 
827
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:798
828
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:29
829
  msgid "Search"
830
  msgstr "Søg"
831
 
832
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:799
833
  msgid "Search Results"
834
  msgstr "Søgeresultater"
835
 
836
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:800
837
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:843
838
  msgid "No links found for your query"
839
  msgstr "Din forespørgsel returnerede ingen links"
840
 
841
- #: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:151
842
  #, php-format
843
  msgid "Editing is not implemented in the '%s' parser"
844
  msgstr "Redigering er ikke implementeret i '%s'-parser"
845
 
846
- #: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:166
847
  #, php-format
848
  msgid "Unlinking is not implemented in the '%s' parser"
849
  msgstr "Fjernelse af links er ikke implementeret i '%s'-parseren"
@@ -930,59 +964,59 @@ msgstr "Linktekst"
930
  msgid "Link status"
931
  msgstr "Linkstatus"
932
 
933
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:64
934
  msgid "Link type"
935
  msgstr "Linktype"
936
 
937
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:68
938
  msgid "Any"
939
  msgstr "Alle"
940
 
941
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:69
942
  msgid "Normal link"
943
  msgstr "Normalt link"
944
 
945
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:70
946
  msgid "Image"
947
  msgstr "Billede"
948
 
949
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:71
950
  msgid "Custom field"
951
  msgstr "Eget felt"
952
 
953
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:72
954
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/blogroll.php:13
955
  msgid "Bookmark"
956
  msgstr "Bogmærke"
957
 
958
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:73
959
  msgid "Comment"
960
  msgstr "Kommentar"
961
 
962
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:86
963
  msgid "Search Links"
964
  msgstr "Søg links"
965
 
966
- #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:187
967
- #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:254
968
  #, php-format
969
  msgid "HTTP code : %d"
970
  msgstr "HTTP-kode: %d"
971
 
972
- #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:189
973
- #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:256
974
  msgid "(No response)"
975
  msgstr "(Intet svar)"
976
 
977
- #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:195
978
  msgid "Most likely the connection timed out or the domain doesn't exist."
979
  msgstr "Det sandsynligste er, at forbindelsen fik timeout eller at domænet ikke eksisterer."
980
 
981
- #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:263
982
  msgid "Request timed out."
983
  msgstr "Anmodning fik timeout."
984
 
985
- #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:281
986
  msgid "Using Snoopy"
987
  msgstr "Bruger Snoopy"
988
 
@@ -1093,16 +1127,18 @@ msgid "Failed to delete the meta field '%s' on %s [%d]"
1093
  msgstr "Det mislykkedes at slette metafeltet '%s' for %s [%d]"
1094
 
1095
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:191
1096
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:201
1097
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:16
1098
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:41
1099
  msgid "Edit this post"
1100
  msgstr "Redigér dette indlæg"
1101
 
 
 
 
 
1102
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:204
1103
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:19
1104
- msgid "Move this post to the Trash"
1105
- msgstr "Flyt dette indlæg til papirkurven"
1106
 
1107
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:206
1108
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:21
@@ -1125,22 +1161,22 @@ msgstr ""
1125
  msgid "View \"%s\""
1126
  msgstr "Se \"%s\""
1127
 
1128
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:248
1129
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:127
1130
  #, php-format
1131
  msgid "Failed to delete post \"%s\" (%d)"
1132
  msgstr "Det mislykkedes at slette indlægget \"%s\" (%d)"
1133
 
1134
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:479
1135
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:300
1136
  #, php-format
1137
  msgid "%d post moved to the trash"
1138
  msgid_plural "%d posts moved to the trash"
1139
  msgstr[0] "%d indlæg flyttet til papirkurven"
1140
  msgstr[1] "%d indlæg flyttet til papirkurven"
1141
 
1142
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:481
1143
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:302
1144
  #, php-format
1145
  msgid "%d post deleted"
1146
  msgid_plural "%d posts deleted"
@@ -1153,7 +1189,11 @@ msgstr[1] "%d indlæg slettet"
1153
  msgid "I don't know how to edit a '%s' [%d]."
1154
  msgstr "Jeg ved ikke, hvordan '%s' [%d] skal redigeres."
1155
 
1156
- #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:96
 
 
 
 
1157
  #, php-format
1158
  msgid "Updating post %d failed"
1159
  msgstr "Opdatering af indlægget %d mislykkedes"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker 0.9.4.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-07-02 22:21+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Team Blogos <wordpress@blogos.dk>\n"
8
  "Language-Team: Team Blogos <wordpress@blogos.dk>\n"
17
  "X-Poedit-Basepath: d:\\wordpress\\plugins\\broken-link-checker\n"
18
  "X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\broken-link-checker\n"
19
 
20
+ #: d:\wordpress\plugins\broken-link-checker/broken-link-checker.php:315
21
  msgid "Once Weekly"
22
  msgstr "Engang om ugen"
23
 
24
+ #: d:\wordpress\plugins\broken-link-checker/broken-link-checker.php:321
25
+ msgid "Twice a Month"
26
+ msgstr "To gange om måneden"
27
+
28
+ #: d:\wordpress\plugins\broken-link-checker/broken-link-checker.php:344
29
  msgid "Broken Link Checker installation failed"
30
  msgstr "Installation af Broken Link Checker mislykkedes"
31
 
32
+ #: d:\wordpress\plugins\broken-link-checker/core.php:139
33
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:21
34
  msgid "Loading..."
35
  msgstr "Indlæser ..."
36
 
37
+ #: d:\wordpress\plugins\broken-link-checker/core.php:162
38
+ #: d:\wordpress\plugins\broken-link-checker/core.php:921
39
  msgid "[ Network error ]"
40
  msgstr "[ Network-fejl ]"
41
 
42
+ #: d:\wordpress\plugins\broken-link-checker/core.php:187
43
  msgid "Automatically expand the widget if broken links have been detected"
44
  msgstr "Automatisk udvid widgetten, hvis der er fundet døde links"
45
 
46
+ #: d:\wordpress\plugins\broken-link-checker/core.php:424
47
  #, php-format
48
  msgid "Failed to delete old DB tables. Database error : %s"
49
  msgstr "Det mislykkedes at slette gamle databasetabeller. Databasefejl: %s"
50
 
51
+ #: d:\wordpress\plugins\broken-link-checker/core.php:447
52
  #, php-format
53
  msgid "Unexpected error: The plugin doesn't know how to upgrade its database to version '%d'."
54
  msgstr "Uventet fejl: Pluginnet ved ikke, hvordan den skal opdatere dens database til version '%d'."
55
 
56
+ #: d:\wordpress\plugins\broken-link-checker/core.php:499
57
+ #: d:\wordpress\plugins\broken-link-checker/core.php:535
58
+ #: d:\wordpress\plugins\broken-link-checker/core.php:585
59
+ #: d:\wordpress\plugins\broken-link-checker/core.php:617
60
  #, php-format
61
  msgid "Failed to create table '%s'. Database error: %s"
62
  msgstr "Det mislykkedes at oprette tabellen '%s'. Databasefejl: %s"
63
 
64
+ #: d:\wordpress\plugins\broken-link-checker/core.php:671
65
  msgid "Link Checker Settings"
66
  msgstr "Link Checker-indstillinger"
67
 
68
+ #: d:\wordpress\plugins\broken-link-checker/core.php:672
69
  msgid "Link Checker"
70
  msgstr "Link Checker"
71
 
72
+ #: d:\wordpress\plugins\broken-link-checker/core.php:678
73
  msgid "View Broken Links"
74
  msgstr "Se døde links"
75
 
76
+ #: d:\wordpress\plugins\broken-link-checker/core.php:679
77
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:773
78
  msgid "Broken Links"
79
  msgstr "Døde links"
80
 
81
+ #: d:\wordpress\plugins\broken-link-checker/core.php:704
82
  #, php-format
83
  msgid "Highlight links broken for at least %s days"
84
  msgstr "Fremhæv links, der har været døde i mindst %s dage"
85
 
86
+ #: d:\wordpress\plugins\broken-link-checker/core.php:730
87
  msgid "Settings"
88
  msgstr "Indstillinger"
89
 
90
+ #: d:\wordpress\plugins\broken-link-checker/core.php:740
91
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1278
92
  #, php-format
93
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
94
  msgstr "Fejl: Pluginnets databasetabeller er ikke up-to-date! (Nuværende version: %d; forventet: %d)"
95
 
96
+ #: d:\wordpress\plugins\broken-link-checker/core.php:877
97
  msgid "Settings saved."
98
  msgstr "Indstillinger gemt."
99
 
100
+ #: d:\wordpress\plugins\broken-link-checker/core.php:886
101
  msgid "Broken Link Checker Options"
102
  msgstr "Indstillinger for Broken Link Checker"
103
 
104
+ #: d:\wordpress\plugins\broken-link-checker/core.php:899
105
  msgid "Status"
106
  msgstr "Status"
107
 
108
+ #: d:\wordpress\plugins\broken-link-checker/core.php:901
109
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1256
110
  msgid "Show debug info"
111
  msgstr "Vis debug-info"
112
 
113
+ #: d:\wordpress\plugins\broken-link-checker/core.php:934
114
  msgid "Re-check all pages"
115
  msgstr "Tjek alle sider igen"
116
 
117
+ #: d:\wordpress\plugins\broken-link-checker/core.php:958
118
  msgid "Check each link"
119
  msgstr "Tjek hvert link"
120
 
121
+ #: d:\wordpress\plugins\broken-link-checker/core.php:963
122
  #, php-format
123
  msgid "Every %s hours"
124
  msgstr "hver %s timer"
125
 
126
+ #: d:\wordpress\plugins\broken-link-checker/core.php:972
127
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
128
  msgstr "Eksisterende links vil blive tjekket med dette mellemrum. Nye links tjekkes normalt så hurtigt som muligt."
129
 
130
+ #: d:\wordpress\plugins\broken-link-checker/core.php:979
131
  msgid "Broken link CSS"
132
  msgstr "CSS for Broken link"
133
 
134
+ #: d:\wordpress\plugins\broken-link-checker/core.php:984
135
  msgid "Apply <em>class=\"broken_link\"</em> to broken links"
136
  msgstr "Tilføj <em>class=\"broken_link\"</em> til døde links"
137
 
138
+ #: d:\wordpress\plugins\broken-link-checker/core.php:996
139
  msgid "Removed link CSS"
140
  msgstr "Fjern link-CSS"
141
 
142
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1001
143
  msgid "Apply <em>class=\"removed_link\"</em> to unlinked links"
144
  msgstr "Anvend <em>class=\"removed_link\"</em> til links, hvor linket er fjernet"
145
 
146
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1013
147
  msgid "Broken link SEO"
148
  msgstr "Broken link SEO"
149
 
150
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1018
151
  msgid "Apply <em>rel=\"nofollow\"</em> to broken links"
152
  msgstr "Anvend <em>rel=\"nofolow\"</em> på døde links"
153
 
154
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1024
155
  msgid "Exclusion list"
156
  msgstr "Eksklusionsliste"
157
 
158
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1025
159
  msgid "Don't check links where the URL contains any of these words (one per line) :"
160
  msgstr "Tjek ikke links, hvor URL&#39;en indeholder et af disse ord (et ord per linje):"
161
 
162
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1035
163
  msgid "Custom fields"
164
  msgstr "Egne felter"
165
 
166
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1036
167
  msgid "Check URLs entered in these custom fields (one per line) :"
168
  msgstr "Tjek URL&#39;er i disse Egne felter (en per linje):"
169
 
170
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1046
171
+ msgid "Comment links"
172
+ msgstr "Kommentarlinks"
173
+
174
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1052
175
+ msgid "Check comment links"
176
+ msgstr "Tjek kommentarlinks"
177
+
178
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1059
179
  msgid "E-mail notifications"
180
  msgstr "E-mail-meddelelser"
181
 
182
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1065
183
  msgid "Send me e-mail notifications about newly detected broken links"
184
  msgstr "Send mig e-mail-meddelelser om nyligt opdagede døde links"
185
 
186
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1073
187
  msgid "Advanced"
188
  msgstr "Avanceret"
189
 
190
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1078
191
  msgid "Timeout"
192
  msgstr "Timeout"
193
 
194
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1084
195
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1128
196
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3193
197
  #, php-format
198
  msgid "%s seconds"
199
  msgstr "%s sekunder"
200
 
201
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1093
202
  msgid "Links that take longer than this to load will be marked as broken."
203
  msgstr "Links, som tager længere tid at tjekke end dette, vil blive markeret som døde."
204
 
205
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1100
206
  msgid "Link monitor"
207
  msgstr "Linkovervågning"
208
 
209
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1106
210
  msgid "Run continuously while the Dashboard is open"
211
  msgstr "Kør kontinuerligt, når kontrolpanelet er åbent"
212
 
213
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1114
214
  msgid "Run hourly in the background"
215
  msgstr "Kør hver time i baggrunden"
216
 
217
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1122
218
  msgid "Max. execution time"
219
  msgstr "Max udførelsestid"
220
 
221
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1139
222
  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."
223
  msgstr "Pluginnet fungerer ved med mellemrum at oprette et job i baggrunden, som undersøger dine indlæg for links, tjekker de fundne URL&#39;er og foretager andre tidskrævende opgaver. Her kan du angive, hvor længe linkovervågningen max må køre hver gang, inden den skal stoppe."
224
 
225
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1149
226
  msgid "Custom temporary directory"
227
  msgstr "Brugerdefineret tmp-mappe"
228
 
229
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1158
230
  msgid "OK"
231
  msgstr "OK"
232
 
233
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1161
234
  msgid "Error : This directory isn't writable by PHP."
235
  msgstr "Fejl: Denne mappe er ikke skrivbar for PHP."
236
 
237
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1166
238
  msgid "Error : This directory doesn't exist."
239
  msgstr "Fejl: Denne mappe eksisterer ikke."
240
 
241
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1174
242
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
243
  msgstr "Sæt dette felt, hvis du ønsker, at pluginnet skal bruge en brugerdefineret mappe til sine lock-filer. Ellers skal det ikke udfyldes."
244
 
245
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1181
246
  msgid "Server load limit"
247
  msgstr "Begrænsning på serverbelastning"
248
 
249
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1222
250
  #, php-format
251
  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."
252
  msgstr "Linktjekning vil blive midlertidigt afbrudt, hvis den gennemsnitlige <a href=\"%s\">serverbelastning</a> er større end dette tal. Lad feltet stå tomt, hvis du vil deaktivere begrænsning af belastningen."
253
 
254
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1232
255
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
256
  msgstr "Begrænsning af belastning virker kun på Linux-lignende systemer, hvor <code>/proc/loadavg</code> findes og er tilgængelig."
257
 
258
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1241
259
  msgid "Save Changes"
260
  msgstr "Gem ændringer"
261
 
262
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1254
263
  msgid "Hide debug info"
264
  msgstr "Skjul debug-info"
265
 
266
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1371
267
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1707
268
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1739
269
  #, php-format
270
  msgid "Database error : %s"
271
  msgstr "Database-fejl : %s"
272
 
273
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1448
274
  msgid "Bulk Actions"
275
  msgstr "Massehandlinger"
276
 
277
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1449
278
  msgid "Recheck"
279
  msgstr "Tjek igen"
280
 
281
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1450
282
  msgid "Fix redirects"
283
  msgstr "Fix redirigerede"
284
 
285
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1451
286
+ msgid "Mark as not broken"
287
+ msgstr "Markér som ikke-død"
288
+
289
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1452
290
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1606
291
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:293
292
  msgid "Unlink"
293
  msgstr "Fjern link"
294
 
295
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1453
296
  msgid "Delete sources"
297
  msgstr "Slet kilder"
298
 
299
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1467
300
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1641
301
  msgid "Apply"
302
  msgstr "Anvend"
303
 
304
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1474
305
  msgid "&laquo;"
306
  msgstr "&laquo;"
307
 
308
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1475
309
  msgid "&raquo;"
310
  msgstr "&raquo;"
311
 
312
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1482
313
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1647
314
  #, php-format
315
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
316
  msgstr "Viser %s&#8211;%s af <span class=\"current-link-count\">%s</span>"
317
 
318
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1501
319
  msgid "Source"
320
  msgstr "Kilde"
321
 
322
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1502
323
  msgid "Link Text"
324
  msgstr "Linktekst"
325
 
326
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1503
327
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:42
328
  msgid "URL"
329
  msgstr "URL"
330
 
331
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1579
332
  msgid "[An orphaned link! This is a bug.]"
333
  msgstr "[En forælderløs link! Dette er en bug.]"
334
 
335
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1603
336
  msgid "Show more info about this link"
337
  msgstr "Vis flere oplysninger om dette link"
338
 
339
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1603
340
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3066
341
  msgid "Details"
342
  msgstr "Detaljer"
343
 
344
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1605
345
  msgid "Remove this link from all posts"
346
  msgstr "Fjern dette link fra alle indlæg"
347
 
348
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1611
349
  msgid "Remove this link from the list of broken links and mark it as valid"
350
  msgstr "Fjern dette link fra listen over døde links og markér det som aktivt"
351
 
352
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1612
353
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:78
354
  msgid "Not broken"
355
  msgstr "Ikke død"
356
 
357
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1616
358
  msgid "Edit link URL"
359
  msgstr "Redigér link-URL"
360
 
361
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1616
362
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:199
363
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:227
364
  msgid "Edit URL"
365
  msgstr "Redigér URL"
366
 
367
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1622
368
  msgid "Cancel URL editing"
369
  msgstr "Anullér redigering af URL"
370
 
371
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1622
372
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:88
373
  msgid "Cancel"
374
  msgstr "Annullér"
375
 
376
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1689
377
  msgid "You must enter a filter name!"
378
  msgstr "Du <i>skal</i> indtaste et filternavn!"
379
 
380
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1693
381
  msgid "Invalid search query."
382
  msgstr "Ugyldig søgeforespørgsel."
383
 
384
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1702
385
  #, php-format
386
  msgid "Filter \"%s\" created"
387
  msgstr "Filter \"%s\" oprettet"
388
 
389
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1729
390
  msgid "Filter ID not specified."
391
  msgstr "Filter-id ikke angivet."
392
 
393
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1736
394
  msgid "Filter deleted"
395
  msgstr "Filter slettet"
396
 
397
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1784
398
  #, php-format
399
  msgid "Replaced %d redirect with a direct link"
400
  msgid_plural "Replaced %d redirects with direct links"
401
  msgstr[0] "Erstattede %d redirigeret link med et direkte link"
402
  msgstr[1] "Erstattede %d redirigerede links med direkte links"
403
 
404
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1795
405
  #, php-format
406
  msgid "Failed to fix %d redirect"
407
  msgid_plural "Failed to fix %d redirects"
408
  msgstr[0] "Det lykkedes ikke at fixe %d redirigeret link"
409
  msgstr[1] "Det lykkedes ikke at fixe %d redirigerede links"
410
 
411
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1805
412
  msgid "None of the selected links are redirects!"
413
  msgstr "Ingen af de valgte links er redirigerede links!"
414
 
415
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1851
416
  #, php-format
417
  msgid "%d link removed"
418
  msgid_plural "%d links removed"
419
  msgstr[0] "%d link fjernet"
420
  msgstr[1] "%d links fjernet"
421
 
422
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1862
423
  #, php-format
424
  msgid "Failed to remove %d link"
425
  msgid_plural "Failed to remove %d links"
426
  msgstr[0] "Det mislykkedes for pluginnet at fjerne %d link."
427
  msgstr[1] "Det mislykkedes for pluginnet at fjerne %d links."
428
 
429
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1950
430
  msgid "Didn't find anything to delete!"
431
  msgstr "Fandt ikke noget, der kan slettes!"
432
 
433
+ #: d:\wordpress\plugins\broken-link-checker/core.php:1978
434
  #, php-format
435
  msgid "%d link scheduled for rechecking"
436
  msgid_plural "%d links scheduled for rechecking"
437
  msgstr[0] "%d link er planlagt til at blive tjekket igen"
438
  msgstr[1] "%d links er planlagt til at blive tjekket igen"
439
 
440
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2023
441
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2700
442
+ msgid "This link was manually marked as working by the user."
443
+ msgstr "Dette link blev markeret manuelt som et aktivt link af brugeren."
444
+
445
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2030
446
+ #, php-format
447
+ msgid "Couldn't modify link %d"
448
+ msgstr "Kunne ikke ændre linket %d"
449
+
450
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2041
451
+ #, php-format
452
+ msgid "%d link marked as not broken"
453
+ msgid_plural "%d links marked as not broken"
454
+ msgstr[0] "Et link markeret som ikke-dødt"
455
+ msgstr[1] "%d links markeret som ikke-døde"
456
+
457
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2065
458
  msgid "Post published on"
459
  msgstr "Indlæg udgivet den"
460
 
461
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2070
462
  msgid "Link last checked"
463
  msgstr "Link sidst tjekket"
464
 
465
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2074
466
  msgid "Never"
467
  msgstr "Aldrig"
468
 
469
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2080
470
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:45
471
  msgid "HTTP code"
472
  msgstr "HTTP-kode"
473
 
474
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2085
475
  msgid "Response time"
476
  msgstr "Svartid"
477
 
478
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2087
479
  #, php-format
480
  msgid "%2.3f seconds"
481
  msgstr "%2.3f sekunder"
482
 
483
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2090
484
  msgid "Final URL"
485
  msgstr "Endelige URL"
486
 
487
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2095
488
  msgid "Redirect count"
489
  msgstr "Antal redirigeringer"
490
 
491
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2100
492
  msgid "Instance count"
493
  msgstr "Antal instanser"
494
 
495
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2109
496
  #, php-format
497
  msgid "This link has failed %d time."
498
  msgid_plural "This link has failed %d times."
499
  msgstr[0] "Der har været fejl på dette link %d gang."
500
  msgstr[1] "Der har været fejl på dette link %d gange."
501
 
502
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2117
503
  #, php-format
504
  msgid "This link has been broken for %s."
505
  msgstr "Dette link har været dødt i %s."
506
 
507
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2128
508
  msgid "Log"
509
  msgstr "Log"
510
 
511
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2154
512
  msgid "less than a minute"
513
  msgstr "mindre end et minut"
514
 
515
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2162
516
  #, php-format
517
  msgid "%d minute"
518
  msgid_plural "%d minutes"
519
  msgstr[0] "%d minut"
520
  msgstr[1] "%d minutter"
521
 
522
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2176
523
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2203
524
  #, php-format
525
  msgid "%d hour"
526
  msgid_plural "%d hours"
527
  msgstr[0] "%d time"
528
  msgstr[1] "%d timer"
529
 
530
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2191
531
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2232
532
  #, php-format
533
  msgid "%d day"
534
  msgid_plural "%d days"
535
  msgstr[0] "%d dag"
536
  msgstr[1] "%d dage"
537
 
538
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2221
539
  #, php-format
540
  msgid "%d month"
541
  msgid_plural "%d months"
542
  msgstr[0] "%d måned"
543
  msgstr[1] "%d måneder"
544
 
545
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2566
546
  msgid "View broken links"
547
  msgstr "Se døde links"
548
 
549
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2567
550
  #, php-format
551
  msgid "Found %d broken link"
552
  msgid_plural "Found %d broken links"
553
  msgstr[0] "Har fundet %d dødt link"
554
  msgstr[1] "Har fundet %d døde links"
555
 
556
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2573
557
  msgid "No broken links found."
558
  msgstr "Ingen døde links fundet."
559
 
560
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2580
561
  #, php-format
562
  msgid "%d URL in the work queue"
563
  msgid_plural "%d URLs in the work queue"
564
  msgstr[0] "%d URL i arbejdskøen"
565
  msgstr[1] "%d URL&#39;er i arbejdskøen"
566
 
567
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2583
568
  msgid "No URLs in the work queue."
569
  msgstr "Ingen URL&#39;er i arbejdskøen"
570
 
571
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2589
572
  #, php-format
573
  msgid "Detected %d unique URL"
574
  msgid_plural "Detected %d unique URLs"
575
  msgstr[0] "Fandt %d unik URL"
576
  msgstr[1] "Fandt %d unikke URL&#39;er"
577
 
578
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2590
579
  #, php-format
580
  msgid "in %d link"
581
  msgid_plural "in %d links"
582
  msgstr[0] "i %d link"
583
  msgstr[1] "i %d links"
584
 
585
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2595
586
  msgid "and still searching..."
587
  msgstr "og leder stadig ..."
588
 
589
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2601
590
  msgid "Searching your blog for links..."
591
  msgstr "Gennemsøger din blog for links ..."
592
 
593
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2603
594
  msgid "No links detected."
595
  msgstr "Ingen links fundet."
596
 
597
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2685
598
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2721
599
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2784
600
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2866
601
  msgid "You're not allowed to do that!"
602
  msgstr "Du har ikke lov til at gøre dette!"
603
 
604
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2693
605
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2731
606
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2794
607
  #, php-format
608
  msgid "Oops, I can't find the link %d"
609
  msgstr "Ups. Jeg kan ikke finde linket %d"
610
 
611
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2706
 
 
 
 
612
  msgid "Oops, couldn't modify the link!"
613
  msgstr "Ups, kunne ikke ændre linket!"
614
 
615
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2709
616
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2820
617
  msgid "Error : link_id not specified"
618
  msgstr "Fejl: link_id ikke angivet"
619
 
620
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2741
621
  msgid "Oops, the new URL is invalid!"
622
  msgstr "Ups. Den nye URL er ugyldig!"
623
 
624
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2752
625
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2803
626
  msgid "An unexpected error occured!"
627
  msgstr "En uventet fejl opstod!"
628
 
629
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2770
630
  msgid "Error : link_id or new_url not specified"
631
  msgstr "Fejl: link_id eller new_url ikke angivet"
632
 
633
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2829
634
  msgid "You don't have sufficient privileges to access this information!"
635
  msgstr "Du har ikke tilstrækkelige rettigheder til at tilgå denne information!"
636
 
637
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2842
638
  msgid "Error : link ID not specified"
639
  msgstr "Fejl: link-id ikke angivet"
640
 
641
+ #: d:\wordpress\plugins\broken-link-checker/core.php:2853
642
  #, php-format
643
  msgid "Failed to load link details (%s)"
644
  msgstr "Det mislykkedes at indlæse link-detaljer (%s)"
645
 
646
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3038
647
+ msgid "Broken Link Checker"
648
+ msgstr "Broken Link Checker"
649
+
650
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3052
651
  #, php-format
652
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
653
  msgstr "Der er ikke adgang til den aktuelle tmp-mappe; angiv venligst <a href=\"%s\">en anden</a>."
654
 
655
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3057
656
  #, php-format
657
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
658
  msgstr "Gør venligst mappen <code>%1$s</code> skrivbar for pluginnet eller <a href=\"%2$s\">angiv en brugerdefineret tmp-mappe</a>."
659
 
660
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3064
661
  msgid "Broken Link Checker can't create a lockfile."
662
  msgstr "Broken Link Checker kan ikke oprette en lock-fil."
663
 
664
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3069
665
  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."
666
  msgstr "Pluginnet bruger en filbaseret lock-mekanisme for at sikre, at kun én instans af den ressourcekrævende linktjekningsalgoritme kører på én gang. Desværre kan BLC ikke finde en skrivbar mappe til at gemme lock-filen i. Det mislykkedes at finde placeringen af din servers tmp-mappe, og pluginnets egen mappe er ikke skrivbar for PHP. For at løse dette problem skal du gøre pluginnets mappe skrivbar eller indtaste en brugerdefineret tmp-mappe i pluginnets indstillinger."
667
 
668
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3088
669
  msgid "PHP version"
670
  msgstr "PHP version"
671
 
672
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3094
673
  msgid "MySQL version"
674
  msgstr "MySQL version"
675
 
676
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3107
677
  msgid "You have an old version of CURL. Redirect detection may not work properly."
678
  msgstr "Du har en gammel version af cURL. Det er ikke sikkert, at detektion af redirigeringer fungerer ordentligt."
679
 
680
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3119
681
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3135
682
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3140
683
  msgid "Not installed"
684
  msgstr "Ikke installeret"
685
 
686
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3122
687
  msgid "CURL version"
688
  msgstr "cURL version"
689
 
690
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3128
691
  msgid "Installed"
692
  msgstr "Installeret"
693
 
694
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3141
695
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
696
  msgstr "Du skal have enten cURL eller Snoopy installeret, hvis pluginnet skal virke!"
697
 
698
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3152
699
  msgid "On"
700
  msgstr "Til"
701
 
702
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3153
703
  msgid "Redirects may be detected as broken links when safe_mode is on."
704
  msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når safe_mode er til."
705
 
706
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3158
707
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3172
708
  msgid "Off"
709
  msgstr "Fra"
710
 
711
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3166
712
  #, php-format
713
  msgid "On ( %s )"
714
  msgstr "Fra ( %s )"
715
 
716
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3167
717
  msgid "Redirects may be detected as broken links when open_basedir is on."
718
  msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når open_basedir er til."
719
 
720
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3186
721
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
722
  msgstr "Kan ikke oprette lock-fil. Angiv venligst en brugerdefineret tmp-mappe."
723
 
724
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3221
725
  #, php-format
726
  msgid "[%s] Broken links detected"
727
  msgstr "[%s] døde links fundet"
728
 
729
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3227
730
  #, php-format
731
  msgid "Broken Link Checker has detected %d new broken link on your site."
732
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
733
  msgstr[0] "Broken Link Checker har opdaget %d nyt dødt link på din site."
734
  msgstr[1] "Broken Link Checker har opdaget %d nye døde links på din site."
735
 
736
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3242
737
  #, php-format
738
  msgid "Here's a list of the first %d broken links:"
739
  msgid_plural "Here's a list of the first %d broken links:"
740
  msgstr[0] "Her er en liste med det første døde link:"
741
  msgstr[1] "Her er en liste med de første %d døde links:"
742
 
743
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3250
744
  msgid "Here's a list of the new broken links: "
745
  msgstr "Her er en liste med de nye døde links: "
746
 
747
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3262
748
  #, php-format
749
  msgid "Link text : %s"
750
  msgstr "Linktekst: %s"
751
 
752
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3263
753
  #, php-format
754
  msgid "Link URL : <a href=\"%s\">%s</a>"
755
  msgstr "Link-URL: <a href=\"%s\">%s</a>"
756
 
757
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3264
758
  #, php-format
759
  msgid "Source : %s"
760
  msgstr "Kilde: %s"
761
 
762
+ #: d:\wordpress\plugins\broken-link-checker/core.php:3278
763
  msgid "You can see all broken links here:"
764
  msgstr "Du kan se alle de døde links her:"
765
 
766
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:279
767
  #, php-format
768
  msgid "Container type '%s' not recognized"
769
  msgstr "Container-type '%s' ikke genkendt"
770
 
771
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:809
772
  #, php-format
773
  msgid "%d '%s' has been deleted"
774
  msgid_plural "%d '%s' have been deleted"
787
  msgid "Parser '%s' not found."
788
  msgstr "Parser '%s' ikke fundet."
789
 
790
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:152
791
  msgid "The plugin script was terminated while trying to check the link."
792
  msgstr "Pluginskriptet blev afbrudt, mens det prøvede at tjekke et link."
793
 
794
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:196
795
  msgid "The plugin doesn't know how to check this type of link."
796
  msgstr "Pluginnet ved ikke, hvordan det skal tjekke denne type links."
797
 
798
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:284
799
  msgid "Link is valid."
800
  msgstr "Link er aktivt."
801
 
802
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:286
803
  msgid "Link is broken."
804
  msgstr "Link er dødt."
805
 
806
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:479
807
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:581
808
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:616
809
  msgid "Link is not valid"
810
  msgstr "Link er ikke gyldigt"
811
 
812
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:496
813
  msgid "This link can not be edited because it is not used anywhere on this site."
814
  msgstr "Dette link kan ikke redigeres, fordi det ikke bruges noget steds på denne site."
815
 
816
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:522
817
  msgid "Failed to create a DB entry for the new URL."
818
  msgstr "Det mislykkedes at oprette en databasepost for den nye URL."
819
 
820
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:594
821
  msgid "This link is not a redirect"
822
  msgstr "Dette link er ikke en redirect"
823
 
824
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:643
825
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:680
826
  msgid "Couldn't delete the link's database record"
827
  msgstr "Kunne ikke slette linkets databasepost"
828
 
829
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:772
830
  msgid "Broken"
831
  msgstr "Døde"
832
 
833
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:774
834
  msgid "No broken links found"
835
  msgstr "Ingen døde links fundet"
836
 
837
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:781
838
  msgid "Redirects"
839
  msgstr "Redirigerede"
840
 
841
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:782
842
  msgid "Redirected Links"
843
  msgstr "Redirigerede links"
844
 
845
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:783
846
  msgid "No redirects found"
847
  msgstr "Ingen redirigeringer fundet"
848
 
849
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:791
850
  msgid "All"
851
  msgstr "Alle"
852
 
853
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:792
854
  msgid "Detected Links"
855
  msgstr "Fundne links"
856
 
857
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:793
858
  msgid "No links found (yet)"
859
  msgstr "Ingen links fundet (endnu)"
860
 
861
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:800
862
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:29
863
  msgid "Search"
864
  msgstr "Søg"
865
 
866
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:801
867
  msgid "Search Results"
868
  msgstr "Søgeresultater"
869
 
870
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:802
871
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:853
872
  msgid "No links found for your query"
873
  msgstr "Din forespørgsel returnerede ingen links"
874
 
875
+ #: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:173
876
  #, php-format
877
  msgid "Editing is not implemented in the '%s' parser"
878
  msgstr "Redigering er ikke implementeret i '%s'-parser"
879
 
880
+ #: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:188
881
  #, php-format
882
  msgid "Unlinking is not implemented in the '%s' parser"
883
  msgstr "Fjernelse af links er ikke implementeret i '%s'-parseren"
964
  msgid "Link status"
965
  msgstr "Linkstatus"
966
 
967
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:65
968
  msgid "Link type"
969
  msgstr "Linktype"
970
 
971
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:69
972
  msgid "Any"
973
  msgstr "Alle"
974
 
975
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:70
976
  msgid "Normal link"
977
  msgstr "Normalt link"
978
 
979
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:71
980
  msgid "Image"
981
  msgstr "Billede"
982
 
983
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:72
984
  msgid "Custom field"
985
  msgstr "Eget felt"
986
 
987
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:73
988
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/blogroll.php:13
989
  msgid "Bookmark"
990
  msgstr "Bogmærke"
991
 
992
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:74
993
  msgid "Comment"
994
  msgstr "Kommentar"
995
 
996
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:87
997
  msgid "Search Links"
998
  msgstr "Søg links"
999
 
1000
+ #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:195
1001
+ #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:262
1002
  #, php-format
1003
  msgid "HTTP code : %d"
1004
  msgstr "HTTP-kode: %d"
1005
 
1006
+ #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:197
1007
+ #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:264
1008
  msgid "(No response)"
1009
  msgstr "(Intet svar)"
1010
 
1011
+ #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:203
1012
  msgid "Most likely the connection timed out or the domain doesn't exist."
1013
  msgstr "Det sandsynligste er, at forbindelsen fik timeout eller at domænet ikke eksisterer."
1014
 
1015
+ #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:271
1016
  msgid "Request timed out."
1017
  msgstr "Anmodning fik timeout."
1018
 
1019
+ #: d:\wordpress\plugins\broken-link-checker/includes/checkers/http.php:289
1020
  msgid "Using Snoopy"
1021
  msgstr "Bruger Snoopy"
1022
 
1127
  msgstr "Det mislykkedes at slette metafeltet '%s' for %s [%d]"
1128
 
1129
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:191
 
1130
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:16
1131
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:41
1132
  msgid "Edit this post"
1133
  msgstr "Redigér dette indlæg"
1134
 
1135
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:201
1136
+ msgid "Edit this item"
1137
+ msgstr "Redigér denne"
1138
+
1139
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:204
1140
+ msgid "Move this item to the Trash"
1141
+ msgstr "Flyt denne til papirkurven"
 
1142
 
1143
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:206
1144
  #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:21
1161
  msgid "View \"%s\""
1162
  msgstr "Se \"%s\""
1163
 
1164
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:304
1165
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:183
1166
  #, php-format
1167
  msgid "Failed to delete post \"%s\" (%d)"
1168
  msgstr "Det mislykkedes at slette indlægget \"%s\" (%d)"
1169
 
1170
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:535
1171
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:356
1172
  #, php-format
1173
  msgid "%d post moved to the trash"
1174
  msgid_plural "%d posts moved to the trash"
1175
  msgstr[0] "%d indlæg flyttet til papirkurven"
1176
  msgstr[1] "%d indlæg flyttet til papirkurven"
1177
 
1178
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/custom_field.php:537
1179
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:358
1180
  #, php-format
1181
  msgid "%d post deleted"
1182
  msgid_plural "%d posts deleted"
1189
  msgid "I don't know how to edit a '%s' [%d]."
1190
  msgstr "Jeg ved ikke, hvordan '%s' [%d] skal redigeres."
1191
 
1192
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:19
1193
+ msgid "Move this post to the Trash"
1194
+ msgstr "Flyt dette indlæg til papirkurven"
1195
+
1196
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers/post.php:152
1197
  #, php-format
1198
  msgid "Updating post %d failed"
1199
  msgstr "Opdatering af indlægget %d mislykkedes"
languages/broken-link-checker-it_IT.mo CHANGED
Binary file
languages/broken-link-checker-it_IT.po CHANGED
@@ -7,10 +7,10 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Broken Link Checker in italiano\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
10
- "POT-Creation-Date: 2010-04-28 18:48+0000\n"
11
- "PO-Revision-Date: 2010-04-30 10:06+0100\n"
12
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
13
- "Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
@@ -18,711 +18,751 @@ msgstr ""
18
  "X-Poedit-Language: Italian\n"
19
  "X-Poedit-Country: ITALY\n"
20
 
21
- #: broken-link-checker.php:273
22
  msgid "Once Weekly"
23
  msgstr "Una volta alla settimana"
24
 
25
- #: core.php:137
 
 
 
 
 
 
 
 
26
  #: includes/admin/links-page-js.php:21
27
  msgid "Loading..."
28
  msgstr "In carica..."
29
 
30
- #: core.php:160
31
- #: core.php:696
32
  msgid "[ Network error ]"
33
  msgstr "[ Network error ]"
34
 
35
- #: core.php:185
36
  msgid "Automatically expand the widget if broken links have been detected"
37
  msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
38
 
39
- #: core.php:296
40
  #, php-format
41
  msgid "Failed to delete old DB tables. Database error : %s"
42
  msgstr "Non é stato possibile cancellare le vecchie tabelle del DB. Errore database : %s"
43
 
44
- #: core.php:313
45
  #, php-format
46
  msgid "Unexpected error: The plugin doesn't know how to upgrade its database to version '%d'."
47
  msgstr "Errore inatteso: il plugin non é in grado di aggiornare il proprio database alla versione '%d'."
48
 
49
- #: core.php:349
50
- #: core.php:378
51
- #: core.php:420
52
- #: core.php:445
53
  #, php-format
54
  msgid "Failed to create table '%s'. Database error: %s"
55
  msgstr "Non é stato possibile creare la tabella '%s'. Errore database: %s"
56
 
57
- #: core.php:473
58
  msgid "Link Checker Settings"
59
  msgstr "Impostazioni Link Checker"
60
 
61
- #: core.php:474
62
  msgid "Link Checker"
63
  msgstr "Link Checker"
64
 
65
- #: core.php:480
66
  msgid "View Broken Links"
67
  msgstr "Visualizza i link rotti"
68
 
69
- #: core.php:481
70
- #: includes/links.php:771
71
  msgid "Broken Links"
72
  msgstr "Link rotti"
73
 
74
- #: core.php:502
75
  #, php-format
76
  msgid "Highlight links broken for at least %s days"
77
  msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
78
 
79
- #: core.php:528
80
  msgid "Settings"
81
  msgstr "Impostazioni"
82
 
83
- #: core.php:538
84
- #: core.php:1039
85
  #, php-format
86
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
87
  msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
88
 
89
- #: core.php:653
90
  msgid "Settings saved."
91
  msgstr "Le impostazioni sono state salvate."
92
 
93
- #: core.php:661
94
  msgid "Broken Link Checker Options"
95
  msgstr "Opzioni Broken Link Checker"
96
 
97
- #: core.php:674
98
  msgid "Status"
99
  msgstr "Stato"
100
 
101
- #: core.php:676
102
- #: core.php:1019
103
  msgid "Show debug info"
104
  msgstr "Mostra info debug"
105
 
106
- #: core.php:709
107
  msgid "Re-check all pages"
108
  msgstr "Ricontrolla tutte le pagine"
109
 
110
- #: core.php:733
111
  msgid "Check each link"
112
  msgstr "Controlla i link"
113
 
114
- #: core.php:738
115
  #, php-format
116
  msgid "Every %s hours"
117
  msgstr "Ogni %s ore"
118
 
119
- #: core.php:747
120
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
121
  msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
122
 
123
- #: core.php:754
124
  msgid "Broken link CSS"
125
  msgstr "CSS link rotto"
126
 
127
- #: core.php:759
128
  msgid "Apply <em>class=\"broken_link\"</em> to broken links"
129
  msgstr "applica l'attributo <em>class=\"broken_link\"</em> ai link rotti"
130
 
131
- #: core.php:771
132
  msgid "Removed link CSS"
133
  msgstr "CSS link rimosso"
134
 
135
- #: core.php:776
136
  msgid "Apply <em>class=\"removed_link\"</em> to unlinked links"
137
  msgstr "Applica l'attributo <em>class=\"broken_link\"</em> ai link delinkati"
138
 
139
- #: core.php:788
140
  msgid "Broken link SEO"
141
  msgstr "SEO link rotto"
142
 
143
- #: core.php:793
144
  msgid "Apply <em>rel=\"nofollow\"</em> to broken links"
145
  msgstr "applica l'attributo <em>rel=\"nofollow\"</em> ai link rotti"
146
 
147
- #: core.php:799
148
  msgid "Exclusion list"
149
  msgstr "Lista estromessi"
150
 
151
- #: core.php:800
152
  msgid "Don't check links where the URL contains any of these words (one per line) :"
153
  msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
154
 
155
- #: core.php:810
156
  msgid "Custom fields"
157
  msgstr "Campi personalizzati"
158
 
159
- #: core.php:811
160
  msgid "Check URLs entered in these custom fields (one per line) :"
161
  msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
162
 
163
- #: core.php:821
 
 
 
 
 
 
 
 
164
  msgid "E-mail notifications"
165
  msgstr "Notifiche email"
166
 
167
- #: core.php:827
168
  msgid "Send me e-mail notifications about newly detected broken links"
169
  msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
170
 
171
- #: core.php:835
172
  msgid "Advanced"
173
  msgstr "Avanzate"
174
 
175
- #: core.php:841
176
  msgid "Timeout"
177
  msgstr "Timeout"
178
 
179
- #: core.php:847
180
- #: core.php:891
 
181
  #, php-format
182
  msgid "%s seconds"
183
  msgstr "%s secondi"
184
 
185
- #: core.php:856
186
  msgid "Links that take longer than this to load will be marked as broken."
187
  msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
188
 
189
- #: core.php:863
190
  msgid "Link monitor"
191
  msgstr "Monitoraggio link"
192
 
193
- #: core.php:869
194
  msgid "Run continuously while the Dashboard is open"
195
  msgstr "Funzionamento continuo durante il periodo di login"
196
 
197
- #: core.php:877
198
  msgid "Run hourly in the background"
199
  msgstr "Funzionamento in background ogni ora"
200
 
201
- #: core.php:885
202
  msgid "Max. execution time"
203
  msgstr "Tempo max. operazione"
204
 
205
- #: core.php:902
206
  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."
207
  msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
208
 
209
- #: core.php:912
210
  msgid "Custom temporary directory"
211
  msgstr "Cartella temporanea personalizzata:"
212
 
213
- #: core.php:921
214
  msgid "OK"
215
  msgstr "OK"
216
 
217
- #: core.php:924
218
  msgid "Error : This directory isn't writable by PHP."
219
  msgstr "Errore : questa cartella non é scrivibile via PHP."
220
 
221
- #: core.php:929
222
  msgid "Error : This directory doesn't exist."
223
  msgstr "Errore : questa cartella non esiste."
224
 
225
- #: core.php:937
226
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
227
  msgstr "Compila questo campo qualora gradissi che il plugin faccia uso di una cartella personalizzata per i lockfile diversamente, lascia in bianco."
228
 
229
- #: core.php:944
230
  msgid "Server load limit"
231
  msgstr "Limite server load"
232
 
233
- #: core.php:985
234
  #, php-format
235
  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."
236
  msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
237
 
238
- #: core.php:995
239
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
240
  msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
241
 
242
- #: core.php:1004
243
  msgid "Save Changes"
244
  msgstr "Salva le modifiche"
245
 
246
- #: core.php:1017
247
  msgid "Hide debug info"
248
  msgstr "Nascondi le info debug"
249
 
250
- #: core.php:1125
251
- #: core.php:1458
252
- #: core.php:1490
253
  #, php-format
254
  msgid "Database error : %s"
255
  msgstr "Errore database : %s"
256
 
257
- #: core.php:1200
258
  msgid "Bulk Actions"
259
  msgstr "Azione di massa"
260
 
261
- #: core.php:1201
262
  msgid "Recheck"
263
  msgstr "Ricontrolla"
264
 
265
- #: core.php:1202
266
  msgid "Fix redirects"
267
  msgstr "Correggi re-indirizzamenti"
268
 
269
- #: core.php:1203
270
- #: core.php:1357
 
 
 
 
271
  #: includes/admin/links-page-js.php:293
272
  msgid "Unlink"
273
  msgstr "Scollega"
274
 
275
- #: core.php:1204
276
  msgid "Delete sources"
277
  msgstr "Cancella soegenti"
278
 
279
- #: core.php:1218
280
- #: core.php:1392
281
  msgid "Apply"
282
  msgstr "Applica"
283
 
284
- #: core.php:1225
285
  msgid "&laquo;"
286
  msgstr "&laquo;"
287
 
288
- #: core.php:1226
289
  msgid "&raquo;"
290
  msgstr "&raquo;"
291
 
292
- #: core.php:1233
293
- #: core.php:1398
294
  #, php-format
295
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
296
  msgstr "Si stanno mostrando %s&#8211;%s di <span class=\"current-link-count\">%s</span>"
297
 
298
- #: core.php:1252
299
  msgid "Source"
300
  msgstr "Sorgente"
301
 
302
- #: core.php:1253
303
  msgid "Link Text"
304
  msgstr "Testo link"
305
 
306
- #: core.php:1254
307
  #: includes/admin/search-form.php:42
308
  msgid "URL"
309
  msgstr "URL"
310
 
311
- #: core.php:1330
312
  msgid "[An orphaned link! This is a bug.]"
313
  msgstr "[Un link orfano! Questo é un bug.]"
314
 
315
- #: core.php:1354
316
  msgid "Show more info about this link"
317
  msgstr "Mostra più info su questo link"
318
 
319
- #: core.php:1354
320
- #: core.php:2726
321
  msgid "Details"
322
  msgstr "Dettagli"
323
 
324
- #: core.php:1356
325
  msgid "Remove this link from all posts"
326
  msgstr "Rimuovi questo link da tutti gli articoli"
327
 
328
- #: core.php:1362
329
  msgid "Remove this link from the list of broken links and mark it as valid"
330
  msgstr "Rimuovi questo link dalla lista dei link rotti e segnalo come valido"
331
 
332
- #: core.php:1363
333
  #: includes/admin/links-page-js.php:78
334
  msgid "Not broken"
335
  msgstr "Non rotto"
336
 
337
- #: core.php:1367
338
  msgid "Edit link URL"
339
  msgstr "Modifica URL del link"
340
 
341
- #: core.php:1367
342
  #: includes/admin/links-page-js.php:199
343
  #: includes/admin/links-page-js.php:227
344
  msgid "Edit URL"
345
  msgstr "Modifica URL"
346
 
347
- #: core.php:1373
348
  msgid "Cancel URL editing"
349
  msgstr "Annulla modifica URL"
350
 
351
- #: core.php:1373
352
  #: includes/admin/search-form.php:87
353
  msgid "Cancel"
354
  msgstr "Annulla"
355
 
356
- #: core.php:1441
357
  msgid "You must enter a filter name!"
358
  msgstr "Deve essere inserito un nome del filtro!"
359
 
360
- #: core.php:1445
361
  msgid "Invalid search query."
362
  msgstr "Termine di ricerca non valido."
363
 
364
- #: core.php:1453
365
  #, php-format
366
  msgid "Filter \"%s\" created"
367
  msgstr "E' stato creato il filtro \"%s\""
368
 
369
- #: core.php:1481
370
  msgid "Filter ID not specified."
371
  msgstr "ID filtro non specificato."
372
 
373
- #: core.php:1487
374
  msgid "Filter deleted"
375
  msgstr "Il filtro é stato cancellato"
376
 
377
- #: core.php:1535
378
  #, php-format
379
  msgid "Replaced %d redirect with a direct link"
380
  msgid_plural "Replaced %d redirects with direct links"
381
  msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
382
  msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
383
 
384
- #: core.php:1546
385
  #, php-format
386
  msgid "Failed to fix %d redirect"
387
  msgid_plural "Failed to fix %d redirects"
388
  msgstr[0] "Impossibile correggere il reindirizzamento per %d"
389
  msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
390
 
391
- #: core.php:1556
392
  msgid "None of the selected links are redirects!"
393
  msgstr "Nessuno dei link selezionati é reindirizzato!"
394
 
395
- #: core.php:1602
396
  #, php-format
397
  msgid "%d link removed"
398
  msgid_plural "%d links removed"
399
  msgstr[0] "%d il link é stato rimosso"
400
  msgstr[1] "%d i link sono stati rimossi"
401
 
402
- #: core.php:1613
403
  #, php-format
404
  msgid "Failed to remove %d link"
405
  msgid_plural "Failed to remove %d links"
406
  msgstr[0] "Impossibile rimuovere il link %d"
407
  msgstr[1] "Impossibile rimuovere i link %d"
408
 
409
- #: core.php:1701
410
  msgid "Didn't find anything to delete!"
411
  msgstr "Nulla da cancellare!"
412
 
413
- #: core.php:1729
414
  #, php-format
415
  msgid "%d link scheduled for rechecking"
416
  msgid_plural "%d links scheduled for rechecking"
417
  msgstr[0] "%d link in verifica programmata"
418
  msgstr[1] "%d link in verifica programmata"
419
 
420
- #: core.php:1752
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  msgid "Post published on"
422
  msgstr "Articolo pubblicato il"
423
 
424
- #: core.php:1757
425
  msgid "Link last checked"
426
  msgstr "Ultimo controllo link"
427
 
428
- #: core.php:1761
429
  msgid "Never"
430
  msgstr "Mai"
431
 
432
- #: core.php:1767
433
  #: includes/admin/search-form.php:45
434
  msgid "HTTP code"
435
  msgstr "Codice HTTP"
436
 
437
- #: core.php:1772
438
  msgid "Response time"
439
  msgstr "Tempo di risposta"
440
 
441
- #: core.php:1774
442
  #, php-format
443
  msgid "%2.3f seconds"
444
  msgstr "%2.3f secondi"
445
 
446
- #: core.php:1777
447
  msgid "Final URL"
448
  msgstr "URL finale"
449
 
450
- #: core.php:1782
451
  msgid "Redirect count"
452
  msgstr "Computo reindirizzamento"
453
 
454
- #: core.php:1787
455
  msgid "Instance count"
456
  msgstr "Computo richieste"
457
 
458
- #: core.php:1796
459
  #, php-format
460
  msgid "This link has failed %d time."
461
  msgid_plural "This link has failed %d times."
462
  msgstr[0] "Questo link é stato difettoso %d volte."
463
  msgstr[1] "Questi link sono stati difettosi %d volte."
464
 
465
- #: core.php:1804
466
  #, php-format
467
  msgid "This link has been broken for %s."
468
  msgstr "Questo link é stato rotto per %s."
469
 
470
- #: core.php:1815
471
  msgid "Log"
472
  msgstr "Registro"
473
 
474
- #: core.php:1841
475
  msgid "less than a minute"
476
  msgstr "meno di un minuto"
477
 
478
- #: core.php:1849
479
  #, php-format
480
  msgid "%d minute"
481
  msgid_plural "%d minutes"
482
  msgstr[0] "%d minuto"
483
  msgstr[1] "%d minuti"
484
 
485
- #: core.php:1863
486
- #: core.php:1890
487
  #, php-format
488
  msgid "%d hour"
489
  msgid_plural "%d hours"
490
  msgstr[0] "%d ora"
491
  msgstr[1] "%d ore"
492
 
493
- #: core.php:1878
494
- #: core.php:1919
495
  #, php-format
496
  msgid "%d day"
497
  msgid_plural "%d days"
498
  msgstr[0] "%d giorno"
499
  msgstr[1] "%d giorni"
500
 
501
- #: core.php:1908
502
  #, php-format
503
  msgid "%d month"
504
  msgid_plural "%d months"
505
  msgstr[0] "%d mese"
506
  msgstr[1] "%d mesi"
507
 
508
- #: core.php:2231
509
  msgid "View broken links"
510
  msgstr "Visualizza i link rotti"
511
 
512
- #: core.php:2232
513
  #, php-format
514
  msgid "Found %d broken link"
515
  msgid_plural "Found %d broken links"
516
  msgstr[0] "E' stato trovato %d link rotto"
517
  msgstr[1] "Sono stati trovati %d link rotti"
518
 
519
- #: core.php:2238
520
  msgid "No broken links found."
521
  msgstr "Non é stato trovato alcun link rotto."
522
 
523
- #: core.php:2245
524
  #, php-format
525
  msgid "%d URL in the work queue"
526
  msgid_plural "%d URLs in the work queue"
527
  msgstr[0] "%d URL in coda di elaborazione"
528
  msgstr[1] "%d URL in coda di elaborazione"
529
 
530
- #: core.php:2248
531
  msgid "No URLs in the work queue."
532
  msgstr "Nessun URL in coda di elaborazione."
533
 
534
- #: core.php:2254
535
  #, php-format
536
  msgid "Detected %d unique URL"
537
  msgid_plural "Detected %d unique URLs"
538
  msgstr[0] "E' stato rilevato %d URL unico"
539
  msgstr[1] "Sono stati rilevati %d URL unici"
540
 
541
- #: core.php:2255
542
  #, php-format
543
  msgid "in %d link"
544
  msgid_plural "in %d links"
545
  msgstr[0] "in %d link"
546
  msgstr[1] "in %d link"
547
 
548
- #: core.php:2260
549
  msgid "and still searching..."
550
  msgstr "ricerca in corso..."
551
 
552
- #: core.php:2266
553
  msgid "Searching your blog for links..."
554
  msgstr "Ricerca dei link in corso..."
555
 
556
- #: core.php:2268
557
  msgid "No links detected."
558
  msgstr "Nessun link é stato rilevato."
559
 
560
- #: core.php:2353
561
- #: core.php:2389
562
- #: core.php:2452
563
- #: core.php:2534
564
  msgid "You're not allowed to do that!"
565
  msgstr "Non hai il permesso per farlo!"
566
 
567
- #: core.php:2361
568
- #: core.php:2399
569
- #: core.php:2462
570
  #, php-format
571
  msgid "Oops, I can't find the link %d"
572
  msgstr "Oops, non é possibile trovare il link %d"
573
 
574
- #: core.php:2368
575
- msgid "This link was manually marked as working by the user."
576
- msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
577
-
578
- #: core.php:2374
579
  msgid "Oops, couldn't modify the link!"
580
  msgstr "Oops, non é possibile modificare il link!"
581
 
582
- #: core.php:2377
583
- #: core.php:2488
584
  msgid "Error : link_id not specified"
585
  msgstr "Errore : non é stata specificata la link_id"
586
 
587
- #: core.php:2409
588
  msgid "Oops, the new URL is invalid!"
589
  msgstr "Oops, il nuovo URL non é valido!"
590
 
591
- #: core.php:2420
592
- #: core.php:2471
593
  msgid "An unexpected error occured!"
594
  msgstr "Si é verificato un errore inatteso!"
595
 
596
- #: core.php:2438
597
  msgid "Error : link_id or new_url not specified"
598
  msgstr "Errore : non é stata specificata la link_id oppure il new_url"
599
 
600
- #: core.php:2497
601
  msgid "You don't have sufficient privileges to access this information!"
602
  msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
603
 
604
- #: core.php:2510
605
  msgid "Error : link ID not specified"
606
  msgstr "Errore : La ID del link non é stata specificata"
607
 
608
- #: core.php:2521
609
  #, php-format
610
  msgid "Failed to load link details (%s)"
611
  msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
612
 
613
- #: core.php:2712
 
 
 
 
 
 
614
  #, php-format
615
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
616
  msgstr "La cartella temporanea non é accessibile; impostane una <a href=\"%s\">differente</a>."
617
 
618
- #: core.php:2717
619
  #, php-format
620
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
621
  msgstr "Rendi scrivibile la cartella <code>%1$s</code> oppure imposta una <a href=\"%2$s\">cartella temporanea</a>."
622
 
623
- #: core.php:2724
624
  msgid "Broken Link Checker can't create a lockfile."
625
  msgstr "Broken Link Checker non può creare un lockfile."
626
 
627
- #: core.php:2729
628
  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."
629
  msgstr "Questo plugin utilizza un meccanismo di locking su base-file in modo tale che una sola richiesta per volta venga inoltrata all'algoritmo per la ricerca dei link. Sfortunatamente, BLC non ha trovato una cartella scrivibile laddove poter allocare il lockfile - non é stato possibile rilevare la posizione della cartella temporanea nel server e la cartella stessa del plugin non é scrivibile via PHP. Per risolvere il problema, rendi scrivibile la cartella del plugin oppure inserisci nelle impostazioni del plugin il percorso ad una cartella temporanea personalizzata."
630
 
631
- #: core.php:2748
632
  msgid "PHP version"
633
  msgstr "Versione PHP"
634
 
635
- #: core.php:2754
636
  msgid "MySQL version"
637
  msgstr "Versione MySQL"
638
 
639
- #: core.php:2767
640
  msgid "You have an old version of CURL. Redirect detection may not work properly."
641
  msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
642
 
643
- #: core.php:2779
644
- #: core.php:2795
645
- #: core.php:2800
646
  msgid "Not installed"
647
  msgstr "Non installato"
648
 
649
- #: core.php:2782
650
  msgid "CURL version"
651
  msgstr "Versione CURL"
652
 
653
- #: core.php:2788
654
  msgid "Installed"
655
  msgstr "Installato"
656
 
657
- #: core.php:2801
658
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
659
  msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
660
 
661
- #: core.php:2812
662
  msgid "On"
663
  msgstr "On"
664
 
665
- #: core.php:2813
666
  msgid "Redirects may be detected as broken links when safe_mode is on."
667
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
668
 
669
- #: core.php:2818
670
- #: core.php:2832
671
  msgid "Off"
672
  msgstr "Off"
673
 
674
- #: core.php:2826
675
  #, php-format
676
  msgid "On ( %s )"
677
  msgstr "On ( %s )"
678
 
679
- #: core.php:2827
680
  msgid "Redirects may be detected as broken links when open_basedir is on."
681
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
682
 
683
- #: core.php:2846
684
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
685
  msgstr "Non é stato possibile creare un lockfile. Specificare una cartella temporanea personalizzata."
686
 
687
- #: core.php:2875
688
  #, php-format
689
  msgid "[%s] Broken links detected"
690
  msgstr "[%s] Link rotti rilevati"
691
 
692
- #: core.php:2881
693
  #, php-format
694
  msgid "Broken Link Checker has detected %d new broken link on your site."
695
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
696
  msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
697
  msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
698
 
699
- #: core.php:2896
700
  #, php-format
701
  msgid "Here's a list of the first %d broken links:"
702
  msgid_plural "Here's a list of the first %d broken links:"
703
  msgstr[0] "Ecco una lista del primo %d link rotto:"
704
  msgstr[1] "Ecco una lista dei primi %d link rotti:"
705
 
706
- #: core.php:2904
707
  msgid "Here's a list of the new broken links: "
708
  msgstr "Ecco una lista con i nuovi link rotti:"
709
 
710
- #: core.php:2916
711
  #, php-format
712
  msgid "Link text : %s"
713
  msgstr "Testo del link : %s"
714
 
715
- #: core.php:2917
716
  #, php-format
717
  msgid "Link URL : <a href=\"%s\">%s</a>"
718
  msgstr "URL del link : <a href=\"%s\">%s</a>"
719
 
720
- #: core.php:2918
721
  #, php-format
722
  msgid "Source : %s"
723
  msgstr "Sorgente : %s"
724
 
725
- #: core.php:2932
726
  msgid "You can see all broken links here:"
727
  msgstr "Qui puoi vedere tutti i link rotti:"
728
 
@@ -801,7 +841,7 @@ msgid "Delete This Filter"
801
  msgstr "Cancella questo filtro"
802
 
803
  #: includes/admin/search-form.php:29
804
- #: includes/links.php:798
805
  msgid "Search"
806
  msgstr "Cerca"
807
 
@@ -849,35 +889,35 @@ msgstr "Commento"
849
  msgid "Search Links"
850
  msgstr "Ricerca link"
851
 
852
- #: includes/checkers/http.php:186
853
- #: includes/checkers/http.php:253
854
  #, php-format
855
  msgid "HTTP code : %d"
856
  msgstr "Codice HTTP : %d"
857
 
858
- #: includes/checkers/http.php:188
859
- #: includes/checkers/http.php:255
860
  msgid "(No response)"
861
  msgstr "(nessuna risposta)"
862
 
863
- #: includes/checkers/http.php:194
864
  msgid "Most likely the connection timed out or the domain doesn't exist."
865
  msgstr "Connessione scaduta oppure il dominio non esiste."
866
 
867
- #: includes/checkers/http.php:262
868
  msgid "Request timed out."
869
  msgstr "Richiesta scaduta."
870
 
871
- #: includes/checkers/http.php:280
872
  msgid "Using Snoopy"
873
  msgstr "Snoopy in uso"
874
 
875
- #: includes/containers.php:262
876
  #, php-format
877
  msgid "Container type '%s' not recognized"
878
  msgstr "Container type '%s' non riconosciuto"
879
 
880
- #: includes/containers.php:792
881
  #, php-format
882
  msgid "%d '%s' has been deleted"
883
  msgid_plural "%d '%s' have been deleted"
@@ -913,7 +953,7 @@ msgstr "Cancella"
913
 
914
  #: includes/containers/blogroll.php:75
915
  #: includes/containers/comment.php:36
916
- #: includes/containers/post.php:86
917
  msgid "Nothing to update"
918
  msgstr "Nulla da aggiornare"
919
 
@@ -972,14 +1012,14 @@ msgstr "Visualizza il commento"
972
  msgid "View"
973
  msgstr "Visualizza"
974
 
975
- #: includes/containers/comment.php:273
976
  #, php-format
977
  msgid "%d comment moved to the trash"
978
  msgid_plural "%d comments moved to the trash"
979
  msgstr[0] "%d commento spostato nel cestino"
980
  msgstr[1] "%d commenti spostati nel cestino"
981
 
982
- #: includes/containers/comment.php:283
983
  #, php-format
984
  msgid "%d comment has been deleted"
985
  msgid_plural "%d comments have been deleted"
@@ -997,16 +1037,18 @@ msgid "Failed to delete the meta field '%s' on %s [%d]"
997
  msgstr "Non é stato possibile cancellare il campo meta '%s' in %s [%d]"
998
 
999
  #: includes/containers/custom_field.php:191
1000
- #: includes/containers/custom_field.php:201
1001
  #: includes/containers/post.php:16
1002
  #: includes/containers/post.php:41
1003
  msgid "Edit this post"
1004
  msgstr "Modifica questo articolo"
1005
 
 
 
 
 
1006
  #: includes/containers/custom_field.php:204
1007
- #: includes/containers/post.php:19
1008
- msgid "Move this post to the Trash"
1009
- msgstr "Sposta questo articolo nel cestino"
1010
 
1011
  #: includes/containers/custom_field.php:204
1012
  #: includes/containers/post.php:19
@@ -1034,22 +1076,22 @@ msgstr ""
1034
  msgid "View \"%s\""
1035
  msgstr "Visualizza \"%s\""
1036
 
1037
- #: includes/containers/custom_field.php:248
1038
- #: includes/containers/post.php:127
1039
  #, php-format
1040
  msgid "Failed to delete post \"%s\" (%d)"
1041
  msgstr "Non é stato possibile cancellare il post \"%s\" (%d)"
1042
 
1043
- #: includes/containers/custom_field.php:479
1044
- #: includes/containers/post.php:300
1045
  #, php-format
1046
  msgid "%d post moved to the trash"
1047
  msgid_plural "%d posts moved to the trash"
1048
  msgstr[0] "%d il post é stato spostato nel cestino"
1049
  msgstr[1] "%d i post sono stati spostati nel cestino"
1050
 
1051
- #: includes/containers/custom_field.php:481
1052
- #: includes/containers/post.php:302
1053
  #, php-format
1054
  msgid "%d post deleted"
1055
  msgid_plural "%d posts deleted"
@@ -1062,7 +1104,11 @@ msgstr[1] "%d post cancellati"
1062
  msgid "I don't know how to edit a '%s' [%d]."
1063
  msgstr "Non so come modificare un '%s' [%d]."
1064
 
1065
- #: includes/containers/post.php:96
 
 
 
 
1066
  #, php-format
1067
  msgid "Updating post %d failed"
1068
  msgstr "Aggiornamento articolo %d non riuscito"
@@ -1079,100 +1125,96 @@ msgstr "Container %s[%d] non trovato"
1079
  msgid "Parser '%s' not found."
1080
  msgstr "Parser '%s' non trovato."
1081
 
1082
- #: includes/links.php:157
1083
  msgid "The plugin script was terminated while trying to check the link."
1084
  msgstr "Lo script del plugin was é stato fermato durante il tentativo di verifica del link."
1085
 
1086
- #: includes/links.php:201
1087
  msgid "The plugin doesn't know how to check this type of link."
1088
  msgstr "Questo plugin non é in grado di potere verificare questo tipo di link."
1089
 
1090
- #: includes/links.php:289
1091
  msgid "Link is valid."
1092
  msgstr "Il link é valido."
1093
 
1094
- #: includes/links.php:291
1095
  msgid "Link is broken."
1096
  msgstr "Il link é rotto."
1097
 
1098
- #: includes/links.php:484
1099
- #: includes/links.php:586
1100
- #: includes/links.php:621
1101
  msgid "Link is not valid"
1102
  msgstr "Link non valido"
1103
 
1104
- #: includes/links.php:501
1105
  msgid "This link can not be edited because it is not used anywhere on this site."
1106
  msgstr "Questo link non può essere modificato poiché non viene utilizzato in nessuna parte di questo sito."
1107
 
1108
- #: includes/links.php:527
1109
  msgid "Failed to create a DB entry for the new URL."
1110
  msgstr "Non é stato possibile creare una entry nel DB per il nuovo URL."
1111
 
1112
- #: includes/links.php:599
1113
  msgid "This link is not a redirect"
1114
  msgstr "Questo link non é redirect"
1115
 
1116
- #: includes/links.php:648
1117
- #: includes/links.php:685
1118
  msgid "Couldn't delete the link's database record"
1119
  msgstr "Non é possibile cancellare dal database il record per il link"
1120
 
1121
- #: includes/links.php:770
1122
  msgid "Broken"
1123
  msgstr "Rotto"
1124
 
1125
- #: includes/links.php:772
1126
  msgid "No broken links found"
1127
  msgstr "Non é stato trovato alcun link rotto"
1128
 
1129
- #: includes/links.php:779
1130
  msgid "Redirects"
1131
  msgstr "Reindirizzamenti"
1132
 
1133
- #: includes/links.php:780
1134
  msgid "Redirected Links"
1135
  msgstr "Link reindirizzati"
1136
 
1137
- #: includes/links.php:781
1138
  msgid "No redirects found"
1139
  msgstr "Nessun reindirizzamento é stato trovato"
1140
 
1141
- #: includes/links.php:789
1142
  msgid "All"
1143
  msgstr "Tutti"
1144
 
1145
- #: includes/links.php:790
1146
  msgid "Detected Links"
1147
  msgstr "Link rilevati"
1148
 
1149
- #: includes/links.php:791
1150
  msgid "No links found (yet)"
1151
  msgstr "Nessun link trovato (ancora)"
1152
 
1153
- #: includes/links.php:799
1154
  msgid "Search Results"
1155
  msgstr "Risultati della ricerca"
1156
 
1157
- #: includes/links.php:800
1158
- #: includes/links.php:843
1159
  msgid "No links found for your query"
1160
  msgstr "Nessun link trovato in relazione ai termini di ricerca"
1161
 
1162
- #: includes/parsers.php:151
1163
  #, php-format
1164
  msgid "Editing is not implemented in the '%s' parser"
1165
  msgstr "La modifica non é implementata nel '%s' parser"
1166
 
1167
- #: includes/parsers.php:166
1168
  #, php-format
1169
  msgid "Unlinking is not implemented in the '%s' parser"
1170
  msgstr "Il de-link non é implementatato nel '%s' parser"
1171
 
1172
- #. Plugin Name of the plugin/theme
1173
- msgid "Broken Link Checker"
1174
- msgstr "Broken Link Checker"
1175
-
1176
  #. Plugin URI of the plugin/theme
1177
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1178
  msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
7
  msgstr ""
8
  "Project-Id-Version: Broken Link Checker in italiano\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
10
+ "POT-Creation-Date: 2010-07-02 13:13+0000\n"
11
+ "PO-Revision-Date: 2010-07-02 21:34+0100\n"
12
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
13
+ "Language-Team: Gianni Diurno | gidibao.net <gidibao[at]gmail[dot]com>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
18
  "X-Poedit-Language: Italian\n"
19
  "X-Poedit-Country: ITALY\n"
20
 
21
+ #: broken-link-checker.php:314
22
  msgid "Once Weekly"
23
  msgstr "Una volta alla settimana"
24
 
25
+ #: broken-link-checker.php:320
26
+ msgid "Twice a Month"
27
+ msgstr "Due volte al mese"
28
+
29
+ #: broken-link-checker.php:343
30
+ msgid "Broken Link Checker installation failed"
31
+ msgstr "L'installazione di Broken Link Checker é fallita."
32
+
33
+ #: core.php:139
34
  #: includes/admin/links-page-js.php:21
35
  msgid "Loading..."
36
  msgstr "In carica..."
37
 
38
+ #: core.php:162
39
+ #: core.php:919
40
  msgid "[ Network error ]"
41
  msgstr "[ Network error ]"
42
 
43
+ #: core.php:187
44
  msgid "Automatically expand the widget if broken links have been detected"
45
  msgstr "Espandi in automatico il widget qualora un link rotto fosse stato rilevato"
46
 
47
+ #: core.php:424
48
  #, php-format
49
  msgid "Failed to delete old DB tables. Database error : %s"
50
  msgstr "Non é stato possibile cancellare le vecchie tabelle del DB. Errore database : %s"
51
 
52
+ #: core.php:447
53
  #, php-format
54
  msgid "Unexpected error: The plugin doesn't know how to upgrade its database to version '%d'."
55
  msgstr "Errore inatteso: il plugin non é in grado di aggiornare il proprio database alla versione '%d'."
56
 
57
+ #: core.php:499
58
+ #: core.php:535
59
+ #: core.php:585
60
+ #: core.php:617
61
  #, php-format
62
  msgid "Failed to create table '%s'. Database error: %s"
63
  msgstr "Non é stato possibile creare la tabella '%s'. Errore database: %s"
64
 
65
+ #: core.php:671
66
  msgid "Link Checker Settings"
67
  msgstr "Impostazioni Link Checker"
68
 
69
+ #: core.php:672
70
  msgid "Link Checker"
71
  msgstr "Link Checker"
72
 
73
+ #: core.php:678
74
  msgid "View Broken Links"
75
  msgstr "Visualizza i link rotti"
76
 
77
+ #: core.php:679
78
+ #: includes/links.php:773
79
  msgid "Broken Links"
80
  msgstr "Link rotti"
81
 
82
+ #: core.php:704
83
  #, php-format
84
  msgid "Highlight links broken for at least %s days"
85
  msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
86
 
87
+ #: core.php:730
88
  msgid "Settings"
89
  msgstr "Impostazioni"
90
 
91
+ #: core.php:740
92
+ #: core.php:1276
93
  #, php-format
94
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
95
  msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
96
 
97
+ #: core.php:875
98
  msgid "Settings saved."
99
  msgstr "Le impostazioni sono state salvate."
100
 
101
+ #: core.php:884
102
  msgid "Broken Link Checker Options"
103
  msgstr "Opzioni Broken Link Checker"
104
 
105
+ #: core.php:897
106
  msgid "Status"
107
  msgstr "Stato"
108
 
109
+ #: core.php:899
110
+ #: core.php:1254
111
  msgid "Show debug info"
112
  msgstr "Mostra info debug"
113
 
114
+ #: core.php:932
115
  msgid "Re-check all pages"
116
  msgstr "Ricontrolla tutte le pagine"
117
 
118
+ #: core.php:956
119
  msgid "Check each link"
120
  msgstr "Controlla i link"
121
 
122
+ #: core.php:961
123
  #, php-format
124
  msgid "Every %s hours"
125
  msgstr "Ogni %s ore"
126
 
127
+ #: core.php:970
128
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
129
  msgstr "I link già esistenti verranno controllati con questa frequenza i nuovi, lo saranno a breve."
130
 
131
+ #: core.php:977
132
  msgid "Broken link CSS"
133
  msgstr "CSS link rotto"
134
 
135
+ #: core.php:982
136
  msgid "Apply <em>class=\"broken_link\"</em> to broken links"
137
  msgstr "applica l'attributo <em>class=\"broken_link\"</em> ai link rotti"
138
 
139
+ #: core.php:994
140
  msgid "Removed link CSS"
141
  msgstr "CSS link rimosso"
142
 
143
+ #: core.php:999
144
  msgid "Apply <em>class=\"removed_link\"</em> to unlinked links"
145
  msgstr "Applica l'attributo <em>class=\"broken_link\"</em> ai link delinkati"
146
 
147
+ #: core.php:1011
148
  msgid "Broken link SEO"
149
  msgstr "SEO link rotto"
150
 
151
+ #: core.php:1016
152
  msgid "Apply <em>rel=\"nofollow\"</em> to broken links"
153
  msgstr "applica l'attributo <em>rel=\"nofollow\"</em> ai link rotti"
154
 
155
+ #: core.php:1022
156
  msgid "Exclusion list"
157
  msgstr "Lista estromessi"
158
 
159
+ #: core.php:1023
160
  msgid "Don't check links where the URL contains any of these words (one per line) :"
161
  msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
162
 
163
+ #: core.php:1033
164
  msgid "Custom fields"
165
  msgstr "Campi personalizzati"
166
 
167
+ #: core.php:1034
168
  msgid "Check URLs entered in these custom fields (one per line) :"
169
  msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
170
 
171
+ #: core.php:1044
172
+ msgid "Comment links"
173
+ msgstr "Link commenti"
174
+
175
+ #: core.php:1050
176
+ msgid "Check comment links"
177
+ msgstr "Controlla i link dei commenti"
178
+
179
+ #: core.php:1057
180
  msgid "E-mail notifications"
181
  msgstr "Notifiche email"
182
 
183
+ #: core.php:1063
184
  msgid "Send me e-mail notifications about newly detected broken links"
185
  msgstr "Inviami una email di notifica al rilevamento di un nuovo link rotto"
186
 
187
+ #: core.php:1071
188
  msgid "Advanced"
189
  msgstr "Avanzate"
190
 
191
+ #: core.php:1076
192
  msgid "Timeout"
193
  msgstr "Timeout"
194
 
195
+ #: core.php:1082
196
+ #: core.php:1126
197
+ #: core.php:3189
198
  #, php-format
199
  msgid "%s seconds"
200
  msgstr "%s secondi"
201
 
202
+ #: core.php:1091
203
  msgid "Links that take longer than this to load will be marked as broken."
204
  msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
205
 
206
+ #: core.php:1098
207
  msgid "Link monitor"
208
  msgstr "Monitoraggio link"
209
 
210
+ #: core.php:1104
211
  msgid "Run continuously while the Dashboard is open"
212
  msgstr "Funzionamento continuo durante il periodo di login"
213
 
214
+ #: core.php:1112
215
  msgid "Run hourly in the background"
216
  msgstr "Funzionamento in background ogni ora"
217
 
218
+ #: core.php:1120
219
  msgid "Max. execution time"
220
  msgstr "Tempo max. operazione"
221
 
222
+ #: core.php:1137
223
  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."
224
  msgstr "Questo plugin opera grazie ad una richiesta periodica che lavora in background atta al rilevamento dei link contenuti nei post alla ricerca degli URL nonché compie delle operazioni che richiedono del tempo. Qui puoi impostare il tempo massimo di durata per la richiesta in background prima che essa termini."
225
 
226
+ #: core.php:1147
227
  msgid "Custom temporary directory"
228
  msgstr "Cartella temporanea personalizzata:"
229
 
230
+ #: core.php:1156
231
  msgid "OK"
232
  msgstr "OK"
233
 
234
+ #: core.php:1159
235
  msgid "Error : This directory isn't writable by PHP."
236
  msgstr "Errore : questa cartella non é scrivibile via PHP."
237
 
238
+ #: core.php:1164
239
  msgid "Error : This directory doesn't exist."
240
  msgstr "Errore : questa cartella non esiste."
241
 
242
+ #: core.php:1172
243
  msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
244
  msgstr "Compila questo campo qualora gradissi che il plugin faccia uso di una cartella personalizzata per i lockfile diversamente, lascia in bianco."
245
 
246
+ #: core.php:1179
247
  msgid "Server load limit"
248
  msgstr "Limite server load"
249
 
250
+ #: core.php:1220
251
  #, php-format
252
  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."
253
  msgstr "La verifica dei link sarà sospesa nel caso in cui il valore di media del <a href=\"%s\">server load</a> superasse questo numero. Lascia in bianco per disattivare il limite di caricamento."
254
 
255
+ #: core.php:1230
256
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
257
  msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
258
 
259
+ #: core.php:1239
260
  msgid "Save Changes"
261
  msgstr "Salva le modifiche"
262
 
263
+ #: core.php:1252
264
  msgid "Hide debug info"
265
  msgstr "Nascondi le info debug"
266
 
267
+ #: core.php:1369
268
+ #: core.php:1705
269
+ #: core.php:1737
270
  #, php-format
271
  msgid "Database error : %s"
272
  msgstr "Errore database : %s"
273
 
274
+ #: core.php:1446
275
  msgid "Bulk Actions"
276
  msgstr "Azione di massa"
277
 
278
+ #: core.php:1447
279
  msgid "Recheck"
280
  msgstr "Ricontrolla"
281
 
282
+ #: core.php:1448
283
  msgid "Fix redirects"
284
  msgstr "Correggi re-indirizzamenti"
285
 
286
+ #: core.php:1449
287
+ msgid "Mark as not broken"
288
+ msgstr "segna come rotto"
289
+
290
+ #: core.php:1450
291
+ #: core.php:1604
292
  #: includes/admin/links-page-js.php:293
293
  msgid "Unlink"
294
  msgstr "Scollega"
295
 
296
+ #: core.php:1451
297
  msgid "Delete sources"
298
  msgstr "Cancella soegenti"
299
 
300
+ #: core.php:1465
301
+ #: core.php:1639
302
  msgid "Apply"
303
  msgstr "Applica"
304
 
305
+ #: core.php:1472
306
  msgid "&laquo;"
307
  msgstr "&laquo;"
308
 
309
+ #: core.php:1473
310
  msgid "&raquo;"
311
  msgstr "&raquo;"
312
 
313
+ #: core.php:1480
314
+ #: core.php:1645
315
  #, php-format
316
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
317
  msgstr "Si stanno mostrando %s&#8211;%s di <span class=\"current-link-count\">%s</span>"
318
 
319
+ #: core.php:1499
320
  msgid "Source"
321
  msgstr "Sorgente"
322
 
323
+ #: core.php:1500
324
  msgid "Link Text"
325
  msgstr "Testo link"
326
 
327
+ #: core.php:1501
328
  #: includes/admin/search-form.php:42
329
  msgid "URL"
330
  msgstr "URL"
331
 
332
+ #: core.php:1577
333
  msgid "[An orphaned link! This is a bug.]"
334
  msgstr "[Un link orfano! Questo é un bug.]"
335
 
336
+ #: core.php:1601
337
  msgid "Show more info about this link"
338
  msgstr "Mostra più info su questo link"
339
 
340
+ #: core.php:1601
341
+ #: core.php:3062
342
  msgid "Details"
343
  msgstr "Dettagli"
344
 
345
+ #: core.php:1603
346
  msgid "Remove this link from all posts"
347
  msgstr "Rimuovi questo link da tutti gli articoli"
348
 
349
+ #: core.php:1609
350
  msgid "Remove this link from the list of broken links and mark it as valid"
351
  msgstr "Rimuovi questo link dalla lista dei link rotti e segnalo come valido"
352
 
353
+ #: core.php:1610
354
  #: includes/admin/links-page-js.php:78
355
  msgid "Not broken"
356
  msgstr "Non rotto"
357
 
358
+ #: core.php:1614
359
  msgid "Edit link URL"
360
  msgstr "Modifica URL del link"
361
 
362
+ #: core.php:1614
363
  #: includes/admin/links-page-js.php:199
364
  #: includes/admin/links-page-js.php:227
365
  msgid "Edit URL"
366
  msgstr "Modifica URL"
367
 
368
+ #: core.php:1620
369
  msgid "Cancel URL editing"
370
  msgstr "Annulla modifica URL"
371
 
372
+ #: core.php:1620
373
  #: includes/admin/search-form.php:87
374
  msgid "Cancel"
375
  msgstr "Annulla"
376
 
377
+ #: core.php:1687
378
  msgid "You must enter a filter name!"
379
  msgstr "Deve essere inserito un nome del filtro!"
380
 
381
+ #: core.php:1691
382
  msgid "Invalid search query."
383
  msgstr "Termine di ricerca non valido."
384
 
385
+ #: core.php:1700
386
  #, php-format
387
  msgid "Filter \"%s\" created"
388
  msgstr "E' stato creato il filtro \"%s\""
389
 
390
+ #: core.php:1727
391
  msgid "Filter ID not specified."
392
  msgstr "ID filtro non specificato."
393
 
394
+ #: core.php:1734
395
  msgid "Filter deleted"
396
  msgstr "Il filtro é stato cancellato"
397
 
398
+ #: core.php:1782
399
  #, php-format
400
  msgid "Replaced %d redirect with a direct link"
401
  msgid_plural "Replaced %d redirects with direct links"
402
  msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
403
  msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
404
 
405
+ #: core.php:1793
406
  #, php-format
407
  msgid "Failed to fix %d redirect"
408
  msgid_plural "Failed to fix %d redirects"
409
  msgstr[0] "Impossibile correggere il reindirizzamento per %d"
410
  msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
411
 
412
+ #: core.php:1803
413
  msgid "None of the selected links are redirects!"
414
  msgstr "Nessuno dei link selezionati é reindirizzato!"
415
 
416
+ #: core.php:1849
417
  #, php-format
418
  msgid "%d link removed"
419
  msgid_plural "%d links removed"
420
  msgstr[0] "%d il link é stato rimosso"
421
  msgstr[1] "%d i link sono stati rimossi"
422
 
423
+ #: core.php:1860
424
  #, php-format
425
  msgid "Failed to remove %d link"
426
  msgid_plural "Failed to remove %d links"
427
  msgstr[0] "Impossibile rimuovere il link %d"
428
  msgstr[1] "Impossibile rimuovere i link %d"
429
 
430
+ #: core.php:1948
431
  msgid "Didn't find anything to delete!"
432
  msgstr "Nulla da cancellare!"
433
 
434
+ #: core.php:1976
435
  #, php-format
436
  msgid "%d link scheduled for rechecking"
437
  msgid_plural "%d links scheduled for rechecking"
438
  msgstr[0] "%d link in verifica programmata"
439
  msgstr[1] "%d link in verifica programmata"
440
 
441
+ #: core.php:2021
442
+ #: core.php:2696
443
+ msgid "This link was manually marked as working by the user."
444
+ msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
445
+
446
+ #: core.php:2028
447
+ #, php-format
448
+ msgid "Couldn't modify link %d"
449
+ msgstr "Non é possibile modificare il link %d"
450
+
451
+ #: core.php:2039
452
+ #, php-format
453
+ msgid "%d link marked as not broken"
454
+ msgid_plural "%d links marked as not broken"
455
+ msgstr[0] "%d link segnato come funzionante"
456
+ msgstr[1] "%d link segnati come funzionanti"
457
+
458
+ #: core.php:2063
459
  msgid "Post published on"
460
  msgstr "Articolo pubblicato il"
461
 
462
+ #: core.php:2068
463
  msgid "Link last checked"
464
  msgstr "Ultimo controllo link"
465
 
466
+ #: core.php:2072
467
  msgid "Never"
468
  msgstr "Mai"
469
 
470
+ #: core.php:2078
471
  #: includes/admin/search-form.php:45
472
  msgid "HTTP code"
473
  msgstr "Codice HTTP"
474
 
475
+ #: core.php:2083
476
  msgid "Response time"
477
  msgstr "Tempo di risposta"
478
 
479
+ #: core.php:2085
480
  #, php-format
481
  msgid "%2.3f seconds"
482
  msgstr "%2.3f secondi"
483
 
484
+ #: core.php:2088
485
  msgid "Final URL"
486
  msgstr "URL finale"
487
 
488
+ #: core.php:2093
489
  msgid "Redirect count"
490
  msgstr "Computo reindirizzamento"
491
 
492
+ #: core.php:2098
493
  msgid "Instance count"
494
  msgstr "Computo richieste"
495
 
496
+ #: core.php:2107
497
  #, php-format
498
  msgid "This link has failed %d time."
499
  msgid_plural "This link has failed %d times."
500
  msgstr[0] "Questo link é stato difettoso %d volte."
501
  msgstr[1] "Questi link sono stati difettosi %d volte."
502
 
503
+ #: core.php:2115
504
  #, php-format
505
  msgid "This link has been broken for %s."
506
  msgstr "Questo link é stato rotto per %s."
507
 
508
+ #: core.php:2126
509
  msgid "Log"
510
  msgstr "Registro"
511
 
512
+ #: core.php:2152
513
  msgid "less than a minute"
514
  msgstr "meno di un minuto"
515
 
516
+ #: core.php:2160
517
  #, php-format
518
  msgid "%d minute"
519
  msgid_plural "%d minutes"
520
  msgstr[0] "%d minuto"
521
  msgstr[1] "%d minuti"
522
 
523
+ #: core.php:2174
524
+ #: core.php:2201
525
  #, php-format
526
  msgid "%d hour"
527
  msgid_plural "%d hours"
528
  msgstr[0] "%d ora"
529
  msgstr[1] "%d ore"
530
 
531
+ #: core.php:2189
532
+ #: core.php:2230
533
  #, php-format
534
  msgid "%d day"
535
  msgid_plural "%d days"
536
  msgstr[0] "%d giorno"
537
  msgstr[1] "%d giorni"
538
 
539
+ #: core.php:2219
540
  #, php-format
541
  msgid "%d month"
542
  msgid_plural "%d months"
543
  msgstr[0] "%d mese"
544
  msgstr[1] "%d mesi"
545
 
546
+ #: core.php:2562
547
  msgid "View broken links"
548
  msgstr "Visualizza i link rotti"
549
 
550
+ #: core.php:2563
551
  #, php-format
552
  msgid "Found %d broken link"
553
  msgid_plural "Found %d broken links"
554
  msgstr[0] "E' stato trovato %d link rotto"
555
  msgstr[1] "Sono stati trovati %d link rotti"
556
 
557
+ #: core.php:2569
558
  msgid "No broken links found."
559
  msgstr "Non é stato trovato alcun link rotto."
560
 
561
+ #: core.php:2576
562
  #, php-format
563
  msgid "%d URL in the work queue"
564
  msgid_plural "%d URLs in the work queue"
565
  msgstr[0] "%d URL in coda di elaborazione"
566
  msgstr[1] "%d URL in coda di elaborazione"
567
 
568
+ #: core.php:2579
569
  msgid "No URLs in the work queue."
570
  msgstr "Nessun URL in coda di elaborazione."
571
 
572
+ #: core.php:2585
573
  #, php-format
574
  msgid "Detected %d unique URL"
575
  msgid_plural "Detected %d unique URLs"
576
  msgstr[0] "E' stato rilevato %d URL unico"
577
  msgstr[1] "Sono stati rilevati %d URL unici"
578
 
579
+ #: core.php:2586
580
  #, php-format
581
  msgid "in %d link"
582
  msgid_plural "in %d links"
583
  msgstr[0] "in %d link"
584
  msgstr[1] "in %d link"
585
 
586
+ #: core.php:2591
587
  msgid "and still searching..."
588
  msgstr "ricerca in corso..."
589
 
590
+ #: core.php:2597
591
  msgid "Searching your blog for links..."
592
  msgstr "Ricerca dei link in corso..."
593
 
594
+ #: core.php:2599
595
  msgid "No links detected."
596
  msgstr "Nessun link é stato rilevato."
597
 
598
+ #: core.php:2681
599
+ #: core.php:2717
600
+ #: core.php:2780
601
+ #: core.php:2862
602
  msgid "You're not allowed to do that!"
603
  msgstr "Non hai il permesso per farlo!"
604
 
605
+ #: core.php:2689
606
+ #: core.php:2727
607
+ #: core.php:2790
608
  #, php-format
609
  msgid "Oops, I can't find the link %d"
610
  msgstr "Oops, non é possibile trovare il link %d"
611
 
612
+ #: core.php:2702
 
 
 
 
613
  msgid "Oops, couldn't modify the link!"
614
  msgstr "Oops, non é possibile modificare il link!"
615
 
616
+ #: core.php:2705
617
+ #: core.php:2816
618
  msgid "Error : link_id not specified"
619
  msgstr "Errore : non é stata specificata la link_id"
620
 
621
+ #: core.php:2737
622
  msgid "Oops, the new URL is invalid!"
623
  msgstr "Oops, il nuovo URL non é valido!"
624
 
625
+ #: core.php:2748
626
+ #: core.php:2799
627
  msgid "An unexpected error occured!"
628
  msgstr "Si é verificato un errore inatteso!"
629
 
630
+ #: core.php:2766
631
  msgid "Error : link_id or new_url not specified"
632
  msgstr "Errore : non é stata specificata la link_id oppure il new_url"
633
 
634
+ #: core.php:2825
635
  msgid "You don't have sufficient privileges to access this information!"
636
  msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
637
 
638
+ #: core.php:2838
639
  msgid "Error : link ID not specified"
640
  msgstr "Errore : La ID del link non é stata specificata"
641
 
642
+ #: core.php:2849
643
  #, php-format
644
  msgid "Failed to load link details (%s)"
645
  msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
646
 
647
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.3) #-#-#-#-#
648
+ #. Plugin Name of the plugin/theme
649
+ #: core.php:3034
650
+ msgid "Broken Link Checker"
651
+ msgstr "Broken Link Checker"
652
+
653
+ #: core.php:3048
654
  #, php-format
655
  msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
656
  msgstr "La cartella temporanea non é accessibile; impostane una <a href=\"%s\">differente</a>."
657
 
658
+ #: core.php:3053
659
  #, php-format
660
  msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
661
  msgstr "Rendi scrivibile la cartella <code>%1$s</code> oppure imposta una <a href=\"%2$s\">cartella temporanea</a>."
662
 
663
+ #: core.php:3060
664
  msgid "Broken Link Checker can't create a lockfile."
665
  msgstr "Broken Link Checker non può creare un lockfile."
666
 
667
+ #: core.php:3065
668
  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."
669
  msgstr "Questo plugin utilizza un meccanismo di locking su base-file in modo tale che una sola richiesta per volta venga inoltrata all'algoritmo per la ricerca dei link. Sfortunatamente, BLC non ha trovato una cartella scrivibile laddove poter allocare il lockfile - non é stato possibile rilevare la posizione della cartella temporanea nel server e la cartella stessa del plugin non é scrivibile via PHP. Per risolvere il problema, rendi scrivibile la cartella del plugin oppure inserisci nelle impostazioni del plugin il percorso ad una cartella temporanea personalizzata."
670
 
671
+ #: core.php:3084
672
  msgid "PHP version"
673
  msgstr "Versione PHP"
674
 
675
+ #: core.php:3090
676
  msgid "MySQL version"
677
  msgstr "Versione MySQL"
678
 
679
+ #: core.php:3103
680
  msgid "You have an old version of CURL. Redirect detection may not work properly."
681
  msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
682
 
683
+ #: core.php:3115
684
+ #: core.php:3131
685
+ #: core.php:3136
686
  msgid "Not installed"
687
  msgstr "Non installato"
688
 
689
+ #: core.php:3118
690
  msgid "CURL version"
691
  msgstr "Versione CURL"
692
 
693
+ #: core.php:3124
694
  msgid "Installed"
695
  msgstr "Installato"
696
 
697
+ #: core.php:3137
698
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
699
  msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
700
 
701
+ #: core.php:3148
702
  msgid "On"
703
  msgstr "On"
704
 
705
+ #: core.php:3149
706
  msgid "Redirects may be detected as broken links when safe_mode is on."
707
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
708
 
709
+ #: core.php:3154
710
+ #: core.php:3168
711
  msgid "Off"
712
  msgstr "Off"
713
 
714
+ #: core.php:3162
715
  #, php-format
716
  msgid "On ( %s )"
717
  msgstr "On ( %s )"
718
 
719
+ #: core.php:3163
720
  msgid "Redirects may be detected as broken links when open_basedir is on."
721
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
722
 
723
+ #: core.php:3182
724
  msgid "Can't create a lockfile. Please specify a custom temporary directory."
725
  msgstr "Non é stato possibile creare un lockfile. Specificare una cartella temporanea personalizzata."
726
 
727
+ #: core.php:3217
728
  #, php-format
729
  msgid "[%s] Broken links detected"
730
  msgstr "[%s] Link rotti rilevati"
731
 
732
+ #: core.php:3223
733
  #, php-format
734
  msgid "Broken Link Checker has detected %d new broken link on your site."
735
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
736
  msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
737
  msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
738
 
739
+ #: core.php:3238
740
  #, php-format
741
  msgid "Here's a list of the first %d broken links:"
742
  msgid_plural "Here's a list of the first %d broken links:"
743
  msgstr[0] "Ecco una lista del primo %d link rotto:"
744
  msgstr[1] "Ecco una lista dei primi %d link rotti:"
745
 
746
+ #: core.php:3246
747
  msgid "Here's a list of the new broken links: "
748
  msgstr "Ecco una lista con i nuovi link rotti:"
749
 
750
+ #: core.php:3258
751
  #, php-format
752
  msgid "Link text : %s"
753
  msgstr "Testo del link : %s"
754
 
755
+ #: core.php:3259
756
  #, php-format
757
  msgid "Link URL : <a href=\"%s\">%s</a>"
758
  msgstr "URL del link : <a href=\"%s\">%s</a>"
759
 
760
+ #: core.php:3260
761
  #, php-format
762
  msgid "Source : %s"
763
  msgstr "Sorgente : %s"
764
 
765
+ #: core.php:3274
766
  msgid "You can see all broken links here:"
767
  msgstr "Qui puoi vedere tutti i link rotti:"
768
 
841
  msgstr "Cancella questo filtro"
842
 
843
  #: includes/admin/search-form.php:29
844
+ #: includes/links.php:800
845
  msgid "Search"
846
  msgstr "Cerca"
847
 
889
  msgid "Search Links"
890
  msgstr "Ricerca link"
891
 
892
+ #: includes/checkers/http.php:195
893
+ #: includes/checkers/http.php:262
894
  #, php-format
895
  msgid "HTTP code : %d"
896
  msgstr "Codice HTTP : %d"
897
 
898
+ #: includes/checkers/http.php:197
899
+ #: includes/checkers/http.php:264
900
  msgid "(No response)"
901
  msgstr "(nessuna risposta)"
902
 
903
+ #: includes/checkers/http.php:203
904
  msgid "Most likely the connection timed out or the domain doesn't exist."
905
  msgstr "Connessione scaduta oppure il dominio non esiste."
906
 
907
+ #: includes/checkers/http.php:271
908
  msgid "Request timed out."
909
  msgstr "Richiesta scaduta."
910
 
911
+ #: includes/checkers/http.php:289
912
  msgid "Using Snoopy"
913
  msgstr "Snoopy in uso"
914
 
915
+ #: includes/containers.php:279
916
  #, php-format
917
  msgid "Container type '%s' not recognized"
918
  msgstr "Container type '%s' non riconosciuto"
919
 
920
+ #: includes/containers.php:809
921
  #, php-format
922
  msgid "%d '%s' has been deleted"
923
  msgid_plural "%d '%s' have been deleted"
953
 
954
  #: includes/containers/blogroll.php:75
955
  #: includes/containers/comment.php:36
956
+ #: includes/containers/post.php:142
957
  msgid "Nothing to update"
958
  msgstr "Nulla da aggiornare"
959
 
1012
  msgid "View"
1013
  msgstr "Visualizza"
1014
 
1015
+ #: includes/containers/comment.php:279
1016
  #, php-format
1017
  msgid "%d comment moved to the trash"
1018
  msgid_plural "%d comments moved to the trash"
1019
  msgstr[0] "%d commento spostato nel cestino"
1020
  msgstr[1] "%d commenti spostati nel cestino"
1021
 
1022
+ #: includes/containers/comment.php:289
1023
  #, php-format
1024
  msgid "%d comment has been deleted"
1025
  msgid_plural "%d comments have been deleted"
1037
  msgstr "Non é stato possibile cancellare il campo meta '%s' in %s [%d]"
1038
 
1039
  #: includes/containers/custom_field.php:191
 
1040
  #: includes/containers/post.php:16
1041
  #: includes/containers/post.php:41
1042
  msgid "Edit this post"
1043
  msgstr "Modifica questo articolo"
1044
 
1045
+ #: includes/containers/custom_field.php:201
1046
+ msgid "Edit this item"
1047
+ msgstr "modifica questo termine"
1048
+
1049
  #: includes/containers/custom_field.php:204
1050
+ msgid "Move this item to the Trash"
1051
+ msgstr "Sposta questo termine nel cestino"
 
1052
 
1053
  #: includes/containers/custom_field.php:204
1054
  #: includes/containers/post.php:19
1076
  msgid "View \"%s\""
1077
  msgstr "Visualizza \"%s\""
1078
 
1079
+ #: includes/containers/custom_field.php:304
1080
+ #: includes/containers/post.php:183
1081
  #, php-format
1082
  msgid "Failed to delete post \"%s\" (%d)"
1083
  msgstr "Non é stato possibile cancellare il post \"%s\" (%d)"
1084
 
1085
+ #: includes/containers/custom_field.php:535
1086
+ #: includes/containers/post.php:356
1087
  #, php-format
1088
  msgid "%d post moved to the trash"
1089
  msgid_plural "%d posts moved to the trash"
1090
  msgstr[0] "%d il post é stato spostato nel cestino"
1091
  msgstr[1] "%d i post sono stati spostati nel cestino"
1092
 
1093
+ #: includes/containers/custom_field.php:537
1094
+ #: includes/containers/post.php:358
1095
  #, php-format
1096
  msgid "%d post deleted"
1097
  msgid_plural "%d posts deleted"
1104
  msgid "I don't know how to edit a '%s' [%d]."
1105
  msgstr "Non so come modificare un '%s' [%d]."
1106
 
1107
+ #: includes/containers/post.php:19
1108
+ msgid "Move this post to the Trash"
1109
+ msgstr "Sposta questo articolo nel cestino"
1110
+
1111
+ #: includes/containers/post.php:152
1112
  #, php-format
1113
  msgid "Updating post %d failed"
1114
  msgstr "Aggiornamento articolo %d non riuscito"
1125
  msgid "Parser '%s' not found."
1126
  msgstr "Parser '%s' non trovato."
1127
 
1128
+ #: includes/links.php:152
1129
  msgid "The plugin script was terminated while trying to check the link."
1130
  msgstr "Lo script del plugin was é stato fermato durante il tentativo di verifica del link."
1131
 
1132
+ #: includes/links.php:196
1133
  msgid "The plugin doesn't know how to check this type of link."
1134
  msgstr "Questo plugin non é in grado di potere verificare questo tipo di link."
1135
 
1136
+ #: includes/links.php:284
1137
  msgid "Link is valid."
1138
  msgstr "Il link é valido."
1139
 
1140
+ #: includes/links.php:286
1141
  msgid "Link is broken."
1142
  msgstr "Il link é rotto."
1143
 
1144
+ #: includes/links.php:479
1145
+ #: includes/links.php:581
1146
+ #: includes/links.php:616
1147
  msgid "Link is not valid"
1148
  msgstr "Link non valido"
1149
 
1150
+ #: includes/links.php:496
1151
  msgid "This link can not be edited because it is not used anywhere on this site."
1152
  msgstr "Questo link non può essere modificato poiché non viene utilizzato in nessuna parte di questo sito."
1153
 
1154
+ #: includes/links.php:522
1155
  msgid "Failed to create a DB entry for the new URL."
1156
  msgstr "Non é stato possibile creare una entry nel DB per il nuovo URL."
1157
 
1158
+ #: includes/links.php:594
1159
  msgid "This link is not a redirect"
1160
  msgstr "Questo link non é redirect"
1161
 
1162
+ #: includes/links.php:643
1163
+ #: includes/links.php:680
1164
  msgid "Couldn't delete the link's database record"
1165
  msgstr "Non é possibile cancellare dal database il record per il link"
1166
 
1167
+ #: includes/links.php:772
1168
  msgid "Broken"
1169
  msgstr "Rotto"
1170
 
1171
+ #: includes/links.php:774
1172
  msgid "No broken links found"
1173
  msgstr "Non é stato trovato alcun link rotto"
1174
 
1175
+ #: includes/links.php:781
1176
  msgid "Redirects"
1177
  msgstr "Reindirizzamenti"
1178
 
1179
+ #: includes/links.php:782
1180
  msgid "Redirected Links"
1181
  msgstr "Link reindirizzati"
1182
 
1183
+ #: includes/links.php:783
1184
  msgid "No redirects found"
1185
  msgstr "Nessun reindirizzamento é stato trovato"
1186
 
1187
+ #: includes/links.php:791
1188
  msgid "All"
1189
  msgstr "Tutti"
1190
 
1191
+ #: includes/links.php:792
1192
  msgid "Detected Links"
1193
  msgstr "Link rilevati"
1194
 
1195
+ #: includes/links.php:793
1196
  msgid "No links found (yet)"
1197
  msgstr "Nessun link trovato (ancora)"
1198
 
1199
+ #: includes/links.php:801
1200
  msgid "Search Results"
1201
  msgstr "Risultati della ricerca"
1202
 
1203
+ #: includes/links.php:802
1204
+ #: includes/links.php:853
1205
  msgid "No links found for your query"
1206
  msgstr "Nessun link trovato in relazione ai termini di ricerca"
1207
 
1208
+ #: includes/parsers.php:173
1209
  #, php-format
1210
  msgid "Editing is not implemented in the '%s' parser"
1211
  msgstr "La modifica non é implementata nel '%s' parser"
1212
 
1213
+ #: includes/parsers.php:188
1214
  #, php-format
1215
  msgid "Unlinking is not implemented in the '%s' parser"
1216
  msgstr "Il de-link non é implementatato nel '%s' parser"
1217
 
 
 
 
 
1218
  #. Plugin URI of the plugin/theme
1219
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1220
  msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
readme.txt CHANGED
@@ -1,9 +1,10 @@
1
  === Broken Link Checker ===
2
  Contributors: whiteshadow
 
3
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
4
  Requires at least: 2.9.0
5
  Tested up to: 3.0
6
- Stable tag: 0.9.4.1
7
 
8
  This plugin will check your posts, comments and other places for broken links and missing images and notify you if any are found.
9
 
@@ -78,6 +79,18 @@ To upgrade your installation
78
 
79
  *This is an automatically generated changelog*
80
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  = 0.9.4 =
82
  * Fixed missing post and comment edit links in email notifications.
83
  * Updated Danish translation.
@@ -405,3 +418,7 @@ To upgrade your installation
405
  = 0.1 =
406
  * *There are no release notes for this version*
407
 
 
 
 
 
1
  === Broken Link Checker ===
2
  Contributors: whiteshadow
3
+ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=A6P9S6CE3SRSW
4
  Tags: links, broken, maintenance, blogroll, custom fields, admin, comments, posts
5
  Requires at least: 2.9.0
6
  Tested up to: 3.0
7
+ Stable tag: 0.9.4.2
8
 
9
  This plugin will check your posts, comments and other places for broken links and missing images and notify you if any are found.
10
 
79
 
80
  *This is an automatically generated changelog*
81
 
82
+ = 0.9.4.2 =
83
+ * Added more debugging data to the "Show debug info" table.
84
+ * Added missing indexes to the instance table.
85
+ * Yet more PHP4 compatibility fixes.
86
+ * Added a notification bubble with the current number of broken links to the Tools -> Broken Links menu item.
87
+
88
+ = 0.9.4.1 =
89
+ * Fixed PHP 4 incompatibilities introduced in the previous release.
90
+ * Fixed bulk unlink.
91
+ * Updated Italian translation.
92
+ * Updated Danish translation.
93
+
94
  = 0.9.4 =
95
  * Fixed missing post and comment edit links in email notifications.
96
  * Updated Danish translation.
418
  = 0.1 =
419
  * *There are no release notes for this version*
420
 
421
+ == Upgrade Notice ==
422
+
423
+ = 0.9.4.2 =
424
+ Fixes a major PHP4 compatibility problem introduced in version 0.9.4 and adds a notification bubble with the current broken link count to the "Broken Links" menu.