Broken Link Checker - Version 1.7

Version Description

  • Added support for youtu.be shortlinks.
  • Added a Finnish translation.
  • Fixed a graphical bug where the currently selected settings tab would not be highlighted in WordPress 3.5.
  • Removed the "Blogroll items" module from the list of link containers enabled by default. The WordPress developer team is planning to remove Link Manager from core, and the "Links" menu will be hidden by default in new WP 3.5 installs.
  • Removed the Admin Menu Editor Pro ad from the "Settings -> Link Checker" and the "Tools -> Broken Links" pages.
  • Disabled the news link (if any) for users who have donated.
  • Removed support for pre-WP 2.9 post meta actions.
  • Minor styling changes of screen meta links.
  • Updated Danish, Germa, Italian, French and Simplified Chinese translations.
  • Tested on WordPress 3.5.
Download this release

Release Info

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

Code changes from version 1.6.2 to 1.7

Files changed (46) hide show
  1. broken-link-checker.php +1 -1
  2. core/core.php +21 -41
  3. css/links-page.css +13 -9
  4. css/options-page.css +11 -3
  5. includes/admin/sidebar.php +8 -60
  6. includes/any-post.php +2 -4
  7. includes/checkers.php +1 -1
  8. includes/containers.php +3 -5
  9. includes/instances.php +7 -5
  10. includes/links.php +2 -2
  11. includes/modules.php +1 -4
  12. js/jquery.cookie.js +1 -1
  13. languages/broken-link-checker-da_DK.mo +0 -0
  14. languages/broken-link-checker-da_DK.po +763 -394
  15. languages/broken-link-checker-de_DE.mo +0 -0
  16. languages/broken-link-checker-de_DE.po +331 -297
  17. languages/broken-link-checker-fi.mo +0 -0
  18. languages/broken-link-checker-fi.po +1675 -0
  19. languages/broken-link-checker-fr_FR.mo +0 -0
  20. languages/broken-link-checker-fr_FR.po +16 -16
  21. languages/broken-link-checker-it_IT.mo +0 -0
  22. languages/broken-link-checker-it_IT.po +642 -582
  23. languages/broken-link-checker-zh_CN.mo +0 -0
  24. languages/broken-link-checker-zh_CN.po +1540 -483
  25. languages/broken-link-checker.pot +285 -256
  26. modules/checkers/http.php +0 -2
  27. modules/containers/blogroll.php +8 -10
  28. modules/containers/comment.php +0 -2
  29. modules/containers/custom_field.php +18 -25
  30. modules/containers/dummy.php +0 -2
  31. modules/extras/dailymotion-embed.php +1 -3
  32. modules/extras/embed-parser-base.php +1 -3
  33. modules/extras/mediafire.php +0 -2
  34. modules/extras/megaupload.php +0 -2
  35. modules/extras/plaintext-url.php +1 -2
  36. modules/extras/rapidshare.php +0 -2
  37. modules/extras/vimeo-embed.php +0 -2
  38. modules/extras/youtube-embed.php +0 -2
  39. modules/extras/youtube-iframe.php +0 -2
  40. modules/extras/youtube.php +9 -7
  41. modules/parsers/html_link.php +3 -5
  42. modules/parsers/image.php +5 -2
  43. modules/parsers/metadata.php +1 -2
  44. modules/parsers/url_field.php +0 -2
  45. readme.txt +17 -4
  46. uninstall.php +1 -3
broken-link-checker.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Broken Link Checker
4
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
5
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
6
- Version: 1.6.2
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
3
  Plugin Name: Broken Link Checker
4
  Plugin URI: http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/
5
  Description: Checks your blog for broken links and missing images and notifies you on the dashboard if any are found.
6
+ Version: 1.7
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/blog/
9
  Text Domain: broken-link-checker
core/core.php CHANGED
@@ -331,37 +331,6 @@ class wsBrokenLinkChecker {
331
  array($options_page_hook, $links_page_hook)
332
  );
333
 
334
- //Add a link to the Admin Menu Editor site to the "Broken Links" page.
335
- if ( !$this->conf->get('user_has_donated') ) {
336
- //Choose anchor text randomly.
337
- $possible_anchor_texts = array(
338
- 'Organize WordPress admin menu',
339
- 'Simplify WordPress Admin Menu',
340
- 'Customize WP Admin Menu',
341
- 'Organize WP Admin: use Admin Menu Editor',
342
- 'Web Developer? Check out Admin Menu Editor',
343
- 'Admin Menu Editor for WP',
344
- 'Organize, Hide And Customize Admin Menus',
345
- );
346
- $index = $this->conf->get('view-broken-links-meta-ad', null);
347
- if ( $index === null ) {
348
- $index = rand(0, count($possible_anchor_texts) - 1);
349
- $this->conf->set('view-broken-links-meta-ad', $index);
350
- $this->conf->save_options();
351
- }
352
-
353
- add_screen_meta_link(
354
- 'blc-more-plugins-link',
355
- $possible_anchor_texts[$index],
356
- sprintf(
357
- 'http://w-shadow.com/admin-menu-editor-pro/?utm_source=broken_link_checker&utm_medium=Broken_Links_meta_link&utm_campaign=Plugins&utm_content=copy-a%s',
358
- urlencode($index)
359
- ),
360
- $links_page_hook,
361
- array('style' => 'font-weight: bold;')
362
- );
363
- }
364
-
365
  //Make the Settings page link to the link list
366
  add_screen_meta_link(
367
  'blc-links-page-link',
@@ -372,7 +341,7 @@ class wsBrokenLinkChecker {
372
  );
373
 
374
  //Add a link to the latest blog post/whatever about this plugin, if any.
375
- if ( isset($this->conf->options['plugin_news']) && !empty($this->conf->options['plugin_news']) ){
376
  $news = $this->conf->options['plugin_news'];
377
  add_screen_meta_link(
378
  'blc-plugin-news-link',
@@ -1181,7 +1150,7 @@ class wsBrokenLinkChecker {
1181
  * @return void
1182
  */
1183
  function options_page_css(){
1184
- wp_enqueue_style('blc-options-page', plugins_url('css/options-page.css', BLC_PLUGIN_FILE), array(), '20120527' );
1185
  wp_enqueue_style('dashboard');
1186
  }
1187
 
@@ -1869,7 +1838,7 @@ class wsBrokenLinkChecker {
1869
  * @return void
1870
  */
1871
  function links_page_css(){
1872
- wp_enqueue_style('blc-links-page', plugins_url('css/links-page.css', $this->loader), array(), '20120702');
1873
  }
1874
 
1875
  /**
@@ -2318,16 +2287,27 @@ class wsBrokenLinkChecker {
2318
 
2319
  $text .= "<br/>";
2320
  if ( $status['known_links'] > 0 ){
2321
- $text .= sprintf(
2322
- _n('Detected %d unique URL', 'Detected %d unique URLs', $status['known_links'], 'broken-link-checker') .
2323
- ' ' . _n('in %d link', 'in %d links', $status['known_instances'], 'broken-link-checker'),
2324
- $status['known_links'],
 
 
2325
  $status['known_instances']
2326
- );
 
2327
  if ($this->conf->options['need_resynch']){
2328
- $text .= ' ' . __('and still searching...', 'broken-link-checker');
 
 
 
 
2329
  } else {
2330
- $text .= '.';
 
 
 
 
2331
  }
2332
  } else {
2333
  if ($this->conf->options['need_resynch']){
331
  array($options_page_hook, $links_page_hook)
332
  );
333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  //Make the Settings page link to the link list
335
  add_screen_meta_link(
336
  'blc-links-page-link',
341
  );
342
 
343
  //Add a link to the latest blog post/whatever about this plugin, if any.
344
+ if ( !$this->conf->get('user_has_donated') && isset($this->conf->options['plugin_news']) && !empty($this->conf->options['plugin_news']) ){
345
  $news = $this->conf->options['plugin_news'];
346
  add_screen_meta_link(
347
  'blc-plugin-news-link',
1150
  * @return void
1151
  */
1152
  function options_page_css(){
1153
+ wp_enqueue_style('blc-options-page', plugins_url('css/options-page.css', BLC_PLUGIN_FILE), array(), '20121206' );
1154
  wp_enqueue_style('dashboard');
1155
  }
1156
 
1838
  * @return void
1839
  */
1840
  function links_page_css(){
1841
+ wp_enqueue_style('blc-links-page', plugins_url('css/links-page.css', $this->loader), array(), '20121106');
1842
  }
1843
 
1844
  /**
2287
 
2288
  $text .= "<br/>";
2289
  if ( $status['known_links'] > 0 ){
2290
+ $url_count = sprintf(
2291
+ _nx('%d unique URL', '%d unique URLs', $status['known_links'], 'for the "Detected X unique URLs in Y links" message', 'broken-link-checker'),
2292
+ $status['known_links']
2293
+ );
2294
+ $link_count = sprintf(
2295
+ _nx('%d link', '%d links', $status['known_instances'], 'for the "Detected X unique URLs in Y links" message', 'broken-link-checker'),
2296
  $status['known_instances']
2297
+ );
2298
+
2299
  if ($this->conf->options['need_resynch']){
2300
+ $text .= sprintf(
2301
+ __('Detected %1$s in %2$s and still searching...', 'broken-link-checker'),
2302
+ $url_count,
2303
+ $link_count
2304
+ );
2305
  } else {
2306
+ $text .= sprintf(
2307
+ __('Detected %1$s in %2$s.', 'broken-link-checker'),
2308
+ $url_count,
2309
+ $link_count
2310
+ );
2311
  }
2312
  } else {
2313
  if ($this->conf->options['need_resynch']){
css/links-page.css CHANGED
@@ -268,8 +268,8 @@ td.column-link-text, td.column-new-link-text {
268
  #bulk-edit label {
269
  display: block;
270
  margin-bottom: 0.2em;
271
- margin-left: 0px;
272
- margin-right: 0px;
273
  margin-top: 0.2em;
274
  }
275
 
@@ -309,7 +309,7 @@ td.column-link-text, td.column-new-link-text {
309
 
310
  .blc-search-container .ui-dialog-titlebar {
311
  display: none;
312
- margin: 0px;
313
  }
314
 
315
  #search-links-dialog {
@@ -339,9 +339,9 @@ td.column-link-text, td.column-new-link-text {
339
  div.search-box{
340
  float: right;
341
  margin-top: -5px;
342
- margin-right: 0pt;
343
- margin-bottom: 0pt;
344
- margin-left: 0pt;
345
  }
346
 
347
  #s_link_type optgroup {
@@ -368,16 +368,20 @@ div.search-box{
368
 
369
  /* Miscellaneous styles */
370
 
371
- #blc-more-plugins-link-wrap {
 
372
  background: #00C31F none;
373
  }
374
 
375
- #screen-meta-links #blc-more-plugins-link {
 
376
  font-weight: bold;
377
  color: #DEFFD8;
378
  text-shadow: none;
379
  }
380
 
381
- #screen-meta-links #blc-more-plugins-link-wrap a.show-settings:hover {
 
 
382
  color: white;
383
  }
268
  #bulk-edit label {
269
  display: block;
270
  margin-bottom: 0.2em;
271
+ margin-left: 0;
272
+ margin-right: 0;
273
  margin-top: 0.2em;
274
  }
275
 
309
 
310
  .blc-search-container .ui-dialog-titlebar {
311
  display: none;
312
+ margin: 0;
313
  }
314
 
315
  #search-links-dialog {
339
  div.search-box{
340
  float: right;
341
  margin-top: -5px;
342
+ margin-right: 0;
343
+ margin-bottom: 0;
344
+ margin-left: 0;
345
  }
346
 
347
  #s_link_type optgroup {
368
 
369
  /* Miscellaneous styles */
370
 
371
+ #blc-more-plugins-link-wrap,
372
+ #blc-plugin-news-link-wrap {
373
  background: #00C31F none;
374
  }
375
 
376
+ #screen-meta-links #blc-more-plugins-link,
377
+ #screen-meta-links #blc-plugin-news-link {
378
  font-weight: bold;
379
  color: #DEFFD8;
380
  text-shadow: none;
381
  }
382
 
383
+ #screen-meta-links #blc-more-plugins-link-wrap a.show-settings:hover,
384
+ #screen-meta-links #blc-plugin-news-link-wrap a.show-settings:hover
385
+ {
386
  color: white;
387
  }
css/options-page.css CHANGED
@@ -81,7 +81,7 @@ Sidebar
81
  border-color: gray;
82
  border-style: solid;
83
 
84
- border-spacing: 0px;
85
  border-collapse: collapse;
86
  }
87
 
@@ -164,7 +164,9 @@ ul.ui-tabs-nav li {
164
  max-width: 25%;
165
  }
166
 
167
- ul.ui-tabs-nav li.ui-tabs-selected {
 
 
168
  background: white;
169
  color: black;
170
  border-bottom-color: white;
@@ -178,8 +180,14 @@ ul.ui-tabs-nav li a {
178
  padding: 0.5em 1em 0.6em 1em;
179
  }
180
 
181
- ul.ui-tabs-nav li.ui-tabs-selected a {
 
 
 
 
 
182
  color: black;
 
183
  }
184
 
185
  /* Tab panels */
81
  border-color: gray;
82
  border-style: solid;
83
 
84
+ border-spacing: 0;
85
  border-collapse: collapse;
86
  }
87
 
164
  max-width: 25%;
165
  }
166
 
167
+ ul.ui-tabs-nav li.ui-tabs-selected,
168
+ ul.ui-tabs-nav li.ui-tabs-active
169
+ {
170
  background: white;
171
  color: black;
172
  border-bottom-color: white;
180
  padding: 0.5em 1em 0.6em 1em;
181
  }
182
 
183
+ ul.ui-tabs-nav li a:focus {
184
+ outline: none;
185
+ }
186
+
187
+ ul.ui-tabs-nav li.ui-tabs-selected a,
188
+ ul.ui-tabs-nav li.ui-tabs-active a {
189
  color: black;
190
+ outline: none;
191
  }
192
 
193
  /* Tab panels */
includes/admin/sidebar.php CHANGED
@@ -5,13 +5,9 @@ if ( !function_exists('fetch_feed') ){
5
  include_once(ABSPATH . WPINC . '/feed.php');
6
  }
7
 
8
- $show_plugin_feed = $show_ame_ad = false;
9
  if ( !$configuration->get('user_has_donated', false) ) {
10
- if ( (blcUtility::constrained_hash(get_site_url() . 'y', 0, 100) < 40) && function_exists('fetch_feed') ) {
11
- $show_plugin_feed = true;
12
- } else {
13
- $show_ame_ad = true;
14
- }
15
  }
16
  ?>
17
 
@@ -46,40 +42,6 @@ if ( $show_plugin_feed ):
46
  endif;
47
  ?>
48
 
49
- <!-- Admin Menu Editor Pro ad -->
50
- <?php
51
- if ( $show_ame_ad ):
52
- //Display an ad for Admin Menu Editor.
53
- //We're A/B testing a bunch of different ad copies.
54
- $ame_copy_variants = array(
55
- array('a', "Add, delete, hide, or move any admin menu item."),
56
- array('b', "Organize your admin menu the way you want it."),
57
- array('c', "Hide, move or customize admin menus. Perfect for client sites."),
58
- );
59
- $ad_copy_index = intval(blcUtility::constrained_hash(get_site_url(), 0, count($ame_copy_variants)));
60
- $ad_copy = $ame_copy_variants[$ad_copy_index];
61
-
62
- $ad_url = sprintf(
63
- 'http://w-shadow.com/admin-menu-editor-pro/?utm_source=broken_link_checker&utm_medium=text_link&utm_campaign=Plugins&utm_content=%s',
64
- urlencode('ad_copy_') . $ad_copy[0]
65
- );
66
- ?>
67
- <div class="postbox" id="advertising">
68
- <h3 class="hndle"><?php _e('More plugins by Janis Elsts', 'broken-link-checker'); ?></h3>
69
- <div class="inside">
70
- <p class="ws-ame-ad-copy"><?php echo $ad_copy[1]; ?></p>
71
- <p class="ws-ame-ad-link">
72
- <a href="<?php echo esc_attr($ad_url); ?>" title="Admin Menu Editor">
73
- Admin Menu Editor
74
- </a>
75
- </p>
76
- </div>
77
- </div>
78
-
79
- <?php
80
- endif;
81
- ?>
82
-
83
  <!-- Donation button -->
84
  <div id="donate" class="postbox">
85
  <h3 class="hndle"><?php _e('Donate $10, $20 or $50!', 'broken-link-checker'); ?></h3>
@@ -117,27 +79,13 @@ endif;
117
  <!-- Other advertising -->
118
  <?php
119
  if ( !$configuration->get('user_has_donated') ):
120
- $ad_switch_time = strtotime('2012-06-05 12:00');
121
- if ( time() < $ad_switch_time ):
122
  ?>
123
- <div id="themefuse-ad" class="postbox">
124
- <!--<h3 class="hndle">ThemeFuse</h3> -->
125
- <div class="inside">
126
- <a href="http://themefuse.com/wp-themes-shop/?plugin=broken-link-checker" title="ThemeFuse themes">
127
- <img src="<?php echo plugins_url('images/themefuse-250x250.jpg', BLC_PLUGIN_FILE) ?>" width="250" height="250" alt="ThemeFuse">
128
- </a>
129
- </div>
130
- </div>
131
- <?php
132
- else:
133
- ?>
134
- <div id="managewp-ad" class="postbox">
135
- <div class="inside">
136
- <a href="http://managewp.com/?utm_source=broken_link_checker&utm_medium=Banner&utm_content=mwp250_2&utm_campaign=Plugins" title="ManageWP">
137
- <img src="<?php echo plugins_url('images/mwp250_2.png', BLC_PLUGIN_FILE) ?>" width="250" height="250" alt="ManageWP">
138
- </a>
139
- </div>
140
  </div>
 
141
  <?php
142
- endif;
143
  endif; ?>
5
  include_once(ABSPATH . WPINC . '/feed.php');
6
  }
7
 
8
+ $show_plugin_feed = false;
9
  if ( !$configuration->get('user_has_donated', false) ) {
10
+ $show_plugin_feed = true;
 
 
 
 
11
  }
12
  ?>
13
 
42
  endif;
43
  ?>
44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  <!-- Donation button -->
46
  <div id="donate" class="postbox">
47
  <h3 class="hndle"><?php _e('Donate $10, $20 or $50!', 'broken-link-checker'); ?></h3>
79
  <!-- Other advertising -->
80
  <?php
81
  if ( !$configuration->get('user_has_donated') ):
 
 
82
  ?>
83
+ <div id="managewp-ad" class="postbox">
84
+ <div class="inside">
85
+ <a href="http://managewp.com/?utm_source=broken_link_checker&utm_medium=Banner&utm_content=mwp250_2&utm_campaign=Plugins" title="ManageWP">
86
+ <img src="<?php echo plugins_url('images/mwp250_2.png', BLC_PLUGIN_FILE) ?>" width="250" height="250" alt="ManageWP">
87
+ </a>
 
 
 
 
 
 
 
 
 
 
 
 
88
  </div>
89
+ </div>
90
  <?php
 
91
  endif; ?>
includes/any-post.php CHANGED
@@ -566,7 +566,7 @@ class blcAnyPostContainer extends blcContainer {
566
  $this->container_id
567
  )
568
  );
569
- };
570
  }
571
  }
572
 
@@ -605,7 +605,7 @@ class blcAnyPostContainer extends blcContainer {
605
  $this->container_id
606
  )
607
  );
608
- };
609
  }
610
 
611
  /**
@@ -741,5 +741,3 @@ class blcAnyPostContainerManager extends blcContainerManager {
741
  return sprintf($delete_msg, $n, $type_name);
742
  }
743
  }
744
-
745
- ?>
566
  $this->container_id
567
  )
568
  );
569
+ }
570
  }
571
  }
572
 
605
  $this->container_id
606
  )
607
  );
608
+ }
609
  }
610
 
611
  /**
741
  return sprintf($delete_msg, $n, $type_name);
742
  }
743
  }
 
 
includes/checkers.php CHANGED
@@ -30,7 +30,7 @@ class blcChecker extends blcModule {
30
  * Check if this checker knows how to check a particular URL.
31
  *
32
  * @param string $url
33
- * @param array|false $parsed_url The result of parsing $url with parse_url(). See PHP docs for details.
34
  * @return bool
35
  */
36
  function can_check($url, $parsed_url){
30
  * Check if this checker knows how to check a particular URL.
31
  *
32
  * @param string $url
33
+ * @param array|bool $parsed_url The result of parsing $url with parse_url(). See PHP docs for details.
34
  * @return bool
35
  */
36
  function can_check($url, $parsed_url){
includes/containers.php CHANGED
@@ -189,7 +189,7 @@ class blcContainer {
189
  $field = $this->default_field;
190
  }
191
 
192
- $w = &$this->get_wrapped_object();
193
  return $w->$field;
194
  }
195
 
@@ -205,7 +205,7 @@ class blcContainer {
205
  * @return bool|WP_Error True on success, an error object if something went wrong.
206
  */
207
  function update_field($field, $new_value, $old_value = ''){
208
- $w = &$this->get_wrapped_object();
209
  $w->$field = $new_value;
210
  return $this->update_wrapped_object();
211
  }
@@ -794,7 +794,7 @@ class blcContainerHelper {
794
  $containers = $module_manager->get_active_by_category('container');
795
 
796
  foreach($containers as $module_id => $module_data){
797
- if ( $container_manager = &$module_manager->get_module($module_id) ){
798
  $fields = $container_manager->get_parseable_fields();
799
  $container_type = $container_manager->container_type;
800
  foreach($formats as $format => $timestamp){
@@ -894,5 +894,3 @@ class blcContainerHelper {
894
  }
895
  }
896
  }
897
-
898
- ?>
189
  $field = $this->default_field;
190
  }
191
 
192
+ $w = $this->get_wrapped_object();
193
  return $w->$field;
194
  }
195
 
205
  * @return bool|WP_Error True on success, an error object if something went wrong.
206
  */
207
  function update_field($field, $new_value, $old_value = ''){
208
+ $w = $this->get_wrapped_object();
209
  $w->$field = $new_value;
210
  return $this->update_wrapped_object();
211
  }
794
  $containers = $module_manager->get_active_by_category('container');
795
 
796
  foreach($containers as $module_id => $module_data){
797
+ if ( $container_manager = $module_manager->get_module($module_id) ){
798
  $fields = $container_manager->get_parseable_fields();
799
  $container_type = $container_manager->container_type;
800
  foreach($formats as $format => $timestamp){
894
  }
895
  }
896
  }
 
 
includes/instances.php CHANGED
@@ -27,6 +27,7 @@ class blcLinkInstance {
27
 
28
  var $_container = null;
29
  var $_parser = null;
 
30
  var $_link = null;
31
 
32
  /**
@@ -37,7 +38,8 @@ class blcLinkInstance {
37
  * @return void
38
  */
39
  function __construct($arg = null){
40
-
 
41
  if (is_int($arg)){
42
  //Load an instance with ID = $arg from the DB.
43
  $q = $wpdb->prepare("SELECT * FROM {$wpdb->prefix}blc_instances WHERE instance_id=%d LIMIT 1", $arg);
@@ -183,7 +185,7 @@ class blcLinkInstance {
183
  * @return mixed 1 on success, 0 if the instance wasn't found, false on error
184
  */
185
  function forget(){
186
- global $wpdb;
187
 
188
  if ( !empty($this->instance_id) ) {
189
  $rez = $wpdb->query( $wpdb->prepare("DELETE FROM {$wpdb->prefix}blc_instances WHERE instance_id=%d", $this->instance_id) );
@@ -200,7 +202,7 @@ class blcLinkInstance {
200
  * @return bool TRUE on success, FALSE on error
201
  */
202
  function save(){
203
- global $wpdb;
204
 
205
  //Refresh the locally cached link & container properties, in case
206
  //the objects have changed since they were set.
@@ -477,10 +479,10 @@ class blcLinkInstance {
477
  * @param bool $load_containers Preload containers regardless of purpose. Defaults to false.
478
  * @param bool $load_wrapped_objects Preload wrapped objects regardless of purpose. Defaults to false.
479
  * @param bool $include_invalid Include instances that refer to not-loaded containers or parsers. Defaults to false.
480
- * @return array An array indexed by link ID. Each item of the array will be an array of blcLinkInstance objects.
481
  */
482
  function blc_get_instances( $link_ids, $purpose = '', $load_containers = false, $load_wrapped_objects = false, $include_invalid = false ){
483
- global $wpdb;
484
 
485
  if ( empty($link_ids) ){
486
  return array();
27
 
28
  var $_container = null;
29
  var $_parser = null;
30
+ /** @var blcLink|null */
31
  var $_link = null;
32
 
33
  /**
38
  * @return void
39
  */
40
  function __construct($arg = null){
41
+ global $wpdb; /** @var wpdb $wpdb */
42
+
43
  if (is_int($arg)){
44
  //Load an instance with ID = $arg from the DB.
45
  $q = $wpdb->prepare("SELECT * FROM {$wpdb->prefix}blc_instances WHERE instance_id=%d LIMIT 1", $arg);
185
  * @return mixed 1 on success, 0 if the instance wasn't found, false on error
186
  */
187
  function forget(){
188
+ global $wpdb; /** @var wpdb $wpdb */
189
 
190
  if ( !empty($this->instance_id) ) {
191
  $rez = $wpdb->query( $wpdb->prepare("DELETE FROM {$wpdb->prefix}blc_instances WHERE instance_id=%d", $this->instance_id) );
202
  * @return bool TRUE on success, FALSE on error
203
  */
204
  function save(){
205
+ global $wpdb; /** @var wpdb $wpdb */
206
 
207
  //Refresh the locally cached link & container properties, in case
208
  //the objects have changed since they were set.
479
  * @param bool $load_containers Preload containers regardless of purpose. Defaults to false.
480
  * @param bool $load_wrapped_objects Preload wrapped objects regardless of purpose. Defaults to false.
481
  * @param bool $include_invalid Include instances that refer to not-loaded containers or parsers. Defaults to false.
482
+ * @return blcLinkInstance[] An array indexed by link ID. Each item of the array will be an array of blcLinkInstance objects.
483
  */
484
  function blc_get_instances( $link_ids, $purpose = '', $load_containers = false, $load_wrapped_objects = false, $include_invalid = false ){
485
+ global $wpdb; /** @var wpdb $wpdb */
486
 
487
  if ( empty($link_ids) ){
488
  return array();
includes/links.php CHANGED
@@ -457,7 +457,7 @@ class blcLink {
457
  * @return array
458
  */
459
  function to_db_format($values){
460
- global $wpdb;
461
 
462
  $dbvalues = array();
463
 
@@ -614,7 +614,7 @@ class blcLink {
614
  __('Failed to create a DB entry for the new URL.', 'broken-link-checker')
615
  )
616
  )
617
- );;
618
  }
619
 
620
  $cnt_okay = $cnt_error = 0;
457
  * @return array
458
  */
459
  function to_db_format($values){
460
+ global $wpdb; /** @var wpdb $wpdb */
461
 
462
  $dbvalues = array();
463
 
614
  __('Failed to create a DB entry for the new URL.', 'broken-link-checker')
615
  )
616
  )
617
+ );
618
  }
619
 
620
  $cnt_okay = $cnt_error = 0;
includes/modules.php CHANGED
@@ -18,7 +18,6 @@ $blc_module_manager = blcModuleManager::getInstance(array(
18
  'image', //HTML image parser
19
  'metadata', //Metadata (custom field) parser
20
  'url_field', //URL field parser
21
- 'blogroll', //Blogroll container
22
  'comment', //Comment container
23
  'custom_field', //Post metadata container (aka custom fields)
24
  'post', //Post content container
@@ -26,6 +25,4 @@ $blc_module_manager = blcModuleManager::getInstance(array(
26
  'dummy', //Dummy container used as a fallback
27
  ));
28
 
29
- require 'any-post.php';
30
-
31
- ?>
18
  'image', //HTML image parser
19
  'metadata', //Metadata (custom field) parser
20
  'url_field', //URL field parser
 
21
  'comment', //Comment container
22
  'custom_field', //Post metadata container (aka custom fields)
23
  'post', //Post content container
25
  'dummy', //Dummy container used as a fallback
26
  ));
27
 
28
+ require 'any-post.php';
 
 
js/jquery.cookie.js CHANGED
@@ -45,7 +45,7 @@
45
  * @example $.cookie('the_cookie');
46
  * @desc Get the value of a cookie.
47
  *
48
- * @param String name The name of the cookie.
49
  * @return The value of the cookie.
50
  * @type String
51
  *
45
  * @example $.cookie('the_cookie');
46
  * @desc Get the value of a cookie.
47
  *
48
+ * @param {String} name The name of the cookie.
49
  * @return The value of the cookie.
50
  * @type String
51
  *
languages/broken-link-checker-da_DK.mo CHANGED
Binary file
languages/broken-link-checker-da_DK.po CHANGED
@@ -1,780 +1,853 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker 0.9.7.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-10-10 21:08+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"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "Plural-Forms: nplurals=2;plural=n != 1;\n"
13
- "X-Poedit-Language: Danish\n"
14
- "X-Poedit-Country: DENMARK\n"
15
- "X-Poedit-SourceCharset: utf-8\n"
16
- "X-Poedit-KeywordsList: __;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;_nc:1,2;_nx:1,2;_n_noop:1,2;_nx_noop;_x;_c;esc_html__;esc_html_e;esc_html_x;esc_attr__;esc_attr_e;esc_attr_x\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/core/core.php:152
 
21
  msgid "Loading..."
22
  msgstr "Indlæser ..."
23
 
24
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:176
 
25
  msgid "[ Network error ]"
26
  msgstr "[ Network-fejl ]"
27
 
28
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:201
29
  msgid "Automatically expand the widget if broken links have been detected"
30
  msgstr "Automatisk udvid widgetten, hvis der er fundet døde links"
31
 
32
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:342
33
  msgid "Link Checker Settings"
34
  msgstr "Link Checker-indstillinger"
35
 
36
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:343
37
  msgid "Link Checker"
38
  msgstr "Link Checker"
39
 
40
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:348
41
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:26
42
  msgid "Broken Links"
43
  msgstr "Døde links"
44
 
45
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:364
46
  msgid "View Broken Links"
47
  msgstr "Se døde links"
48
 
49
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:392
 
 
 
 
 
 
 
 
50
  msgid "Settings"
51
  msgstr "Indstillinger"
52
 
53
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:404
54
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1186
55
- #, php-format
56
- msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
57
- msgstr "Fejl: Pluginnets databasetabeller er ikke up-to-date! (Nuværende version: %d; forventet: %d)"
58
-
59
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:543
60
  msgid "Settings saved."
61
  msgstr "Indstillinger gemt."
62
 
63
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:550
 
 
 
 
64
  msgid "Complete site recheck started."
65
  msgstr "Fuldstændig ny tjek af site påbegyndt."
66
 
67
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:564
68
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2744
69
  msgid "Details"
70
  msgstr "Detaljer"
71
 
72
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:578
73
  msgid "General"
74
  msgstr "Generel"
75
 
76
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:579
77
  msgid "Look For Links In"
78
  msgstr "Se efter links i"
79
 
80
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:580
81
  msgid "Which Links To Check"
82
  msgstr "Hvilke links der skal tjekkes"
83
 
84
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:581
85
  msgid "Protocols & APIs"
86
  msgstr "Protokoller & API'er"
87
 
88
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:582
89
  msgid "Advanced"
90
  msgstr "Avanceret"
91
 
92
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:586
93
  msgid "Broken Link Checker Options"
94
  msgstr "Indstillinger for Broken Link Checker"
95
 
96
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:612
 
97
  msgid "Status"
98
  msgstr "Status"
99
 
100
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:614
 
101
  msgid "Show debug info"
102
  msgstr "Vis debug-info"
103
 
104
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:642
105
  msgid "Check each link"
106
  msgstr "Tjek hvert link"
107
 
108
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:647
109
  #, php-format
110
  msgid "Every %s hours"
111
  msgstr "hver %s timer"
112
 
113
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:656
114
- msgid "Existing links will be checked this often. New links will usually be checked ASAP."
115
- msgstr "Eksisterende links vil blive tjekket med dette mellemrum. Nye links tjekkes normalt hurtigt som muligt."
 
 
 
 
116
 
117
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:663
118
  msgid "E-mail notifications"
119
  msgstr "E-mail-meddelelser"
120
 
121
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:669
122
  msgid "Send me e-mail notifications about newly detected broken links"
123
  msgstr "Send mig e-mail-meddelelser om nyligt opdagede døde links"
124
 
125
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:676
 
 
 
 
126
  msgid "Link tweaks"
127
  msgstr "Linktilpasninger"
128
 
129
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:682
130
  msgid "Apply custom formatting to broken links"
131
  msgstr "Anvend egen formattering på døde links"
132
 
133
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:686
134
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:714
135
  msgid "Edit CSS"
136
  msgstr "Redigér CSS"
137
 
138
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:710
 
 
 
 
 
 
 
 
 
 
139
  msgid "Apply custom formatting to removed links"
140
  msgstr "Anvend egen formattering på links, der er fjernet"
141
 
142
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:738
 
 
 
 
 
143
  msgid "Stop search engines from following broken links"
144
  msgstr "Forhindr søgemaskiner i at følge døde links"
145
 
146
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:755
147
  msgid "Look for links in"
148
  msgstr "Se efter links i"
149
 
150
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:766
151
  msgid "Post statuses"
152
  msgstr "Indlægsstatusser"
153
 
154
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:799
155
  msgid "Link types"
156
  msgstr "Linktyper"
157
 
158
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:805
159
  msgid "Error : All link parsers missing!"
160
  msgstr "Fejl: Alle linkparsers mangler!"
161
 
162
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:812
163
  msgid "Exclusion list"
164
  msgstr "Eksklusionsliste"
165
 
166
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:813
167
- msgid "Don't check links where the URL contains any of these words (one per line) :"
168
- msgstr "Tjek ikke links, hvor URL&#39;en indeholder et af disse ord (et ord per linje):"
 
 
 
169
 
170
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:831
171
  msgid "Check links using"
172
  msgstr "Tjek link med"
173
 
174
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:850
175
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:849
176
  msgid "Timeout"
177
  msgstr "Timeout"
178
 
179
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:856
180
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:902
181
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2871
182
  #, php-format
183
  msgid "%s seconds"
184
  msgstr "%s sekunder"
185
 
186
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:865
187
  msgid "Links that take longer than this to load will be marked as broken."
188
- msgstr "Links, som tager længere tid at tjekke end dette, vil blive markeret som døde."
 
 
189
 
190
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:872
191
  msgid "Link monitor"
192
  msgstr "Linkovervågning"
193
 
194
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:880
195
  msgid "Run continuously while the Dashboard is open"
196
  msgstr "Kør kontinuerligt, når kontrolpanelet er åbent"
197
 
198
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:888
199
  msgid "Run hourly in the background"
200
  msgstr "Kør hver time i baggrunden"
201
 
202
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:896
203
  msgid "Max. execution time"
204
  msgstr "Max udførelsestid"
205
 
206
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:913
207
- 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."
208
- 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."
209
-
210
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:923
211
- msgid "Custom temporary directory"
212
- msgstr "Brugerdefineret tmp-mappe"
213
-
214
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:932
215
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:875
216
- msgid "OK"
217
- msgstr "OK"
218
-
219
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:935
220
- msgid "Error : This directory isn't writable by PHP."
221
- msgstr "Fejl: Denne mappe er ikke skrivbar for PHP."
222
-
223
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:940
224
- msgid "Error : This directory doesn't exist."
225
- msgstr "Fejl: Denne mappe eksisterer ikke."
226
-
227
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:948
228
- msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
229
- msgstr "Sæt dette felt, hvis du ønsker, at pluginnet skal bruge en brugerdefineret mappe til sine lock-filer. Ellers skal det ikke udfyldes."
230
 
231
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:955
232
  msgid "Server load limit"
233
  msgstr "Begrænsning på serverbelastning"
234
 
235
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:970
236
  #, php-format
237
  msgid "Current load : %s"
238
  msgstr "Aktuel belastning: %s"
239
 
240
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:976
241
  #, php-format
242
- 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."
243
- 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."
 
 
 
 
 
244
 
245
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:984
246
  msgid "Not available"
247
  msgstr "Ikke tilgængelig"
248
 
249
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:986
250
- msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
251
- msgstr "Begrænsning af belastning virker kun Linux-lignende systemer, hvor <code>/proc/loadavg</code> findes og er tilgængelig."
 
 
 
 
252
 
253
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:994
254
  msgid "Forced recheck"
255
  msgstr "Tvungen nytjek"
256
 
257
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:997
258
  msgid "Re-check all pages"
259
  msgstr "Tjek alle sider igen"
260
 
261
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1001
262
- msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
263
- msgstr "\"Bombe\"-indstilling. Klik denne knap for at pluginnet til at tømme dets linkdatabase og tjekke hele siten igen helt forfra."
 
 
 
 
264
 
265
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1012
266
  msgid "Save Changes"
267
  msgstr "Gem ændringer"
268
 
269
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1057
270
  msgid "Configure"
271
  msgstr "Konfigurér"
272
 
273
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1117
274
- msgid "Upgrade to Pro to enable this feature"
275
- msgstr "Opgradér til Pro for at aktivere denne funktion"
276
-
277
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1152
278
  msgid "Check URLs entered in these custom fields (one per line) :"
279
  msgstr "Tjek URL&#39;er i disse Egne felter (en per linje):"
280
 
281
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1286
282
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1370
283
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1402
284
  #, php-format
285
  msgid "Database error : %s"
286
  msgstr "Database-fejl : %s"
287
 
288
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1352
289
  msgid "You must enter a filter name!"
290
  msgstr "Du <i>skal</i> indtaste et filternavn!"
291
 
292
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1356
293
  msgid "Invalid search query."
294
  msgstr "Ugyldig søgeforespørgsel."
295
 
296
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1365
297
  #, php-format
298
  msgid "Filter \"%s\" created"
299
  msgstr "Filter \"%s\" oprettet"
300
 
301
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1392
302
  msgid "Filter ID not specified."
303
  msgstr "Filter-id ikke angivet."
304
 
305
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1399
306
  msgid "Filter deleted"
307
  msgstr "Filter slettet"
308
 
309
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1447
310
  #, php-format
311
  msgid "Replaced %d redirect with a direct link"
312
  msgid_plural "Replaced %d redirects with direct links"
313
  msgstr[0] "Erstattede %d redirigeret link med et direkte link"
314
  msgstr[1] "Erstattede %d redirigerede links med direkte links"
315
 
316
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1458
317
  #, php-format
318
  msgid "Failed to fix %d redirect"
319
  msgid_plural "Failed to fix %d redirects"
320
  msgstr[0] "Det lykkedes ikke at fixe %d redirigeret link"
321
  msgstr[1] "Det lykkedes ikke at fixe %d redirigerede links"
322
 
323
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1468
324
  msgid "None of the selected links are redirects!"
325
  msgstr "Ingen af de valgte links er redirigerede links!"
326
 
327
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1547
328
  #, php-format
329
  msgid "%d link updated."
330
  msgid_plural "%d links updated."
331
  msgstr[0] "%d link opdateret."
332
  msgstr[1] "%d links opdateret."
333
 
334
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1558
335
  #, php-format
336
  msgid "Failed to update %d link."
337
  msgid_plural "Failed to update %d links."
338
  msgstr[0] "Det mislykkedes at opdatere %d link."
339
  msgstr[1] "Det mislykkedes at opdatere %d links."
340
 
341
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1612
342
  #, php-format
343
  msgid "%d link removed"
344
  msgid_plural "%d links removed"
345
  msgstr[0] "%d link fjernet"
346
  msgstr[1] "%d links fjernet"
347
 
348
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1623
349
  #, php-format
350
  msgid "Failed to remove %d link"
351
  msgid_plural "Failed to remove %d links"
352
  msgstr[0] "Det mislykkedes for pluginnet at fjerne %d link."
353
  msgstr[1] "Det mislykkedes for pluginnet at fjerne %d links."
354
 
355
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1732
356
  #, php-format
357
- msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
358
- msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
359
- msgstr[0] "%d link blev skippet, fordi det ikke kan flyttes til papirkurven. Du er nødt til at slette den selv."
360
- msgstr[1] "%d link blev skippet, fordi de ikke kan flyttes til papirkurven. Du er nødt til at slette dem selv."
361
-
362
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1753
 
 
 
 
 
 
 
 
363
  msgid "Didn't find anything to delete!"
364
  msgstr "Fandt ikke noget, der kan slettes!"
365
 
366
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1781
367
  #, php-format
368
  msgid "%d link scheduled for rechecking"
369
  msgid_plural "%d links scheduled for rechecking"
370
  msgstr[0] "%d link er planlagt til at blive tjekket igen"
371
  msgstr[1] "%d links er planlagt til at blive tjekket igen"
372
 
373
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1826
374
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2431
375
  msgid "This link was manually marked as working by the user."
376
  msgstr "Dette link blev markeret manuelt som et aktivt link af brugeren."
377
 
378
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1833
379
  #, php-format
380
  msgid "Couldn't modify link %d"
381
  msgstr "Kunne ikke ændre linket %d"
382
 
383
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1844
384
  #, php-format
385
  msgid "%d link marked as not broken"
386
  msgid_plural "%d links marked as not broken"
387
  msgstr[0] "Et link markeret som ikke-dødt"
388
  msgstr[1] "%d links markeret som ikke-døde"
389
 
390
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1884
391
  msgid "Table columns"
392
  msgstr "Tabelkolonner"
393
 
394
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1903
395
  msgid "Show on screen"
396
  msgstr "Vis på skærm"
397
 
398
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1910
399
  msgid "links"
400
  msgstr "links"
401
 
402
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1911
 
403
  msgid "Apply"
404
  msgstr "Anvend"
405
 
406
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1915
407
  msgid "Misc"
408
  msgstr "Diverse"
409
 
410
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1930
411
  #, php-format
412
  msgid "Highlight links broken for at least %s days"
413
  msgstr "Fremhæv links, der har været døde i mindst %s dage"
414
 
415
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1939
416
  msgid "Color-code status codes"
417
  msgstr "Kod statuskoder med farver"
418
 
419
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:1956
420
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2416
421
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2452
422
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2515
 
423
  msgid "You're not allowed to do that!"
424
  msgstr "Du har ikke lov til at gøre dette!"
425
 
426
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2297
427
  msgid "View broken links"
428
  msgstr "Se døde links"
429
 
430
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2298
431
  #, php-format
432
  msgid "Found %d broken link"
433
  msgid_plural "Found %d broken links"
434
  msgstr[0] "Har fundet %d dødt link"
435
  msgstr[1] "Har fundet %d døde links"
436
 
437
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2304
438
  msgid "No broken links found."
439
  msgstr "Ingen døde links fundet."
440
 
441
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2311
442
  #, php-format
443
  msgid "%d URL in the work queue"
444
  msgid_plural "%d URLs in the work queue"
445
  msgstr[0] "%d URL i arbejdskøen"
446
  msgstr[1] "%d URL&#39;er i arbejdskøen"
447
 
448
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2314
449
  msgid "No URLs in the work queue."
450
  msgstr "Ingen URL&#39;er i arbejdskøen"
451
 
452
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2320
453
  #, php-format
454
  msgid "Detected %d unique URL"
455
  msgid_plural "Detected %d unique URLs"
456
  msgstr[0] "Fandt %d unik URL"
457
  msgstr[1] "Fandt %d unikke URL&#39;er"
458
 
459
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2321
460
  #, php-format
461
  msgid "in %d link"
462
  msgid_plural "in %d links"
463
  msgstr[0] "i %d link"
464
  msgstr[1] "i %d links"
465
 
466
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2326
467
  msgid "and still searching..."
468
  msgstr "og leder stadig ..."
469
 
470
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2332
471
  msgid "Searching your blog for links..."
472
  msgstr "Gennemsøger din blog for links ..."
473
 
474
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2334
475
  msgid "No links detected."
476
  msgstr "Ingen links fundet."
477
 
478
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2360
479
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:831
480
  msgid "Unknown"
481
  msgstr "Ukendt"
482
 
483
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2424
484
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2462
485
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2525
 
486
  #, php-format
487
  msgid "Oops, I can't find the link %d"
488
  msgstr "Ups. Jeg kan ikke finde linket %d"
489
 
490
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2437
 
491
  msgid "Oops, couldn't modify the link!"
492
  msgstr "Ups, kunne ikke ændre linket!"
493
 
494
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2440
495
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2551
 
496
  msgid "Error : link_id not specified"
497
  msgstr "Fejl: link_id ikke angivet"
498
 
499
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2472
500
  msgid "Oops, the new URL is invalid!"
501
  msgstr "Ups. Den nye URL er ugyldig!"
502
 
503
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2483
504
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2534
505
  msgid "An unexpected error occured!"
506
  msgstr "En uventet fejl opstod!"
507
 
508
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2501
509
  msgid "Error : link_id or new_url not specified"
510
  msgstr "Fejl: link_id eller new_url ikke angivet"
511
 
512
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2560
513
  msgid "You don't have sufficient privileges to access this information!"
514
  msgstr "Du har ikke tilstrækkelige rettigheder til at tilgå denne information!"
515
 
516
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2573
517
  msgid "Error : link ID not specified"
518
  msgstr "Fejl: link-id ikke angivet"
519
 
520
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2587
521
  #, php-format
522
  msgid "Failed to load link details (%s)"
523
  msgstr "Det mislykkedes at indlæse link-detaljer (%s)"
524
 
525
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2716
526
  msgid "Broken Link Checker"
527
  msgstr "Broken Link Checker"
528
 
529
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2730
530
- #, php-format
531
- msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
532
- msgstr "Der er ikke adgang til den aktuelle tmp-mappe; angiv venligst <a href=\"%s\">en anden</a>."
533
-
534
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2735
535
- #, php-format
536
- msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
537
- msgstr "Gør venligst mappen <code>%1$s</code> skrivbar for pluginnet eller <a href=\"%2$s\">angiv en brugerdefineret tmp-mappe</a>."
538
-
539
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2742
540
- msgid "Broken Link Checker can't create a lockfile."
541
- msgstr "Broken Link Checker kan ikke oprette en lock-fil."
542
-
543
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2747
544
- 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."
545
- 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."
546
-
547
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2766
548
  msgid "PHP version"
549
  msgstr "PHP version"
550
 
551
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2772
552
  msgid "MySQL version"
553
  msgstr "MySQL version"
554
 
555
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2785
556
- msgid "You have an old version of CURL. Redirect detection may not work properly."
557
- msgstr "Du har en gammel version af cURL. Det er ikke sikkert, at detektion af redirigeringer fungerer ordentligt."
 
 
 
558
 
559
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2797
560
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2813
561
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2818
562
  msgid "Not installed"
563
  msgstr "Ikke installeret"
564
 
565
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2800
566
  msgid "CURL version"
567
  msgstr "cURL version"
568
 
569
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2806
570
  msgid "Installed"
571
  msgstr "Installeret"
572
 
573
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2819
574
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
575
- msgstr "Du skal have enten cURL eller Snoopy installeret, hvis pluginnet skal virke!"
 
576
 
577
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2830
578
  msgid "On"
579
  msgstr "Til"
580
 
581
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2831
582
  msgid "Redirects may be detected as broken links when safe_mode is on."
583
- msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når safe_mode er til."
 
 
584
 
585
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2836
586
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2850
587
  msgid "Off"
588
  msgstr "Fra"
589
 
590
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2844
591
  #, php-format
592
  msgid "On ( %s )"
593
  msgstr "Fra ( %s )"
594
 
595
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2845
596
  msgid "Redirects may be detected as broken links when open_basedir is on."
597
- msgstr "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når open_basedir er til."
598
-
599
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2864
600
- msgid "Can't create a lockfile. Please specify a custom temporary directory."
601
- msgstr "Kan ikke oprette lock-fil. Angiv venligst en brugerdefineret tmp-mappe."
602
 
603
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2888
604
- msgid "If this value is zero even after several page reloads you have probably encountered a bug."
605
- msgstr "Hvis denne værdi er nul selv efter adskillige genindlæsninger af siden har du sandsynligvis opdaget en bug."
 
 
 
 
606
 
607
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2959
 
608
  #, php-format
609
  msgid "[%s] Broken links detected"
610
  msgstr "[%s] døde links fundet"
611
 
612
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2965
613
  #, php-format
614
  msgid "Broken Link Checker has detected %d new broken link on your site."
615
- msgid_plural "Broken Link Checker has detected %d new broken links on your site."
 
616
  msgstr[0] "Broken Link Checker har opdaget %d nyt dødt link på din site."
617
  msgstr[1] "Broken Link Checker har opdaget %d nye døde links på din site."
618
 
619
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2980
620
  #, php-format
621
  msgid "Here's a list of the first %d broken links:"
622
  msgid_plural "Here's a list of the first %d broken links:"
623
  msgstr[0] "Her er en liste med det første døde link:"
624
  msgstr[1] "Her er en liste med de første %d døde links:"
625
 
626
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:2988
627
  msgid "Here's a list of the new broken links: "
628
  msgstr "Her er en liste med de nye døde links: "
629
 
630
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:3000
631
  #, php-format
632
  msgid "Link text : %s"
633
  msgstr "Linktekst: %s"
634
 
635
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:3001
636
  #, php-format
637
  msgid "Link URL : <a href=\"%s\">%s</a>"
638
  msgstr "Link-URL: <a href=\"%s\">%s</a>"
639
 
640
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:3002
641
  #, php-format
642
  msgid "Source : %s"
643
  msgstr "Kilde: %s"
644
 
645
- #: d:\wordpress\plugins\broken-link-checker/core/core.php:3016
646
  msgid "You can see all broken links here:"
647
  msgstr "Du kan se alle de døde links her:"
648
 
649
- #: d:\wordpress\plugins\broken-link-checker/core/init.php:236
 
 
 
 
 
 
 
 
650
  msgid "Once Weekly"
651
  msgstr "Engang om ugen"
652
 
653
- #: d:\wordpress\plugins\broken-link-checker/core/init.php:242
654
  msgid "Twice a Month"
655
  msgstr "To gange om måneden"
656
 
657
- #: d:\wordpress\plugins\broken-link-checker/core/init.php:309
658
- msgid "Broken Link Checker installation failed"
659
- msgstr "Installation af Broken Link Checker mislykkedes"
 
 
 
 
660
 
661
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:398
 
 
 
662
  msgid "Edit"
663
  msgstr "Redigér"
664
 
665
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:406
 
666
  msgid "Move this item to the Trash"
667
  msgstr "Flyt denne til papirkurven"
668
 
669
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:408
 
 
670
  msgid "Trash"
671
  msgstr "Papirkurv"
672
 
673
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:413
 
674
  msgid "Delete this item permanently"
675
  msgstr "Slet dette indlæg permanent"
676
 
677
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:415
 
 
678
  msgid "Delete"
679
  msgstr "Slet"
680
 
681
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:428
682
  #, php-format
683
  msgid "Preview &#8220;%s&#8221;"
684
  msgstr "Preview &#8220;%s&#8221;"
685
 
686
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:429
687
  msgid "Preview"
688
  msgstr "Preview"
689
 
690
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:436
691
  #, php-format
692
  msgid "View &#8220;%s&#8221;"
693
  msgstr "Vis &#8220;%s&#8221;"
694
 
695
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:437
 
 
696
  msgid "View"
697
  msgstr "Se"
698
 
699
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:456
 
700
  msgid "Edit this item"
701
  msgstr "Redigér denne"
702
 
703
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:520
 
 
704
  msgid "Nothing to update"
705
  msgstr "Intet at opdatere"
706
 
707
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:530
708
  #, php-format
709
  msgid "Updating post %d failed"
710
  msgstr "Opdatering af indlægget %d mislykkedes"
711
 
712
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:565
 
713
  #, php-format
714
  msgid "Failed to delete post \"%s\" (%d)"
715
  msgstr "Det mislykkedes at slette indlægget \"%s\" (%d)"
716
 
717
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:584
 
718
  #, php-format
719
- msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
720
- msgstr "Kan ikke flytte indlægget \"%s\" (%d) til papirkurven, fordi papirkurvsfunktionen er deaktiveret"
 
 
 
 
721
 
722
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:604
 
723
  #, php-format
724
  msgid "Failed to move post \"%s\" (%d) to the trash"
725
  msgstr "Det mislykkedes at flytte indlægget \"%s\" (%d) til papirkurven"
726
 
727
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:712
728
  #, php-format
729
  msgid "%d post deleted."
730
  msgid_plural "%d posts deleted."
731
  msgstr[0] "%d indlæg slettet"
732
  msgstr[1] "%d indlæg slettet"
733
 
734
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:714
735
  #, php-format
736
  msgid "%d page deleted."
737
  msgid_plural "%d pages deleted."
738
  msgstr[0] "%d side slettet"
739
  msgstr[1] "%d sider slettet"
740
 
741
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:716
742
  #, php-format
743
  msgid "%d \"%s\" deleted."
744
  msgid_plural "%d \"%s\" deleted."
745
  msgstr[0] "%d \"%s\" slettet."
746
  msgstr[1] "%d \"%s\" slettet."
747
 
748
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:735
749
  #, php-format
750
  msgid "%d post moved to the Trash."
751
  msgid_plural "%d posts moved to the Trash."
752
  msgstr[0] "%d indlæg flyttet til papirkurven"
753
  msgstr[1] "%d indlæg flyttet til papirkurven"
754
 
755
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:737
756
  #, php-format
757
  msgid "%d page moved to the Trash."
758
  msgid_plural "%d pages moved to the Trash."
759
  msgstr[0] "%d side flyttet til papirkurven"
760
  msgstr[1] "%d side flyttet til papirkurven"
761
 
762
- #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:739
763
  #, php-format
764
  msgid "%d \"%s\" moved to the Trash."
765
  msgid_plural "%d \"%s\" moved to the Trash."
766
  msgstr[0] "%d \"%s\" flyttet til papirkurven."
767
  msgstr[1] "%d \"%s\" flyttet til papirkurven."
768
 
769
- #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:122
770
  #, php-format
771
  msgid "%d '%s' has been deleted"
772
  msgid_plural "%d '%s' have been deleted"
773
  msgstr[0] "%d '%s' er blevet slettet"
774
  msgstr[1] "%d '%s' er blevet slettede"
775
 
776
- #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:882
777
- #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:900
778
  #, php-format
779
  msgid "Container type '%s' not recognized"
780
  msgstr "Container-type '%s' ikke genkendt"
@@ -800,46 +873,62 @@ msgid "Embedded DailyMotion videos"
800
  msgstr "Indsatte DailyMotion-videoer"
801
 
802
  #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:7
 
 
 
 
 
 
 
 
803
  msgid "Embedded Vimeo videos"
804
  msgstr "Indsatte Vimeo-videoer"
805
 
806
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:8
807
  msgid "Embedded YouTube videos"
808
  msgstr "Indsatte YouTube-videoer"
809
 
810
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:9
 
 
 
 
 
 
 
 
811
  msgid "HTML images"
812
  msgstr "HTML-billeder"
813
 
814
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:10
815
  msgid "HTML links"
816
  msgstr "HTML-links"
817
 
818
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:11
819
  msgid "MediaFire API"
820
  msgstr "MediaFire API"
821
 
822
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:12
823
  msgid "MegaUpload API"
824
  msgstr "MegaUpload API"
825
 
826
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:13
827
  msgid "Plaintext URLs"
828
  msgstr "Plaintext URLs"
829
 
830
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:14
831
  msgid "RapidShare API"
832
  msgstr "RapidShare API"
833
 
834
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:15
835
  msgid "YouTube API"
836
  msgstr "YouTube API"
837
 
838
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:16
839
  msgid "Posts"
840
  msgstr "Indlæg"
841
 
842
- #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:17
843
  msgid "Pages"
844
  msgstr "Sider"
845
 
@@ -855,102 +944,131 @@ msgstr "Container %s[%d] ikke fundet"
855
  msgid "Parser '%s' not found."
856
  msgstr "Parser '%s' ikke fundet."
857
 
858
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:25
859
  msgid "Broken"
860
  msgstr "Døde"
861
 
862
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:27
863
  msgid "No broken links found"
864
  msgstr "Ingen døde links fundet"
865
 
866
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:34
867
  msgid "Redirects"
868
  msgstr "Redirigerede"
869
 
870
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:35
871
  msgid "Redirected Links"
872
  msgstr "Redirigerede links"
873
 
874
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:36
875
  msgid "No redirects found"
876
  msgstr "Ingen redirigeringer fundet"
877
 
878
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:44
 
 
 
 
 
 
 
 
 
 
 
 
879
  msgid "All"
880
  msgstr "Alle"
881
 
882
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:45
883
  msgid "Detected Links"
884
  msgstr "Fundne links"
885
 
886
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:46
887
  msgid "No links found (yet)"
888
  msgstr "Ingen links fundet (endnu)"
889
 
890
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:53
 
891
  msgid "Search"
892
  msgstr "Søg"
893
 
894
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:54
895
  msgid "Search Results"
896
  msgstr "Søgeresultater"
897
 
898
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:55
899
- #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:106
900
  msgid "No links found for your query"
901
  msgstr "Din forespørgsel returnerede ingen links"
902
 
903
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:215
904
  msgid "The plugin script was terminated while trying to check the link."
905
  msgstr "Pluginskriptet blev afbrudt, mens det prøvede at tjekke et link."
906
 
907
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:261
908
  msgid "The plugin doesn't know how to check this type of link."
909
  msgstr "Pluginnet ved ikke, hvordan det skal tjekke denne type links."
910
 
911
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:349
912
  msgid "Link is valid."
913
  msgstr "Link er aktivt."
914
 
915
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:351
916
  msgid "Link is broken."
917
  msgstr "Link er dødt."
918
 
919
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:564
920
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:666
921
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:693
922
  msgid "Link is not valid"
923
  msgstr "Link er ikke gyldigt"
924
 
925
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:581
926
- msgid "This link can not be edited because it is not used anywhere on this site."
927
- msgstr "Dette link kan ikke redigeres, fordi det ikke bruges noget steds denne site."
 
 
 
928
 
929
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:607
930
  msgid "Failed to create a DB entry for the new URL."
931
  msgstr "Det mislykkedes at oprette en databasepost for den nye URL."
932
 
933
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:673
934
  msgid "This link is not a redirect"
935
  msgstr "Dette link er ikke en redirect"
936
 
937
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:720
938
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:757
939
  msgid "Couldn't delete the link's database record"
940
  msgstr "Kunne ikke slette linkets databasepost"
941
 
942
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:845
 
 
943
  msgid "Unknown Error"
944
  msgstr "Ukendt fejl"
945
 
946
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:869
947
  msgid "Not checked"
948
  msgstr "Ikke tjekket"
949
 
950
- #: d:\wordpress\plugins\broken-link-checker/includes/links.php:872
951
  msgid "False positive"
952
  msgstr "Falsk positiv"
953
 
 
 
 
 
 
 
 
 
 
 
 
954
  #: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:109
955
  #, php-format
956
  msgid "Editing is not implemented in the '%s' parser"
@@ -961,70 +1079,70 @@ msgstr "Redigering er ikke implementeret i '%s'-parser"
961
  msgid "Unlinking is not implemented in the '%s' parser"
962
  msgstr "Fjernelse af links er ikke implementeret i '%s'-parseren"
963
 
964
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:287
965
  #, php-format
966
  msgid "%d second"
967
  msgid_plural "%d seconds"
968
  msgstr[0] "%d sekund"
969
  msgstr[1] "%d sekunder"
970
 
971
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:288
972
  #, php-format
973
  msgid "%d second ago"
974
  msgid_plural "%d seconds ago"
975
  msgstr[0] "%d sekund siden"
976
  msgstr[1] "%d sekunder siden"
977
 
978
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:291
979
  #, php-format
980
  msgid "%d minute"
981
  msgid_plural "%d minutes"
982
  msgstr[0] "%d minut"
983
  msgstr[1] "%d minutter"
984
 
985
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:292
986
  #, php-format
987
  msgid "%d minute ago"
988
  msgid_plural "%d minutes ago"
989
  msgstr[0] "%d minut siden"
990
  msgstr[1] "%d minutter siden"
991
 
992
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:295
993
  #, php-format
994
  msgid "%d hour"
995
  msgid_plural "%d hours"
996
  msgstr[0] "%d time"
997
  msgstr[1] "%d timer"
998
 
999
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:296
1000
  #, php-format
1001
  msgid "%d hour ago"
1002
  msgid_plural "%d hours ago"
1003
  msgstr[0] "%d time siden"
1004
  msgstr[1] "%d timer siden"
1005
 
1006
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:299
1007
  #, php-format
1008
  msgid "%d day"
1009
  msgid_plural "%d days"
1010
  msgstr[0] "%d dag"
1011
  msgstr[1] "%d dage"
1012
 
1013
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:300
1014
  #, php-format
1015
  msgid "%d day ago"
1016
  msgid_plural "%d days ago"
1017
  msgstr[0] "%d dag siden"
1018
  msgstr[1] "%d dage siden"
1019
 
1020
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:303
1021
  #, php-format
1022
  msgid "%d month"
1023
  msgid_plural "%d months"
1024
  msgstr[0] "%d måned"
1025
  msgstr[1] "%d måneder"
1026
 
1027
- #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:304
1028
  #, php-format
1029
  msgid "%d month ago"
1030
  msgid_plural "%d months ago"
@@ -1036,60 +1154,61 @@ msgstr[1] "%d måneder siden"
1036
  msgid "Failed to delete old DB tables. Database error : %s"
1037
  msgstr "Det mislykkedes at slette gamle databasetabeller. Databasefejl: %s"
1038
 
1039
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:58
1040
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:301
1041
  msgid "Wait..."
1042
  msgstr "Vent ..."
1043
 
1044
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:99
1045
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:592
1046
  msgid "Not broken"
1047
  msgstr "Ikke død"
1048
 
1049
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:213
1050
  #, php-format
1051
  msgid "%d instances of the link were successfully modified."
1052
  msgstr "%d steder med dette link blev ændret med succes."
1053
 
1054
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:219
1055
  #, php-format
1056
- msgid "However, %d instances couldn't be edited and still point to the old URL."
 
1057
  msgstr "Men %d steder kunne ikke redigeres og peger stadig på det gamle URL."
1058
 
1059
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:225
1060
  msgid "The link could not be modified."
1061
  msgstr "Linket kunne ikke ændres."
1062
 
1063
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:228
1064
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:353
1065
  msgid "The following error(s) occured :"
1066
  msgstr "De(n) følgende fejl skete:"
1067
 
1068
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:339
1069
  #, php-format
1070
  msgid "%d instances of the link were successfully unlinked."
1071
  msgstr "%d steder med dette link fik linket fjernet med succes."
1072
 
1073
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:345
1074
  #, php-format
1075
  msgid "However, %d instances couldn't be removed."
1076
  msgstr "Men %d steder kunne linket ikke fjernes."
1077
 
1078
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:350
1079
  msgid "The plugin failed to remove the link."
1080
  msgstr "Det mislykkedes for pluginnet at fjerne linket."
1081
 
1082
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:361
1083
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:237
1084
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:586
1085
  msgid "Unlink"
1086
  msgstr "Fjern link"
1087
 
1088
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:405
1089
  msgid "Enter a name for the new custom filter"
1090
  msgstr "Indtast et navn for dit nye filter"
1091
 
1092
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:416
1093
  msgid ""
1094
  "You are about to delete the current filter.\n"
1095
  "'Cancel' to stop, 'OK' to delete"
@@ -1097,27 +1216,32 @@ msgstr ""
1097
  "Du er ved at slette det aktuelle filter\n"
1098
  " 'Annullér' for at stoppe, 'OK' for at slette"
1099
 
1100
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:439
1101
  msgid ""
1102
- "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
 
1103
  "'Cancel' to stop, 'OK' to delete"
1104
  msgstr ""
1105
- "Er du sikker på, at du ønsker at slette alle indlæg, bogmærker og andre ting, der indeholder et af de valgte links? Denne handling kan ikke fortrydes.\n"
 
 
1106
  "'Annullér' for at stoppe, 'OK' for at slette"
1107
 
1108
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:449
1109
  msgid ""
1110
- "Are you sure you want to remove the selected links? This action can't be undone.\n"
 
1111
  "'Cancel' to stop, 'OK' to remove"
1112
  msgstr ""
1113
- "Er du sikker på, at du ønsker at fjerne de valgte links? Denne handling kan ikke fortrydes.\n"
 
1114
  "'Annullér' for at stoppe, 'OK' for at slette"
1115
 
1116
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:558
1117
  msgid "Enter a search string first."
1118
  msgstr "Indtast først en søgestreng."
1119
 
1120
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:565
1121
  msgid "Select one or more links to edit."
1122
  msgstr "Vælg en eller flere links, der skal redigeres."
1123
 
@@ -1138,12 +1262,12 @@ msgid "Link text"
1138
  msgstr "Linktekst"
1139
 
1140
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:45
1141
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:173
1142
  msgid "URL"
1143
  msgstr "URL"
1144
 
1145
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:48
1146
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:460
1147
  msgid "HTTP code"
1148
  msgstr "HTTP-kode"
1149
 
@@ -1169,207 +1293,251 @@ msgid "Search Links"
1169
  msgstr "Søg links"
1170
 
1171
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:113
1172
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:318
1173
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:600
1174
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:606
1175
  msgid "Cancel"
1176
  msgstr "Annullér"
1177
 
1178
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1179
  msgid "Compact View"
1180
  msgstr "Kompakt visning"
1181
 
1182
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:151
1183
  msgid "Detailed View"
1184
  msgstr "Detaljeret visning"
1185
 
1186
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:178
1187
  msgid "Source"
1188
  msgstr "Kilde"
1189
 
1190
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:184
1191
  msgid "Link Text"
1192
  msgstr "Linktekst"
1193
 
1194
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:232
 
 
 
 
1195
  msgid "Bulk Actions"
1196
  msgstr "Massehandlinger"
1197
 
1198
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:233
1199
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:583
1200
  msgid "Edit URL"
1201
  msgstr "Redigér URL"
1202
 
1203
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:234
1204
  msgid "Recheck"
1205
  msgstr "Tjek igen"
1206
 
1207
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:235
1208
  msgid "Fix redirects"
1209
  msgstr "Fix redirigerede"
1210
 
1211
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:236
1212
  msgid "Mark as not broken"
1213
  msgstr "Markér som ikke-død"
1214
 
1215
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:240
1216
  msgid "Move sources to Trash"
1217
  msgstr "Flyt kilder til papirkurven"
1218
 
1219
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:242
1220
  msgid "Delete sources"
1221
  msgstr "Slet kilder"
1222
 
1223
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:262
1224
  msgid "&laquo;"
1225
  msgstr "&laquo;"
1226
 
1227
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:263
1228
  msgid "&raquo;"
1229
  msgstr "&raquo;"
1230
 
1231
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:271
1232
  #, php-format
1233
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1234
  msgstr "Viser %s&#8211;%s af <span class=\"current-link-count\">%s</span>"
1235
 
1236
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:294
1237
  msgid "Bulk Edit URLs"
1238
  msgstr "Masseredigér URL&#39;er"
1239
 
1240
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:296
1241
  msgid "Find"
1242
  msgstr "Find"
1243
 
1244
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:300
1245
  msgid "Replace with"
1246
  msgstr "Erstat med"
1247
 
1248
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:308
1249
  msgid "Case sensitive"
1250
  msgstr "Der skelnes mellem små og store bogstaver"
1251
 
1252
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:312
1253
  msgid "Regular expression"
1254
  msgstr "Regular expression"
1255
 
1256
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:320
1257
  msgid "Update"
1258
  msgstr "Opdatér"
1259
 
1260
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:445
1261
  msgid "Post published on"
1262
  msgstr "Indlæg udgivet den"
1263
 
1264
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:450
1265
  msgid "Link last checked"
1266
  msgstr "Link sidst tjekket"
1267
 
1268
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:454
1269
  msgid "Never"
1270
  msgstr "Aldrig"
1271
 
1272
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:465
1273
  msgid "Response time"
1274
  msgstr "Svartid"
1275
 
1276
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:467
1277
  #, php-format
1278
  msgid "%2.3f seconds"
1279
  msgstr "%2.3f sekunder"
1280
 
1281
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:470
1282
  msgid "Final URL"
1283
  msgstr "Endelige URL"
1284
 
1285
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:475
1286
  msgid "Redirect count"
1287
  msgstr "Antal redirigeringer"
1288
 
1289
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:480
1290
  msgid "Instance count"
1291
  msgstr "Antal instanser"
1292
 
1293
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:489
1294
  #, php-format
1295
  msgid "This link has failed %d time."
1296
  msgid_plural "This link has failed %d times."
1297
  msgstr[0] "Der har været fejl på dette link %d gang."
1298
  msgstr[1] "Der har været fejl på dette link %d gange."
1299
 
1300
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:497
1301
  #, php-format
1302
  msgid "This link has been broken for %s."
1303
  msgstr "Dette link har været dødt i %s."
1304
 
1305
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:508
1306
  msgid "Log"
1307
  msgstr "Log"
1308
 
1309
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:529
1310
  msgid "Show more info about this link"
1311
  msgstr "Vis flere oplysninger om dette link"
1312
 
1313
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:547
1314
  msgid "Checked"
1315
  msgstr "Tjekket"
1316
 
1317
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:563
1318
  msgid "Broken for"
1319
  msgstr "Død for"
1320
 
1321
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:583
1322
  msgid "Edit link URL"
1323
  msgstr "Redigér link-URL"
1324
 
1325
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:585
1326
  msgid "Remove this link from all posts"
1327
  msgstr "Fjern dette link fra alle indlæg"
1328
 
1329
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:591
1330
  msgid "Remove this link from the list of broken links and mark it as valid"
1331
  msgstr "Fjern dette link fra listen over døde links og markér det som aktivt"
1332
 
1333
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:600
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1334
  msgid "Cancel URL editing"
1335
  msgstr "Anullér redigering af URL"
1336
 
1337
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:607
1338
  msgid "Update URL"
1339
  msgstr "Opdatér URL"
1340
 
1341
- #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:629
1342
  msgid "[An orphaned link! This is a bug.]"
1343
  msgstr "[En forælderløs link! Dette er en bug.]"
1344
 
1345
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:242
1346
  msgid "Server Not Found"
1347
  msgstr "Server ikke fundet"
1348
 
1349
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:257
1350
  msgid "Connection Failed"
1351
  msgstr "Forbindelse mislykkedes"
1352
 
1353
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:292
1354
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:362
1355
  #, php-format
1356
  msgid "HTTP code : %d"
1357
  msgstr "HTTP-kode: %d"
1358
 
1359
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:294
1360
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:364
1361
  msgid "(No response)"
1362
  msgstr "(Intet svar)"
1363
 
1364
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:300
1365
  msgid "Most likely the connection timed out or the domain doesn't exist."
1366
- msgstr "Det sandsynligste er, at forbindelsen fik timeout eller at domænet ikke eksisterer."
 
 
1367
 
1368
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:371
1369
  msgid "Request timed out."
1370
  msgstr "Anmodning fik timeout."
1371
 
1372
- #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:389
1373
  msgid "Using Snoopy"
1374
  msgstr "Bruger Snoopy"
1375
 
@@ -1444,14 +1612,14 @@ msgstr "Se kommentar"
1444
  msgid "Comment"
1445
  msgstr "Kommentar"
1446
 
1447
- #: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:372
1448
  #, php-format
1449
  msgid "%d comment has been deleted."
1450
  msgid_plural "%d comments have been deleted."
1451
  msgstr[0] "%d kommentar er blevet slettet"
1452
  msgstr[1] "%d kommentarer er blevet slettede"
1453
 
1454
- #: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:391
1455
  #, php-format
1456
  msgid "%d comment moved to the Trash."
1457
  msgid_plural "%d comments moved to the Trash."
@@ -1483,7 +1651,139 @@ msgstr "Se \"%s\""
1483
  msgid "I don't know how to edit a '%s' [%d]."
1484
  msgstr "Jeg ved ikke, hvordan '%s' [%d] skal redigeres."
1485
 
1486
- #: d:\wordpress\plugins\broken-link-checker/modules/parsers/image.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1487
  msgid "Image"
1488
  msgstr "Billede"
1489
 
@@ -1491,6 +1791,75 @@ msgstr "Billede"
1491
  msgid "Custom field"
1492
  msgstr "Eget felt"
1493
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1494
  #~ msgid ""
1495
  #~ "Unexpected error: The plugin doesn't know how to upgrade its database to "
1496
  #~ "version '%d'."
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker 1.6.2\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-09-24 06:42+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"
9
+ "Language: da_DK\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2;plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
16
+ "_nc:1,2;_nx:1,2;_n_noop:1,2;_nx_noop;_x;_c;esc_html__;esc_html_e;esc_html_x;"
17
+ "esc_attr__;esc_attr_e;esc_attr_x\n"
18
  "X-Poedit-Basepath: d:\\wordpress\\plugins\\broken-link-checker\n"
19
+ "X-Generator: Poedit 1.5.3\n"
20
  "X-Poedit-SearchPath-0: d:\\wordpress\\plugins\\broken-link-checker\n"
21
 
22
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:151
23
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:37
24
  msgid "Loading..."
25
  msgstr "Indlæser ..."
26
 
27
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:175
28
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/options-page-js.php:18
29
  msgid "[ Network error ]"
30
  msgstr "[ Network-fejl ]"
31
 
32
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:202
33
  msgid "Automatically expand the widget if broken links have been detected"
34
  msgstr "Automatisk udvid widgetten, hvis der er fundet døde links"
35
 
36
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:292
37
  msgid "Link Checker Settings"
38
  msgstr "Link Checker-indstillinger"
39
 
40
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:293
41
  msgid "Link Checker"
42
  msgstr "Link Checker"
43
 
44
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:298
45
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:27
46
  msgid "Broken Links"
47
  msgstr "Døde links"
48
 
49
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:314
50
  msgid "View Broken Links"
51
  msgstr "Se døde links"
52
 
53
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:329
54
+ msgid "Feedback"
55
+ msgstr "Feedback"
56
+
57
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:368
58
+ msgid "Go to Broken Links"
59
+ msgstr "Gå til døde links"
60
+
61
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:397
62
  msgid "Settings"
63
  msgstr "Indstillinger"
64
 
65
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:554
 
 
 
 
 
 
66
  msgid "Settings saved."
67
  msgstr "Indstillinger gemt."
68
 
69
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:560
70
+ msgid "Thank you for your donation!"
71
+ msgstr "Tak for din donation!"
72
+
73
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:568
74
  msgid "Complete site recheck started."
75
  msgstr "Fuldstændig ny tjek af site påbegyndt."
76
 
77
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:577
 
78
  msgid "Details"
79
  msgstr "Detaljer"
80
 
81
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:591
82
  msgid "General"
83
  msgstr "Generel"
84
 
85
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:592
86
  msgid "Look For Links In"
87
  msgstr "Se efter links i"
88
 
89
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:593
90
  msgid "Which Links To Check"
91
  msgstr "Hvilke links der skal tjekkes"
92
 
93
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:594
94
  msgid "Protocols & APIs"
95
  msgstr "Protokoller & API'er"
96
 
97
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:595
98
  msgid "Advanced"
99
  msgstr "Avanceret"
100
 
101
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:610
102
  msgid "Broken Link Checker Options"
103
  msgstr "Indstillinger for Broken Link Checker"
104
 
105
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:652
106
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:197
107
  msgid "Status"
108
  msgstr "Status"
109
 
110
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:654
111
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/options-page-js.php:56
112
  msgid "Show debug info"
113
  msgstr "Vis debug-info"
114
 
115
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:682
116
  msgid "Check each link"
117
  msgstr "Tjek hvert link"
118
 
119
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:687
120
  #, php-format
121
  msgid "Every %s hours"
122
  msgstr "hver %s timer"
123
 
124
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:696
125
+ msgid ""
126
+ "Existing links will be checked this often. New links will usually be checked "
127
+ "ASAP."
128
+ msgstr ""
129
+ "Eksisterende links vil blive tjekket med dette mellemrum. Nye links tjekkes "
130
+ "normalt så hurtigt som muligt."
131
 
132
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:703
133
  msgid "E-mail notifications"
134
  msgstr "E-mail-meddelelser"
135
 
136
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:709
137
  msgid "Send me e-mail notifications about newly detected broken links"
138
  msgstr "Send mig e-mail-meddelelser om nyligt opdagede døde links"
139
 
140
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:717
141
+ msgid "Send authors e-mail notifications about broken links in their posts"
142
+ msgstr "Send forfattere e-mail-meddelelser om døde links i deres indlæg"
143
+
144
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:724
145
  msgid "Link tweaks"
146
  msgstr "Linktilpasninger"
147
 
148
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:730
149
  msgid "Apply custom formatting to broken links"
150
  msgstr "Anvend egen formattering på døde links"
151
 
152
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:734
153
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:765
154
  msgid "Edit CSS"
155
  msgstr "Redigér CSS"
156
 
157
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:750
158
+ #, php-format
159
+ msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
160
+ msgstr "Eksempel : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
161
+
162
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:753
163
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:784
164
+ msgid "Click \"Save Changes\" to update example output."
165
+ msgstr "Klike \"Gem ændringer\" for at opdatere eksempelvisningen."
166
+
167
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:761
168
  msgid "Apply custom formatting to removed links"
169
  msgstr "Anvend egen formattering på links, der er fjernet"
170
 
171
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:781
172
+ #, php-format
173
+ msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
174
+ msgstr "Eksempel : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
175
+
176
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:794
177
  msgid "Stop search engines from following broken links"
178
  msgstr "Forhindr søgemaskiner i at følge døde links"
179
 
180
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:811
181
  msgid "Look for links in"
182
  msgstr "Se efter links i"
183
 
184
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:822
185
  msgid "Post statuses"
186
  msgstr "Indlægsstatusser"
187
 
188
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:855
189
  msgid "Link types"
190
  msgstr "Linktyper"
191
 
192
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:861
193
  msgid "Error : All link parsers missing!"
194
  msgstr "Fejl: Alle linkparsers mangler!"
195
 
196
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:868
197
  msgid "Exclusion list"
198
  msgstr "Eksklusionsliste"
199
 
200
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:869
201
+ msgid ""
202
+ "Don't check links where the URL contains any of these words (one per line) :"
203
+ msgstr ""
204
+ "Tjek ikke links, hvor URL&#39;en indeholder et af disse ord (et ord per "
205
+ "linje):"
206
 
207
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:887
208
  msgid "Check links using"
209
  msgstr "Tjek link med"
210
 
211
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:906
212
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:856
213
  msgid "Timeout"
214
  msgstr "Timeout"
215
 
216
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:912
217
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:958
218
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2790
219
  #, php-format
220
  msgid "%s seconds"
221
  msgstr "%s sekunder"
222
 
223
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:921
224
  msgid "Links that take longer than this to load will be marked as broken."
225
+ msgstr ""
226
+ "Links, som tager længere tid at tjekke end dette, vil blive markeret som "
227
+ "døde."
228
 
229
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:928
230
  msgid "Link monitor"
231
  msgstr "Linkovervågning"
232
 
233
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:936
234
  msgid "Run continuously while the Dashboard is open"
235
  msgstr "Kør kontinuerligt, når kontrolpanelet er åbent"
236
 
237
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:944
238
  msgid "Run hourly in the background"
239
  msgstr "Kør hver time i baggrunden"
240
 
241
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:952
242
  msgid "Max. execution time"
243
  msgstr "Max udførelsestid"
244
 
245
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:969
246
+ msgid ""
247
+ "The plugin works by periodically launching a background job that parses your "
248
+ "posts for links, checks the discovered URLs, and performs other time-"
249
+ "consuming tasks. Here you can set for how long, at most, the link monitor "
250
+ "may run each time before stopping."
251
+ msgstr ""
252
+ "Pluginnet fungerer ved med mellemrum at oprette et job i baggrunden, som "
253
+ "undersøger dine indlæg for links, tjekker de fundne URL&#39;er og foretager "
254
+ "andre tidskrævende opgaver. Her kan du angive, hvor længe linkovervågningen "
255
+ "max må køre hver gang, inden den skal stoppe."
 
 
 
 
 
 
 
 
 
 
 
 
 
256
 
257
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:978
258
  msgid "Server load limit"
259
  msgstr "Begrænsning på serverbelastning"
260
 
261
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:993
262
  #, php-format
263
  msgid "Current load : %s"
264
  msgstr "Aktuel belastning: %s"
265
 
266
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:999
267
  #, php-format
268
+ msgid ""
269
+ "Link checking will be suspended if the average <a href=\"%s\">server load</"
270
+ "a> rises above this number. Leave this field blank to disable load limiting."
271
+ msgstr ""
272
+ "Linktjekning vil blive midlertidigt afbrudt, hvis den gennemsnitlige <a href="
273
+ "\"%s\">serverbelastning</a> er større end dette tal. Lad feltet stå tomt, "
274
+ "hvis du vil deaktivere begrænsning af belastningen."
275
 
276
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1007
277
  msgid "Not available"
278
  msgstr "Ikke tilgængelig"
279
 
280
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1009
281
+ msgid ""
282
+ "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
283
+ "code> is present and accessible."
284
+ msgstr ""
285
+ "Begrænsning af belastning virker kun på Linux-lignende systemer, hvor <code>/"
286
+ "proc/loadavg</code> findes og er tilgængelig."
287
 
288
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1017
289
  msgid "Forced recheck"
290
  msgstr "Tvungen nytjek"
291
 
292
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1020
293
  msgid "Re-check all pages"
294
  msgstr "Tjek alle sider igen"
295
 
296
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1024
297
+ msgid ""
298
+ "The \"Nuclear Option\". Click this button to make the plugin empty its link "
299
+ "database and recheck the entire site from scratch."
300
+ msgstr ""
301
+ "\"Bombe\"-indstilling. Klik på denne knap for at få pluginnet til at tømme "
302
+ "dets linkdatabase og tjekke hele siten igen helt forfra."
303
 
304
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1035
305
  msgid "Save Changes"
306
  msgstr "Gem ændringer"
307
 
308
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1086
309
  msgid "Configure"
310
  msgstr "Konfigurér"
311
 
312
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1168
 
 
 
 
313
  msgid "Check URLs entered in these custom fields (one per line) :"
314
  msgstr "Tjek URL&#39;er i disse Egne felter (en per linje):"
315
 
316
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1296
317
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1378
318
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1410
319
  #, php-format
320
  msgid "Database error : %s"
321
  msgstr "Database-fejl : %s"
322
 
323
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1360
324
  msgid "You must enter a filter name!"
325
  msgstr "Du <i>skal</i> indtaste et filternavn!"
326
 
327
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1364
328
  msgid "Invalid search query."
329
  msgstr "Ugyldig søgeforespørgsel."
330
 
331
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1373
332
  #, php-format
333
  msgid "Filter \"%s\" created"
334
  msgstr "Filter \"%s\" oprettet"
335
 
336
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1400
337
  msgid "Filter ID not specified."
338
  msgstr "Filter-id ikke angivet."
339
 
340
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1407
341
  msgid "Filter deleted"
342
  msgstr "Filter slettet"
343
 
344
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1455
345
  #, php-format
346
  msgid "Replaced %d redirect with a direct link"
347
  msgid_plural "Replaced %d redirects with direct links"
348
  msgstr[0] "Erstattede %d redirigeret link med et direkte link"
349
  msgstr[1] "Erstattede %d redirigerede links med direkte links"
350
 
351
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1466
352
  #, php-format
353
  msgid "Failed to fix %d redirect"
354
  msgid_plural "Failed to fix %d redirects"
355
  msgstr[0] "Det lykkedes ikke at fixe %d redirigeret link"
356
  msgstr[1] "Det lykkedes ikke at fixe %d redirigerede links"
357
 
358
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1476
359
  msgid "None of the selected links are redirects!"
360
  msgstr "Ingen af de valgte links er redirigerede links!"
361
 
362
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1555
363
  #, php-format
364
  msgid "%d link updated."
365
  msgid_plural "%d links updated."
366
  msgstr[0] "%d link opdateret."
367
  msgstr[1] "%d links opdateret."
368
 
369
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1566
370
  #, php-format
371
  msgid "Failed to update %d link."
372
  msgid_plural "Failed to update %d links."
373
  msgstr[0] "Det mislykkedes at opdatere %d link."
374
  msgstr[1] "Det mislykkedes at opdatere %d links."
375
 
376
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1620
377
  #, php-format
378
  msgid "%d link removed"
379
  msgid_plural "%d links removed"
380
  msgstr[0] "%d link fjernet"
381
  msgstr[1] "%d links fjernet"
382
 
383
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1631
384
  #, php-format
385
  msgid "Failed to remove %d link"
386
  msgid_plural "Failed to remove %d links"
387
  msgstr[0] "Det mislykkedes for pluginnet at fjerne %d link."
388
  msgstr[1] "Det mislykkedes for pluginnet at fjerne %d links."
389
 
390
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1740
391
  #, php-format
392
+ msgid ""
393
+ "%d item was skipped because it can't be moved to the Trash. You need to "
394
+ "delete it manually."
395
+ msgid_plural ""
396
+ "%d items were skipped because they can't be moved to the Trash. You need to "
397
+ "delete them manually."
398
+ msgstr[0] ""
399
+ "%d link blev skippet, fordi det ikke kan flyttes til papirkurven. Du er nødt "
400
+ "til at slette den selv."
401
+ msgstr[1] ""
402
+ "%d link blev skippet, fordi de ikke kan flyttes til papirkurven. Du er nødt "
403
+ "til at slette dem selv."
404
+
405
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1761
406
  msgid "Didn't find anything to delete!"
407
  msgstr "Fandt ikke noget, der kan slettes!"
408
 
409
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1790
410
  #, php-format
411
  msgid "%d link scheduled for rechecking"
412
  msgid_plural "%d links scheduled for rechecking"
413
  msgstr[0] "%d link er planlagt til at blive tjekket igen"
414
  msgstr[1] "%d links er planlagt til at blive tjekket igen"
415
 
416
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1835
417
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2433
418
  msgid "This link was manually marked as working by the user."
419
  msgstr "Dette link blev markeret manuelt som et aktivt link af brugeren."
420
 
421
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1842
422
  #, php-format
423
  msgid "Couldn't modify link %d"
424
  msgstr "Kunne ikke ændre linket %d"
425
 
426
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1853
427
  #, php-format
428
  msgid "%d link marked as not broken"
429
  msgid_plural "%d links marked as not broken"
430
  msgstr[0] "Et link markeret som ikke-dødt"
431
  msgstr[1] "%d links markeret som ikke-døde"
432
 
433
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1892
434
  msgid "Table columns"
435
  msgstr "Tabelkolonner"
436
 
437
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1911
438
  msgid "Show on screen"
439
  msgstr "Vis på skærm"
440
 
441
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1918
442
  msgid "links"
443
  msgstr "links"
444
 
445
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1919
446
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:165
447
  msgid "Apply"
448
  msgstr "Anvend"
449
 
450
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1923
451
  msgid "Misc"
452
  msgstr "Diverse"
453
 
454
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1938
455
  #, php-format
456
  msgid "Highlight links broken for at least %s days"
457
  msgstr "Fremhæv links, der har været døde i mindst %s dage"
458
 
459
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1947
460
  msgid "Color-code status codes"
461
  msgstr "Kod statuskoder med farver"
462
 
463
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:1964
464
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2418
465
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2458
466
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2491
467
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2554
468
  msgid "You're not allowed to do that!"
469
  msgstr "Du har ikke lov til at gøre dette!"
470
 
471
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2299
472
  msgid "View broken links"
473
  msgstr "Se døde links"
474
 
475
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2300
476
  #, php-format
477
  msgid "Found %d broken link"
478
  msgid_plural "Found %d broken links"
479
  msgstr[0] "Har fundet %d dødt link"
480
  msgstr[1] "Har fundet %d døde links"
481
 
482
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2306
483
  msgid "No broken links found."
484
  msgstr "Ingen døde links fundet."
485
 
486
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2313
487
  #, php-format
488
  msgid "%d URL in the work queue"
489
  msgid_plural "%d URLs in the work queue"
490
  msgstr[0] "%d URL i arbejdskøen"
491
  msgstr[1] "%d URL&#39;er i arbejdskøen"
492
 
493
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2316
494
  msgid "No URLs in the work queue."
495
  msgstr "Ingen URL&#39;er i arbejdskøen"
496
 
497
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2322
498
  #, php-format
499
  msgid "Detected %d unique URL"
500
  msgid_plural "Detected %d unique URLs"
501
  msgstr[0] "Fandt %d unik URL"
502
  msgstr[1] "Fandt %d unikke URL&#39;er"
503
 
504
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2323
505
  #, php-format
506
  msgid "in %d link"
507
  msgid_plural "in %d links"
508
  msgstr[0] "i %d link"
509
  msgstr[1] "i %d links"
510
 
511
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2328
512
  msgid "and still searching..."
513
  msgstr "og leder stadig ..."
514
 
515
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2334
516
  msgid "Searching your blog for links..."
517
  msgstr "Gennemsøger din blog for links ..."
518
 
519
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2336
520
  msgid "No links detected."
521
  msgstr "Ingen links fundet."
522
 
523
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2362
524
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:838
525
  msgid "Unknown"
526
  msgstr "Ukendt"
527
 
528
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2426
529
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2466
530
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2501
531
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2564
532
  #, php-format
533
  msgid "Oops, I can't find the link %d"
534
  msgstr "Ups. Jeg kan ikke finde linket %d"
535
 
536
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2439
537
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2476
538
  msgid "Oops, couldn't modify the link!"
539
  msgstr "Ups, kunne ikke ændre linket!"
540
 
541
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2442
542
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2479
543
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2590
544
  msgid "Error : link_id not specified"
545
  msgstr "Fejl: link_id ikke angivet"
546
 
547
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2511
548
  msgid "Oops, the new URL is invalid!"
549
  msgstr "Ups. Den nye URL er ugyldig!"
550
 
551
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2522
552
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2573
553
  msgid "An unexpected error occured!"
554
  msgstr "En uventet fejl opstod!"
555
 
556
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2540
557
  msgid "Error : link_id or new_url not specified"
558
  msgstr "Fejl: link_id eller new_url ikke angivet"
559
 
560
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2599
561
  msgid "You don't have sufficient privileges to access this information!"
562
  msgstr "Du har ikke tilstrækkelige rettigheder til at tilgå denne information!"
563
 
564
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2612
565
  msgid "Error : link ID not specified"
566
  msgstr "Fejl: link-id ikke angivet"
567
 
568
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2626
569
  #, php-format
570
  msgid "Failed to load link details (%s)"
571
  msgstr "Det mislykkedes at indlæse link-detaljer (%s)"
572
 
573
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2679
574
  msgid "Broken Link Checker"
575
  msgstr "Broken Link Checker"
576
 
577
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2699
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
578
  msgid "PHP version"
579
  msgstr "PHP version"
580
 
581
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2705
582
  msgid "MySQL version"
583
  msgstr "MySQL version"
584
 
585
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2718
586
+ msgid ""
587
+ "You have an old version of CURL. Redirect detection may not work properly."
588
+ msgstr ""
589
+ "Du har en gammel version af cURL. Det er ikke sikkert, at detektion af "
590
+ "redirigeringer fungerer ordentligt."
591
 
592
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2730
593
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2746
594
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2751
595
  msgid "Not installed"
596
  msgstr "Ikke installeret"
597
 
598
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2733
599
  msgid "CURL version"
600
  msgstr "cURL version"
601
 
602
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2739
603
  msgid "Installed"
604
  msgstr "Installeret"
605
 
606
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2752
607
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
608
+ msgstr ""
609
+ "Du skal have enten cURL eller Snoopy installeret, hvis pluginnet skal virke!"
610
 
611
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2763
612
  msgid "On"
613
  msgstr "Til"
614
 
615
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2764
616
  msgid "Redirects may be detected as broken links when safe_mode is on."
617
+ msgstr ""
618
+ "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når safe_mode "
619
+ "er til."
620
 
621
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2769
622
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2783
623
  msgid "Off"
624
  msgstr "Fra"
625
 
626
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2777
627
  #, php-format
628
  msgid "On ( %s )"
629
  msgstr "Fra ( %s )"
630
 
631
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2778
632
  msgid "Redirects may be detected as broken links when open_basedir is on."
633
+ msgstr ""
634
+ "Redirigeringer kan (fejlagtigt) blive bestemt som døde links, når "
635
+ "open_basedir er til."
 
 
636
 
637
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2807
638
+ msgid ""
639
+ "If this value is zero even after several page reloads you have probably "
640
+ "encountered a bug."
641
+ msgstr ""
642
+ "Hvis denne værdi er nul selv efter adskillige genindlæsninger af siden har "
643
+ "du sandsynligvis opdaget en bug."
644
 
645
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2898
646
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2996
647
  #, php-format
648
  msgid "[%s] Broken links detected"
649
  msgstr "[%s] døde links fundet"
650
 
651
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2904
652
  #, php-format
653
  msgid "Broken Link Checker has detected %d new broken link on your site."
654
+ msgid_plural ""
655
+ "Broken Link Checker has detected %d new broken links on your site."
656
  msgstr[0] "Broken Link Checker har opdaget %d nyt dødt link på din site."
657
  msgstr[1] "Broken Link Checker har opdaget %d nye døde links på din site."
658
 
659
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2927
660
  #, php-format
661
  msgid "Here's a list of the first %d broken links:"
662
  msgid_plural "Here's a list of the first %d broken links:"
663
  msgstr[0] "Her er en liste med det første døde link:"
664
  msgstr[1] "Her er en liste med de første %d døde links:"
665
 
666
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2935
667
  msgid "Here's a list of the new broken links: "
668
  msgstr "Her er en liste med de nye døde links: "
669
 
670
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2944
671
  #, php-format
672
  msgid "Link text : %s"
673
  msgstr "Linktekst: %s"
674
 
675
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2945
676
  #, php-format
677
  msgid "Link URL : <a href=\"%s\">%s</a>"
678
  msgstr "Link-URL: <a href=\"%s\">%s</a>"
679
 
680
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2946
681
  #, php-format
682
  msgid "Source : %s"
683
  msgstr "Kilde: %s"
684
 
685
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:2959
686
  msgid "You can see all broken links here:"
687
  msgstr "Du kan se alle de døde links her:"
688
 
689
+ #: d:\wordpress\plugins\broken-link-checker/core/core.php:3002
690
+ #, php-format
691
+ msgid "Broken Link Checker has detected %d new broken link in your posts."
692
+ msgid_plural ""
693
+ "Broken Link Checker has detected %d new broken links in your posts."
694
+ msgstr[0] "Broken Link Checker har opdaget %d nyt dødt link i dine indlæg."
695
+ msgstr[1] "Broken Link Checker har opdaget %d nye døde links i dine indlæg."
696
+
697
+ #: d:\wordpress\plugins\broken-link-checker/core/init.php:235
698
  msgid "Once Weekly"
699
  msgstr "Engang om ugen"
700
 
701
+ #: d:\wordpress\plugins\broken-link-checker/core/init.php:241
702
  msgid "Twice a Month"
703
  msgstr "To gange om måneden"
704
 
705
+ #: d:\wordpress\plugins\broken-link-checker/core/init.php:317
706
+ msgid ""
707
+ "Broken Link Checker installation failed. Try deactivating and then "
708
+ "reactivating the plugin."
709
+ msgstr ""
710
+ "Installation af Broken Link Checker mislykkedes. Prøv at deaktivere og "
711
+ "dernæst reaktivere pluginnet."
712
 
713
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:397
714
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/blogroll.php:46
715
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:153
716
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:197
717
  msgid "Edit"
718
  msgstr "Redigér"
719
 
720
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:405
721
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:203
722
  msgid "Move this item to the Trash"
723
  msgstr "Flyt denne til papirkurven"
724
 
725
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:407
726
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:162
727
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:205
728
  msgid "Trash"
729
  msgstr "Papirkurv"
730
 
731
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:412
732
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:210
733
  msgid "Delete this item permanently"
734
  msgstr "Slet dette indlæg permanent"
735
 
736
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:414
737
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/blogroll.php:47
738
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:212
739
  msgid "Delete"
740
  msgstr "Slet"
741
 
742
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:427
743
  #, php-format
744
  msgid "Preview &#8220;%s&#8221;"
745
  msgstr "Preview &#8220;%s&#8221;"
746
 
747
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:428
748
  msgid "Preview"
749
  msgstr "Preview"
750
 
751
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:435
752
  #, php-format
753
  msgid "View &#8220;%s&#8221;"
754
  msgstr "Vis &#8220;%s&#8221;"
755
 
756
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:436
757
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:166
758
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:217
759
  msgid "View"
760
  msgstr "Se"
761
 
762
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:455
763
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:197
764
  msgid "Edit this item"
765
  msgstr "Redigér denne"
766
 
767
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:519
768
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/blogroll.php:83
769
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:43
770
  msgid "Nothing to update"
771
  msgstr "Intet at opdatere"
772
 
773
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:529
774
  #, php-format
775
  msgid "Updating post %d failed"
776
  msgstr "Opdatering af indlægget %d mislykkedes"
777
 
778
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:564
779
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:284
780
  #, php-format
781
  msgid "Failed to delete post \"%s\" (%d)"
782
  msgstr "Det mislykkedes at slette indlægget \"%s\" (%d)"
783
 
784
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:583
785
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:303
786
  #, php-format
787
+ msgid ""
788
+ "Can't move post \"%s\" (%d) to the trash because the trash feature is "
789
+ "disabled"
790
+ msgstr ""
791
+ "Kan ikke flytte indlægget \"%s\" (%d) til papirkurven, fordi "
792
+ "papirkurvsfunktionen er deaktiveret"
793
 
794
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:603
795
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/custom_field.php:322
796
  #, php-format
797
  msgid "Failed to move post \"%s\" (%d) to the trash"
798
  msgstr "Det mislykkedes at flytte indlægget \"%s\" (%d) til papirkurven"
799
 
800
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:711
801
  #, php-format
802
  msgid "%d post deleted."
803
  msgid_plural "%d posts deleted."
804
  msgstr[0] "%d indlæg slettet"
805
  msgstr[1] "%d indlæg slettet"
806
 
807
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:713
808
  #, php-format
809
  msgid "%d page deleted."
810
  msgid_plural "%d pages deleted."
811
  msgstr[0] "%d side slettet"
812
  msgstr[1] "%d sider slettet"
813
 
814
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:715
815
  #, php-format
816
  msgid "%d \"%s\" deleted."
817
  msgid_plural "%d \"%s\" deleted."
818
  msgstr[0] "%d \"%s\" slettet."
819
  msgstr[1] "%d \"%s\" slettet."
820
 
821
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:734
822
  #, php-format
823
  msgid "%d post moved to the Trash."
824
  msgid_plural "%d posts moved to the Trash."
825
  msgstr[0] "%d indlæg flyttet til papirkurven"
826
  msgstr[1] "%d indlæg flyttet til papirkurven"
827
 
828
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:736
829
  #, php-format
830
  msgid "%d page moved to the Trash."
831
  msgid_plural "%d pages moved to the Trash."
832
  msgstr[0] "%d side flyttet til papirkurven"
833
  msgstr[1] "%d side flyttet til papirkurven"
834
 
835
+ #: d:\wordpress\plugins\broken-link-checker/includes/any-post.php:738
836
  #, php-format
837
  msgid "%d \"%s\" moved to the Trash."
838
  msgid_plural "%d \"%s\" moved to the Trash."
839
  msgstr[0] "%d \"%s\" flyttet til papirkurven."
840
  msgstr[1] "%d \"%s\" flyttet til papirkurven."
841
 
842
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:123
843
  #, php-format
844
  msgid "%d '%s' has been deleted"
845
  msgid_plural "%d '%s' have been deleted"
846
  msgstr[0] "%d '%s' er blevet slettet"
847
  msgstr[1] "%d '%s' er blevet slettede"
848
 
849
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:873
850
+ #: d:\wordpress\plugins\broken-link-checker/includes/containers.php:891
851
  #, php-format
852
  msgid "Container type '%s' not recognized"
853
  msgstr "Container-type '%s' ikke genkendt"
873
  msgstr "Indsatte DailyMotion-videoer"
874
 
875
  #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:7
876
+ msgid "Embedded GoogleVideo videos"
877
+ msgstr "Indsatte GoogleVideo-videoer"
878
+
879
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:8
880
+ msgid "Embedded Megavideo videos"
881
+ msgstr "Indsatte Megavideo-videoer"
882
+
883
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:9
884
  msgid "Embedded Vimeo videos"
885
  msgstr "Indsatte Vimeo-videoer"
886
 
887
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:10
888
  msgid "Embedded YouTube videos"
889
  msgstr "Indsatte YouTube-videoer"
890
 
891
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:11
892
+ msgid "Embedded YouTube videos (old embed code)"
893
+ msgstr "Indsatte YouTube-videoer (gammel indlejringskode)"
894
+
895
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:12
896
+ msgid "FileServe API"
897
+ msgstr "FileServe API"
898
+
899
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:13
900
  msgid "HTML images"
901
  msgstr "HTML-billeder"
902
 
903
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:14
904
  msgid "HTML links"
905
  msgstr "HTML-links"
906
 
907
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:15
908
  msgid "MediaFire API"
909
  msgstr "MediaFire API"
910
 
911
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:16
912
  msgid "MegaUpload API"
913
  msgstr "MegaUpload API"
914
 
915
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:17
916
  msgid "Plaintext URLs"
917
  msgstr "Plaintext URLs"
918
 
919
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:18
920
  msgid "RapidShare API"
921
  msgstr "RapidShare API"
922
 
923
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:19
924
  msgid "YouTube API"
925
  msgstr "YouTube API"
926
 
927
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:20
928
  msgid "Posts"
929
  msgstr "Indlæg"
930
 
931
+ #: d:\wordpress\plugins\broken-link-checker/includes/extra-strings.php:21
932
  msgid "Pages"
933
  msgstr "Sider"
934
 
944
  msgid "Parser '%s' not found."
945
  msgstr "Parser '%s' ikke fundet."
946
 
947
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:26
948
  msgid "Broken"
949
  msgstr "Døde"
950
 
951
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:28
952
  msgid "No broken links found"
953
  msgstr "Ingen døde links fundet"
954
 
955
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:36
956
  msgid "Redirects"
957
  msgstr "Redirigerede"
958
 
959
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:37
960
  msgid "Redirected Links"
961
  msgstr "Redirigerede links"
962
 
963
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:38
964
  msgid "No redirects found"
965
  msgstr "Ingen redirigeringer fundet"
966
 
967
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:46
968
+ msgid "Dismissed"
969
+ msgstr "Ignoreret"
970
+
971
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:47
972
+ msgid "Dismissed Links"
973
+ msgstr "Ignorerede links"
974
+
975
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:48
976
+ msgid "No dismissed links found"
977
+ msgstr "Ingen ignorerede links fundet"
978
+
979
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:56
980
  msgid "All"
981
  msgstr "Alle"
982
 
983
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:57
984
  msgid "Detected Links"
985
  msgstr "Fundne links"
986
 
987
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:58
988
  msgid "No links found (yet)"
989
  msgstr "Ingen links fundet (endnu)"
990
 
991
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:65
992
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:32
993
  msgid "Search"
994
  msgstr "Søg"
995
 
996
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:66
997
  msgid "Search Results"
998
  msgstr "Søgeresultater"
999
 
1000
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:67
1001
+ #: d:\wordpress\plugins\broken-link-checker/includes/link-query.php:114
1002
  msgid "No links found for your query"
1003
  msgstr "Din forespørgsel returnerede ingen links"
1004
 
1005
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:218
1006
  msgid "The plugin script was terminated while trying to check the link."
1007
  msgstr "Pluginskriptet blev afbrudt, mens det prøvede at tjekke et link."
1008
 
1009
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:264
1010
  msgid "The plugin doesn't know how to check this type of link."
1011
  msgstr "Pluginnet ved ikke, hvordan det skal tjekke denne type links."
1012
 
1013
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:357
1014
  msgid "Link is valid."
1015
  msgstr "Link er aktivt."
1016
 
1017
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:359
1018
  msgid "Link is broken."
1019
  msgstr "Link er dødt."
1020
 
1021
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:571
1022
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:673
1023
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:700
1024
  msgid "Link is not valid"
1025
  msgstr "Link er ikke gyldigt"
1026
 
1027
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:588
1028
+ msgid ""
1029
+ "This link can not be edited because it is not used anywhere on this site."
1030
+ msgstr ""
1031
+ "Dette link kan ikke redigeres, fordi det ikke bruges noget steds på denne "
1032
+ "site."
1033
 
1034
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:614
1035
  msgid "Failed to create a DB entry for the new URL."
1036
  msgstr "Det mislykkedes at oprette en databasepost for den nye URL."
1037
 
1038
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:680
1039
  msgid "This link is not a redirect"
1040
  msgstr "Dette link er ikke en redirect"
1041
 
1042
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:727
1043
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:764
1044
  msgid "Couldn't delete the link's database record"
1045
  msgstr "Kunne ikke slette linkets databasepost"
1046
 
1047
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:852
1048
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:264
1049
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/mediafire.php:101
1050
  msgid "Unknown Error"
1051
  msgstr "Ukendt fejl"
1052
 
1053
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:876
1054
  msgid "Not checked"
1055
  msgstr "Ikke tjekket"
1056
 
1057
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:879
1058
  msgid "False positive"
1059
  msgstr "Falsk positiv"
1060
 
1061
+ #: d:\wordpress\plugins\broken-link-checker/includes/links.php:882
1062
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/fileserve.php:121
1063
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/megaupload.php:115
1064
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:145
1065
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:151
1066
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:178
1067
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:105
1068
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:132
1069
+ msgid "OK"
1070
+ msgstr "OK"
1071
+
1072
  #: d:\wordpress\plugins\broken-link-checker/includes/parsers.php:109
1073
  #, php-format
1074
  msgid "Editing is not implemented in the '%s' parser"
1079
  msgid "Unlinking is not implemented in the '%s' parser"
1080
  msgstr "Fjernelse af links er ikke implementeret i '%s'-parseren"
1081
 
1082
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:245
1083
  #, php-format
1084
  msgid "%d second"
1085
  msgid_plural "%d seconds"
1086
  msgstr[0] "%d sekund"
1087
  msgstr[1] "%d sekunder"
1088
 
1089
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:246
1090
  #, php-format
1091
  msgid "%d second ago"
1092
  msgid_plural "%d seconds ago"
1093
  msgstr[0] "%d sekund siden"
1094
  msgstr[1] "%d sekunder siden"
1095
 
1096
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:249
1097
  #, php-format
1098
  msgid "%d minute"
1099
  msgid_plural "%d minutes"
1100
  msgstr[0] "%d minut"
1101
  msgstr[1] "%d minutter"
1102
 
1103
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:250
1104
  #, php-format
1105
  msgid "%d minute ago"
1106
  msgid_plural "%d minutes ago"
1107
  msgstr[0] "%d minut siden"
1108
  msgstr[1] "%d minutter siden"
1109
 
1110
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:253
1111
  #, php-format
1112
  msgid "%d hour"
1113
  msgid_plural "%d hours"
1114
  msgstr[0] "%d time"
1115
  msgstr[1] "%d timer"
1116
 
1117
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:254
1118
  #, php-format
1119
  msgid "%d hour ago"
1120
  msgid_plural "%d hours ago"
1121
  msgstr[0] "%d time siden"
1122
  msgstr[1] "%d timer siden"
1123
 
1124
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:257
1125
  #, php-format
1126
  msgid "%d day"
1127
  msgid_plural "%d days"
1128
  msgstr[0] "%d dag"
1129
  msgstr[1] "%d dage"
1130
 
1131
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:258
1132
  #, php-format
1133
  msgid "%d day ago"
1134
  msgid_plural "%d days ago"
1135
  msgstr[0] "%d dag siden"
1136
  msgstr[1] "%d dage siden"
1137
 
1138
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:261
1139
  #, php-format
1140
  msgid "%d month"
1141
  msgid_plural "%d months"
1142
  msgstr[0] "%d måned"
1143
  msgstr[1] "%d måneder"
1144
 
1145
+ #: d:\wordpress\plugins\broken-link-checker/includes/utility-class.php:262
1146
  #, php-format
1147
  msgid "%d month ago"
1148
  msgid_plural "%d months ago"
1154
  msgid "Failed to delete old DB tables. Database error : %s"
1155
  msgstr "Det mislykkedes at slette gamle databasetabeller. Databasefejl: %s"
1156
 
1157
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:55
1158
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:403
1159
  msgid "Wait..."
1160
  msgstr "Vent ..."
1161
 
1162
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:100
1163
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:630
1164
  msgid "Not broken"
1165
  msgstr "Ikke død"
1166
 
1167
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:315
1168
  #, php-format
1169
  msgid "%d instances of the link were successfully modified."
1170
  msgstr "%d steder med dette link blev ændret med succes."
1171
 
1172
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:321
1173
  #, php-format
1174
+ msgid ""
1175
+ "However, %d instances couldn't be edited and still point to the old URL."
1176
  msgstr "Men %d steder kunne ikke redigeres og peger stadig på det gamle URL."
1177
 
1178
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:327
1179
  msgid "The link could not be modified."
1180
  msgstr "Linket kunne ikke ændres."
1181
 
1182
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:330
1183
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:455
1184
  msgid "The following error(s) occured :"
1185
  msgstr "De(n) følgende fejl skete:"
1186
 
1187
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:441
1188
  #, php-format
1189
  msgid "%d instances of the link were successfully unlinked."
1190
  msgstr "%d steder med dette link fik linket fjernet med succes."
1191
 
1192
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:447
1193
  #, php-format
1194
  msgid "However, %d instances couldn't be removed."
1195
  msgstr "Men %d steder kunne linket ikke fjernes."
1196
 
1197
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:452
1198
  msgid "The plugin failed to remove the link."
1199
  msgstr "Det mislykkedes for pluginnet at fjerne linket."
1200
 
1201
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:463
1202
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:273
1203
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:624
1204
  msgid "Unlink"
1205
  msgstr "Fjern link"
1206
 
1207
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:507
1208
  msgid "Enter a name for the new custom filter"
1209
  msgstr "Indtast et navn for dit nye filter"
1210
 
1211
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:518
1212
  msgid ""
1213
  "You are about to delete the current filter.\n"
1214
  "'Cancel' to stop, 'OK' to delete"
1216
  "Du er ved at slette det aktuelle filter\n"
1217
  " 'Annullér' for at stoppe, 'OK' for at slette"
1218
 
1219
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:538
1220
  msgid ""
1221
+ "Are you sure you want to delete all posts, bookmarks or other items that "
1222
+ "contain any of the selected links? This action can't be undone.\n"
1223
  "'Cancel' to stop, 'OK' to delete"
1224
  msgstr ""
1225
+ "Er du sikker på, at du ønsker at slette alle indlæg, bogmærker og andre "
1226
+ "ting, der indeholder et af de valgte links? Denne handling kan ikke "
1227
+ "fortrydes.\n"
1228
  "'Annullér' for at stoppe, 'OK' for at slette"
1229
 
1230
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:548
1231
  msgid ""
1232
+ "Are you sure you want to remove the selected links? This action can't be "
1233
+ "undone.\n"
1234
  "'Cancel' to stop, 'OK' to remove"
1235
  msgstr ""
1236
+ "Er du sikker på, at du ønsker at fjerne de valgte links? Denne handling kan "
1237
+ "ikke fortrydes.\n"
1238
  "'Annullér' for at stoppe, 'OK' for at slette"
1239
 
1240
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:657
1241
  msgid "Enter a search string first."
1242
  msgstr "Indtast først en søgestreng."
1243
 
1244
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/links-page-js.php:664
1245
  msgid "Select one or more links to edit."
1246
  msgstr "Vælg en eller flere links, der skal redigeres."
1247
 
1262
  msgstr "Linktekst"
1263
 
1264
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:45
1265
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:202
1266
  msgid "URL"
1267
  msgstr "URL"
1268
 
1269
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:48
1270
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:491
1271
  msgid "HTTP code"
1272
  msgstr "HTTP-kode"
1273
 
1293
  msgstr "Søg links"
1294
 
1295
  #: d:\wordpress\plugins\broken-link-checker/includes/admin/search-form.php:113
1296
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:349
1297
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:652
1298
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:658
1299
  msgid "Cancel"
1300
  msgstr "Annullér"
1301
 
1302
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/sidebar.php:28
1303
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/sidebar.php:68
1304
+ msgid "More plugins by Janis Elsts"
1305
+ msgstr "Flere plugins af Janis Elsts"
1306
+
1307
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/sidebar.php:85
1308
+ msgid "Donate $10, $20 or $50!"
1309
+ msgstr "Donér $10, $20 eller $50!"
1310
+
1311
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/sidebar.php:88
1312
+ msgid ""
1313
+ "If you like this plugin, please donate to support development and "
1314
+ "maintenance!"
1315
+ msgstr ""
1316
+ "Hvis du kan lide dette plugin, så send venligst en donation til støtte af "
1317
+ "udvikling og vedligeholdelse!"
1318
+
1319
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/sidebar.php:106
1320
+ msgid "Return to WordPress Dashboard"
1321
+ msgstr "Tilbage til WordPress&#39; kontrolpanel"
1322
+
1323
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:179
1324
  msgid "Compact View"
1325
  msgstr "Kompakt visning"
1326
 
1327
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:180
1328
  msgid "Detailed View"
1329
  msgstr "Detaljeret visning"
1330
 
1331
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:209
1332
  msgid "Source"
1333
  msgstr "Kilde"
1334
 
1335
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:215
1336
  msgid "Link Text"
1337
  msgstr "Linktekst"
1338
 
1339
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:220
1340
+ msgid "Redirect URL"
1341
+ msgstr "Redirigér URL"
1342
+
1343
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:268
1344
  msgid "Bulk Actions"
1345
  msgstr "Massehandlinger"
1346
 
1347
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:269
1348
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:621
1349
  msgid "Edit URL"
1350
  msgstr "Redigér URL"
1351
 
1352
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:270
1353
  msgid "Recheck"
1354
  msgstr "Tjek igen"
1355
 
1356
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:271
1357
  msgid "Fix redirects"
1358
  msgstr "Fix redirigerede"
1359
 
1360
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:272
1361
  msgid "Mark as not broken"
1362
  msgstr "Markér som ikke-død"
1363
 
1364
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:276
1365
  msgid "Move sources to Trash"
1366
  msgstr "Flyt kilder til papirkurven"
1367
 
1368
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:278
1369
  msgid "Delete sources"
1370
  msgstr "Slet kilder"
1371
 
1372
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:293
1373
  msgid "&laquo;"
1374
  msgstr "&laquo;"
1375
 
1376
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:294
1377
  msgid "&raquo;"
1378
  msgstr "&raquo;"
1379
 
1380
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:302
1381
  #, php-format
1382
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1383
  msgstr "Viser %s&#8211;%s af <span class=\"current-link-count\">%s</span>"
1384
 
1385
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:325
1386
  msgid "Bulk Edit URLs"
1387
  msgstr "Masseredigér URL&#39;er"
1388
 
1389
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:327
1390
  msgid "Find"
1391
  msgstr "Find"
1392
 
1393
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:331
1394
  msgid "Replace with"
1395
  msgstr "Erstat med"
1396
 
1397
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:339
1398
  msgid "Case sensitive"
1399
  msgstr "Der skelnes mellem små og store bogstaver"
1400
 
1401
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:343
1402
  msgid "Regular expression"
1403
  msgstr "Regular expression"
1404
 
1405
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:351
1406
  msgid "Update"
1407
  msgstr "Opdatér"
1408
 
1409
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:476
1410
  msgid "Post published on"
1411
  msgstr "Indlæg udgivet den"
1412
 
1413
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:481
1414
  msgid "Link last checked"
1415
  msgstr "Link sidst tjekket"
1416
 
1417
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:485
1418
  msgid "Never"
1419
  msgstr "Aldrig"
1420
 
1421
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:496
1422
  msgid "Response time"
1423
  msgstr "Svartid"
1424
 
1425
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:498
1426
  #, php-format
1427
  msgid "%2.3f seconds"
1428
  msgstr "%2.3f sekunder"
1429
 
1430
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:501
1431
  msgid "Final URL"
1432
  msgstr "Endelige URL"
1433
 
1434
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:506
1435
  msgid "Redirect count"
1436
  msgstr "Antal redirigeringer"
1437
 
1438
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:511
1439
  msgid "Instance count"
1440
  msgstr "Antal instanser"
1441
 
1442
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:520
1443
  #, php-format
1444
  msgid "This link has failed %d time."
1445
  msgid_plural "This link has failed %d times."
1446
  msgstr[0] "Der har været fejl på dette link %d gang."
1447
  msgstr[1] "Der har været fejl på dette link %d gange."
1448
 
1449
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:528
1450
  #, php-format
1451
  msgid "This link has been broken for %s."
1452
  msgstr "Dette link har været dødt i %s."
1453
 
1454
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:539
1455
  msgid "Log"
1456
  msgstr "Log"
1457
 
1458
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:564
1459
  msgid "Show more info about this link"
1460
  msgstr "Vis flere oplysninger om dette link"
1461
 
1462
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:582
1463
  msgid "Checked"
1464
  msgstr "Tjekket"
1465
 
1466
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:598
1467
  msgid "Broken for"
1468
  msgstr "Død for"
1469
 
1470
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:621
1471
  msgid "Edit link URL"
1472
  msgstr "Redigér link-URL"
1473
 
1474
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:623
1475
  msgid "Remove this link from all posts"
1476
  msgstr "Fjern dette link fra alle indlæg"
1477
 
1478
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:629
1479
  msgid "Remove this link from the list of broken links and mark it as valid"
1480
  msgstr "Fjern dette link fra listen over døde links og markér det som aktivt"
1481
 
1482
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:637
1483
+ msgid "Hide this link and do not report it again unless its status changes"
1484
+ msgstr ""
1485
+ "Gem dette link og rapportér det ikke igen, med mindre dets status ændres"
1486
+
1487
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:638
1488
+ msgid "Dismiss"
1489
+ msgstr "Ignorér"
1490
+
1491
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:643
1492
+ msgid "Undismiss this link"
1493
+ msgstr "Ignorér ikke dette link"
1494
+
1495
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:644
1496
+ msgid "Undismiss"
1497
+ msgstr "Ignorér ikke"
1498
+
1499
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:652
1500
  msgid "Cancel URL editing"
1501
  msgstr "Anullér redigering af URL"
1502
 
1503
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:659
1504
  msgid "Update URL"
1505
  msgstr "Opdatér URL"
1506
 
1507
+ #: d:\wordpress\plugins\broken-link-checker/includes/admin/table-printer.php:686
1508
  msgid "[An orphaned link! This is a bug.]"
1509
  msgstr "[En forælderløs link! Dette er en bug.]"
1510
 
1511
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:243
1512
  msgid "Server Not Found"
1513
  msgstr "Server ikke fundet"
1514
 
1515
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:258
1516
  msgid "Connection Failed"
1517
  msgstr "Forbindelse mislykkedes"
1518
 
1519
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:293
1520
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:363
1521
  #, php-format
1522
  msgid "HTTP code : %d"
1523
  msgstr "HTTP-kode: %d"
1524
 
1525
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:295
1526
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:365
1527
  msgid "(No response)"
1528
  msgstr "(Intet svar)"
1529
 
1530
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:301
1531
  msgid "Most likely the connection timed out or the domain doesn't exist."
1532
+ msgstr ""
1533
+ "Det sandsynligste er, at forbindelsen fik timeout eller at domænet ikke "
1534
+ "eksisterer."
1535
 
1536
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:372
1537
  msgid "Request timed out."
1538
  msgstr "Anmodning fik timeout."
1539
 
1540
+ #: d:\wordpress\plugins\broken-link-checker/modules/checkers/http.php:390
1541
  msgid "Using Snoopy"
1542
  msgstr "Bruger Snoopy"
1543
 
1612
  msgid "Comment"
1613
  msgstr "Kommentar"
1614
 
1615
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:356
1616
  #, php-format
1617
  msgid "%d comment has been deleted."
1618
  msgid_plural "%d comments have been deleted."
1619
  msgstr[0] "%d kommentar er blevet slettet"
1620
  msgstr[1] "%d kommentarer er blevet slettede"
1621
 
1622
+ #: d:\wordpress\plugins\broken-link-checker/modules/containers/comment.php:375
1623
  #, php-format
1624
  msgid "%d comment moved to the Trash."
1625
  msgid_plural "%d comments moved to the Trash."
1651
  msgid "I don't know how to edit a '%s' [%d]."
1652
  msgstr "Jeg ved ikke, hvordan '%s' [%d] skal redigeres."
1653
 
1654
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/dailymotion-embed.php:23
1655
+ msgid "DailyMotion Video"
1656
+ msgstr "DailyMotion-video"
1657
+
1658
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/dailymotion-embed.php:24
1659
+ msgid "Embedded DailyMotion video"
1660
+ msgstr "Indsat DailyMotion-videoe"
1661
+
1662
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/embed-parser-base.php:196
1663
+ msgid ""
1664
+ "Embedded videos can't be edited using Broken Link Checker. Please edit or "
1665
+ "replace the video in question manually."
1666
+ msgstr ""
1667
+ "Indlejrede videoer kan ikke redigeres med Broken Link Checker. Redigér "
1668
+ "venligst selv pågældende video eller erstat videoen."
1669
+
1670
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/fileserve.php:55
1671
+ msgid "Using FileServe API"
1672
+ msgstr "Brug FileServe API"
1673
+
1674
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/fileserve.php:112
1675
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/mediafire.php:91
1676
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/mediafire.php:96
1677
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/megaupload.php:81
1678
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/megaupload.php:123
1679
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:139
1680
+ msgid "Not Found"
1681
+ msgstr "Ikke fundet"
1682
+
1683
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/fileserve.php:115
1684
+ #, php-format
1685
+ msgid "FileServe : %d %s"
1686
+ msgstr "FileServe : %d %s"
1687
+
1688
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/googlevideo-embed.php:24
1689
+ msgid "GoogleVideo Video"
1690
+ msgstr "GoogleVideo-video"
1691
+
1692
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/googlevideo-embed.php:25
1693
+ msgid "Embedded GoogleVideo video"
1694
+ msgstr "Indsatte GoogleVideo-videoer"
1695
+
1696
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/megaupload.php:130
1697
+ msgid "File Temporarily Unavailable"
1698
+ msgstr "Fil ikke tilgængelig for øjeblikket"
1699
+
1700
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/megaupload.php:136
1701
+ msgid "API Error"
1702
+ msgstr "API-fejl"
1703
+
1704
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/megavideo-embed.php:24
1705
+ msgid "Megavideo Video"
1706
+ msgstr "Megavideo-video"
1707
+
1708
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/megavideo-embed.php:25
1709
+ msgid "Embedded Megavideo video"
1710
+ msgstr "Indsat Megavideo-videoe"
1711
+
1712
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:51
1713
+ msgid "Using RapidShare API"
1714
+ msgstr "Bruger RapidShare API"
1715
+
1716
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:158
1717
+ msgid "RS Server Down"
1718
+ msgstr "RS-server nede"
1719
+
1720
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:165
1721
+ msgid "File Blocked"
1722
+ msgstr "Fil blokeret"
1723
+
1724
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:172
1725
+ msgid "File Locked"
1726
+ msgstr "Fil låst"
1727
+
1728
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:183
1729
+ #, php-format
1730
+ msgid "RapidShare : %s"
1731
+ msgstr "RapidShare : %s"
1732
+
1733
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/rapidshare.php:189
1734
+ #, php-format
1735
+ msgid "RapidShare API error: %s"
1736
+ msgstr "RapidShare-API-fejl: %s"
1737
+
1738
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/vimeo-embed.php:24
1739
+ msgid "Vimeo Video"
1740
+ msgstr "Vimeo-videoe"
1741
+
1742
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/vimeo-embed.php:25
1743
+ msgid "Embedded Vimeo video"
1744
+ msgstr "Indsat Vimeo-videoe"
1745
+
1746
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube-embed.php:24
1747
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube-iframe.php:25
1748
+ msgid "YouTube Video"
1749
+ msgstr "YouTube-videoe"
1750
+
1751
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube-embed.php:25
1752
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube-iframe.php:26
1753
+ msgid "Embedded YouTube video"
1754
+ msgstr "Indsat YouTube-videoe"
1755
+
1756
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:73
1757
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:76
1758
+ msgid "Video Not Found"
1759
+ msgstr "Video ikke fundet"
1760
+
1761
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:84
1762
+ msgid "Video Removed"
1763
+ msgstr "Video fjernet"
1764
+
1765
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:92
1766
+ msgid "Invalid Video ID"
1767
+ msgstr "Ugyldig video-id"
1768
+
1769
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:104
1770
+ msgid "Video OK"
1771
+ msgstr "Video OK"
1772
+
1773
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:118
1774
+ #, php-format
1775
+ msgid "Video status : %s%s"
1776
+ msgstr "Videostatus : %s%s"
1777
+
1778
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:137
1779
+ msgid "Video Restricted"
1780
+ msgstr "Video ikke offentligt tilgængelig"
1781
+
1782
+ #: d:\wordpress\plugins\broken-link-checker/modules/extras/youtube.php:154
1783
+ msgid "Unknown YouTube API response received."
1784
+ msgstr "Ukendt YouTube-API-svar modtaget."
1785
+
1786
+ #: d:\wordpress\plugins\broken-link-checker/modules/parsers/image.php:159
1787
  msgid "Image"
1788
  msgstr "Billede"
1789
 
1791
  msgid "Custom field"
1792
  msgstr "Eget felt"
1793
 
1794
+ #~ msgid ""
1795
+ #~ "Error: The plugin's database tables are not up to date! (Current "
1796
+ #~ "version : %d, expected : %d)"
1797
+ #~ msgstr ""
1798
+ #~ "Fejl: Pluginnets databasetabeller er ikke up-to-date! (Nuværende version: "
1799
+ #~ "%d; forventet: %d)"
1800
+
1801
+ #~ msgid "Try deactivating and then reactivating the plugin."
1802
+ #~ msgstr "Prøv at deaktivere og derefter reaktivere pluginnet."
1803
+
1804
+ #~ msgid "Custom temporary directory"
1805
+ #~ msgstr "Brugerdefineret tmp-mappe"
1806
+
1807
+ #~ msgid "Error : This directory isn't writable by PHP."
1808
+ #~ msgstr "Fejl: Denne mappe er ikke skrivbar for PHP."
1809
+
1810
+ #~ msgid "Error : This directory doesn't exist."
1811
+ #~ msgstr "Fejl: Denne mappe eksisterer ikke."
1812
+
1813
+ #~ msgid ""
1814
+ #~ "Set this field if you want the plugin to use a custom directory for its "
1815
+ #~ "lockfiles. Otherwise, leave it blank."
1816
+ #~ msgstr ""
1817
+ #~ "Sæt dette felt, hvis du ønsker, at pluginnet skal bruge en "
1818
+ #~ "brugerdefineret mappe til sine lock-filer. Ellers skal det ikke udfyldes."
1819
+
1820
+ #~ msgid "Upgrade to Pro to enable this feature"
1821
+ #~ msgstr "Opgradér til Pro for at aktivere denne funktion"
1822
+
1823
+ #~ msgid ""
1824
+ #~ "The current temporary directory is not accessible; please <a href=\"%s"
1825
+ #~ "\">set a different one</a>."
1826
+ #~ msgstr ""
1827
+ #~ "Der er ikke adgang til den aktuelle tmp-mappe; angiv venligst <a href=\"%s"
1828
+ #~ "\">en anden</a>."
1829
+
1830
+ #~ msgid ""
1831
+ #~ "Please make the directory <code>%1$s</code> writable by plugins or <a "
1832
+ #~ "href=\"%2$s\">set a custom temporary directory</a>."
1833
+ #~ msgstr ""
1834
+ #~ "Gør venligst mappen <code>%1$s</code> skrivbar for pluginnet eller <a "
1835
+ #~ "href=\"%2$s\">angiv en brugerdefineret tmp-mappe</a>."
1836
+
1837
+ #~ msgid "Broken Link Checker can't create a lockfile."
1838
+ #~ msgstr "Broken Link Checker kan ikke oprette en lock-fil."
1839
+
1840
+ #~ msgid ""
1841
+ #~ "The plugin uses a file-based locking mechanism to ensure that only one "
1842
+ #~ "instance of the resource-heavy link checking algorithm is running at any "
1843
+ #~ "given time. Unfortunately, BLC can't find a writable directory where it "
1844
+ #~ "could store the lockfile - it failed to detect the location of your "
1845
+ #~ "server's temporary directory, and the plugin's own directory isn't "
1846
+ #~ "writable by PHP. To fix this problem, please make the plugin's directory "
1847
+ #~ "writable or enter a specify a custom temporary directory in the plugin's "
1848
+ #~ "settings."
1849
+ #~ msgstr ""
1850
+ #~ "Pluginnet bruger en filbaseret lock-mekanisme for at sikre, at kun én "
1851
+ #~ "instans af den ressourcekrævende linktjekningsalgoritme kører på én gang. "
1852
+ #~ "Desværre kan BLC ikke finde en skrivbar mappe til at gemme lock-filen i. "
1853
+ #~ "Det mislykkedes at finde placeringen af din servers tmp-mappe, og "
1854
+ #~ "pluginnets egen mappe er ikke skrivbar for PHP. For at løse dette problem "
1855
+ #~ "skal du gøre pluginnets mappe skrivbar eller indtaste en brugerdefineret "
1856
+ #~ "tmp-mappe i pluginnets indstillinger."
1857
+
1858
+ #~ msgid ""
1859
+ #~ "Can't create a lockfile. Please specify a custom temporary directory."
1860
+ #~ msgstr ""
1861
+ #~ "Kan ikke oprette lock-fil. Angiv venligst en brugerdefineret tmp-mappe."
1862
+
1863
  #~ msgid ""
1864
  #~ "Unexpected error: The plugin doesn't know how to upgrade its database to "
1865
  #~ "version '%d'."
languages/broken-link-checker-de_DE.mo CHANGED
Binary file
languages/broken-link-checker-de_DE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker | V1.5\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
- "POT-Creation-Date: 2012-03-27 09:01:12+00:00\n"
6
- "PO-Revision-Date: 2012-04-09 14:50+0100\n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -19,750 +19,744 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ broken-link-checker
22
- #: core/core.php:146
23
  #: includes/admin/links-page-js.php:37
24
  msgid "Loading..."
25
  msgstr "Wird geladen ..."
26
 
27
  # @ broken-link-checker
28
- #: core/core.php:170
29
  #: includes/admin/options-page-js.php:18
30
  msgid "[ Network error ]"
31
  msgstr "[ Netzwerk Fehler ]"
32
 
33
  # @ broken-link-checker
34
- #: core/core.php:195
35
  msgid "Automatically expand the widget if broken links have been detected"
36
  msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
37
 
38
  # @ broken-link-checker
39
- #: core/core.php:285
40
  msgid "Link Checker Settings"
41
  msgstr "Link Checker Einstellungen"
42
 
43
  # @ broken-link-checker
44
- #: core/core.php:286
45
  msgid "Link Checker"
46
  msgstr "Link Checker"
47
 
48
  # @ broken-link-checker
49
- #: core/core.php:291
50
- #: includes/link-query.php:26
51
  msgid "Broken Links"
52
  msgstr "Fehlerhafte Links"
53
 
54
  # @ broken-link-checker
55
- #: core/core.php:307
56
  msgid "View Broken Links"
57
  msgstr "Fehlerhafte Links anschauen"
58
 
59
- #: core/core.php:322
60
  msgid "Feedback"
61
  msgstr "Feedback"
62
 
63
- #: core/core.php:330
64
- #: includes/admin/sidebar.php:18
65
- msgid "More plugins by Janis Elsts"
66
- msgstr "Weitere Plugins von Janis Elsts"
67
-
68
  # @ broken-link-checker
69
- #: core/core.php:337
70
  msgid "Go to Broken Links"
71
  msgstr "Gehe zu fehlerhaften Links"
72
 
73
  # @ default
74
- #: core/core.php:366
75
  msgid "Settings"
76
  msgstr "Einstellungen"
77
 
78
  # @ broken-link-checker
79
- #: core/core.php:378
80
- #: core/core.php:1167
81
- msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
82
- msgstr "Error: Die Datenbanktabellen des Plugins sind nicht mehr aktuell! (Vorhandene Version: %d, neue Version: %d)"
83
-
84
- # @ broken-link-checker
85
- #: core/core.php:382
86
- #: core/core.php:1171
87
- msgid "Try deactivating and then reactivating the plugin."
88
- msgstr "Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
89
-
90
- # @ broken-link-checker
91
- #: core/core.php:521
92
  msgid "Settings saved."
93
  msgstr "Einstellungen gespeichert."
94
 
95
- #: core/core.php:527
96
  msgid "Thank you for your donation!"
97
  msgstr "Besten Dank für Ihre Spende!"
98
 
99
  # @ broken-link-checker
100
- #: core/core.php:534
101
  msgid "Complete site recheck started."
102
  msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
103
 
104
  # @ broken-link-checker
105
- #: core/core.php:543
106
  msgid "Details"
107
  msgstr "Details"
108
 
109
  # @ broken-link-checker
110
- #: core/core.php:557
111
  msgid "General"
112
  msgstr "Allgemein"
113
 
114
  # @ broken-link-checker
115
- #: core/core.php:558
116
  msgid "Look For Links In"
117
  msgstr "Suchen Sie nach Links in"
118
 
119
  # @ broken-link-checker
120
- #: core/core.php:559
121
  msgid "Which Links To Check"
122
  msgstr "Welche Links überprüfen"
123
 
124
  # @ broken-link-checker
125
- #: core/core.php:560
126
  msgid "Protocols & APIs"
127
  msgstr "Protokoll & Schnittstellen"
128
 
129
  # @ broken-link-checker
130
- #: core/core.php:561
131
  msgid "Advanced"
132
  msgstr "Erweitert"
133
 
134
  # @ broken-link-checker
135
- #: core/core.php:576
136
  msgid "Broken Link Checker Options"
137
  msgstr "Broken Link Checker Optionen"
138
 
139
  # @ broken-link-checker
140
- #: core/core.php:618
141
- #: includes/admin/table-printer.php:195
142
  msgid "Status"
143
  msgstr "Status"
144
 
145
  # @ broken-link-checker
146
- #: core/core.php:620
147
  #: includes/admin/options-page-js.php:56
148
  msgid "Show debug info"
149
  msgstr "Debug Infos anzeigen"
150
 
151
  # @ broken-link-checker
152
- #: core/core.php:648
153
  msgid "Check each link"
154
  msgstr "Überprüfe jeden Link"
155
 
156
  # @ broken-link-checker
157
- #: core/core.php:653
158
  msgid "Every %s hours"
159
  msgstr "Alle %s Stunden"
160
 
161
  # @ broken-link-checker
162
- #: core/core.php:662
163
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
164
  msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
165
 
166
  # @ broken-link-checker
167
- #: core/core.php:669
168
  msgid "E-mail notifications"
169
  msgstr "E-Mail Benachrichtigungen"
170
 
171
  # @ broken-link-checker
172
- #: core/core.php:675
173
  msgid "Send me e-mail notifications about newly detected broken links"
174
  msgstr "Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links erkannt werden"
175
 
176
  # @ broken-link-checker
177
- #: core/core.php:683
178
  msgid "Send authors e-mail notifications about broken links in their posts"
179
  msgstr "Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links erkannt werden"
180
 
181
  # @ broken-link-checker
182
- #: core/core.php:690
183
  msgid "Link tweaks"
184
  msgstr "Link Einstellungen"
185
 
186
  # @ broken-link-checker
187
- #: core/core.php:696
188
  msgid "Apply custom formatting to broken links"
189
  msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
190
 
191
  # @ broken-link-checker
192
- #: core/core.php:700
193
- #: core/core.php:730
194
  msgid "Edit CSS"
195
  msgstr "Bearbeite CSS"
196
 
197
- #: core/core.php:715
198
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
199
  msgstr "Beispiel : Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
200
 
201
- #: core/core.php:718
202
- #: core/core.php:749
203
  msgid "Click \"Save Changes\" to update example output."
204
  msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
205
 
206
  # @ broken-link-checker
207
- #: core/core.php:726
208
  msgid "Apply custom formatting to removed links"
209
  msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
210
 
211
- #: core/core.php:746
212
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
213
  msgstr "Beispiel : Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
214
 
215
  # @ broken-link-checker
216
- #: core/core.php:759
217
  msgid "Stop search engines from following broken links"
218
  msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
219
 
220
  # @ broken-link-checker
221
- #: core/core.php:776
222
  msgid "Look for links in"
223
  msgstr "Suchen Sie nach Links in"
224
 
225
  # @ broken-link-checker
226
- #: core/core.php:787
227
  msgid "Post statuses"
228
  msgstr "Beitrag Status"
229
 
230
  # @ broken-link-checker
231
- #: core/core.php:820
232
  msgid "Link types"
233
  msgstr "Link Typen"
234
 
235
  # @ broken-link-checker
236
- #: core/core.php:826
237
  msgid "Error : All link parsers missing!"
238
  msgstr "Fehler: Alle Link-Parser fehlen!"
239
 
240
  # @ broken-link-checker
241
- #: core/core.php:833
242
  msgid "Exclusion list"
243
  msgstr "Ausschlussliste"
244
 
245
  # @ broken-link-checker
246
- #: core/core.php:834
247
  msgid "Don't check links where the URL contains any of these words (one per line) :"
248
  msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
249
 
250
  # @ broken-link-checker
251
- #: core/core.php:852
252
  msgid "Check links using"
253
  msgstr "Überprüfe Links"
254
 
255
  # @ broken-link-checker
256
- #: core/core.php:871
257
- #: includes/links.php:849
258
  msgid "Timeout"
259
  msgstr "Zeitüberschreitung"
260
 
261
  # @ broken-link-checker
262
  # @ default
263
- #: core/core.php:877
264
- #: core/core.php:923
265
- #: core/core.php:2732
266
  msgid "%s seconds"
267
  msgstr "%s Sekunden"
268
 
269
  # @ broken-link-checker
270
- #: core/core.php:886
271
  msgid "Links that take longer than this to load will be marked as broken."
272
  msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
273
 
274
  # @ broken-link-checker
275
- #: core/core.php:893
276
  msgid "Link monitor"
277
  msgstr "Link Monitor"
278
 
279
  # @ broken-link-checker
280
- #: core/core.php:901
281
  msgid "Run continuously while the Dashboard is open"
282
  msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
283
 
284
  # @ broken-link-checker
285
- #: core/core.php:909
286
  msgid "Run hourly in the background"
287
  msgstr "Stündlich im Hintergrund arbeiten"
288
 
289
  # @ broken-link-checker
290
- #: core/core.php:917
291
  msgid "Max. execution time"
292
  msgstr "Max. Ausführungszeit"
293
 
294
  # @ broken-link-checker
295
- #: core/core.php:934
296
  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."
297
  msgstr "Das Plugin arbeitet in regelmässigen Abständen im Hintergrund. Ihre Beiträge werden auf Links analysiert, entdeckte URLs geprüft und andere zeitaufwendige Aufgaben ausführt. Hier können Sie einstellen, wie lange die Instanzen laufen sollen, bevor sie gestoppt werden."
298
 
299
  # @ broken-link-checker
300
- #: core/core.php:943
301
  msgid "Server load limit"
302
  msgstr "Server Belastungsgrenze"
303
 
304
- #: core/core.php:958
305
  msgid "Current load : %s"
306
  msgstr "Aktuelle Belastung: %s"
307
 
308
  # @ broken-link-checker
309
- #: core/core.php:963
310
  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."
311
  msgstr "Die Link Überprüfung wird ausgesetzt, wenn die durchschnittliche <a href=\"%s\">Belastung des Servers</a> über diese Zahl ansteigt. Lassen Sie dieses Feld leer, um das Ladelimit zu deaktivieren."
312
 
313
  # @ broken-link-checker
314
- #: core/core.php:972
315
  msgid "Not available"
316
  msgstr "Nicht verfügbar"
317
 
318
  # @ broken-link-checker
319
- #: core/core.php:974
320
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
321
  msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
322
 
323
  # @ broken-link-checker
324
- #: core/core.php:982
325
  msgid "Forced recheck"
326
  msgstr "Erneute Überprüfung erzwingen"
327
 
328
  # @ broken-link-checker
329
- #: core/core.php:985
330
  msgid "Re-check all pages"
331
  msgstr "Überprüfe alle Seiten noch einmal"
332
 
333
  # @ broken-link-checker
334
- #: core/core.php:989
335
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
336
  msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
337
 
338
  # @ default
339
- #: core/core.php:1000
340
  msgid "Save Changes"
341
  msgstr "Änderungen speichern"
342
 
343
  # @ broken-link-checker
344
- #: core/core.php:1051
345
  msgid "Configure"
346
  msgstr "Konfigurieren"
347
 
348
  # @ broken-link-checker
349
- #: core/core.php:1133
350
  msgid "Check URLs entered in these custom fields (one per line) :"
351
  msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
352
 
353
  # @ broken-link-checker
354
- #: core/core.php:1270
355
- #: core/core.php:1351
356
- #: core/core.php:1383
357
  msgid "Database error : %s"
358
  msgstr "Datenbank Fehler: %s"
359
 
360
  # @ broken-link-checker
361
- #: core/core.php:1333
362
  msgid "You must enter a filter name!"
363
  msgstr "Sie müssen einen Filter Namen eingeben!"
364
 
365
  # @ broken-link-checker
366
- #: core/core.php:1337
367
  msgid "Invalid search query."
368
  msgstr "Ungültige Suchanfrage."
369
 
370
  # @ broken-link-checker
371
- #: core/core.php:1346
372
  msgid "Filter \"%s\" created"
373
  msgstr "Filter \"%s\" erstellt"
374
 
375
  # @ broken-link-checker
376
- #: core/core.php:1373
377
  msgid "Filter ID not specified."
378
  msgstr "Link ID nicht spezifiziert."
379
 
380
  # @ broken-link-checker
381
- #: core/core.php:1380
382
  msgid "Filter deleted"
383
  msgstr "Filter gelöscht"
384
 
385
  # @ broken-link-checker
386
- #: core/core.php:1427
387
  msgid "Replaced %d redirect with a direct link"
388
  msgid_plural "Replaced %d redirects with direct links"
389
  msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
390
  msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
391
 
392
  # @ broken-link-checker
393
- #: core/core.php:1438
394
  msgid "Failed to fix %d redirect"
395
  msgid_plural "Failed to fix %d redirects"
396
  msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
397
  msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
398
 
399
  # @ broken-link-checker
400
- #: core/core.php:1449
401
  msgid "None of the selected links are redirects!"
402
  msgstr "Keiner der ausgewählten Links sind Umleitungen!"
403
 
404
  # @ broken-link-checker
405
- #: core/core.php:1527
406
  msgid "%d link updated."
407
  msgid_plural "%d links updated."
408
  msgstr[0] "Link %d aktualisiert."
409
  msgstr[1] "Links %d aktualisiert."
410
 
411
  # @ broken-link-checker
412
- #: core/core.php:1538
413
  msgid "Failed to update %d link."
414
  msgid_plural "Failed to update %d links."
415
  msgstr[0] "Link %d konnte nicht aktualisiert werden."
416
  msgstr[1] "Links %d konnten nicht aktualisiert werden."
417
 
418
  # @ broken-link-checker
419
- #: core/core.php:1592
420
  msgid "%d link removed"
421
  msgid_plural "%d links removed"
422
  msgstr[0] "%d Link entfernt"
423
  msgstr[1] "%d Links entfernt"
424
 
425
  # @ broken-link-checker
426
- #: core/core.php:1603
427
  msgid "Failed to remove %d link"
428
  msgid_plural "Failed to remove %d links"
429
  msgstr[0] "Link %d konnte nicht entfernt werden"
430
  msgstr[1] "Links %d konnten nicht entfernt werden"
431
 
432
  # @ default
433
- #: core/core.php:1712
434
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
435
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
436
  msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
437
  msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
438
 
439
  # @ broken-link-checker
440
- #: core/core.php:1734
441
  msgid "Didn't find anything to delete!"
442
  msgstr "Nichts gefunden um zu löschen!"
443
 
444
  # @ broken-link-checker
445
- #: core/core.php:1762
446
  msgid "%d link scheduled for rechecking"
447
  msgid_plural "%d links scheduled for rechecking"
448
  msgstr[0] "%d Link zur erneuten Überprüfung geplant"
449
  msgstr[1] "%d Links zur erneuten Überprüfung geplant"
450
 
451
  # @ broken-link-checker
452
- #: core/core.php:1808
453
- #: core/core.php:2412
454
  msgid "This link was manually marked as working by the user."
455
  msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
456
 
457
  # @ broken-link-checker
458
- #: core/core.php:1815
459
  msgid "Couldn't modify link %d"
460
  msgstr "Link %d konnte nicht geändert werden"
461
 
462
  # @ broken-link-checker
463
- #: core/core.php:1825
464
  msgid "%d link marked as not broken"
465
  msgid_plural "%d links marked as not broken"
466
  msgstr[0] "%d Link als nicht fehlerhaft markiert"
467
  msgstr[1] "%d Links als nicht fehlerhaft markiert"
468
 
469
  # @ broken-link-checker
470
- #: core/core.php:1865
471
  msgid "Table columns"
472
  msgstr "Tabellenspalten"
473
 
474
  # @ default
475
- #: core/core.php:1884
476
  msgid "Show on screen"
477
  msgstr "Auf dem Bildschirm anzeigen"
478
 
479
  # @ broken-link-checker
480
- #: core/core.php:1891
481
  msgid "links"
482
  msgstr "Links"
483
 
484
  # @ default
485
  # @ broken-link-checker
486
- #: core/core.php:1892
487
- #: includes/admin/table-printer.php:163
488
  msgid "Apply"
489
  msgstr "Anwenden"
490
 
491
  # @ broken-link-checker
492
- #: core/core.php:1896
493
  msgid "Misc"
494
  msgstr "Sonstige"
495
 
496
  # @ broken-link-checker
497
- #: core/core.php:1911
498
  msgid "Highlight links broken for at least %s days"
499
  msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
500
 
501
  # @ broken-link-checker
502
- #: core/core.php:1920
503
  msgid "Color-code status codes"
504
  msgstr "Farb-Code Status Codes"
505
 
506
  # @ broken-link-checker
507
- #: core/core.php:1937
508
- #: core/core.php:2397
509
- #: core/core.php:2433
510
- #: core/core.php:2496
 
511
  msgid "You're not allowed to do that!"
512
  msgstr "Sie haben nicht die Erlaubnis das zu tun!"
513
 
514
  # @ broken-link-checker
515
- #: core/core.php:2278
516
  msgid "View broken links"
517
  msgstr "Fehlerhafte Links anschauen"
518
 
519
  # @ broken-link-checker
520
- #: core/core.php:2279
521
  msgid "Found %d broken link"
522
  msgid_plural "Found %d broken links"
523
  msgstr[0] "%d fehlerhafte Links gefunden"
524
  msgstr[1] "%d fehlerhafte Links gefunden"
525
 
526
  # @ broken-link-checker
527
- #: core/core.php:2285
528
  msgid "No broken links found."
529
  msgstr "Keine fehlerhaften Links gefunden."
530
 
531
  # @ broken-link-checker
532
- #: core/core.php:2292
533
  msgid "%d URL in the work queue"
534
  msgid_plural "%d URLs in the work queue"
535
  msgstr[0] "%d URL in der Warteschlange"
536
  msgstr[1] "%d URLs in der Warteschlange"
537
 
538
  # @ broken-link-checker
539
- #: core/core.php:2295
540
  msgid "No URLs in the work queue."
541
  msgstr "Keine URLs in der Warteschlange."
542
 
543
  # @ broken-link-checker
544
- #: core/core.php:2301
545
- msgid "Detected %d unique URL"
546
- msgid_plural "Detected %d unique URLs"
547
- msgstr[0] "%d eindeutige URL gefunden"
548
- msgstr[1] "%d eindeutige URLs gefunden"
 
549
 
550
  # @ broken-link-checker
551
- #: core/core.php:2302
552
- msgid "in %d link"
553
- msgid_plural "in %d links"
554
- msgstr[0] "in %d Link"
555
- msgstr[1] "in %d Links"
 
556
 
557
  # @ broken-link-checker
558
- #: core/core.php:2307
559
- msgid "and still searching..."
560
- msgstr "und sucht immer noch ..."
561
 
562
  # @ broken-link-checker
563
- #: core/core.php:2313
 
 
 
 
 
564
  msgid "Searching your blog for links..."
565
  msgstr "Durchsucht Ihr Blog nach Links ..."
566
 
567
  # @ broken-link-checker
568
- #: core/core.php:2315
569
  msgid "No links detected."
570
  msgstr "Keine Links gefunden."
571
 
572
  # @ broken-link-checker
573
- #: core/core.php:2341
574
  msgctxt "current load"
575
  msgid "Unknown"
576
  msgstr "Unbekannt"
577
 
578
  # @ broken-link-checker
579
- #: core/core.php:2405
580
- #: core/core.php:2443
581
- #: core/core.php:2506
 
582
  msgid "Oops, I can't find the link %d"
583
  msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
584
 
585
  # @ broken-link-checker
586
- #: core/core.php:2418
 
587
  msgid "Oops, couldn't modify the link!"
588
  msgstr "Hoppla, der Link konnte nicht geändert werden!"
589
 
590
  # @ broken-link-checker
591
- #: core/core.php:2421
592
- #: core/core.php:2532
 
593
  msgid "Error : link_id not specified"
594
  msgstr "Fehler: Link ID nicht spezifiziert"
595
 
596
  # @ broken-link-checker
597
- #: core/core.php:2453
598
  msgid "Oops, the new URL is invalid!"
599
  msgstr "Hoppla, die neue URL funktioniert nicht!"
600
 
601
  # @ broken-link-checker
602
- #: core/core.php:2464
603
- #: core/core.php:2515
604
  msgid "An unexpected error occured!"
605
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
606
 
607
  # @ broken-link-checker
608
- #: core/core.php:2482
609
  msgid "Error : link_id or new_url not specified"
610
  msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
611
 
612
  # @ broken-link-checker
613
- #: core/core.php:2541
614
  msgid "You don't have sufficient privileges to access this information!"
615
  msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
616
 
617
  # @ broken-link-checker
618
- #: core/core.php:2554
619
  msgid "Error : link ID not specified"
620
  msgstr "Fehler: Link ID nicht spezifiziert"
621
 
622
  # @ broken-link-checker
623
- #: core/core.php:2568
624
  msgid "Failed to load link details (%s)"
625
  msgstr "Laden der Link Details (%s) schlug fehl"
626
 
627
  # @ broken-link-checker
628
- #. #-#-#-#-# plugin.pot (Broken Link Checker 1.4) #-#-#-#-#
629
  #. Plugin Name of the plugin/theme
630
- #: core/core.php:2621
631
  msgid "Broken Link Checker"
632
  msgstr "Broken Link Checker"
633
 
634
  # @ broken-link-checker
635
- #: core/core.php:2641
636
  msgid "PHP version"
637
  msgstr "PHP Version"
638
 
639
  # @ broken-link-checker
640
- #: core/core.php:2647
641
  msgid "MySQL version"
642
  msgstr "MySQL Version"
643
 
644
  # @ broken-link-checker
645
- #: core/core.php:2660
646
  msgid "You have an old version of CURL. Redirect detection may not work properly."
647
  msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
648
 
649
  # @ broken-link-checker
650
- #: core/core.php:2672
651
- #: core/core.php:2688
652
- #: core/core.php:2693
653
  msgid "Not installed"
654
  msgstr "Nicht installiert"
655
 
656
  # @ broken-link-checker
657
- #: core/core.php:2675
658
  msgid "CURL version"
659
  msgstr "CURL Version"
660
 
661
  # @ broken-link-checker
662
- #: core/core.php:2681
663
  msgid "Installed"
664
  msgstr "Installiert"
665
 
666
  # @ broken-link-checker
667
- #: core/core.php:2694
668
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
669
  msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
670
 
671
  # @ broken-link-checker
672
- #: core/core.php:2705
673
  msgid "On"
674
  msgstr "An"
675
 
676
  # @ broken-link-checker
677
- #: core/core.php:2706
678
  msgid "Redirects may be detected as broken links when safe_mode is on."
679
  msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
680
 
681
  # @ broken-link-checker
682
- #: core/core.php:2711
683
- #: core/core.php:2725
684
  msgid "Off"
685
  msgstr "Aus"
686
 
687
  # @ broken-link-checker
688
- #: core/core.php:2719
689
  msgid "On ( %s )"
690
  msgstr "An (%s)"
691
 
692
  # @ broken-link-checker
693
- #: core/core.php:2720
694
  msgid "Redirects may be detected as broken links when open_basedir is on."
695
  msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
696
 
697
  # @ broken-link-checker
698
- #: core/core.php:2749
699
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
700
  msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
701
 
702
  # @ broken-link-checker
703
- #: core/core.php:2840
704
- #: core/core.php:2938
705
  msgid "[%s] Broken links detected"
706
  msgstr "[%s] Fehlerhafte Links entdeckt"
707
 
708
  # @ broken-link-checker
709
- #: core/core.php:2845
710
  msgid "Broken Link Checker has detected %d new broken link on your site."
711
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
712
  msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
713
  msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
714
 
715
  # @ broken-link-checker
716
- #: core/core.php:2868
717
  msgid "Here's a list of the first %d broken links:"
718
  msgid_plural "Here's a list of the first %d broken links:"
719
  msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
720
  msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
721
 
722
  # @ broken-link-checker
723
- #: core/core.php:2877
724
  msgid "Here's a list of the new broken links: "
725
  msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
726
 
727
  # @ broken-link-checker
728
- #: core/core.php:2886
729
  msgid "Link text : %s"
730
  msgstr "Linktext: %s"
731
 
732
  # @ broken-link-checker
733
- #: core/core.php:2887
734
  msgid "Link URL : <a href=\"%s\">%s</a>"
735
  msgstr "Link URL: <a href=\"%s\">%s</a>"
736
 
737
  # @ broken-link-checker
738
- #: core/core.php:2888
739
  msgid "Source : %s"
740
  msgstr "Quelle: %s"
741
 
742
  # @ brokenk-link-checker
743
- #: core/core.php:2901
744
  msgid "You can see all broken links here:"
745
  msgstr "Hier sehen Sie alle fehlerhaften Links:"
746
 
747
  # @ broken-link-checker
748
- #: core/core.php:2943
749
  msgid "Broken Link Checker has detected %d new broken link in your posts."
750
  msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
751
  msgstr[0] "Broken Link Checker hat %d fehlerhafter Link in einem Beitrag entdeckt."
752
  msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
753
 
754
  # @ default
755
- #: core/init.php:231
756
  msgid "Once Weekly"
757
  msgstr "Einmal wöchentlich"
758
 
759
  # @ default
760
- #: core/init.php:237
761
  msgid "Twice a Month"
762
  msgstr "Zweimal im Monat"
763
 
764
  # @ broken-link-checker
765
- #: core/init.php:307
766
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
767
  msgstr "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
768
 
@@ -772,67 +766,67 @@ msgid "Failed to delete old DB tables. Database error : %s"
772
  msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
773
 
774
  # @ broken-link-checker
775
- #: includes/admin/links-page-js.php:58
776
- #: includes/admin/links-page-js.php:301
777
  msgid "Wait..."
778
  msgstr "Warte ..."
779
 
780
  # @ broken-link-checker
781
- #: includes/admin/links-page-js.php:99
782
- #: includes/admin/table-printer.php:616
783
  msgid "Not broken"
784
  msgstr "Nicht fehlerhaft"
785
 
786
  # @ broken-link-checker
787
- #: includes/admin/links-page-js.php:213
788
  msgid "%d instances of the link were successfully modified."
789
  msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
790
 
791
  # @ broken-link-checker
792
- #: includes/admin/links-page-js.php:219
793
  msgid "However, %d instances couldn't be edited and still point to the old URL."
794
  msgstr "Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem noch auf die alte URL."
795
 
796
  # @ broken-link-checker
797
- #: includes/admin/links-page-js.php:225
798
  msgid "The link could not be modified."
799
  msgstr "Der Link konnte nicht geändert werden."
800
 
801
  # @ broken-link-checker
802
- #: includes/admin/links-page-js.php:228
803
- #: includes/admin/links-page-js.php:353
804
  msgid "The following error(s) occured :"
805
  msgstr "Folgende Fehler sind aufgetreten:"
806
 
807
  # @ broken-link-checker
808
- #: includes/admin/links-page-js.php:339
809
  msgid "%d instances of the link were successfully unlinked."
810
  msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
811
 
812
  # @ broken-link-checker
813
- #: includes/admin/links-page-js.php:345
814
  msgid "However, %d instances couldn't be removed."
815
  msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
816
 
817
  # @ broken-link-checker
818
- #: includes/admin/links-page-js.php:350
819
  msgid "The plugin failed to remove the link."
820
  msgstr "Das Plugin konnte den Link nicht entfernen."
821
 
822
  # @ broken-link-checker
823
- #: includes/admin/links-page-js.php:361
824
- #: includes/admin/table-printer.php:266
825
- #: includes/admin/table-printer.php:610
826
  msgid "Unlink"
827
  msgstr "Link aufheben"
828
 
829
  # @ broken-link-checker
830
- #: includes/admin/links-page-js.php:405
831
  msgid "Enter a name for the new custom filter"
832
  msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
833
 
834
  # @ broken-link-checker
835
- #: includes/admin/links-page-js.php:416
836
  msgid ""
837
  "You are about to delete the current filter.\n"
838
  "'Cancel' to stop, 'OK' to delete"
@@ -841,7 +835,7 @@ msgstr ""
841
  " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
842
 
843
  # @ broken-link-checker
844
- #: includes/admin/links-page-js.php:439
845
  msgid ""
846
  "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
847
  "'Cancel' to stop, 'OK' to delete"
@@ -850,7 +844,7 @@ msgstr ""
850
  " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
851
 
852
  # @ broken-link-checker
853
- #: includes/admin/links-page-js.php:449
854
  msgid ""
855
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
856
  "'Cancel' to stop, 'OK' to remove"
@@ -858,11 +852,11 @@ msgstr ""
858
  "Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
859
  " 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
860
 
861
- #: includes/admin/links-page-js.php:558
862
  msgid "Enter a search string first."
863
  msgstr "Geben Sie zuerst einen Suchbegriff ein."
864
 
865
- #: includes/admin/links-page-js.php:565
866
  msgid "Select one or more links to edit."
867
  msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
868
 
@@ -883,7 +877,7 @@ msgstr "Diesen Filter löschen"
883
 
884
  # @ broken-link-checker
885
  #: includes/admin/search-form.php:32
886
- #: includes/link-query.php:53
887
  msgid "Search"
888
  msgstr "Suche"
889
 
@@ -894,13 +888,13 @@ msgstr "Linktext"
894
 
895
  # @ broken-link-checker
896
  #: includes/admin/search-form.php:45
897
- #: includes/admin/table-printer.php:200
898
  msgid "URL"
899
  msgstr "URL"
900
 
901
  # @ broken-link-checker
902
  #: includes/admin/search-form.php:48
903
- #: includes/admin/table-printer.php:484
904
  msgid "HTTP code"
905
  msgstr "HTTP Code"
906
 
@@ -932,222 +926,248 @@ msgstr "Suche Links"
932
 
933
  # @ broken-link-checker
934
  #: includes/admin/search-form.php:113
935
- #: includes/admin/table-printer.php:342
936
- #: includes/admin/table-printer.php:624
937
- #: includes/admin/table-printer.php:630
938
  msgid "Cancel"
939
  msgstr "Abbrechen"
940
 
941
- #: includes/admin/sidebar.php:40
 
 
 
 
 
942
  msgid "Donate $10, $20 or $50!"
943
  msgstr "Spenden Sie $10, $20 oder $50!"
944
 
945
- #: includes/admin/sidebar.php:43
946
  msgid "If you like this plugin, please donate to support development and maintenance!"
947
  msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
948
 
949
- #: includes/admin/sidebar.php:60
950
  msgid "Return to WordPress Dashboard"
951
  msgstr "Zurück zum Wordpress Dashboard"
952
 
953
  # @ broken-link-checker
954
- #: includes/admin/table-printer.php:177
955
  msgid "Compact View"
956
  msgstr "Kompaktansicht"
957
 
958
  # @ broken-link-checker
959
- #: includes/admin/table-printer.php:178
960
  msgid "Detailed View"
961
  msgstr "Detailansicht"
962
 
963
  # @ broken-link-checker
964
- #: includes/admin/table-printer.php:207
965
  msgid "Source"
966
  msgstr "Quelle"
967
 
968
  # @ broken-link-checker
969
- #: includes/admin/table-printer.php:213
970
  msgid "Link Text"
971
  msgstr "Linktext"
972
 
973
  # @ broken-link-checker
974
- #: includes/admin/table-printer.php:261
 
 
 
 
 
975
  msgid "Bulk Actions"
976
  msgstr "Massenänderung"
977
 
978
  # @ broken-link-checker
979
- #: includes/admin/table-printer.php:262
980
- #: includes/admin/table-printer.php:607
981
  msgid "Edit URL"
982
  msgstr "Bearbeite URL"
983
 
984
  # @ broken-link-checker
985
- #: includes/admin/table-printer.php:263
986
  msgid "Recheck"
987
  msgstr "Erneut überprüfen"
988
 
989
  # @ broken-link-checker
990
- #: includes/admin/table-printer.php:264
991
  msgid "Fix redirects"
992
  msgstr "Feste Umleitungen"
993
 
994
  # @ broken-link-checker
995
- #: includes/admin/table-printer.php:265
996
  msgid "Mark as not broken"
997
  msgstr "Als nicht fehlerhaft markieren"
998
 
999
  # @ broken-link-checker
1000
- #: includes/admin/table-printer.php:269
1001
  msgid "Move sources to Trash"
1002
  msgstr "Verschiebe Quelle in den Papierkorb"
1003
 
1004
  # @ broken-link-checker
1005
- #: includes/admin/table-printer.php:271
1006
  msgid "Delete sources"
1007
  msgstr "Quellen löschen"
1008
 
1009
  # @ default
1010
- #: includes/admin/table-printer.php:286
1011
  msgid "&laquo;"
1012
  msgstr "&laquo;"
1013
 
1014
  # @ default
1015
- #: includes/admin/table-printer.php:287
1016
  msgid "&raquo;"
1017
  msgstr "&raquo;"
1018
 
1019
  # @ broken-link-checker
1020
- #: includes/admin/table-printer.php:295
1021
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1022
  msgstr "Anzeigen %s&#8211;%s von <span class=\"current-link-count\">%s</span>"
1023
 
1024
  # @ broken-link-checker
1025
- #: includes/admin/table-printer.php:318
1026
  msgid "Bulk Edit URLs"
1027
  msgstr "Mehrere URLs bearbeiten"
1028
 
1029
- #: includes/admin/table-printer.php:320
1030
  msgid "Find"
1031
  msgstr "Finden"
1032
 
1033
- #: includes/admin/table-printer.php:324
1034
  msgid "Replace with"
1035
  msgstr "Ersetzen mit"
1036
 
1037
  # @ broken-link-checker
1038
- #: includes/admin/table-printer.php:332
1039
  msgid "Case sensitive"
1040
  msgstr "Gross- und Kleinschreibung"
1041
 
1042
- #: includes/admin/table-printer.php:336
1043
  msgid "Regular expression"
1044
  msgstr "Regulärer Ausdruck"
1045
 
1046
  # @ broken-link-checker
1047
- #: includes/admin/table-printer.php:344
1048
  msgid "Update"
1049
  msgstr "Aktualisieren"
1050
 
1051
  # @ broken-link-checker
1052
- #: includes/admin/table-printer.php:469
1053
  msgid "Post published on"
1054
  msgstr "Beitrag publiziert am"
1055
 
1056
  # @ broken-link-checker
1057
- #: includes/admin/table-printer.php:474
1058
  msgid "Link last checked"
1059
  msgstr "Link zuletzt geprüft"
1060
 
1061
  # @ broken-link-checker
1062
- #: includes/admin/table-printer.php:478
1063
  msgid "Never"
1064
  msgstr "Nie"
1065
 
1066
  # @ broken-link-checker
1067
- #: includes/admin/table-printer.php:489
1068
  msgid "Response time"
1069
  msgstr "Reaktionszeit"
1070
 
1071
  # @ broken-link-checker
1072
- #: includes/admin/table-printer.php:491
1073
  msgid "%2.3f seconds"
1074
  msgstr "%2.3f Sekunden"
1075
 
1076
  # @ broken-link-checker
1077
- #: includes/admin/table-printer.php:494
1078
  msgid "Final URL"
1079
  msgstr "Endgültige URL"
1080
 
1081
  # @ broken-link-checker
1082
- #: includes/admin/table-printer.php:499
1083
  msgid "Redirect count"
1084
  msgstr "Weiterleitung Anzahl"
1085
 
1086
  # @ broken-link-checker
1087
- #: includes/admin/table-printer.php:504
1088
  msgid "Instance count"
1089
  msgstr "Instanz Anzahl"
1090
 
1091
  # @ broken-link-checker
1092
- #: includes/admin/table-printer.php:513
1093
  msgid "This link has failed %d time."
1094
  msgid_plural "This link has failed %d times."
1095
  msgstr[0] "Dieser Link schlug %d mal fehl."
1096
  msgstr[1] "Dieser Link schlug %d mal fehl."
1097
 
1098
  # @ broken-link-checker
1099
- #: includes/admin/table-printer.php:521
1100
  msgid "This link has been broken for %s."
1101
  msgstr "Dieser Links ist fehlerhaft seit %s."
1102
 
1103
  # @ broken-link-checker
1104
- #: includes/admin/table-printer.php:532
1105
  msgid "Log"
1106
  msgstr "Log"
1107
 
1108
  # @ broken-link-checker
1109
- #: includes/admin/table-printer.php:553
1110
  msgid "Show more info about this link"
1111
  msgstr "Mehr Informationen über diesen Link anzeigen"
1112
 
1113
  # @ broken-link-checker
1114
- #: includes/admin/table-printer.php:571
1115
  msgctxt "checked how long ago"
1116
  msgid "Checked"
1117
  msgstr "Geprüft"
1118
 
1119
  # @ broken-link-checker
1120
- #: includes/admin/table-printer.php:587
1121
  msgid "Broken for"
1122
  msgstr "Fehlerhaft für"
1123
 
1124
  # @ broken-link-checker
1125
- #: includes/admin/table-printer.php:607
1126
  msgid "Edit link URL"
1127
  msgstr "Bearbeite URL Link"
1128
 
1129
  # @ broken-link-checker
1130
- #: includes/admin/table-printer.php:609
1131
  msgid "Remove this link from all posts"
1132
  msgstr "Löschen Sie diesen Link von allen Beiträgen"
1133
 
1134
  # @ broken-link-checker
1135
- #: includes/admin/table-printer.php:615
1136
  msgid "Remove this link from the list of broken links and mark it as valid"
1137
  msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1139
  # @ broken-link-checker
1140
- #: includes/admin/table-printer.php:624
1141
  msgid "Cancel URL editing"
1142
  msgstr "URL Bearbeitung abbrechen"
1143
 
1144
  # @ broken-link-checker
1145
- #: includes/admin/table-printer.php:631
1146
  msgid "Update URL"
1147
  msgstr "Aktualisiere URL"
1148
 
1149
  # @ broken-link-checker
1150
- #: includes/admin/table-printer.php:653
1151
  msgid "[An orphaned link! This is a bug.]"
1152
  msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
1153
 
@@ -1430,130 +1450,144 @@ msgid "Parser '%s' not found."
1430
  msgstr "Parser '%s' nicht gefunden."
1431
 
1432
  # @ broken-link-checker
1433
- #: includes/link-query.php:25
1434
  msgid "Broken"
1435
  msgstr "Fehlerhaft"
1436
 
1437
  # @ broken-link-checker
1438
- #: includes/link-query.php:27
1439
  msgid "No broken links found"
1440
  msgstr "Keine fehlerhaften Links gefunden"
1441
 
1442
  # @ broken-link-checker
1443
- #: includes/link-query.php:34
1444
  msgid "Redirects"
1445
  msgstr "Umleitungen"
1446
 
1447
  # @ broken-link-checker
1448
- #: includes/link-query.php:35
1449
  msgid "Redirected Links"
1450
  msgstr "Umgeleitete Links"
1451
 
1452
  # @ broken-link-checker
1453
- #: includes/link-query.php:36
1454
  msgid "No redirects found"
1455
  msgstr "Keine umgeleiteten Links gefunden"
1456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1457
  # @ broken-link-checker
1458
- #: includes/link-query.php:44
1459
  msgid "All"
1460
  msgstr "Alle"
1461
 
1462
  # @ broken-link-checker
1463
- #: includes/link-query.php:45
1464
  msgid "Detected Links"
1465
  msgstr "Gefundene Links"
1466
 
1467
  # @ broken-link-checker
1468
- #: includes/link-query.php:46
1469
  msgid "No links found (yet)"
1470
  msgstr "(Noch) keine Links gefunden"
1471
 
1472
  # @ broken-link-checker
1473
- #: includes/link-query.php:54
1474
  msgid "Search Results"
1475
  msgstr "Such Resultat"
1476
 
1477
  # @ broken-link-checker
1478
- #: includes/link-query.php:55
1479
- #: includes/link-query.php:102
1480
  msgid "No links found for your query"
1481
  msgstr "Keine Links für Deine Anfrage gefunden"
1482
 
1483
  # @ broken-link-checker
1484
- #: includes/links.php:215
1485
  msgid "The plugin script was terminated while trying to check the link."
1486
  msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
1487
 
1488
  # @ broken-link-checker
1489
- #: includes/links.php:261
1490
  msgid "The plugin doesn't know how to check this type of link."
1491
  msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
1492
 
1493
  # @ broken-link-checker
1494
- #: includes/links.php:349
1495
  msgid "Link is valid."
1496
  msgstr "Link ist valide."
1497
 
1498
  # @ broken-link-checker
1499
- #: includes/links.php:351
1500
  msgid "Link is broken."
1501
  msgstr "Link ist fehlerhaft."
1502
 
1503
  # @ broken-link-checker
1504
- #: includes/links.php:564
1505
- #: includes/links.php:666
1506
- #: includes/links.php:693
1507
  msgid "Link is not valid"
1508
  msgstr "Link ist nicht gültig"
1509
 
1510
  # @ broken-link-checker
1511
- #: includes/links.php:581
1512
  msgid "This link can not be edited because it is not used anywhere on this site."
1513
  msgstr "Dieser Link kann nicht bearbeitet werden, weil er nicht überall auf dieser Website verwendet wird."
1514
 
1515
  # @ broken-link-checker
1516
- #: includes/links.php:607
1517
  msgid "Failed to create a DB entry for the new URL."
1518
  msgstr "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
1519
 
1520
  # @ broken-link-checker
1521
- #: includes/links.php:673
1522
  msgid "This link is not a redirect"
1523
  msgstr "Dieser Link ist keine Umleitung"
1524
 
1525
  # @ broken-link-checker
1526
- #: includes/links.php:720
1527
- #: includes/links.php:757
1528
  msgid "Couldn't delete the link's database record"
1529
  msgstr "Links können nicht aus der Datenbank gelöscht werden"
1530
 
1531
  # @ broken-link-checker
1532
- #: includes/links.php:831
1533
  msgctxt "link status"
1534
  msgid "Unknown"
1535
  msgstr "Unbekannt"
1536
 
1537
  # @ link status
1538
  # @ broken-link-checker
1539
- #: includes/links.php:845
1540
  #: modules/checkers/http.php:264
1541
  #: modules/extras/mediafire.php:101
1542
  msgid "Unknown Error"
1543
  msgstr "Unbekannter Fehler"
1544
 
1545
  # @ broken-link-checker
1546
- #: includes/links.php:869
1547
  msgid "Not checked"
1548
  msgstr "Nicht überprüft"
1549
 
1550
  # @ broken-link-checker
1551
- #: includes/links.php:872
1552
  msgid "False positive"
1553
  msgstr "Falsch positiv"
1554
 
1555
  # @ broken-link-checker
1556
- #: includes/links.php:875
1557
  #: modules/extras/fileserve.php:121
1558
  #: modules/extras/megaupload.php:115
1559
  #: modules/extras/rapidshare.php:145
@@ -1574,70 +1608,70 @@ msgid "Unlinking is not implemented in the '%s' parser"
1574
  msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
1575
 
1576
  # @ default
1577
- #: includes/utility-class.php:244
1578
  msgid "%d second"
1579
  msgid_plural "%d seconds"
1580
  msgstr[0] "%s Sekunde"
1581
  msgstr[1] "%s Sekunden"
1582
 
1583
  # @ default
1584
- #: includes/utility-class.php:245
1585
  msgid "%d second ago"
1586
  msgid_plural "%d seconds ago"
1587
  msgstr[0] "%s Sekunde vergangen"
1588
  msgstr[1] "%s Sekunden vergangen"
1589
 
1590
  # @ default
1591
- #: includes/utility-class.php:248
1592
  msgid "%d minute"
1593
  msgid_plural "%d minutes"
1594
  msgstr[0] "%d Minute"
1595
  msgstr[1] "%d Minuten"
1596
 
1597
  # @ default
1598
- #: includes/utility-class.php:249
1599
  msgid "%d minute ago"
1600
  msgid_plural "%d minutes ago"
1601
  msgstr[0] "%d Minute vergangen"
1602
  msgstr[1] "%d Minuten vergangen"
1603
 
1604
  # @ default
1605
- #: includes/utility-class.php:252
1606
  msgid "%d hour"
1607
  msgid_plural "%d hours"
1608
  msgstr[0] "%d Stunde"
1609
  msgstr[1] "%d Stunden"
1610
 
1611
  # @ default
1612
- #: includes/utility-class.php:253
1613
  msgid "%d hour ago"
1614
  msgid_plural "%d hours ago"
1615
  msgstr[0] "%d Stunde vergangen"
1616
  msgstr[1] "%d Stunden vergangen"
1617
 
1618
  # @ default
1619
- #: includes/utility-class.php:256
1620
  msgid "%d day"
1621
  msgid_plural "%d days"
1622
  msgstr[0] "%d Tag"
1623
  msgstr[1] "%d Tage"
1624
 
1625
  # @ default
1626
- #: includes/utility-class.php:257
1627
  msgid "%d day ago"
1628
  msgid_plural "%d days ago"
1629
  msgstr[0] "%d Tag vergangen"
1630
  msgstr[1] "%d Tage vergangen"
1631
 
1632
  # @ default
1633
- #: includes/utility-class.php:260
1634
  msgid "%d month"
1635
  msgid_plural "%d months"
1636
  msgstr[0] "%d Monat"
1637
  msgstr[1] "%d Monate"
1638
 
1639
  # @ default
1640
- #: includes/utility-class.php:261
1641
  msgid "%d month ago"
1642
  msgid_plural "%d months ago"
1643
  msgstr[0] "%d Monat vergangen"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker | V1.6.2\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2012-07-11 15:57:29+00:00\n"
6
+ "PO-Revision-Date: 2012-07-29 16:42+0100\n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ broken-link-checker
22
+ #: core/core.php:151
23
  #: includes/admin/links-page-js.php:37
24
  msgid "Loading..."
25
  msgstr "Wird geladen ..."
26
 
27
  # @ broken-link-checker
28
+ #: core/core.php:175
29
  #: includes/admin/options-page-js.php:18
30
  msgid "[ Network error ]"
31
  msgstr "[ Netzwerk Fehler ]"
32
 
33
  # @ broken-link-checker
34
+ #: core/core.php:202
35
  msgid "Automatically expand the widget if broken links have been detected"
36
  msgstr "Vergrössere Widget automatisch wenn fehlerhafte Links gefunden wurden"
37
 
38
  # @ broken-link-checker
39
+ #: core/core.php:292
40
  msgid "Link Checker Settings"
41
  msgstr "Link Checker Einstellungen"
42
 
43
  # @ broken-link-checker
44
+ #: core/core.php:293
45
  msgid "Link Checker"
46
  msgstr "Link Checker"
47
 
48
  # @ broken-link-checker
49
+ #: core/core.php:298
50
+ #: includes/link-query.php:27
51
  msgid "Broken Links"
52
  msgstr "Fehlerhafte Links"
53
 
54
  # @ broken-link-checker
55
+ #: core/core.php:314
56
  msgid "View Broken Links"
57
  msgstr "Fehlerhafte Links anschauen"
58
 
59
+ #: core/core.php:329
60
  msgid "Feedback"
61
  msgstr "Feedback"
62
 
 
 
 
 
 
63
  # @ broken-link-checker
64
+ #: core/core.php:368
65
  msgid "Go to Broken Links"
66
  msgstr "Gehe zu fehlerhaften Links"
67
 
68
  # @ default
69
+ #: core/core.php:397
70
  msgid "Settings"
71
  msgstr "Einstellungen"
72
 
73
  # @ broken-link-checker
74
+ #: core/core.php:554
 
 
 
 
 
 
 
 
 
 
 
 
75
  msgid "Settings saved."
76
  msgstr "Einstellungen gespeichert."
77
 
78
+ #: core/core.php:560
79
  msgid "Thank you for your donation!"
80
  msgstr "Besten Dank für Ihre Spende!"
81
 
82
  # @ broken-link-checker
83
+ #: core/core.php:568
84
  msgid "Complete site recheck started."
85
  msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
86
 
87
  # @ broken-link-checker
88
+ #: core/core.php:577
89
  msgid "Details"
90
  msgstr "Details"
91
 
92
  # @ broken-link-checker
93
+ #: core/core.php:591
94
  msgid "General"
95
  msgstr "Allgemein"
96
 
97
  # @ broken-link-checker
98
+ #: core/core.php:592
99
  msgid "Look For Links In"
100
  msgstr "Suchen Sie nach Links in"
101
 
102
  # @ broken-link-checker
103
+ #: core/core.php:593
104
  msgid "Which Links To Check"
105
  msgstr "Welche Links überprüfen"
106
 
107
  # @ broken-link-checker
108
+ #: core/core.php:594
109
  msgid "Protocols & APIs"
110
  msgstr "Protokoll & Schnittstellen"
111
 
112
  # @ broken-link-checker
113
+ #: core/core.php:595
114
  msgid "Advanced"
115
  msgstr "Erweitert"
116
 
117
  # @ broken-link-checker
118
+ #: core/core.php:610
119
  msgid "Broken Link Checker Options"
120
  msgstr "Broken Link Checker Optionen"
121
 
122
  # @ broken-link-checker
123
+ #: core/core.php:652
124
+ #: includes/admin/table-printer.php:197
125
  msgid "Status"
126
  msgstr "Status"
127
 
128
  # @ broken-link-checker
129
+ #: core/core.php:654
130
  #: includes/admin/options-page-js.php:56
131
  msgid "Show debug info"
132
  msgstr "Debug Infos anzeigen"
133
 
134
  # @ broken-link-checker
135
+ #: core/core.php:682
136
  msgid "Check each link"
137
  msgstr "Überprüfe jeden Link"
138
 
139
  # @ broken-link-checker
140
+ #: core/core.php:687
141
  msgid "Every %s hours"
142
  msgstr "Alle %s Stunden"
143
 
144
  # @ broken-link-checker
145
+ #: core/core.php:696
146
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
147
  msgstr "Vorhandene Links werden nach Ablauf der Zeit automatisch kontrolliert. Neue Links werden sofort geprüft."
148
 
149
  # @ broken-link-checker
150
+ #: core/core.php:703
151
  msgid "E-mail notifications"
152
  msgstr "E-Mail Benachrichtigungen"
153
 
154
  # @ broken-link-checker
155
+ #: core/core.php:709
156
  msgid "Send me e-mail notifications about newly detected broken links"
157
  msgstr "Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links erkannt werden"
158
 
159
  # @ broken-link-checker
160
+ #: core/core.php:717
161
  msgid "Send authors e-mail notifications about broken links in their posts"
162
  msgstr "Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links erkannt werden"
163
 
164
  # @ broken-link-checker
165
+ #: core/core.php:724
166
  msgid "Link tweaks"
167
  msgstr "Link Einstellungen"
168
 
169
  # @ broken-link-checker
170
+ #: core/core.php:730
171
  msgid "Apply custom formatting to broken links"
172
  msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
173
 
174
  # @ broken-link-checker
175
+ #: core/core.php:734
176
+ #: core/core.php:765
177
  msgid "Edit CSS"
178
  msgstr "Bearbeite CSS"
179
 
180
+ #: core/core.php:750
181
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
182
  msgstr "Beispiel : Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
183
 
184
+ #: core/core.php:753
185
+ #: core/core.php:784
186
  msgid "Click \"Save Changes\" to update example output."
187
  msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
188
 
189
  # @ broken-link-checker
190
+ #: core/core.php:761
191
  msgid "Apply custom formatting to removed links"
192
  msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
193
 
194
+ #: core/core.php:781
195
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
196
  msgstr "Beispiel : Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
197
 
198
  # @ broken-link-checker
199
+ #: core/core.php:794
200
  msgid "Stop search engines from following broken links"
201
  msgstr "Stoppe Suchmaschinen aus folgenden fehlerhaften Links"
202
 
203
  # @ broken-link-checker
204
+ #: core/core.php:811
205
  msgid "Look for links in"
206
  msgstr "Suchen Sie nach Links in"
207
 
208
  # @ broken-link-checker
209
+ #: core/core.php:822
210
  msgid "Post statuses"
211
  msgstr "Beitrag Status"
212
 
213
  # @ broken-link-checker
214
+ #: core/core.php:855
215
  msgid "Link types"
216
  msgstr "Link Typen"
217
 
218
  # @ broken-link-checker
219
+ #: core/core.php:861
220
  msgid "Error : All link parsers missing!"
221
  msgstr "Fehler: Alle Link-Parser fehlen!"
222
 
223
  # @ broken-link-checker
224
+ #: core/core.php:868
225
  msgid "Exclusion list"
226
  msgstr "Ausschlussliste"
227
 
228
  # @ broken-link-checker
229
+ #: core/core.php:869
230
  msgid "Don't check links where the URL contains any of these words (one per line) :"
231
  msgstr "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
232
 
233
  # @ broken-link-checker
234
+ #: core/core.php:887
235
  msgid "Check links using"
236
  msgstr "Überprüfe Links"
237
 
238
  # @ broken-link-checker
239
+ #: core/core.php:906
240
+ #: includes/links.php:856
241
  msgid "Timeout"
242
  msgstr "Zeitüberschreitung"
243
 
244
  # @ broken-link-checker
245
  # @ default
246
+ #: core/core.php:912
247
+ #: core/core.php:958
248
+ #: core/core.php:2801
249
  msgid "%s seconds"
250
  msgstr "%s Sekunden"
251
 
252
  # @ broken-link-checker
253
+ #: core/core.php:921
254
  msgid "Links that take longer than this to load will be marked as broken."
255
  msgstr "Links die länger zum laden brauchen als hier eingetragen, gelten als fehlerhaft."
256
 
257
  # @ broken-link-checker
258
+ #: core/core.php:928
259
  msgid "Link monitor"
260
  msgstr "Link Monitor"
261
 
262
  # @ broken-link-checker
263
+ #: core/core.php:936
264
  msgid "Run continuously while the Dashboard is open"
265
  msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
266
 
267
  # @ broken-link-checker
268
+ #: core/core.php:944
269
  msgid "Run hourly in the background"
270
  msgstr "Stündlich im Hintergrund arbeiten"
271
 
272
  # @ broken-link-checker
273
+ #: core/core.php:952
274
  msgid "Max. execution time"
275
  msgstr "Max. Ausführungszeit"
276
 
277
  # @ broken-link-checker
278
+ #: core/core.php:969
279
  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."
280
  msgstr "Das Plugin arbeitet in regelmässigen Abständen im Hintergrund. Ihre Beiträge werden auf Links analysiert, entdeckte URLs geprüft und andere zeitaufwendige Aufgaben ausführt. Hier können Sie einstellen, wie lange die Instanzen laufen sollen, bevor sie gestoppt werden."
281
 
282
  # @ broken-link-checker
283
+ #: core/core.php:978
284
  msgid "Server load limit"
285
  msgstr "Server Belastungsgrenze"
286
 
287
+ #: core/core.php:993
288
  msgid "Current load : %s"
289
  msgstr "Aktuelle Belastung: %s"
290
 
291
  # @ broken-link-checker
292
+ #: core/core.php:998
293
  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."
294
  msgstr "Die Link Überprüfung wird ausgesetzt, wenn die durchschnittliche <a href=\"%s\">Belastung des Servers</a> über diese Zahl ansteigt. Lassen Sie dieses Feld leer, um das Ladelimit zu deaktivieren."
295
 
296
  # @ broken-link-checker
297
+ #: core/core.php:1007
298
  msgid "Not available"
299
  msgstr "Nicht verfügbar"
300
 
301
  # @ broken-link-checker
302
+ #: core/core.php:1009
303
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
304
  msgstr "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</code> vorhanden und zugänglich ist."
305
 
306
  # @ broken-link-checker
307
+ #: core/core.php:1017
308
  msgid "Forced recheck"
309
  msgstr "Erneute Überprüfung erzwingen"
310
 
311
  # @ broken-link-checker
312
+ #: core/core.php:1020
313
  msgid "Re-check all pages"
314
  msgstr "Überprüfe alle Seiten noch einmal"
315
 
316
  # @ broken-link-checker
317
+ #: core/core.php:1024
318
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
319
  msgstr "Die \"Nuklear Option\". Klicken Sie auf diese Schaltfläche, um die Link-Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
320
 
321
  # @ default
322
+ #: core/core.php:1035
323
  msgid "Save Changes"
324
  msgstr "Änderungen speichern"
325
 
326
  # @ broken-link-checker
327
+ #: core/core.php:1086
328
  msgid "Configure"
329
  msgstr "Konfigurieren"
330
 
331
  # @ broken-link-checker
332
+ #: core/core.php:1168
333
  msgid "Check URLs entered in these custom fields (one per line) :"
334
  msgstr "Überprüfe folgende URLs (eine URL pro Zeile):"
335
 
336
  # @ broken-link-checker
337
+ #: core/core.php:1296
338
+ #: core/core.php:1378
339
+ #: core/core.php:1410
340
  msgid "Database error : %s"
341
  msgstr "Datenbank Fehler: %s"
342
 
343
  # @ broken-link-checker
344
+ #: core/core.php:1360
345
  msgid "You must enter a filter name!"
346
  msgstr "Sie müssen einen Filter Namen eingeben!"
347
 
348
  # @ broken-link-checker
349
+ #: core/core.php:1364
350
  msgid "Invalid search query."
351
  msgstr "Ungültige Suchanfrage."
352
 
353
  # @ broken-link-checker
354
+ #: core/core.php:1373
355
  msgid "Filter \"%s\" created"
356
  msgstr "Filter \"%s\" erstellt"
357
 
358
  # @ broken-link-checker
359
+ #: core/core.php:1400
360
  msgid "Filter ID not specified."
361
  msgstr "Link ID nicht spezifiziert."
362
 
363
  # @ broken-link-checker
364
+ #: core/core.php:1407
365
  msgid "Filter deleted"
366
  msgstr "Filter gelöscht"
367
 
368
  # @ broken-link-checker
369
+ #: core/core.php:1454
370
  msgid "Replaced %d redirect with a direct link"
371
  msgid_plural "Replaced %d redirects with direct links"
372
  msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
373
  msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
374
 
375
  # @ broken-link-checker
376
+ #: core/core.php:1465
377
  msgid "Failed to fix %d redirect"
378
  msgid_plural "Failed to fix %d redirects"
379
  msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
380
  msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
381
 
382
  # @ broken-link-checker
383
+ #: core/core.php:1476
384
  msgid "None of the selected links are redirects!"
385
  msgstr "Keiner der ausgewählten Links sind Umleitungen!"
386
 
387
  # @ broken-link-checker
388
+ #: core/core.php:1554
389
  msgid "%d link updated."
390
  msgid_plural "%d links updated."
391
  msgstr[0] "Link %d aktualisiert."
392
  msgstr[1] "Links %d aktualisiert."
393
 
394
  # @ broken-link-checker
395
+ #: core/core.php:1565
396
  msgid "Failed to update %d link."
397
  msgid_plural "Failed to update %d links."
398
  msgstr[0] "Link %d konnte nicht aktualisiert werden."
399
  msgstr[1] "Links %d konnten nicht aktualisiert werden."
400
 
401
  # @ broken-link-checker
402
+ #: core/core.php:1619
403
  msgid "%d link removed"
404
  msgid_plural "%d links removed"
405
  msgstr[0] "%d Link entfernt"
406
  msgstr[1] "%d Links entfernt"
407
 
408
  # @ broken-link-checker
409
+ #: core/core.php:1630
410
  msgid "Failed to remove %d link"
411
  msgid_plural "Failed to remove %d links"
412
  msgstr[0] "Link %d konnte nicht entfernt werden"
413
  msgstr[1] "Links %d konnten nicht entfernt werden"
414
 
415
  # @ default
416
+ #: core/core.php:1739
417
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
418
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
419
  msgstr[0] "%d Das Element wurde übersprungen, weil es nicht in den Papierkorb verschoben werden kann. Löschen Sie es manuell."
420
  msgstr[1] "%d Die Elemente wurde übersprungen, weil sie nicht in den Papierkorb verschoben werden können. Löschen Sie diese manuell."
421
 
422
  # @ broken-link-checker
423
+ #: core/core.php:1761
424
  msgid "Didn't find anything to delete!"
425
  msgstr "Nichts gefunden um zu löschen!"
426
 
427
  # @ broken-link-checker
428
+ #: core/core.php:1789
429
  msgid "%d link scheduled for rechecking"
430
  msgid_plural "%d links scheduled for rechecking"
431
  msgstr[0] "%d Link zur erneuten Überprüfung geplant"
432
  msgstr[1] "%d Links zur erneuten Überprüfung geplant"
433
 
434
  # @ broken-link-checker
435
+ #: core/core.php:1835
436
+ #: core/core.php:2444
437
  msgid "This link was manually marked as working by the user."
438
  msgstr "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
439
 
440
  # @ broken-link-checker
441
+ #: core/core.php:1842
442
  msgid "Couldn't modify link %d"
443
  msgstr "Link %d konnte nicht geändert werden"
444
 
445
  # @ broken-link-checker
446
+ #: core/core.php:1852
447
  msgid "%d link marked as not broken"
448
  msgid_plural "%d links marked as not broken"
449
  msgstr[0] "%d Link als nicht fehlerhaft markiert"
450
  msgstr[1] "%d Links als nicht fehlerhaft markiert"
451
 
452
  # @ broken-link-checker
453
+ #: core/core.php:1892
454
  msgid "Table columns"
455
  msgstr "Tabellenspalten"
456
 
457
  # @ default
458
+ #: core/core.php:1911
459
  msgid "Show on screen"
460
  msgstr "Auf dem Bildschirm anzeigen"
461
 
462
  # @ broken-link-checker
463
+ #: core/core.php:1918
464
  msgid "links"
465
  msgstr "Links"
466
 
467
  # @ default
468
  # @ broken-link-checker
469
+ #: core/core.php:1919
470
+ #: includes/admin/table-printer.php:165
471
  msgid "Apply"
472
  msgstr "Anwenden"
473
 
474
  # @ broken-link-checker
475
+ #: core/core.php:1923
476
  msgid "Misc"
477
  msgstr "Sonstige"
478
 
479
  # @ broken-link-checker
480
+ #: core/core.php:1938
481
  msgid "Highlight links broken for at least %s days"
482
  msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
483
 
484
  # @ broken-link-checker
485
+ #: core/core.php:1947
486
  msgid "Color-code status codes"
487
  msgstr "Farb-Code Status Codes"
488
 
489
  # @ broken-link-checker
490
+ #: core/core.php:1964
491
+ #: core/core.php:2429
492
+ #: core/core.php:2469
493
+ #: core/core.php:2502
494
+ #: core/core.php:2565
495
  msgid "You're not allowed to do that!"
496
  msgstr "Sie haben nicht die Erlaubnis das zu tun!"
497
 
498
  # @ broken-link-checker
499
+ #: core/core.php:2299
500
  msgid "View broken links"
501
  msgstr "Fehlerhafte Links anschauen"
502
 
503
  # @ broken-link-checker
504
+ #: core/core.php:2300
505
  msgid "Found %d broken link"
506
  msgid_plural "Found %d broken links"
507
  msgstr[0] "%d fehlerhafte Links gefunden"
508
  msgstr[1] "%d fehlerhafte Links gefunden"
509
 
510
  # @ broken-link-checker
511
+ #: core/core.php:2306
512
  msgid "No broken links found."
513
  msgstr "Keine fehlerhaften Links gefunden."
514
 
515
  # @ broken-link-checker
516
+ #: core/core.php:2313
517
  msgid "%d URL in the work queue"
518
  msgid_plural "%d URLs in the work queue"
519
  msgstr[0] "%d URL in der Warteschlange"
520
  msgstr[1] "%d URLs in der Warteschlange"
521
 
522
  # @ broken-link-checker
523
+ #: core/core.php:2316
524
  msgid "No URLs in the work queue."
525
  msgstr "Keine URLs in der Warteschlange."
526
 
527
  # @ broken-link-checker
528
+ #: core/core.php:2322
529
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
530
+ msgid "%d unique URL"
531
+ msgid_plural "%d unique URLs"
532
+ msgstr[0] "%d eindeutige URL"
533
+ msgstr[1] "%d eindeutige URLs"
534
 
535
  # @ broken-link-checker
536
+ #: core/core.php:2326
537
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
538
+ msgid "%d link"
539
+ msgid_plural "%d links"
540
+ msgstr[0] "%d link"
541
+ msgstr[1] "%d links"
542
 
543
  # @ broken-link-checker
544
+ #: core/core.php:2332
545
+ msgid "Detected %1$s in %2$s and still searching..."
546
+ msgstr "Endeckt %1$s in %2$s und sucht immer noch ..."
547
 
548
  # @ broken-link-checker
549
+ #: core/core.php:2338
550
+ msgid "Detected %1$s in %2$s."
551
+ msgstr "Endeckt %1$s in %2$s."
552
+
553
+ # @ broken-link-checker
554
+ #: core/core.php:2345
555
  msgid "Searching your blog for links..."
556
  msgstr "Durchsucht Ihr Blog nach Links ..."
557
 
558
  # @ broken-link-checker
559
+ #: core/core.php:2347
560
  msgid "No links detected."
561
  msgstr "Keine Links gefunden."
562
 
563
  # @ broken-link-checker
564
+ #: core/core.php:2373
565
  msgctxt "current load"
566
  msgid "Unknown"
567
  msgstr "Unbekannt"
568
 
569
  # @ broken-link-checker
570
+ #: core/core.php:2437
571
+ #: core/core.php:2477
572
+ #: core/core.php:2512
573
+ #: core/core.php:2575
574
  msgid "Oops, I can't find the link %d"
575
  msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
576
 
577
  # @ broken-link-checker
578
+ #: core/core.php:2450
579
+ #: core/core.php:2487
580
  msgid "Oops, couldn't modify the link!"
581
  msgstr "Hoppla, der Link konnte nicht geändert werden!"
582
 
583
  # @ broken-link-checker
584
+ #: core/core.php:2453
585
+ #: core/core.php:2490
586
+ #: core/core.php:2601
587
  msgid "Error : link_id not specified"
588
  msgstr "Fehler: Link ID nicht spezifiziert"
589
 
590
  # @ broken-link-checker
591
+ #: core/core.php:2522
592
  msgid "Oops, the new URL is invalid!"
593
  msgstr "Hoppla, die neue URL funktioniert nicht!"
594
 
595
  # @ broken-link-checker
596
+ #: core/core.php:2533
597
+ #: core/core.php:2584
598
  msgid "An unexpected error occured!"
599
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
600
 
601
  # @ broken-link-checker
602
+ #: core/core.php:2551
603
  msgid "Error : link_id or new_url not specified"
604
  msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
605
 
606
  # @ broken-link-checker
607
+ #: core/core.php:2610
608
  msgid "You don't have sufficient privileges to access this information!"
609
  msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
610
 
611
  # @ broken-link-checker
612
+ #: core/core.php:2623
613
  msgid "Error : link ID not specified"
614
  msgstr "Fehler: Link ID nicht spezifiziert"
615
 
616
  # @ broken-link-checker
617
+ #: core/core.php:2637
618
  msgid "Failed to load link details (%s)"
619
  msgstr "Laden der Link Details (%s) schlug fehl"
620
 
621
  # @ broken-link-checker
622
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.6.2) #-#-#-#-#
623
  #. Plugin Name of the plugin/theme
624
+ #: core/core.php:2690
625
  msgid "Broken Link Checker"
626
  msgstr "Broken Link Checker"
627
 
628
  # @ broken-link-checker
629
+ #: core/core.php:2710
630
  msgid "PHP version"
631
  msgstr "PHP Version"
632
 
633
  # @ broken-link-checker
634
+ #: core/core.php:2716
635
  msgid "MySQL version"
636
  msgstr "MySQL Version"
637
 
638
  # @ broken-link-checker
639
+ #: core/core.php:2729
640
  msgid "You have an old version of CURL. Redirect detection may not work properly."
641
  msgstr "Sie haben eine veraltete Version von CURL. Erkennung von Umleitungen funktioniert eventuell nicht."
642
 
643
  # @ broken-link-checker
644
+ #: core/core.php:2741
645
+ #: core/core.php:2757
646
+ #: core/core.php:2762
647
  msgid "Not installed"
648
  msgstr "Nicht installiert"
649
 
650
  # @ broken-link-checker
651
+ #: core/core.php:2744
652
  msgid "CURL version"
653
  msgstr "CURL Version"
654
 
655
  # @ broken-link-checker
656
+ #: core/core.php:2750
657
  msgid "Installed"
658
  msgstr "Installiert"
659
 
660
  # @ broken-link-checker
661
+ #: core/core.php:2763
662
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
663
  msgstr "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin funktioniert!"
664
 
665
  # @ broken-link-checker
666
+ #: core/core.php:2774
667
  msgid "On"
668
  msgstr "An"
669
 
670
  # @ broken-link-checker
671
+ #: core/core.php:2775
672
  msgid "Redirects may be detected as broken links when safe_mode is on."
673
  msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode aktiviert ist."
674
 
675
  # @ broken-link-checker
676
+ #: core/core.php:2780
677
+ #: core/core.php:2794
678
  msgid "Off"
679
  msgstr "Aus"
680
 
681
  # @ broken-link-checker
682
+ #: core/core.php:2788
683
  msgid "On ( %s )"
684
  msgstr "An (%s)"
685
 
686
  # @ broken-link-checker
687
+ #: core/core.php:2789
688
  msgid "Redirects may be detected as broken links when open_basedir is on."
689
  msgstr "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls open_basedir aktiviert ist."
690
 
691
  # @ broken-link-checker
692
+ #: core/core.php:2818
693
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
694
  msgstr "Wenn dieser Wert nach mehreren geladenen Seiten Null ist, ist wahrscheinlich ein Fehler aufgetreten."
695
 
696
  # @ broken-link-checker
697
+ #: core/core.php:2909
698
+ #: core/core.php:3007
699
  msgid "[%s] Broken links detected"
700
  msgstr "[%s] Fehlerhafte Links entdeckt"
701
 
702
  # @ broken-link-checker
703
+ #: core/core.php:2914
704
  msgid "Broken Link Checker has detected %d new broken link on your site."
705
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
706
  msgstr[0] "Broken Link Checker hat %d fehlerhaften Link auf Ihrer Webseite entdeckt."
707
  msgstr[1] "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
708
 
709
  # @ broken-link-checker
710
+ #: core/core.php:2937
711
  msgid "Here's a list of the first %d broken links:"
712
  msgid_plural "Here's a list of the first %d broken links:"
713
  msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
714
  msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
715
 
716
  # @ broken-link-checker
717
+ #: core/core.php:2946
718
  msgid "Here's a list of the new broken links: "
719
  msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
720
 
721
  # @ broken-link-checker
722
+ #: core/core.php:2955
723
  msgid "Link text : %s"
724
  msgstr "Linktext: %s"
725
 
726
  # @ broken-link-checker
727
+ #: core/core.php:2956
728
  msgid "Link URL : <a href=\"%s\">%s</a>"
729
  msgstr "Link URL: <a href=\"%s\">%s</a>"
730
 
731
  # @ broken-link-checker
732
+ #: core/core.php:2957
733
  msgid "Source : %s"
734
  msgstr "Quelle: %s"
735
 
736
  # @ brokenk-link-checker
737
+ #: core/core.php:2970
738
  msgid "You can see all broken links here:"
739
  msgstr "Hier sehen Sie alle fehlerhaften Links:"
740
 
741
  # @ broken-link-checker
742
+ #: core/core.php:3012
743
  msgid "Broken Link Checker has detected %d new broken link in your posts."
744
  msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
745
  msgstr[0] "Broken Link Checker hat %d fehlerhafter Link in einem Beitrag entdeckt."
746
  msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
747
 
748
  # @ default
749
+ #: core/init.php:235
750
  msgid "Once Weekly"
751
  msgstr "Einmal wöchentlich"
752
 
753
  # @ default
754
+ #: core/init.php:241
755
  msgid "Twice a Month"
756
  msgstr "Zweimal im Monat"
757
 
758
  # @ broken-link-checker
759
+ #: core/init.php:317
760
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
761
  msgstr "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin und aktivieren es anschliessend wieder."
762
 
766
  msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
767
 
768
  # @ broken-link-checker
769
+ #: includes/admin/links-page-js.php:55
770
+ #: includes/admin/links-page-js.php:403
771
  msgid "Wait..."
772
  msgstr "Warte ..."
773
 
774
  # @ broken-link-checker
775
+ #: includes/admin/links-page-js.php:100
776
+ #: includes/admin/table-printer.php:630
777
  msgid "Not broken"
778
  msgstr "Nicht fehlerhaft"
779
 
780
  # @ broken-link-checker
781
+ #: includes/admin/links-page-js.php:315
782
  msgid "%d instances of the link were successfully modified."
783
  msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
784
 
785
  # @ broken-link-checker
786
+ #: includes/admin/links-page-js.php:321
787
  msgid "However, %d instances couldn't be edited and still point to the old URL."
788
  msgstr "Allerdings, %d Instanzen konnten nicht bearbeitet werden und verweisen zudem noch auf die alte URL."
789
 
790
  # @ broken-link-checker
791
+ #: includes/admin/links-page-js.php:327
792
  msgid "The link could not be modified."
793
  msgstr "Der Link konnte nicht geändert werden."
794
 
795
  # @ broken-link-checker
796
+ #: includes/admin/links-page-js.php:330
797
+ #: includes/admin/links-page-js.php:455
798
  msgid "The following error(s) occured :"
799
  msgstr "Folgende Fehler sind aufgetreten:"
800
 
801
  # @ broken-link-checker
802
+ #: includes/admin/links-page-js.php:441
803
  msgid "%d instances of the link were successfully unlinked."
804
  msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
805
 
806
  # @ broken-link-checker
807
+ #: includes/admin/links-page-js.php:447
808
  msgid "However, %d instances couldn't be removed."
809
  msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
810
 
811
  # @ broken-link-checker
812
+ #: includes/admin/links-page-js.php:452
813
  msgid "The plugin failed to remove the link."
814
  msgstr "Das Plugin konnte den Link nicht entfernen."
815
 
816
  # @ broken-link-checker
817
+ #: includes/admin/links-page-js.php:463
818
+ #: includes/admin/table-printer.php:273
819
+ #: includes/admin/table-printer.php:624
820
  msgid "Unlink"
821
  msgstr "Link aufheben"
822
 
823
  # @ broken-link-checker
824
+ #: includes/admin/links-page-js.php:507
825
  msgid "Enter a name for the new custom filter"
826
  msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
827
 
828
  # @ broken-link-checker
829
+ #: includes/admin/links-page-js.php:518
830
  msgid ""
831
  "You are about to delete the current filter.\n"
832
  "'Cancel' to stop, 'OK' to delete"
835
  " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
836
 
837
  # @ broken-link-checker
838
+ #: includes/admin/links-page-js.php:538
839
  msgid ""
840
  "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
841
  "'Cancel' to stop, 'OK' to delete"
844
  " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
845
 
846
  # @ broken-link-checker
847
+ #: includes/admin/links-page-js.php:548
848
  msgid ""
849
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
850
  "'Cancel' to stop, 'OK' to remove"
852
  "Sind Sie sicher, dass Sie die ausgewählten Links entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden.\n"
853
  " 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
854
 
855
+ #: includes/admin/links-page-js.php:657
856
  msgid "Enter a search string first."
857
  msgstr "Geben Sie zuerst einen Suchbegriff ein."
858
 
859
+ #: includes/admin/links-page-js.php:664
860
  msgid "Select one or more links to edit."
861
  msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
862
 
877
 
878
  # @ broken-link-checker
879
  #: includes/admin/search-form.php:32
880
+ #: includes/link-query.php:65
881
  msgid "Search"
882
  msgstr "Suche"
883
 
888
 
889
  # @ broken-link-checker
890
  #: includes/admin/search-form.php:45
891
+ #: includes/admin/table-printer.php:202
892
  msgid "URL"
893
  msgstr "URL"
894
 
895
  # @ broken-link-checker
896
  #: includes/admin/search-form.php:48
897
+ #: includes/admin/table-printer.php:491
898
  msgid "HTTP code"
899
  msgstr "HTTP Code"
900
 
926
 
927
  # @ broken-link-checker
928
  #: includes/admin/search-form.php:113
929
+ #: includes/admin/table-printer.php:349
930
+ #: includes/admin/table-printer.php:652
931
+ #: includes/admin/table-printer.php:658
932
  msgid "Cancel"
933
  msgstr "Abbrechen"
934
 
935
+ #: includes/admin/sidebar.php:28
936
+ #: includes/admin/sidebar.php:68
937
+ msgid "More plugins by Janis Elsts"
938
+ msgstr "Weitere Plugins von Janis Elsts"
939
+
940
+ #: includes/admin/sidebar.php:85
941
  msgid "Donate $10, $20 or $50!"
942
  msgstr "Spenden Sie $10, $20 oder $50!"
943
 
944
+ #: includes/admin/sidebar.php:88
945
  msgid "If you like this plugin, please donate to support development and maintenance!"
946
  msgstr "Mögen Sie dieses Plugin, dann helfen Sie uns mit einer Spende für die Entwicklung und Wartung."
947
 
948
+ #: includes/admin/sidebar.php:106
949
  msgid "Return to WordPress Dashboard"
950
  msgstr "Zurück zum Wordpress Dashboard"
951
 
952
  # @ broken-link-checker
953
+ #: includes/admin/table-printer.php:179
954
  msgid "Compact View"
955
  msgstr "Kompaktansicht"
956
 
957
  # @ broken-link-checker
958
+ #: includes/admin/table-printer.php:180
959
  msgid "Detailed View"
960
  msgstr "Detailansicht"
961
 
962
  # @ broken-link-checker
963
+ #: includes/admin/table-printer.php:209
964
  msgid "Source"
965
  msgstr "Quelle"
966
 
967
  # @ broken-link-checker
968
+ #: includes/admin/table-printer.php:215
969
  msgid "Link Text"
970
  msgstr "Linktext"
971
 
972
  # @ broken-link-checker
973
+ #: includes/admin/table-printer.php:220
974
+ msgid "Redirect URL"
975
+ msgstr "URL umleiten"
976
+
977
+ # @ broken-link-checker
978
+ #: includes/admin/table-printer.php:268
979
  msgid "Bulk Actions"
980
  msgstr "Massenänderung"
981
 
982
  # @ broken-link-checker
983
+ #: includes/admin/table-printer.php:269
984
+ #: includes/admin/table-printer.php:621
985
  msgid "Edit URL"
986
  msgstr "Bearbeite URL"
987
 
988
  # @ broken-link-checker
989
+ #: includes/admin/table-printer.php:270
990
  msgid "Recheck"
991
  msgstr "Erneut überprüfen"
992
 
993
  # @ broken-link-checker
994
+ #: includes/admin/table-printer.php:271
995
  msgid "Fix redirects"
996
  msgstr "Feste Umleitungen"
997
 
998
  # @ broken-link-checker
999
+ #: includes/admin/table-printer.php:272
1000
  msgid "Mark as not broken"
1001
  msgstr "Als nicht fehlerhaft markieren"
1002
 
1003
  # @ broken-link-checker
1004
+ #: includes/admin/table-printer.php:276
1005
  msgid "Move sources to Trash"
1006
  msgstr "Verschiebe Quelle in den Papierkorb"
1007
 
1008
  # @ broken-link-checker
1009
+ #: includes/admin/table-printer.php:278
1010
  msgid "Delete sources"
1011
  msgstr "Quellen löschen"
1012
 
1013
  # @ default
1014
+ #: includes/admin/table-printer.php:293
1015
  msgid "&laquo;"
1016
  msgstr "&laquo;"
1017
 
1018
  # @ default
1019
+ #: includes/admin/table-printer.php:294
1020
  msgid "&raquo;"
1021
  msgstr "&raquo;"
1022
 
1023
  # @ broken-link-checker
1024
+ #: includes/admin/table-printer.php:302
1025
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1026
  msgstr "Anzeigen %s&#8211;%s von <span class=\"current-link-count\">%s</span>"
1027
 
1028
  # @ broken-link-checker
1029
+ #: includes/admin/table-printer.php:325
1030
  msgid "Bulk Edit URLs"
1031
  msgstr "Mehrere URLs bearbeiten"
1032
 
1033
+ #: includes/admin/table-printer.php:327
1034
  msgid "Find"
1035
  msgstr "Finden"
1036
 
1037
+ #: includes/admin/table-printer.php:331
1038
  msgid "Replace with"
1039
  msgstr "Ersetzen mit"
1040
 
1041
  # @ broken-link-checker
1042
+ #: includes/admin/table-printer.php:339
1043
  msgid "Case sensitive"
1044
  msgstr "Gross- und Kleinschreibung"
1045
 
1046
+ #: includes/admin/table-printer.php:343
1047
  msgid "Regular expression"
1048
  msgstr "Regulärer Ausdruck"
1049
 
1050
  # @ broken-link-checker
1051
+ #: includes/admin/table-printer.php:351
1052
  msgid "Update"
1053
  msgstr "Aktualisieren"
1054
 
1055
  # @ broken-link-checker
1056
+ #: includes/admin/table-printer.php:476
1057
  msgid "Post published on"
1058
  msgstr "Beitrag publiziert am"
1059
 
1060
  # @ broken-link-checker
1061
+ #: includes/admin/table-printer.php:481
1062
  msgid "Link last checked"
1063
  msgstr "Link zuletzt geprüft"
1064
 
1065
  # @ broken-link-checker
1066
+ #: includes/admin/table-printer.php:485
1067
  msgid "Never"
1068
  msgstr "Nie"
1069
 
1070
  # @ broken-link-checker
1071
+ #: includes/admin/table-printer.php:496
1072
  msgid "Response time"
1073
  msgstr "Reaktionszeit"
1074
 
1075
  # @ broken-link-checker
1076
+ #: includes/admin/table-printer.php:498
1077
  msgid "%2.3f seconds"
1078
  msgstr "%2.3f Sekunden"
1079
 
1080
  # @ broken-link-checker
1081
+ #: includes/admin/table-printer.php:501
1082
  msgid "Final URL"
1083
  msgstr "Endgültige URL"
1084
 
1085
  # @ broken-link-checker
1086
+ #: includes/admin/table-printer.php:506
1087
  msgid "Redirect count"
1088
  msgstr "Weiterleitung Anzahl"
1089
 
1090
  # @ broken-link-checker
1091
+ #: includes/admin/table-printer.php:511
1092
  msgid "Instance count"
1093
  msgstr "Instanz Anzahl"
1094
 
1095
  # @ broken-link-checker
1096
+ #: includes/admin/table-printer.php:520
1097
  msgid "This link has failed %d time."
1098
  msgid_plural "This link has failed %d times."
1099
  msgstr[0] "Dieser Link schlug %d mal fehl."
1100
  msgstr[1] "Dieser Link schlug %d mal fehl."
1101
 
1102
  # @ broken-link-checker
1103
+ #: includes/admin/table-printer.php:528
1104
  msgid "This link has been broken for %s."
1105
  msgstr "Dieser Links ist fehlerhaft seit %s."
1106
 
1107
  # @ broken-link-checker
1108
+ #: includes/admin/table-printer.php:539
1109
  msgid "Log"
1110
  msgstr "Log"
1111
 
1112
  # @ broken-link-checker
1113
+ #: includes/admin/table-printer.php:564
1114
  msgid "Show more info about this link"
1115
  msgstr "Mehr Informationen über diesen Link anzeigen"
1116
 
1117
  # @ broken-link-checker
1118
+ #: includes/admin/table-printer.php:582
1119
  msgctxt "checked how long ago"
1120
  msgid "Checked"
1121
  msgstr "Geprüft"
1122
 
1123
  # @ broken-link-checker
1124
+ #: includes/admin/table-printer.php:598
1125
  msgid "Broken for"
1126
  msgstr "Fehlerhaft für"
1127
 
1128
  # @ broken-link-checker
1129
+ #: includes/admin/table-printer.php:621
1130
  msgid "Edit link URL"
1131
  msgstr "Bearbeite URL Link"
1132
 
1133
  # @ broken-link-checker
1134
+ #: includes/admin/table-printer.php:623
1135
  msgid "Remove this link from all posts"
1136
  msgstr "Löschen Sie diesen Link von allen Beiträgen"
1137
 
1138
  # @ broken-link-checker
1139
+ #: includes/admin/table-printer.php:629
1140
  msgid "Remove this link from the list of broken links and mark it as valid"
1141
  msgstr "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als gültig"
1142
 
1143
+ #: includes/admin/table-printer.php:637
1144
+ msgid "Hide this link and do not report it again unless its status changes"
1145
+ msgstr "Verstecken Sie diesen Link und melden ihn nicht wieder, auch wenn sein Status ändert"
1146
+
1147
+ #: includes/admin/table-printer.php:638
1148
+ msgid "Dismiss"
1149
+ msgstr "Ausblenden"
1150
+
1151
+ #: includes/admin/table-printer.php:643
1152
+ msgid "Undismiss this link"
1153
+ msgstr "Link wieder einblenden"
1154
+
1155
+ #: includes/admin/table-printer.php:644
1156
+ msgid "Undismiss"
1157
+ msgstr "Einblenden"
1158
+
1159
  # @ broken-link-checker
1160
+ #: includes/admin/table-printer.php:652
1161
  msgid "Cancel URL editing"
1162
  msgstr "URL Bearbeitung abbrechen"
1163
 
1164
  # @ broken-link-checker
1165
+ #: includes/admin/table-printer.php:659
1166
  msgid "Update URL"
1167
  msgstr "Aktualisiere URL"
1168
 
1169
  # @ broken-link-checker
1170
+ #: includes/admin/table-printer.php:686
1171
  msgid "[An orphaned link! This is a bug.]"
1172
  msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
1173
 
1450
  msgstr "Parser '%s' nicht gefunden."
1451
 
1452
  # @ broken-link-checker
1453
+ #: includes/link-query.php:26
1454
  msgid "Broken"
1455
  msgstr "Fehlerhaft"
1456
 
1457
  # @ broken-link-checker
1458
+ #: includes/link-query.php:28
1459
  msgid "No broken links found"
1460
  msgstr "Keine fehlerhaften Links gefunden"
1461
 
1462
  # @ broken-link-checker
1463
+ #: includes/link-query.php:36
1464
  msgid "Redirects"
1465
  msgstr "Umleitungen"
1466
 
1467
  # @ broken-link-checker
1468
+ #: includes/link-query.php:37
1469
  msgid "Redirected Links"
1470
  msgstr "Umgeleitete Links"
1471
 
1472
  # @ broken-link-checker
1473
+ #: includes/link-query.php:38
1474
  msgid "No redirects found"
1475
  msgstr "Keine umgeleiteten Links gefunden"
1476
 
1477
+ #: includes/link-query.php:46
1478
+ msgid "Dismissed"
1479
+ msgstr "Ausgeblendete"
1480
+
1481
+ # @ broken-link-checker
1482
+ #: includes/link-query.php:47
1483
+ msgid "Dismissed Links"
1484
+ msgstr "Ausgeblendete Links"
1485
+
1486
+ # @ broken-link-checker
1487
+ #: includes/link-query.php:48
1488
+ msgid "No dismissed links found"
1489
+ msgstr "Keine ausgeblendeten Links gefunden"
1490
+
1491
  # @ broken-link-checker
1492
+ #: includes/link-query.php:56
1493
  msgid "All"
1494
  msgstr "Alle"
1495
 
1496
  # @ broken-link-checker
1497
+ #: includes/link-query.php:57
1498
  msgid "Detected Links"
1499
  msgstr "Gefundene Links"
1500
 
1501
  # @ broken-link-checker
1502
+ #: includes/link-query.php:58
1503
  msgid "No links found (yet)"
1504
  msgstr "(Noch) keine Links gefunden"
1505
 
1506
  # @ broken-link-checker
1507
+ #: includes/link-query.php:66
1508
  msgid "Search Results"
1509
  msgstr "Such Resultat"
1510
 
1511
  # @ broken-link-checker
1512
+ #: includes/link-query.php:67
1513
+ #: includes/link-query.php:114
1514
  msgid "No links found for your query"
1515
  msgstr "Keine Links für Deine Anfrage gefunden"
1516
 
1517
  # @ broken-link-checker
1518
+ #: includes/links.php:218
1519
  msgid "The plugin script was terminated while trying to check the link."
1520
  msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
1521
 
1522
  # @ broken-link-checker
1523
+ #: includes/links.php:264
1524
  msgid "The plugin doesn't know how to check this type of link."
1525
  msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
1526
 
1527
  # @ broken-link-checker
1528
+ #: includes/links.php:357
1529
  msgid "Link is valid."
1530
  msgstr "Link ist valide."
1531
 
1532
  # @ broken-link-checker
1533
+ #: includes/links.php:359
1534
  msgid "Link is broken."
1535
  msgstr "Link ist fehlerhaft."
1536
 
1537
  # @ broken-link-checker
1538
+ #: includes/links.php:571
1539
+ #: includes/links.php:673
1540
+ #: includes/links.php:700
1541
  msgid "Link is not valid"
1542
  msgstr "Link ist nicht gültig"
1543
 
1544
  # @ broken-link-checker
1545
+ #: includes/links.php:588
1546
  msgid "This link can not be edited because it is not used anywhere on this site."
1547
  msgstr "Dieser Link kann nicht bearbeitet werden, weil er nicht überall auf dieser Website verwendet wird."
1548
 
1549
  # @ broken-link-checker
1550
+ #: includes/links.php:614
1551
  msgid "Failed to create a DB entry for the new URL."
1552
  msgstr "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
1553
 
1554
  # @ broken-link-checker
1555
+ #: includes/links.php:680
1556
  msgid "This link is not a redirect"
1557
  msgstr "Dieser Link ist keine Umleitung"
1558
 
1559
  # @ broken-link-checker
1560
+ #: includes/links.php:727
1561
+ #: includes/links.php:764
1562
  msgid "Couldn't delete the link's database record"
1563
  msgstr "Links können nicht aus der Datenbank gelöscht werden"
1564
 
1565
  # @ broken-link-checker
1566
+ #: includes/links.php:838
1567
  msgctxt "link status"
1568
  msgid "Unknown"
1569
  msgstr "Unbekannt"
1570
 
1571
  # @ link status
1572
  # @ broken-link-checker
1573
+ #: includes/links.php:852
1574
  #: modules/checkers/http.php:264
1575
  #: modules/extras/mediafire.php:101
1576
  msgid "Unknown Error"
1577
  msgstr "Unbekannter Fehler"
1578
 
1579
  # @ broken-link-checker
1580
+ #: includes/links.php:876
1581
  msgid "Not checked"
1582
  msgstr "Nicht überprüft"
1583
 
1584
  # @ broken-link-checker
1585
+ #: includes/links.php:879
1586
  msgid "False positive"
1587
  msgstr "Falsch positiv"
1588
 
1589
  # @ broken-link-checker
1590
+ #: includes/links.php:882
1591
  #: modules/extras/fileserve.php:121
1592
  #: modules/extras/megaupload.php:115
1593
  #: modules/extras/rapidshare.php:145
1608
  msgstr "Aufheben der Verknüpfung ist nicht im '%s' Parser implementiert"
1609
 
1610
  # @ default
1611
+ #: includes/utility-class.php:245
1612
  msgid "%d second"
1613
  msgid_plural "%d seconds"
1614
  msgstr[0] "%s Sekunde"
1615
  msgstr[1] "%s Sekunden"
1616
 
1617
  # @ default
1618
+ #: includes/utility-class.php:246
1619
  msgid "%d second ago"
1620
  msgid_plural "%d seconds ago"
1621
  msgstr[0] "%s Sekunde vergangen"
1622
  msgstr[1] "%s Sekunden vergangen"
1623
 
1624
  # @ default
1625
+ #: includes/utility-class.php:249
1626
  msgid "%d minute"
1627
  msgid_plural "%d minutes"
1628
  msgstr[0] "%d Minute"
1629
  msgstr[1] "%d Minuten"
1630
 
1631
  # @ default
1632
+ #: includes/utility-class.php:250
1633
  msgid "%d minute ago"
1634
  msgid_plural "%d minutes ago"
1635
  msgstr[0] "%d Minute vergangen"
1636
  msgstr[1] "%d Minuten vergangen"
1637
 
1638
  # @ default
1639
+ #: includes/utility-class.php:253
1640
  msgid "%d hour"
1641
  msgid_plural "%d hours"
1642
  msgstr[0] "%d Stunde"
1643
  msgstr[1] "%d Stunden"
1644
 
1645
  # @ default
1646
+ #: includes/utility-class.php:254
1647
  msgid "%d hour ago"
1648
  msgid_plural "%d hours ago"
1649
  msgstr[0] "%d Stunde vergangen"
1650
  msgstr[1] "%d Stunden vergangen"
1651
 
1652
  # @ default
1653
+ #: includes/utility-class.php:257
1654
  msgid "%d day"
1655
  msgid_plural "%d days"
1656
  msgstr[0] "%d Tag"
1657
  msgstr[1] "%d Tage"
1658
 
1659
  # @ default
1660
+ #: includes/utility-class.php:258
1661
  msgid "%d day ago"
1662
  msgid_plural "%d days ago"
1663
  msgstr[0] "%d Tag vergangen"
1664
  msgstr[1] "%d Tage vergangen"
1665
 
1666
  # @ default
1667
+ #: includes/utility-class.php:261
1668
  msgid "%d month"
1669
  msgid_plural "%d months"
1670
  msgstr[0] "%d Monat"
1671
  msgstr[1] "%d Monate"
1672
 
1673
  # @ default
1674
+ #: includes/utility-class.php:262
1675
  msgid "%d month ago"
1676
  msgid_plural "%d months ago"
1677
  msgstr[0] "%d Monat vergangen"
languages/broken-link-checker-fi.mo ADDED
Binary file
languages/broken-link-checker-fi.po ADDED
@@ -0,0 +1,1675 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012 Broken Link Checker
2
+ # This file is distributed under the same license as the Broken Link Checker package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Broken Link Checker 1.4\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
7
+ "POT-Creation-Date: 2012-03-27 09:01:12+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2012-10-07 11:35+0200\n"
12
+ "Last-Translator: \n"
13
+ "Language-Team: \n"
14
+ "X-Generator: Poedit 1.5.3\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+ "Language: fi\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+
19
+ #: core/core.php:146 includes/admin/links-page-js.php:37
20
+ msgid "Loading..."
21
+ msgstr "Ladataan..."
22
+
23
+ #: core/core.php:170 includes/admin/options-page-js.php:18
24
+ msgid "[ Network error ]"
25
+ msgstr "[ Verkkovirhe ]"
26
+
27
+ #: core/core.php:195
28
+ msgid "Automatically expand the widget if broken links have been detected"
29
+ msgstr ""
30
+ "Laajenna vimpain automaattisesti mikäli rikkinäisiä linkkejä on havattu"
31
+
32
+ #: core/core.php:285
33
+ msgid "Link Checker Settings"
34
+ msgstr "Linkkien tarkistuksen asetukset"
35
+
36
+ #: core/core.php:286
37
+ msgid "Link Checker"
38
+ msgstr "Linkkien tarkistus"
39
+
40
+ #: core/core.php:291 includes/link-query.php:26
41
+ msgid "Broken Links"
42
+ msgstr "Rikkinäiset linkit"
43
+
44
+ #: core/core.php:307
45
+ msgid "View Broken Links"
46
+ msgstr "Näytä rikkinäiset linkit"
47
+
48
+ #: core/core.php:322
49
+ msgid "Feedback"
50
+ msgstr "Palaute"
51
+
52
+ #: core/core.php:330 includes/admin/sidebar.php:18
53
+ msgid "More plugins by Janis Elsts"
54
+ msgstr "Lisää lisäosia tekijältä Janis Elsts"
55
+
56
+ #: core/core.php:337
57
+ msgid "Go to Broken Links"
58
+ msgstr "Siirry rikkinäisiin linkkeihin"
59
+
60
+ #: core/core.php:366
61
+ msgid "Settings"
62
+ msgstr "Asetukset"
63
+
64
+ #: core/core.php:378 core/core.php:1167
65
+ msgid ""
66
+ "Error: The plugin's database tables are not up to date! (Current version : "
67
+ "%d, expected : %d)"
68
+ msgstr ""
69
+ "Virhe: Lisäosan tietokannan taulut eivät ole ajantasalla! (Nykyinen versio : "
70
+ "%d, odotettiin : %d)"
71
+
72
+ #: core/core.php:382 core/core.php:1171
73
+ msgid "Try deactivating and then reactivating the plugin."
74
+ msgstr ""
75
+ "Kokeile lisäosan poistamista käytöstä ja sitten lisäosan uudelleen "
76
+ "aktivointia."
77
+
78
+ #: core/core.php:521
79
+ msgid "Settings saved."
80
+ msgstr "Asetukset tallennettu."
81
+
82
+ #: core/core.php:527
83
+ msgid "Thank you for your donation!"
84
+ msgstr "Kiitos lahjoituksesta!"
85
+
86
+ #: core/core.php:534
87
+ msgid "Complete site recheck started."
88
+ msgstr "Koko sivuston uudelleentarkistus aloitettu."
89
+
90
+ #: core/core.php:543
91
+ msgid "Details"
92
+ msgstr "Yksityiskohdat"
93
+
94
+ #: core/core.php:557
95
+ msgid "General"
96
+ msgstr "Yleinen"
97
+
98
+ #: core/core.php:558
99
+ msgid "Look For Links In"
100
+ msgstr "Etsi linkkejä"
101
+
102
+ #: core/core.php:559
103
+ msgid "Which Links To Check"
104
+ msgstr "Mitä linkkejä tarkistetaan"
105
+
106
+ #: core/core.php:560
107
+ msgid "Protocols & APIs"
108
+ msgstr "Protokollat & API:t"
109
+
110
+ #: core/core.php:561
111
+ msgid "Advanced"
112
+ msgstr "Lisäasetukset"
113
+
114
+ #: core/core.php:576
115
+ msgid "Broken Link Checker Options"
116
+ msgstr "Rikkinäisten linkkientarkastuksen asetukset"
117
+
118
+ #: core/core.php:618 includes/admin/table-printer.php:195
119
+ msgid "Status"
120
+ msgstr "Tila"
121
+
122
+ #: core/core.php:620 includes/admin/options-page-js.php:56
123
+ msgid "Show debug info"
124
+ msgstr "Näytä debug-tiedot"
125
+
126
+ #: core/core.php:648
127
+ msgid "Check each link"
128
+ msgstr "Tarkista jokainen linkki"
129
+
130
+ #: core/core.php:653
131
+ msgid "Every %s hours"
132
+ msgstr "Joka %s tunti"
133
+
134
+ #: core/core.php:662
135
+ msgid ""
136
+ "Existing links will be checked this often. New links will usually be checked "
137
+ "ASAP."
138
+ msgstr ""
139
+ "Olemassa olevat linkit tarkastetaan näin usein. Uudet linkit tarkastetaan "
140
+ "yleensä heti kun se on mahdollista."
141
+
142
+ #: core/core.php:669
143
+ msgid "E-mail notifications"
144
+ msgstr "Sähköposti-ilmoitukset"
145
+
146
+ #: core/core.php:675
147
+ msgid "Send me e-mail notifications about newly detected broken links"
148
+ msgstr ""
149
+ "Lähetä sähköposti-ilmoituksia uusista havaituista rikkinäisistä linkeistä"
150
+
151
+ #: core/core.php:683
152
+ msgid "Send authors e-mail notifications about broken links in their posts"
153
+ msgstr ""
154
+ "Lähetä tekijöille sähköposti-ilmoituksia rikkinäisistä linkeistä heidän "
155
+ "artikkeleissaan"
156
+
157
+ #: core/core.php:690
158
+ msgid "Link tweaks"
159
+ msgstr "Linkkien lisätoiminnot"
160
+
161
+ #: core/core.php:696
162
+ msgid "Apply custom formatting to broken links"
163
+ msgstr "Käytä mukautettua muotoilua rikkinäisille linkeille"
164
+
165
+ #: core/core.php:700 core/core.php:730
166
+ msgid "Edit CSS"
167
+ msgstr "Muokkaa CSS"
168
+
169
+ #: core/core.php:715
170
+ msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
171
+ msgstr "Esimerkki : Lorem ipsum <a %s>rikkinäinen linkki</a>, dolor sit amet."
172
+
173
+ #: core/core.php:718 core/core.php:749
174
+ msgid "Click \"Save Changes\" to update example output."
175
+ msgstr "Napsauta \"Tallenna muutokset\" päivittääksesi esimerkin ulosannin."
176
+
177
+ #: core/core.php:726
178
+ msgid "Apply custom formatting to removed links"
179
+ msgstr "Käytä mukautettua muotoilua poistetuille linkeille"
180
+
181
+ #: core/core.php:746
182
+ msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
183
+ msgstr ""
184
+ "Esimerkki : Lorem ipsum <span %s>poistettu linkki</span>, dolor sit amet."
185
+
186
+ #: core/core.php:759
187
+ msgid "Stop search engines from following broken links"
188
+ msgstr "Estä hakupalveluita seuraamasta rikkinäisiä linkkejä"
189
+
190
+ #: core/core.php:776
191
+ msgid "Look for links in"
192
+ msgstr "Etsi linkkejä"
193
+
194
+ #: core/core.php:787
195
+ msgid "Post statuses"
196
+ msgstr "Artikkelien tilat"
197
+
198
+ #: core/core.php:820
199
+ msgid "Link types"
200
+ msgstr "Linkkityypit"
201
+
202
+ #: core/core.php:826
203
+ msgid "Error : All link parsers missing!"
204
+ msgstr "Virhe : Kaikki linkkijäsentimet puuttuvat!"
205
+
206
+ #: core/core.php:833
207
+ msgid "Exclusion list"
208
+ msgstr "Pois suljetut"
209
+
210
+ #: core/core.php:834
211
+ msgid ""
212
+ "Don't check links where the URL contains any of these words (one per line) :"
213
+ msgstr ""
214
+ "Älä tarkasta linkkejä joiden URL-osoite sisältää minkä tahansa näistä "
215
+ "sanoista (yksi per rivi):"
216
+
217
+ #: core/core.php:852
218
+ msgid "Check links using"
219
+ msgstr "Tarkista linkit käyttäen"
220
+
221
+ #: core/core.php:871 includes/links.php:849
222
+ msgid "Timeout"
223
+ msgstr "Aikakatkaisu"
224
+
225
+ #: core/core.php:877 core/core.php:923 core/core.php:2732
226
+ msgid "%s seconds"
227
+ msgstr "%s sekuntia"
228
+
229
+ #: core/core.php:886
230
+ msgid "Links that take longer than this to load will be marked as broken."
231
+ msgstr ""
232
+ "Linkit joiden avaaminen kestää kauemmin kuin tämän merkitään rikkinäisiksi."
233
+
234
+ #: core/core.php:893
235
+ msgid "Link monitor"
236
+ msgstr "Linkkien valvonta"
237
+
238
+ #: core/core.php:901
239
+ msgid "Run continuously while the Dashboard is open"
240
+ msgstr "Suorita toistuvasti kun ohjausnäkymä on auki"
241
+
242
+ #: core/core.php:909
243
+ msgid "Run hourly in the background"
244
+ msgstr "Suorita tunnin välein taustalla"
245
+
246
+ #: core/core.php:917
247
+ msgid "Max. execution time"
248
+ msgstr "Maksimi suoritusaika"
249
+
250
+ #: core/core.php:934
251
+ msgid ""
252
+ "The plugin works by periodically launching a background job that parses your "
253
+ "posts for links, checks the discovered URLs, and performs other time-"
254
+ "consuming tasks. Here you can set for how long, at most, the link monitor "
255
+ "may run each time before stopping."
256
+ msgstr ""
257
+ "Lisäosa toimii määräajoin ajettavilla taustatehtävillä joka jäsentää "
258
+ "artikkelisi linkkejä, tarkistaa havaitut URL-osoitteet ja suorittaa muita "
259
+ "aikaa vieviä tehtäviä. Voit asettaa tässä kuinka kauan, korkeintaan, "
260
+ "linkkienvalvonta voi toimia ennen pysäyttämistä."
261
+
262
+ #: core/core.php:943
263
+ msgid "Server load limit"
264
+ msgstr "Palvelimen kuormitusraja"
265
+
266
+ #: core/core.php:958
267
+ msgid "Current load : %s"
268
+ msgstr "Nykyinen kuorma : %s"
269
+
270
+ #: core/core.php:963
271
+ msgid ""
272
+ "Link checking will be suspended if the average <a href=\"%s\">server load</"
273
+ "a> rises above this number. Leave this field blank to disable load limiting."
274
+ msgstr ""
275
+ "Linkkien tarkastus pysäytetään mikäli keskimääräinen <a href=\"%s"
276
+ "\">palvelimen kuorma</a> nousee yli tämän arvon. Jätä tämä kenttä tyhjäksi "
277
+ "poistaaksesi kuormituksenrajoituksen käytöstä."
278
+
279
+ #: core/core.php:972
280
+ msgid "Not available"
281
+ msgstr "Ei saatavilla"
282
+
283
+ #: core/core.php:974
284
+ msgid ""
285
+ "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
286
+ "code> is present and accessible."
287
+ msgstr ""
288
+ "Kuorman rajoitus toimii ainoastaan Linux-tyyppisissä järjestelmissä mistä "
289
+ "löytyy <code>/proc/loadavg</code> ja se on käytettävissä."
290
+
291
+ #: core/core.php:982
292
+ msgid "Forced recheck"
293
+ msgstr "Pakotettu uudelleentarkistus"
294
+
295
+ #: core/core.php:985
296
+ msgid "Re-check all pages"
297
+ msgstr "Tarkista kaikki sivut uudelleen"
298
+
299
+ #: core/core.php:989
300
+ msgid ""
301
+ "The \"Nuclear Option\". Click this button to make the plugin empty its link "
302
+ "database and recheck the entire site from scratch."
303
+ msgstr ""
304
+ "\"Ydinase-valinta\". Napsauta tätä painiketta pakottaaksesi lisäosan "
305
+ "tyhjentämään linkkitietokantansa ja tarkistamaan uudelleen koko sivuston "
306
+ "alusta alkaen."
307
+
308
+ #: core/core.php:1000
309
+ msgid "Save Changes"
310
+ msgstr "Tallenna muutokset"
311
+
312
+ #: core/core.php:1051
313
+ msgid "Configure"
314
+ msgstr "Määrittele"
315
+
316
+ #: core/core.php:1133
317
+ msgid "Check URLs entered in these custom fields (one per line) :"
318
+ msgstr "Tarkista näihin kenttiin syötetyt URL-osoitteet (yksi per rivi) :"
319
+
320
+ #: core/core.php:1270 core/core.php:1351 core/core.php:1383
321
+ msgid "Database error : %s"
322
+ msgstr "Tietokantavirhe : %s"
323
+
324
+ #: core/core.php:1333
325
+ msgid "You must enter a filter name!"
326
+ msgstr "Suodattimen nimi vaaditaan!"
327
+
328
+ #: core/core.php:1337
329
+ msgid "Invalid search query."
330
+ msgstr "Virheellinen hakulause."
331
+
332
+ #: core/core.php:1346
333
+ msgid "Filter \"%s\" created"
334
+ msgstr "Suodatin \"%s\" luotu"
335
+
336
+ #: core/core.php:1373
337
+ msgid "Filter ID not specified."
338
+ msgstr "Suodattimen ID:tä ei ole määritelty."
339
+
340
+ #: core/core.php:1380
341
+ msgid "Filter deleted"
342
+ msgstr "Suodatin poistettu"
343
+
344
+ #: core/core.php:1427
345
+ msgid "Replaced %d redirect with a direct link"
346
+ msgid_plural "Replaced %d redirects with direct links"
347
+ msgstr[0] "Uudelleenohjaus %d korvattu suoralla linkillä"
348
+ msgstr[1] "Uudelleenohjaukset %d korvattu suorilla linkeillä"
349
+
350
+ #: core/core.php:1438
351
+ msgid "Failed to fix %d redirect"
352
+ msgid_plural "Failed to fix %d redirects"
353
+ msgstr[0] "Uudelleenohjauksen %d korjaus epäonnistui"
354
+ msgstr[1] "Uudelleenohjausten %d korjaus epäonnistui"
355
+
356
+ #: core/core.php:1449
357
+ msgid "None of the selected links are redirects!"
358
+ msgstr "Mikään valituista linkeistä ei ole uudelleenohjaus!"
359
+
360
+ #: core/core.php:1527
361
+ msgid "%d link updated."
362
+ msgid_plural "%d links updated."
363
+ msgstr[0] "Linkki %d päivitetty."
364
+ msgstr[1] "Linkit %d päivitetty."
365
+
366
+ #: core/core.php:1538
367
+ msgid "Failed to update %d link."
368
+ msgid_plural "Failed to update %d links."
369
+ msgstr[0] "Linkin %d päivitys epäonnistui."
370
+ msgstr[1] "Linkkien %d päivitys epäonnistui."
371
+
372
+ #: core/core.php:1592
373
+ msgid "%d link removed"
374
+ msgid_plural "%d links removed"
375
+ msgstr[0] "Linkki %d poistettu"
376
+ msgstr[1] "Linkit %d poistettu"
377
+
378
+ #: core/core.php:1603
379
+ msgid "Failed to remove %d link"
380
+ msgid_plural "Failed to remove %d links"
381
+ msgstr[0] "Linkin %d poistaminen epäonnistui"
382
+ msgstr[1] "Linkkien %d poistaminen epäonnistui"
383
+
384
+ #: core/core.php:1712
385
+ msgid ""
386
+ "%d item was skipped because it can't be moved to the Trash. You need to "
387
+ "delete it manually."
388
+ msgid_plural ""
389
+ "%d items were skipped because they can't be moved to the Trash. You need to "
390
+ "delete them manually."
391
+ msgstr[0] ""
392
+ "%d kohde ohitettiin koska sitä ei voitu siirtää roskakoriin. Sinun täytyy "
393
+ "poistaa se käsin."
394
+ msgstr[1] ""
395
+ "%d kohdetta ohitettiin koska niitä ei voitu siirtää roskakoriin. Sinun "
396
+ "täytyy poistaa ne käsin."
397
+
398
+ #: core/core.php:1734
399
+ msgid "Didn't find anything to delete!"
400
+ msgstr "Mitään poistettavaa ei löytynyt!"
401
+
402
+ #: core/core.php:1762
403
+ msgid "%d link scheduled for rechecking"
404
+ msgid_plural "%d links scheduled for rechecking"
405
+ msgstr[0] "%d linkki aikataulutettu uudelleentarkastukseen"
406
+ msgstr[1] "%d linkkiä aikataulutettu uudelleentarkastukseen"
407
+
408
+ #: core/core.php:1808 core/core.php:2412
409
+ msgid "This link was manually marked as working by the user."
410
+ msgstr "Käyttäjä on merkinnyt tämän linkin toimivaksi."
411
+
412
+ #: core/core.php:1815
413
+ msgid "Couldn't modify link %d"
414
+ msgstr "Ei voitu muokata linkkiä %d"
415
+
416
+ #: core/core.php:1825
417
+ msgid "%d link marked as not broken"
418
+ msgid_plural "%d links marked as not broken"
419
+ msgstr[0] "%d linkki merkitty ei rikkinäiseksi"
420
+ msgstr[1] "%d linkkiä merkitty ei rikkinäisiksi"
421
+
422
+ #: core/core.php:1865
423
+ msgid "Table columns"
424
+ msgstr "Taulukon sarakkeet"
425
+
426
+ #: core/core.php:1884
427
+ msgid "Show on screen"
428
+ msgstr "Näytä ruudulla"
429
+
430
+ #: core/core.php:1891
431
+ msgid "links"
432
+ msgstr "linkit"
433
+
434
+ #: core/core.php:1892 includes/admin/table-printer.php:163
435
+ msgid "Apply"
436
+ msgstr "Käytä"
437
+
438
+ #: core/core.php:1896
439
+ msgid "Misc"
440
+ msgstr "Sekalaiset"
441
+
442
+ #: core/core.php:1911
443
+ msgid "Highlight links broken for at least %s days"
444
+ msgstr "Korosta linkkejä, jotka ovat olleet rikki ainekin %s päivää"
445
+
446
+ #: core/core.php:1920
447
+ msgid "Color-code status codes"
448
+ msgstr "Tilakoodien väriarvot"
449
+
450
+ #: core/core.php:1937 core/core.php:2397 core/core.php:2433 core/core.php:2496
451
+ msgid "You're not allowed to do that!"
452
+ msgstr "Tämä ei ole sallittua!"
453
+
454
+ #: core/core.php:2278
455
+ msgid "View broken links"
456
+ msgstr "Näytä rikkinäiset linkit"
457
+
458
+ #: core/core.php:2279
459
+ msgid "Found %d broken link"
460
+ msgid_plural "Found %d broken links"
461
+ msgstr[0] "Löydettiin %d rikkinäinen linkki"
462
+ msgstr[1] "Löydettiin %d rikkinäistä linkkiä"
463
+
464
+ #: core/core.php:2285
465
+ msgid "No broken links found."
466
+ msgstr "Rikkinäisiä linkkejä ei löydetty."
467
+
468
+ #: core/core.php:2292
469
+ msgid "%d URL in the work queue"
470
+ msgid_plural "%d URLs in the work queue"
471
+ msgstr[0] "%d URL-osoite työjonossa"
472
+ msgstr[1] "%d URL-osoitetta työjonossa"
473
+
474
+ #: core/core.php:2295
475
+ msgid "No URLs in the work queue."
476
+ msgstr "Ei URL-osoitteita työjonossa."
477
+
478
+ #: core/core.php:2301
479
+ msgid "Detected %d unique URL"
480
+ msgid_plural "Detected %d unique URLs"
481
+ msgstr[0] "Havaittiin %d uniikki URL-osoite"
482
+ msgstr[1] "Havaittiin %d uniikkia URL-osoitetta"
483
+
484
+ #: core/core.php:2302
485
+ msgid "in %d link"
486
+ msgid_plural "in %d links"
487
+ msgstr[0] "%d linkissä"
488
+ msgstr[1] "%d linkissä"
489
+
490
+ #: core/core.php:2307
491
+ msgid "and still searching..."
492
+ msgstr "ja vielä haetaan..."
493
+
494
+ #: core/core.php:2313
495
+ msgid "Searching your blog for links..."
496
+ msgstr "Haetaan blogista linkkejä..."
497
+
498
+ #: core/core.php:2315
499
+ msgid "No links detected."
500
+ msgstr "Linkkejä ei löydetty."
501
+
502
+ #: core/core.php:2341
503
+ msgctxt "current load"
504
+ msgid "Unknown"
505
+ msgstr "Tuntematon"
506
+
507
+ #: core/core.php:2405 core/core.php:2443 core/core.php:2506
508
+ msgid "Oops, I can't find the link %d"
509
+ msgstr "Hups, linkkiä %d ei löydetty"
510
+
511
+ #: core/core.php:2418
512
+ msgid "Oops, couldn't modify the link!"
513
+ msgstr "Hups, linkkiä ei pystytty muokkaamaan!"
514
+
515
+ #: core/core.php:2421 core/core.php:2532
516
+ msgid "Error : link_id not specified"
517
+ msgstr "Virhe : link_id määrittely puuttuu"
518
+
519
+ #: core/core.php:2453
520
+ msgid "Oops, the new URL is invalid!"
521
+ msgstr "Hups, uusi URL in virheellinen!"
522
+
523
+ #: core/core.php:2464 core/core.php:2515
524
+ msgid "An unexpected error occured!"
525
+ msgstr "Odottamaton virhe tapahtui!"
526
+
527
+ #: core/core.php:2482
528
+ msgid "Error : link_id or new_url not specified"
529
+ msgstr "Virhe : link_id tai new_url määrittely puuttuu"
530
+
531
+ #: core/core.php:2541
532
+ msgid "You don't have sufficient privileges to access this information!"
533
+ msgstr "Sinulla ei ole tähän tietoon tarvittavia oikeuksia!"
534
+
535
+ #: core/core.php:2554
536
+ msgid "Error : link ID not specified"
537
+ msgstr "Virhe : linkin ID:tä ei ole määritelty"
538
+
539
+ #: core/core.php:2568
540
+ msgid "Failed to load link details (%s)"
541
+ msgstr "Virhe ladattaessa linkin tietoja (%s)"
542
+
543
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.4) #-#-#-#-#
544
+ #. Plugin Name of the plugin/theme
545
+ #: core/core.php:2621
546
+ msgid "Broken Link Checker"
547
+ msgstr "Broken Link Checker"
548
+
549
+ #: core/core.php:2641
550
+ msgid "PHP version"
551
+ msgstr "PHP-versio"
552
+
553
+ #: core/core.php:2647
554
+ msgid "MySQL version"
555
+ msgstr "MySQL-versio"
556
+
557
+ #: core/core.php:2660
558
+ msgid ""
559
+ "You have an old version of CURL. Redirect detection may not work properly."
560
+ msgstr ""
561
+ "Käytössäsi on CURL:n vanha versio. Uudelleenohjausten tunnistus ei "
562
+ "välttämättä toimi oikein."
563
+
564
+ #: core/core.php:2672 core/core.php:2688 core/core.php:2693
565
+ msgid "Not installed"
566
+ msgstr "Ei asennettu"
567
+
568
+ #: core/core.php:2675
569
+ msgid "CURL version"
570
+ msgstr "CURL-versio"
571
+
572
+ #: core/core.php:2681
573
+ msgid "Installed"
574
+ msgstr "Asennettu"
575
+
576
+ #: core/core.php:2694
577
+ msgid "You must have either CURL or Snoopy installed for the plugin to work!"
578
+ msgstr "Lisäosan toiminta vaatii, että joko CURL tai Snoopy on asennettuna!"
579
+
580
+ #: core/core.php:2705
581
+ msgid "On"
582
+ msgstr "Päällä"
583
+
584
+ #: core/core.php:2706
585
+ msgid "Redirects may be detected as broken links when safe_mode is on."
586
+ msgstr ""
587
+ "Uudelleenohjaukset voidaan tunnistaa rikkinäisiksi linkeiksi kun safe_mode "
588
+ "on käytössä."
589
+
590
+ #: core/core.php:2711 core/core.php:2725
591
+ msgid "Off"
592
+ msgstr "Pois"
593
+
594
+ #: core/core.php:2719
595
+ msgid "On ( %s )"
596
+ msgstr "Päällä ( %s )"
597
+
598
+ #: core/core.php:2720
599
+ msgid "Redirects may be detected as broken links when open_basedir is on."
600
+ msgstr ""
601
+ "Uudelleenohjaukset voidaan tunnistaa rikkinäisiksi linkeiksi kun "
602
+ "open_basedir on käytössä."
603
+
604
+ #: core/core.php:2749
605
+ msgid ""
606
+ "If this value is zero even after several page reloads you have probably "
607
+ "encountered a bug."
608
+ msgstr ""
609
+ "Mikäli tämä arvo on nolla vielä useiden sivujen päivitysten jälkeen, olet "
610
+ "todennäköisesti kohdannut virheen."
611
+
612
+ #: core/core.php:2840 core/core.php:2938
613
+ msgid "[%s] Broken links detected"
614
+ msgstr "[%s] rikkinäisiä linkkejä havaittu"
615
+
616
+ #: core/core.php:2845
617
+ msgid "Broken Link Checker has detected %d new broken link on your site."
618
+ msgid_plural ""
619
+ "Broken Link Checker has detected %d new broken links on your site."
620
+ msgstr[0] ""
621
+ "Broken Link Checker on havainnut %d uuden rikkinäisen linkin sivustoltasi."
622
+ msgstr[1] ""
623
+ "Broken Link Checker on havainnut %d uutta rikkinäistä linkkiä sivustoltasi."
624
+
625
+ #: core/core.php:2868
626
+ msgid "Here's a list of the first %d broken links:"
627
+ msgid_plural "Here's a list of the first %d broken links:"
628
+ msgstr[0] "Tässä on lista ensimmäisestä %d rikkinäisestä linkistä:"
629
+ msgstr[1] "Tässä on lista ensimmäisistä %d rikkinäisestä linkistä:"
630
+
631
+ #: core/core.php:2877
632
+ msgid "Here's a list of the new broken links: "
633
+ msgstr "Tässä on lista uusista rikkinäisistä linkeistä:"
634
+
635
+ #: core/core.php:2886
636
+ msgid "Link text : %s"
637
+ msgstr "Linkin teksti : %s"
638
+
639
+ #: core/core.php:2887
640
+ msgid "Link URL : <a href=\"%s\">%s</a>"
641
+ msgstr "Linkin URL : <a href=\"%s\">%s</a>"
642
+
643
+ #: core/core.php:2888
644
+ msgid "Source : %s"
645
+ msgstr "Lähde : %s"
646
+
647
+ #: core/core.php:2901
648
+ msgid "You can see all broken links here:"
649
+ msgstr "Näet kaikki rikkinäiset linkit tässä:"
650
+
651
+ #: core/core.php:2943
652
+ msgid "Broken Link Checker has detected %d new broken link in your posts."
653
+ msgid_plural ""
654
+ "Broken Link Checker has detected %d new broken links in your posts."
655
+ msgstr[0] ""
656
+ "Broken Link Checker on havainnut %d uuden rikkinäisen linkin artikkeleistasi."
657
+ msgstr[1] ""
658
+ "Broken Link Checker on havainnut %d uutta rikkinäistä linkkiä "
659
+ "artikkeleistasi."
660
+
661
+ #: core/init.php:231
662
+ msgid "Once Weekly"
663
+ msgstr "Kerran viikossa"
664
+
665
+ #: core/init.php:237
666
+ msgid "Twice a Month"
667
+ msgstr "Kaksi kertaa kuukaudessa"
668
+
669
+ #: core/init.php:307
670
+ msgid ""
671
+ "Broken Link Checker installation failed. Try deactivating and then "
672
+ "reactivating the plugin."
673
+ msgstr ""
674
+ "Broken Link Checker asennus epäonnistui. Yritä poistaa lisäosa käytöstä ja "
675
+ "sitten aktivoida se uudelleen."
676
+
677
+ #: includes/admin/db-upgrade.php:95
678
+ msgid "Failed to delete old DB tables. Database error : %s"
679
+ msgstr ""
680
+ "Vanhojen tietokantataulujen poistaminen epäonnistui. Tietokantavirhe : %s"
681
+
682
+ #: includes/admin/links-page-js.php:58 includes/admin/links-page-js.php:301
683
+ msgid "Wait..."
684
+ msgstr "Odota..."
685
+
686
+ #: includes/admin/links-page-js.php:99 includes/admin/table-printer.php:616
687
+ msgid "Not broken"
688
+ msgstr "Ei-rikkinäinen"
689
+
690
+ #: includes/admin/links-page-js.php:213
691
+ msgid "%d instances of the link were successfully modified."
692
+ msgstr "%d tapauksessa muokattiin linkkiä onnistuneesti."
693
+
694
+ #: includes/admin/links-page-js.php:219
695
+ msgid ""
696
+ "However, %d instances couldn't be edited and still point to the old URL."
697
+ msgstr ""
698
+ "Kuitenkaan, %d tapausta ei voitu muokata ja ne osoittavat vielä vanhaan URL-"
699
+ "osoitteeseen."
700
+
701
+ #: includes/admin/links-page-js.php:225
702
+ msgid "The link could not be modified."
703
+ msgstr "Linkkiä ei voitu muokata."
704
+
705
+ #: includes/admin/links-page-js.php:228 includes/admin/links-page-js.php:353
706
+ msgid "The following error(s) occured :"
707
+ msgstr "Seuraavat virheet tapahtuivat :"
708
+
709
+ #: includes/admin/links-page-js.php:339
710
+ msgid "%d instances of the link were successfully unlinked."
711
+ msgstr "%d tapauksessa poistettiin linkki onnistuneesti."
712
+
713
+ #: includes/admin/links-page-js.php:345
714
+ msgid "However, %d instances couldn't be removed."
715
+ msgstr "Kuitenkaan, %d kohdetta ei voitu poistaa."
716
+
717
+ #: includes/admin/links-page-js.php:350
718
+ msgid "The plugin failed to remove the link."
719
+ msgstr "Lisäosa epäonnistui linkin poistamisessa."
720
+
721
+ #: includes/admin/links-page-js.php:361 includes/admin/table-printer.php:266
722
+ #: includes/admin/table-printer.php:610
723
+ msgid "Unlink"
724
+ msgstr "Poista linkki"
725
+
726
+ #: includes/admin/links-page-js.php:405
727
+ msgid "Enter a name for the new custom filter"
728
+ msgstr "Syötä nimi uudelle mukautetulle suodattimelle"
729
+
730
+ #: includes/admin/links-page-js.php:416
731
+ msgid ""
732
+ "You are about to delete the current filter.\n"
733
+ "'Cancel' to stop, 'OK' to delete"
734
+ msgstr ""
735
+ "Olet aikeissa poistaa nykyisen suodattimen.\n"
736
+ "'Peruuta' lopettaaksesi, 'OK' poistaaksesi"
737
+
738
+ #: includes/admin/links-page-js.php:439
739
+ msgid ""
740
+ "Are you sure you want to delete all posts, bookmarks or other items that "
741
+ "contain any of the selected links? This action can't be undone.\n"
742
+ "'Cancel' to stop, 'OK' to delete"
743
+ msgstr ""
744
+ "Oletko varma, että haluat poistaa kaikki artikkelit, kirjanmerkit tai muut "
745
+ "kohteet, jotka sisältävät mitä tahansa valituista linkeistä? Tätä toimintoa "
746
+ "ei voida peruuttaa.\n"
747
+ "'Peruuta' lopettaaksesi, 'OK' poistaaksesi"
748
+
749
+ #: includes/admin/links-page-js.php:449
750
+ msgid ""
751
+ "Are you sure you want to remove the selected links? This action can't be "
752
+ "undone.\n"
753
+ "'Cancel' to stop, 'OK' to remove"
754
+ msgstr ""
755
+ "Oletko varma, että haluat poistaa valitut linkit? Tätä toimintoa ei voida "
756
+ "peruuttaa.\n"
757
+ "'Peruuta' lopettaaksesi, 'OK' poistaaksesi"
758
+
759
+ #: includes/admin/links-page-js.php:558
760
+ msgid "Enter a search string first."
761
+ msgstr "Syötä ensin hakulause."
762
+
763
+ #: includes/admin/links-page-js.php:565
764
+ msgid "Select one or more links to edit."
765
+ msgstr "Valitse yksi tai useampi linkki muokattavaksi."
766
+
767
+ #: includes/admin/options-page-js.php:54
768
+ msgid "Hide debug info"
769
+ msgstr "Piilota debug-tiedot"
770
+
771
+ #: includes/admin/search-form.php:16
772
+ msgid "Save This Search As a Filter"
773
+ msgstr "Tallenna tämä haku suodattimeksi"
774
+
775
+ #: includes/admin/search-form.php:26
776
+ msgid "Delete This Filter"
777
+ msgstr "Poista tämä suodatin"
778
+
779
+ #: includes/admin/search-form.php:32 includes/link-query.php:53
780
+ msgid "Search"
781
+ msgstr "Hae"
782
+
783
+ #: includes/admin/search-form.php:42
784
+ msgid "Link text"
785
+ msgstr "Linkin teksti"
786
+
787
+ #: includes/admin/search-form.php:45 includes/admin/table-printer.php:200
788
+ msgid "URL"
789
+ msgstr "URL"
790
+
791
+ #: includes/admin/search-form.php:48 includes/admin/table-printer.php:484
792
+ msgid "HTTP code"
793
+ msgstr "HTTP-koodi"
794
+
795
+ #: includes/admin/search-form.php:51
796
+ msgid "Link status"
797
+ msgstr "Linkin tila"
798
+
799
+ #: includes/admin/search-form.php:68 includes/admin/search-form.php:85
800
+ msgid "Link type"
801
+ msgstr "Linkin tyyppi"
802
+
803
+ #: includes/admin/search-form.php:70
804
+ msgid "Any"
805
+ msgstr "Mikä tahansa"
806
+
807
+ #: includes/admin/search-form.php:74
808
+ msgid "Links used in"
809
+ msgstr "Linkkejä käytetty"
810
+
811
+ #: includes/admin/search-form.php:112
812
+ msgid "Search Links"
813
+ msgstr "Hae linkkejä"
814
+
815
+ #: includes/admin/search-form.php:113 includes/admin/table-printer.php:342
816
+ #: includes/admin/table-printer.php:624 includes/admin/table-printer.php:630
817
+ msgid "Cancel"
818
+ msgstr "Peruuta"
819
+
820
+ #: includes/admin/sidebar.php:40
821
+ msgid "Donate $10, $20 or $50!"
822
+ msgstr "Lahjoita $10, $20 tai $50!"
823
+
824
+ #: includes/admin/sidebar.php:43
825
+ msgid ""
826
+ "If you like this plugin, please donate to support development and "
827
+ "maintenance!"
828
+ msgstr ""
829
+ "Mikäli pidät lisäosasta, ole hyvä ja lahjoita tukeaksesi sen kehitystä ja "
830
+ "ylläpitoa!"
831
+
832
+ #: includes/admin/sidebar.php:60
833
+ msgid "Return to WordPress Dashboard"
834
+ msgstr "Palaa WordPress-ohjausnäkymään"
835
+
836
+ #: includes/admin/table-printer.php:177
837
+ msgid "Compact View"
838
+ msgstr "Suppea näkymä"
839
+
840
+ #: includes/admin/table-printer.php:178
841
+ msgid "Detailed View"
842
+ msgstr "Yksityiskohtainen näkymä"
843
+
844
+ #: includes/admin/table-printer.php:207
845
+ msgid "Source"
846
+ msgstr "Lähde"
847
+
848
+ #: includes/admin/table-printer.php:213
849
+ msgid "Link Text"
850
+ msgstr "Linkin teksti"
851
+
852
+ #: includes/admin/table-printer.php:261
853
+ msgid "Bulk Actions"
854
+ msgstr "Joukkomuokkaustoiminnot"
855
+
856
+ #: includes/admin/table-printer.php:262 includes/admin/table-printer.php:607
857
+ msgid "Edit URL"
858
+ msgstr "Muokkaa URL"
859
+
860
+ #: includes/admin/table-printer.php:263
861
+ msgid "Recheck"
862
+ msgstr "Tarkista uudelleen"
863
+
864
+ #: includes/admin/table-printer.php:264
865
+ msgid "Fix redirects"
866
+ msgstr "Korjaa uudelleenohjaukset"
867
+
868
+ #: includes/admin/table-printer.php:265
869
+ msgid "Mark as not broken"
870
+ msgstr "Merkitse ei-rikkinäiseksi"
871
+
872
+ #: includes/admin/table-printer.php:269
873
+ msgid "Move sources to Trash"
874
+ msgstr "Siirrä lähteet roskakoriin"
875
+
876
+ #: includes/admin/table-printer.php:271
877
+ msgid "Delete sources"
878
+ msgstr "Poista lähteet"
879
+
880
+ #: includes/admin/table-printer.php:286
881
+ msgid "&laquo;"
882
+ msgstr "&laquo;"
883
+
884
+ #: includes/admin/table-printer.php:287
885
+ msgid "&raquo;"
886
+ msgstr "&raquo;"
887
+
888
+ #: includes/admin/table-printer.php:295
889
+ msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
890
+ msgstr "Näytetään %s&#8211;%s / <span class=\"current-link-count\">%s</span>"
891
+
892
+ #: includes/admin/table-printer.php:318
893
+ msgid "Bulk Edit URLs"
894
+ msgstr "Joukkomuokkaa URL-osoitteita"
895
+
896
+ #: includes/admin/table-printer.php:320
897
+ msgid "Find"
898
+ msgstr "Etsi"
899
+
900
+ #: includes/admin/table-printer.php:324
901
+ msgid "Replace with"
902
+ msgstr "Korvaa merkkijonolla"
903
+
904
+ #: includes/admin/table-printer.php:332
905
+ msgid "Case sensitive"
906
+ msgstr "Sama merkkikoko"
907
+
908
+ #: includes/admin/table-printer.php:336
909
+ msgid "Regular expression"
910
+ msgstr "Säännöllinen lauseke"
911
+
912
+ #: includes/admin/table-printer.php:344
913
+ msgid "Update"
914
+ msgstr "Päivitä"
915
+
916
+ #: includes/admin/table-printer.php:469
917
+ msgid "Post published on"
918
+ msgstr "Artikkeli julkaistu"
919
+
920
+ #: includes/admin/table-printer.php:474
921
+ msgid "Link last checked"
922
+ msgstr "Linkki viimeksi tarkastettu"
923
+
924
+ #: includes/admin/table-printer.php:478
925
+ msgid "Never"
926
+ msgstr "Ei koskaan"
927
+
928
+ #: includes/admin/table-printer.php:489
929
+ msgid "Response time"
930
+ msgstr "Vasteaika"
931
+
932
+ #: includes/admin/table-printer.php:491
933
+ msgid "%2.3f seconds"
934
+ msgstr "%2.3f sekuntia"
935
+
936
+ #: includes/admin/table-printer.php:494
937
+ msgid "Final URL"
938
+ msgstr "Lopullinen URL"
939
+
940
+ #: includes/admin/table-printer.php:499
941
+ msgid "Redirect count"
942
+ msgstr "Uudelleenohjausten lukumäärä"
943
+
944
+ #: includes/admin/table-printer.php:504
945
+ msgid "Instance count"
946
+ msgstr "Tapausten lukumäärä"
947
+
948
+ #: includes/admin/table-printer.php:513
949
+ msgid "This link has failed %d time."
950
+ msgid_plural "This link has failed %d times."
951
+ msgstr[0] "Tämä linkki on epäonnistunut %d kerran."
952
+ msgstr[1] "Tämä linkki on epäonnistunut %d kertaa."
953
+
954
+ #: includes/admin/table-printer.php:521
955
+ msgid "This link has been broken for %s."
956
+ msgstr "Tämä linkki on ollut rikkinäinen %s."
957
+
958
+ #: includes/admin/table-printer.php:532
959
+ msgid "Log"
960
+ msgstr "Loki"
961
+
962
+ #: includes/admin/table-printer.php:553
963
+ msgid "Show more info about this link"
964
+ msgstr "Näytä lisätietoja tästä linkistä"
965
+
966
+ #: includes/admin/table-printer.php:571
967
+ msgctxt "checked how long ago"
968
+ msgid "Checked"
969
+ msgstr "Tarkistettu"
970
+
971
+ #: includes/admin/table-printer.php:587
972
+ msgid "Broken for"
973
+ msgstr "Rikkinäinen"
974
+
975
+ #: includes/admin/table-printer.php:607
976
+ msgid "Edit link URL"
977
+ msgstr "Muokkaa linkin URL"
978
+
979
+ #: includes/admin/table-printer.php:609
980
+ msgid "Remove this link from all posts"
981
+ msgstr "Poista tämä linkki kaikista artikkeleista"
982
+
983
+ #: includes/admin/table-printer.php:615
984
+ msgid "Remove this link from the list of broken links and mark it as valid"
985
+ msgstr ""
986
+ "Poista tämä linkki rikkinäisten linkkien listalta ja merkitse se "
987
+ "kelvolliseksi"
988
+
989
+ #: includes/admin/table-printer.php:624
990
+ msgid "Cancel URL editing"
991
+ msgstr "Peruuta URL-muokkaus"
992
+
993
+ #: includes/admin/table-printer.php:631
994
+ msgid "Update URL"
995
+ msgstr "Päivitä URL"
996
+
997
+ #: includes/admin/table-printer.php:653
998
+ msgid "[An orphaned link! This is a bug.]"
999
+ msgstr "[Orvoksi jäänyt linkki! Tämä on virhe.]"
1000
+
1001
+ #: includes/any-post.php:397 modules/containers/blogroll.php:46
1002
+ #: modules/containers/comment.php:153 modules/containers/custom_field.php:197
1003
+ msgid "Edit"
1004
+ msgstr "Muokkaa"
1005
+
1006
+ #: includes/any-post.php:405 modules/containers/custom_field.php:203
1007
+ msgid "Move this item to the Trash"
1008
+ msgstr "Siirrä tämä kohde roskakoriin"
1009
+
1010
+ #: includes/any-post.php:407 modules/containers/custom_field.php:205
1011
+ msgid "Trash"
1012
+ msgstr "Roskakori"
1013
+
1014
+ #: includes/any-post.php:412 modules/containers/custom_field.php:210
1015
+ msgid "Delete this item permanently"
1016
+ msgstr "Poista tämä kohde pysyvästi"
1017
+
1018
+ #: includes/any-post.php:414 modules/containers/blogroll.php:47
1019
+ #: modules/containers/custom_field.php:212
1020
+ msgid "Delete"
1021
+ msgstr "Poista"
1022
+
1023
+ #: includes/any-post.php:427
1024
+ msgid "Preview &#8220;%s&#8221;"
1025
+ msgstr "Esikatsele &#8220;%s&#8221;"
1026
+
1027
+ #: includes/any-post.php:428
1028
+ msgid "Preview"
1029
+ msgstr "Esikatsele"
1030
+
1031
+ #: includes/any-post.php:435
1032
+ msgid "View &#8220;%s&#8221;"
1033
+ msgstr "Näytä &#8220;%s&#8221;"
1034
+
1035
+ #: includes/any-post.php:436 modules/containers/comment.php:166
1036
+ #: modules/containers/custom_field.php:217
1037
+ msgid "View"
1038
+ msgstr "Näytä"
1039
+
1040
+ #: includes/any-post.php:455 modules/containers/custom_field.php:197
1041
+ msgid "Edit this item"
1042
+ msgstr "Muokkaa tätä kohdetta"
1043
+
1044
+ #: includes/any-post.php:519 modules/containers/blogroll.php:83
1045
+ #: modules/containers/comment.php:43
1046
+ msgid "Nothing to update"
1047
+ msgstr "Ei mitään päivitettävää"
1048
+
1049
+ #: includes/any-post.php:529
1050
+ msgid "Updating post %d failed"
1051
+ msgstr "Artikkelin %d päivitys epäonnistui"
1052
+
1053
+ #: includes/any-post.php:564 modules/containers/custom_field.php:284
1054
+ msgid "Failed to delete post \"%s\" (%d)"
1055
+ msgstr "Artikkelin \"%s\" (%d) poistaminen epäonnistui"
1056
+
1057
+ #: includes/any-post.php:583 modules/containers/custom_field.php:303
1058
+ msgid ""
1059
+ "Can't move post \"%s\" (%d) to the trash because the trash feature is "
1060
+ "disabled"
1061
+ msgstr ""
1062
+ "Ei voida siirtää artikkelia \"%s\" (%d) roskakoriin, koska roskakoritoiminto "
1063
+ "on poissa käytöstä"
1064
+
1065
+ #: includes/any-post.php:603 modules/containers/custom_field.php:322
1066
+ msgid "Failed to move post \"%s\" (%d) to the trash"
1067
+ msgstr "Artikkelin \"%s\" (%d) siirtäminen roskakoriin epäonnistui"
1068
+
1069
+ #: includes/any-post.php:711
1070
+ msgid "%d post deleted."
1071
+ msgid_plural "%d posts deleted."
1072
+ msgstr[0] "%d artikkeli poistettu."
1073
+ msgstr[1] "%d artikkelia poistettu."
1074
+
1075
+ #: includes/any-post.php:713
1076
+ msgid "%d page deleted."
1077
+ msgid_plural "%d pages deleted."
1078
+ msgstr[0] "%d sivu poistettu."
1079
+ msgstr[1] "%d sivua poistettu."
1080
+
1081
+ #: includes/any-post.php:715
1082
+ msgid "%d \"%s\" deleted."
1083
+ msgid_plural "%d \"%s\" deleted."
1084
+ msgstr[0] "%d \"%s\" poistettu."
1085
+ msgstr[1] "%d \"%s\" poistettu."
1086
+
1087
+ #: includes/any-post.php:734
1088
+ msgid "%d post moved to the Trash."
1089
+ msgid_plural "%d posts moved to the Trash."
1090
+ msgstr[0] "%d artikkeli siirretty roskakoriin."
1091
+ msgstr[1] "%d artikkelia siirretty roskakoriin."
1092
+
1093
+ #: includes/any-post.php:736
1094
+ msgid "%d page moved to the Trash."
1095
+ msgid_plural "%d pages moved to the Trash."
1096
+ msgstr[0] "%d sivu siirretty roskakoriin."
1097
+ msgstr[1] "%d sivua siirretty roskakoriin."
1098
+
1099
+ #: includes/any-post.php:738
1100
+ msgid "%d \"%s\" moved to the Trash."
1101
+ msgid_plural "%d \"%s\" moved to the Trash."
1102
+ msgstr[0] "%d \"%s\" siirretty roskakoriin."
1103
+ msgstr[1] "%d \"%s\" siirretty roskakoriin."
1104
+
1105
+ #: includes/containers.php:122
1106
+ msgid "%d '%s' has been deleted"
1107
+ msgid_plural "%d '%s' have been deleted"
1108
+ msgstr[0] "%d '%s' on poistettu"
1109
+ msgstr[1] "%d '%s' on poistettu"
1110
+
1111
+ #: includes/containers.php:873 includes/containers.php:891
1112
+ msgid "Container type '%s' not recognized"
1113
+ msgstr "Säiliön tyyppiä '%s' ei tunnistettu"
1114
+
1115
+ #: includes/extra-strings.php:2
1116
+ msgctxt "module name"
1117
+ msgid "Basic HTTP"
1118
+ msgstr "Perus HTTP"
1119
+
1120
+ #: includes/extra-strings.php:3
1121
+ msgctxt "module name"
1122
+ msgid "Blogroll items"
1123
+ msgstr "Blogilistat"
1124
+
1125
+ #: includes/extra-strings.php:4
1126
+ msgctxt "module name"
1127
+ msgid "Comments"
1128
+ msgstr "Kommentit"
1129
+
1130
+ #: includes/extra-strings.php:5
1131
+ msgctxt "module name"
1132
+ msgid "Custom fields"
1133
+ msgstr "Mukautetut kentät"
1134
+
1135
+ #: includes/extra-strings.php:6
1136
+ msgctxt "module name"
1137
+ msgid "Embedded DailyMotion videos"
1138
+ msgstr "Upotetut DailyMotion-videot"
1139
+
1140
+ #: includes/extra-strings.php:7
1141
+ msgctxt "module name"
1142
+ msgid "Embedded GoogleVideo videos"
1143
+ msgstr "Upotetut GoogleVideo-videot"
1144
+
1145
+ #: includes/extra-strings.php:8
1146
+ msgctxt "module name"
1147
+ msgid "Embedded Megavideo videos"
1148
+ msgstr "Upotetut Megavideo-videot"
1149
+
1150
+ #: includes/extra-strings.php:9
1151
+ msgctxt "module name"
1152
+ msgid "Embedded Vimeo videos"
1153
+ msgstr "Upotetut Vimeo-videot"
1154
+
1155
+ #: includes/extra-strings.php:10
1156
+ msgctxt "module name"
1157
+ msgid "Embedded YouTube videos"
1158
+ msgstr "Upotetut YouTube-videot"
1159
+
1160
+ #: includes/extra-strings.php:11
1161
+ msgctxt "module name"
1162
+ msgid "Embedded YouTube videos (old embed code)"
1163
+ msgstr "Upotetut YouTube-videot (vanha upotuskoodi)"
1164
+
1165
+ #: includes/extra-strings.php:12
1166
+ msgctxt "module name"
1167
+ msgid "FileServe API"
1168
+ msgstr "FileServe API"
1169
+
1170
+ #: includes/extra-strings.php:13
1171
+ msgctxt "module name"
1172
+ msgid "HTML images"
1173
+ msgstr "HTML-kuvat"
1174
+
1175
+ #: includes/extra-strings.php:14
1176
+ msgctxt "module name"
1177
+ msgid "HTML links"
1178
+ msgstr "HTML-linkit"
1179
+
1180
+ #: includes/extra-strings.php:15
1181
+ msgctxt "module name"
1182
+ msgid "MediaFire API"
1183
+ msgstr "MediaFire API"
1184
+
1185
+ #: includes/extra-strings.php:16
1186
+ msgctxt "module name"
1187
+ msgid "MegaUpload API"
1188
+ msgstr "MegaUpload API"
1189
+
1190
+ #: includes/extra-strings.php:17
1191
+ msgctxt "module name"
1192
+ msgid "Plaintext URLs"
1193
+ msgstr "Tekstilinkit"
1194
+
1195
+ #: includes/extra-strings.php:18
1196
+ msgctxt "module name"
1197
+ msgid "RapidShare API"
1198
+ msgstr "RapidShare API"
1199
+
1200
+ #: includes/extra-strings.php:19
1201
+ msgctxt "module name"
1202
+ msgid "YouTube API"
1203
+ msgstr "YouTube API"
1204
+
1205
+ #: includes/extra-strings.php:20
1206
+ msgctxt "module name"
1207
+ msgid "Posts"
1208
+ msgstr "Artikkelit"
1209
+
1210
+ #: includes/extra-strings.php:21
1211
+ msgctxt "module name"
1212
+ msgid "Pages"
1213
+ msgstr "Sivut"
1214
+
1215
+ #: includes/instances.php:102 includes/instances.php:158
1216
+ msgid "Container %s[%d] not found"
1217
+ msgstr "Säiliötä %s[%d] ei löytynyt"
1218
+
1219
+ #: includes/instances.php:111 includes/instances.php:167
1220
+ msgid "Parser '%s' not found."
1221
+ msgstr "Jäsennintä '%s' ei löydy."
1222
+
1223
+ #: includes/link-query.php:25
1224
+ msgid "Broken"
1225
+ msgstr "Rikkinäinen"
1226
+
1227
+ #: includes/link-query.php:27
1228
+ msgid "No broken links found"
1229
+ msgstr "Rikkinäisiä linkkejä ei löytynyt"
1230
+
1231
+ #: includes/link-query.php:34
1232
+ msgid "Redirects"
1233
+ msgstr "Uudelleenohjaukset"
1234
+
1235
+ #: includes/link-query.php:35
1236
+ msgid "Redirected Links"
1237
+ msgstr "Uudelleenohjatut linkit"
1238
+
1239
+ #: includes/link-query.php:36
1240
+ msgid "No redirects found"
1241
+ msgstr "Uudelleenohjauksia ei löytynyt"
1242
+
1243
+ #: includes/link-query.php:44
1244
+ msgid "All"
1245
+ msgstr "Kaikki"
1246
+
1247
+ #: includes/link-query.php:45
1248
+ msgid "Detected Links"
1249
+ msgstr "Havaitut linkit"
1250
+
1251
+ #: includes/link-query.php:46
1252
+ msgid "No links found (yet)"
1253
+ msgstr "Linkkejä ei löytynyt (vielä)"
1254
+
1255
+ #: includes/link-query.php:54
1256
+ msgid "Search Results"
1257
+ msgstr "Hakutulokset"
1258
+
1259
+ #: includes/link-query.php:55 includes/link-query.php:102
1260
+ msgid "No links found for your query"
1261
+ msgstr "Kyselyllä ei löytynyt linkkejä."
1262
+
1263
+ #: includes/links.php:215
1264
+ msgid "The plugin script was terminated while trying to check the link."
1265
+ msgstr "Lisäosan ohjelmisto keskeytettiin kesken linkkien tarkistuksen."
1266
+
1267
+ #: includes/links.php:261
1268
+ msgid "The plugin doesn't know how to check this type of link."
1269
+ msgstr "Lisäosa ei tiedä kuinka tarkistaa tämän tyyppisiä linkkejä."
1270
+
1271
+ #: includes/links.php:349
1272
+ msgid "Link is valid."
1273
+ msgstr "Linkki on kelvollinen."
1274
+
1275
+ #: includes/links.php:351
1276
+ msgid "Link is broken."
1277
+ msgstr "Linkki on rikkinäinen."
1278
+
1279
+ #: includes/links.php:564 includes/links.php:666 includes/links.php:693
1280
+ msgid "Link is not valid"
1281
+ msgstr "Linkki on virheellinen"
1282
+
1283
+ #: includes/links.php:581
1284
+ msgid ""
1285
+ "This link can not be edited because it is not used anywhere on this site."
1286
+ msgstr ""
1287
+ "Tätä linkkiä ei voi muokata, koska sitä ei ole käytetty missään tällä "
1288
+ "sivustolla."
1289
+
1290
+ #: includes/links.php:607
1291
+ msgid "Failed to create a DB entry for the new URL."
1292
+ msgstr "Tietokantamerkinnän luominen uudelle URL-osoitteelle epäonnistui."
1293
+
1294
+ #: includes/links.php:673
1295
+ msgid "This link is not a redirect"
1296
+ msgstr "Tämä linkki ei ole uudelleenohjaus"
1297
+
1298
+ #: includes/links.php:720 includes/links.php:757
1299
+ msgid "Couldn't delete the link's database record"
1300
+ msgstr "Linkkien tietokantamerkintöjä ei voitu poistaa"
1301
+
1302
+ #: includes/links.php:831
1303
+ msgctxt "link status"
1304
+ msgid "Unknown"
1305
+ msgstr "Tuntematon"
1306
+
1307
+ #: includes/links.php:845 modules/checkers/http.php:264
1308
+ #: modules/extras/mediafire.php:101
1309
+ msgid "Unknown Error"
1310
+ msgstr "Tuntematon virhe"
1311
+
1312
+ #: includes/links.php:869
1313
+ msgid "Not checked"
1314
+ msgstr "Ei tarkistettu"
1315
+
1316
+ #: includes/links.php:872
1317
+ msgid "False positive"
1318
+ msgstr "Virheellinen positiivinen"
1319
+
1320
+ #: includes/links.php:875 modules/extras/fileserve.php:121
1321
+ #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1322
+ #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1323
+ msgctxt "link status"
1324
+ msgid "OK"
1325
+ msgstr "OK"
1326
+
1327
+ #: includes/parsers.php:109
1328
+ msgid "Editing is not implemented in the '%s' parser"
1329
+ msgstr "Muokkausta ei ole toteutettu '%s' jäsentimeen"
1330
+
1331
+ #: includes/parsers.php:124
1332
+ msgid "Unlinking is not implemented in the '%s' parser"
1333
+ msgstr "Linkkien poistamista ei ole toteutettu '%s' jäsentimeen"
1334
+
1335
+ #: includes/utility-class.php:244
1336
+ msgid "%d second"
1337
+ msgid_plural "%d seconds"
1338
+ msgstr[0] "%d sekunti"
1339
+ msgstr[1] "%d sekuntia"
1340
+
1341
+ #: includes/utility-class.php:245
1342
+ msgid "%d second ago"
1343
+ msgid_plural "%d seconds ago"
1344
+ msgstr[0] "%d sekunti sitten"
1345
+ msgstr[1] "%d sekuntia sitten"
1346
+
1347
+ #: includes/utility-class.php:248
1348
+ msgid "%d minute"
1349
+ msgid_plural "%d minutes"
1350
+ msgstr[0] "%d minuutti"
1351
+ msgstr[1] "%d minuuttia"
1352
+
1353
+ #: includes/utility-class.php:249
1354
+ msgid "%d minute ago"
1355
+ msgid_plural "%d minutes ago"
1356
+ msgstr[0] "%d minuutti sitten"
1357
+ msgstr[1] "%d minuuttia sitten"
1358
+
1359
+ #: includes/utility-class.php:252
1360
+ msgid "%d hour"
1361
+ msgid_plural "%d hours"
1362
+ msgstr[0] "%d tunti"
1363
+ msgstr[1] "%d tuntia"
1364
+
1365
+ #: includes/utility-class.php:253
1366
+ msgid "%d hour ago"
1367
+ msgid_plural "%d hours ago"
1368
+ msgstr[0] "%d tunti sitten"
1369
+ msgstr[1] "%d tuntia sitten"
1370
+
1371
+ #: includes/utility-class.php:256
1372
+ msgid "%d day"
1373
+ msgid_plural "%d days"
1374
+ msgstr[0] "%d päivä"
1375
+ msgstr[1] "%d päivää"
1376
+
1377
+ #: includes/utility-class.php:257
1378
+ msgid "%d day ago"
1379
+ msgid_plural "%d days ago"
1380
+ msgstr[0] "%d päivä sitten"
1381
+ msgstr[1] "%d päivää sitten"
1382
+
1383
+ #: includes/utility-class.php:260
1384
+ msgid "%d month"
1385
+ msgid_plural "%d months"
1386
+ msgstr[0] "%d kuukausi"
1387
+ msgstr[1] "%d kuukautta"
1388
+
1389
+ #: includes/utility-class.php:261
1390
+ msgid "%d month ago"
1391
+ msgid_plural "%d months ago"
1392
+ msgstr[0] "%d kuukausi sitten"
1393
+ msgstr[1] "%d kuukautta sitten"
1394
+
1395
+ #: modules/checkers/http.php:243
1396
+ msgid "Server Not Found"
1397
+ msgstr "Palvelinta ei löydy"
1398
+
1399
+ #: modules/checkers/http.php:258
1400
+ msgid "Connection Failed"
1401
+ msgstr "Yhteys epäonnistui"
1402
+
1403
+ #: modules/checkers/http.php:293 modules/checkers/http.php:363
1404
+ msgid "HTTP code : %d"
1405
+ msgstr "HTTP-koodi: %d"
1406
+
1407
+ #: modules/checkers/http.php:295 modules/checkers/http.php:365
1408
+ msgid "(No response)"
1409
+ msgstr "(Ei vastausta)"
1410
+
1411
+ #: modules/checkers/http.php:301
1412
+ msgid "Most likely the connection timed out or the domain doesn't exist."
1413
+ msgstr ""
1414
+ "Todennäköisimmin yhteyden aikakatkaisu tai verkkotunnusta ei ole olemassa."
1415
+
1416
+ #: modules/checkers/http.php:372
1417
+ msgid "Request timed out."
1418
+ msgstr "Pyynnön aikakatkaisu."
1419
+
1420
+ #: modules/checkers/http.php:390
1421
+ msgid "Using Snoopy"
1422
+ msgstr "Käytetään Snoopy"
1423
+
1424
+ #: modules/containers/blogroll.php:21
1425
+ msgid "Bookmark"
1426
+ msgstr "Kirjanmerkki"
1427
+
1428
+ #: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
1429
+ msgid "Edit this bookmark"
1430
+ msgstr "Muokkaa tätä kirjanmerkkiä"
1431
+
1432
+ #: modules/containers/blogroll.php:47
1433
+ msgid ""
1434
+ "You are about to delete this link '%s'\n"
1435
+ " 'Cancel' to stop, 'OK' to delete."
1436
+ msgstr ""
1437
+ "Olet aikaissa poistaa linkin '%s'\n"
1438
+ " 'Peruuta' lopettaaksesi, 'OK' poistaaksi."
1439
+
1440
+ #: modules/containers/blogroll.php:97
1441
+ msgid "Updating bookmark %d failed"
1442
+ msgstr "Kirjanmerkin %d päivitys epäonnistui"
1443
+
1444
+ #: modules/containers/blogroll.php:128
1445
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
1446
+ msgstr "Blogilistan \"%s\" (%d) linkin poistaminen epäonnistui"
1447
+
1448
+ #: modules/containers/blogroll.php:298
1449
+ msgid "%d blogroll link deleted."
1450
+ msgid_plural "%d blogroll links deleted."
1451
+ msgstr[0] "%d blogilistan linkki poistettu."
1452
+ msgstr[1] "%d blogilistan linkkiä poistettu."
1453
+
1454
+ #: modules/containers/comment.php:53
1455
+ msgid "Updating comment %d failed"
1456
+ msgstr "Kommentin %d päivitys epäonnistui"
1457
+
1458
+ #: modules/containers/comment.php:74
1459
+ msgid "Failed to delete comment %d"
1460
+ msgstr "Kommentin %d poistaminen epäonnistui"
1461
+
1462
+ #: modules/containers/comment.php:95
1463
+ msgid "Can't move comment %d to the trash"
1464
+ msgstr "Kommenttia %d ei voida siirtää roskakoriin"
1465
+
1466
+ #: modules/containers/comment.php:153 modules/containers/comment.php:195
1467
+ msgid "Edit comment"
1468
+ msgstr "Muokkaa kommenttia"
1469
+
1470
+ #: modules/containers/comment.php:160
1471
+ msgid "Delete Permanently"
1472
+ msgstr "Poista pysyvästi"
1473
+
1474
+ #: modules/containers/comment.php:162
1475
+ msgid "Move this comment to the trash"
1476
+ msgstr "Siirrä tämä kommentti roskakoriin"
1477
+
1478
+ #: modules/containers/comment.php:162
1479
+ msgctxt "verb"
1480
+ msgid "Trash"
1481
+ msgstr "Roskakoriin"
1482
+
1483
+ #: modules/containers/comment.php:166
1484
+ msgid "View comment"
1485
+ msgstr "Näytä kommentti"
1486
+
1487
+ #: modules/containers/comment.php:183
1488
+ msgid "Comment"
1489
+ msgstr "Kommentti"
1490
+
1491
+ #: modules/containers/comment.php:355
1492
+ msgid "%d comment has been deleted."
1493
+ msgid_plural "%d comments have been deleted."
1494
+ msgstr[0] "%d kommentti poistettu."
1495
+ msgstr[1] "%d kommenttia poistettu."
1496
+
1497
+ #: modules/containers/comment.php:374
1498
+ msgid "%d comment moved to the Trash."
1499
+ msgid_plural "%d comments moved to the Trash."
1500
+ msgstr[0] "%d kommentti siirretty roskakoriin."
1501
+ msgstr[1] "%d kommenttia siirretty roskakoriin."
1502
+
1503
+ #: modules/containers/custom_field.php:84
1504
+ msgid "Failed to update the meta field '%s' on %s [%d]"
1505
+ msgstr "Meta-kentän '%s' sijainnista %s [%d] päivittäminen epäonnistui"
1506
+
1507
+ #: modules/containers/custom_field.php:110
1508
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
1509
+ msgstr "Meta-kentän '%s' sijainnista %s [%d] poistaminen epäonnistui"
1510
+
1511
+ #: modules/containers/custom_field.php:187
1512
+ msgid "Edit this post"
1513
+ msgstr "Muokkaa tätä artikkelia"
1514
+
1515
+ #: modules/containers/custom_field.php:217
1516
+ msgid "View \"%s\""
1517
+ msgstr "Näytä \"%s\""
1518
+
1519
+ #: modules/containers/dummy.php:34 modules/containers/dummy.php:45
1520
+ msgid "I don't know how to edit a '%s' [%d]."
1521
+ msgstr "En tiedä kuinka muokata '%s' [%d]."
1522
+
1523
+ #: modules/extras/dailymotion-embed.php:23
1524
+ msgid "DailyMotion Video"
1525
+ msgstr "DailyMotion-video"
1526
+
1527
+ #: modules/extras/dailymotion-embed.php:24
1528
+ msgid "Embedded DailyMotion video"
1529
+ msgstr "Upotettu DailyMotion-video"
1530
+
1531
+ #: modules/extras/embed-parser-base.php:196
1532
+ msgid ""
1533
+ "Embedded videos can't be edited using Broken Link Checker. Please edit or "
1534
+ "replace the video in question manually."
1535
+ msgstr ""
1536
+ "Upotettuja videoita ei voida muokata Broken Link Checkeria käyttäen. Muokkaa "
1537
+ "tai korvaa kyseinen video käsin."
1538
+
1539
+ #: modules/extras/fileserve.php:55
1540
+ msgid "Using FileServe API"
1541
+ msgstr "Käytetään FileServe API"
1542
+
1543
+ #: modules/extras/fileserve.php:112 modules/extras/mediafire.php:91
1544
+ #: modules/extras/mediafire.php:96 modules/extras/megaupload.php:81
1545
+ #: modules/extras/megaupload.php:123 modules/extras/rapidshare.php:139
1546
+ msgid "Not Found"
1547
+ msgstr "Ei löydy"
1548
+
1549
+ #: modules/extras/fileserve.php:115
1550
+ msgid "FileServe : %d %s"
1551
+ msgstr "FileServe : %d %s"
1552
+
1553
+ #: modules/extras/googlevideo-embed.php:24
1554
+ msgid "GoogleVideo Video"
1555
+ msgstr "GoogleVideo-video"
1556
+
1557
+ #: modules/extras/googlevideo-embed.php:25
1558
+ msgid "Embedded GoogleVideo video"
1559
+ msgstr "Upotettu GoogleVideo-video"
1560
+
1561
+ #: modules/extras/megaupload.php:130
1562
+ msgid "File Temporarily Unavailable"
1563
+ msgstr "Tiedosto väliaikaisesti saavuttamattomissa"
1564
+
1565
+ #: modules/extras/megaupload.php:136
1566
+ msgid "API Error"
1567
+ msgstr "API-virhe"
1568
+
1569
+ #: modules/extras/megavideo-embed.php:24
1570
+ msgid "Megavideo Video"
1571
+ msgstr "Megavideo-video"
1572
+
1573
+ #: modules/extras/megavideo-embed.php:25
1574
+ msgid "Embedded Megavideo video"
1575
+ msgstr "Upotettu Mediavideo-video"
1576
+
1577
+ #: modules/extras/rapidshare.php:51
1578
+ msgid "Using RapidShare API"
1579
+ msgstr "Käytetään RapidShare API"
1580
+
1581
+ #: modules/extras/rapidshare.php:158
1582
+ msgid "RS Server Down"
1583
+ msgstr "RS-palvelin alhaalla"
1584
+
1585
+ #: modules/extras/rapidshare.php:165
1586
+ msgid "File Blocked"
1587
+ msgstr "Tiedosto estetty"
1588
+
1589
+ #: modules/extras/rapidshare.php:172
1590
+ msgid "File Locked"
1591
+ msgstr "Tiedosto lukittu"
1592
+
1593
+ #: modules/extras/rapidshare.php:183
1594
+ msgid "RapidShare : %s"
1595
+ msgstr "RapidShare : %s"
1596
+
1597
+ #: modules/extras/rapidshare.php:189
1598
+ msgid "RapidShare API error: %s"
1599
+ msgstr "RapidShare API-virhe: %s"
1600
+
1601
+ #: modules/extras/vimeo-embed.php:24
1602
+ msgid "Vimeo Video"
1603
+ msgstr "Vimeo-video"
1604
+
1605
+ #: modules/extras/vimeo-embed.php:25
1606
+ msgid "Embedded Vimeo video"
1607
+ msgstr "Upotettu Vimeo-video"
1608
+
1609
+ #: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
1610
+ msgid "YouTube Video"
1611
+ msgstr "YouTube-video"
1612
+
1613
+ #: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
1614
+ msgid "Embedded YouTube video"
1615
+ msgstr "Upotettu YouTube-video"
1616
+
1617
+ #: modules/extras/youtube.php:73 modules/extras/youtube.php:76
1618
+ msgid "Video Not Found"
1619
+ msgstr "Videota ei löydy"
1620
+
1621
+ #: modules/extras/youtube.php:84
1622
+ msgid "Video Removed"
1623
+ msgstr "Video poistettu"
1624
+
1625
+ #: modules/extras/youtube.php:92
1626
+ msgid "Invalid Video ID"
1627
+ msgstr "Virheellinen video ID"
1628
+
1629
+ #: modules/extras/youtube.php:104
1630
+ msgid "Video OK"
1631
+ msgstr "Video OK"
1632
+
1633
+ #: modules/extras/youtube.php:105 modules/extras/youtube.php:132
1634
+ msgid "OK"
1635
+ msgstr "OK"
1636
+
1637
+ #: modules/extras/youtube.php:118
1638
+ msgid "Video status : %s%s"
1639
+ msgstr "Videon tila : %s%s"
1640
+
1641
+ #: modules/extras/youtube.php:137
1642
+ msgid "Video Restricted"
1643
+ msgstr "Rajoitettu video"
1644
+
1645
+ #: modules/extras/youtube.php:154
1646
+ msgid "Unknown YouTube API response received."
1647
+ msgstr "Vastaanotettiin tuntematon YouTube API-vastaus."
1648
+
1649
+ #: modules/parsers/image.php:159
1650
+ msgid "Image"
1651
+ msgstr "Kuva"
1652
+
1653
+ #: modules/parsers/metadata.php:117
1654
+ msgid "Custom field"
1655
+ msgstr "Mukautettu kenttä"
1656
+
1657
+ #. Plugin URI of the plugin/theme
1658
+ msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1659
+ msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1660
+
1661
+ #. Description of the plugin/theme
1662
+ msgid ""
1663
+ "Checks your blog for broken links and missing images and notifies you on the "
1664
+ "dashboard if any are found."
1665
+ msgstr ""
1666
+ "Tarkistaa blogisi rikkinäisten linkkien ja puuttuvien kuvien osalta sekä "
1667
+ "ilmoittaa ohjausnäkymässä mikäli niitä löytyy."
1668
+
1669
+ #. Author of the plugin/theme
1670
+ msgid "Janis Elsts"
1671
+ msgstr "Janis Elsts"
1672
+
1673
+ #. Author URI of the plugin/theme
1674
+ msgid "http://w-shadow.com/blog/"
1675
+ msgstr "http://w-shadow.com/blog/"
languages/broken-link-checker-fr_FR.mo CHANGED
Binary file
languages/broken-link-checker-fr_FR.po CHANGED
@@ -4,7 +4,7 @@ msgstr ""
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
  "POT-Creation-Date: 2012-03-27 09:01:12+00:00\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Whiler, Luc Capronnier <webmaster@blogs.wittwer.fr>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -37,12 +37,12 @@ msgstr "R&eacute;glages du v&eacute;rificateur de liens"
37
 
38
  #: core/core.php:286
39
  msgid "Link Checker"
40
- msgstr "Link Checker"
41
 
42
  #: core/core.php:291
43
  #: includes/link-query.php:26
44
  msgid "Broken Links"
45
- msgstr "Broken Links"
46
 
47
  #: core/core.php:307
48
  msgid "View Broken Links"
@@ -77,7 +77,7 @@ msgstr "Essayer de d&eacute;sactiver puis de r&eacute;activer le plugin."
77
 
78
  #: core/core.php:521
79
  msgid "Settings saved."
80
- msgstr "R&eacute;glages enregistrer"
81
 
82
  #: core/core.php:527
83
  msgid "Thank you for your donation!"
@@ -147,7 +147,7 @@ msgstr "M'envoyer un courriel de notification avec les nouveaux liens cass&eacut
147
 
148
  #: core/core.php:683
149
  msgid "Send authors e-mail notifications about broken links in their posts"
150
- msgstr "Envoyer un courriel de notification aux autheurs des articles qui ont des liens cass&eacute;s"
151
 
152
  #: core/core.php:690
153
  msgid "Link tweaks"
@@ -197,7 +197,7 @@ msgstr "Type du lien"
197
 
198
  #: core/core.php:826
199
  msgid "Error : All link parsers missing!"
200
- msgstr "Erreur: Tous les analyseurs de liens sont abscents!"
201
 
202
  #: core/core.php:833
203
  msgid "Exclusion list"
@@ -224,7 +224,7 @@ msgstr "%s secondes"
224
 
225
  #: core/core.php:886
226
  msgid "Links that take longer than this to load will be marked as broken."
227
- msgstr "Les Liens qui prennent plus de temps que cela à se charger seront marqu&eacute;s comme cass&eacute;s."
228
 
229
  #: core/core.php:893
230
  msgid "Link monitor"
@@ -244,7 +244,7 @@ msgstr "Temps d'ex&eacute;cution maximal&nbsp;:"
244
 
245
  #: core/core.php:934
246
  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."
247
- msgstr "Cet extension fonctionne en cr&eacute;ant un processus en fond de t&acirc;che p&eacute;riodiquement qui parcourt les articles en cherchant les liens, v&eacute;rifie les URL d&eacute;couvertes, et effectue d'autres t&acirc;ches consommatrices de temps. Vous pouvez sp&eacute;cifier ici le temps maximal o&ugrave; le processus peut s'ex&eacute;cuter avant de s'arr&ecirc;ter."
248
 
249
  #: core/core.php:943
250
  msgid "Server load limit"
@@ -314,7 +314,7 @@ msgstr "ID du flitre non sp&eacute;cifi&eacute;."
314
 
315
  #: core/core.php:1380
316
  msgid "Filter deleted"
317
- msgstr "Filtre supprimer"
318
 
319
  #: core/core.php:1427
320
  msgid "Replaced %d redirect with a direct link"
@@ -330,7 +330,7 @@ msgstr[1] "Impossible de r&eacute;parer les redirections %d"
330
 
331
  #: core/core.php:1449
332
  msgid "None of the selected links are redirects!"
333
- msgstr "Aucun des liens s&eacute;lectionner ne sont des redirections!"
334
 
335
  #: core/core.php:1527
336
  msgid "%d link updated."
@@ -644,7 +644,7 @@ msgstr "Attendez..."
644
  #: includes/admin/links-page-js.php:99
645
  #: includes/admin/table-printer.php:616
646
  msgid "Not broken"
647
- msgstr "Pas casser"
648
 
649
  #: includes/admin/links-page-js.php:213
650
  msgid "%d instances of the link were successfully modified."
@@ -778,7 +778,7 @@ msgstr "Annuler"
778
 
779
  #: includes/admin/sidebar.php:40
780
  msgid "Donate $10, $20 or $50!"
781
- msgstr "Doner $10, $20 ou $50!"
782
 
783
  #: includes/admin/sidebar.php:43
784
  msgid "If you like this plugin, please donate to support development and maintenance!"
@@ -851,7 +851,7 @@ msgstr "Modifier les URL en masse"
851
 
852
  #: includes/admin/table-printer.php:320
853
  msgid "Find"
854
- msgstr "Trouv&eacute;"
855
 
856
  #: includes/admin/table-printer.php:324
857
  msgid "Replace with"
@@ -899,7 +899,7 @@ msgstr "Nombre de redirections"
899
 
900
  #: includes/admin/table-printer.php:504
901
  msgid "Instance count"
902
- msgstr "Nombre d'instance"
903
 
904
  #: includes/admin/table-printer.php:513
905
  msgid "This link has failed %d time."
@@ -922,7 +922,7 @@ msgstr "Afficher plus d'informations concernant ce lien"
922
  #: includes/admin/table-printer.php:571
923
  msgctxt "checked how long ago"
924
  msgid "Checked"
925
- msgstr "V&eacute;rifier"
926
 
927
  #: includes/admin/table-printer.php:587
928
  msgid "Broken for"
@@ -1533,7 +1533,7 @@ msgstr "Embedded GoogleVideo vid&eacute;o"
1533
 
1534
  #: modules/extras/megaupload.php:130
1535
  msgid "File Temporarily Unavailable"
1536
- msgstr "Fichier temporairement non accessible"
1537
 
1538
  #: modules/extras/megaupload.php:136
1539
  msgid "API Error"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
  "POT-Creation-Date: 2012-03-27 09:01:12+00:00\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: toto <toto@toto.com>\n"
8
  "Language-Team: Whiler, Luc Capronnier <webmaster@blogs.wittwer.fr>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
37
 
38
  #: core/core.php:286
39
  msgid "Link Checker"
40
+ msgstr "V&eacute;rificateur de lien"
41
 
42
  #: core/core.php:291
43
  #: includes/link-query.php:26
44
  msgid "Broken Links"
45
+ msgstr "Liens cass&eacute;s"
46
 
47
  #: core/core.php:307
48
  msgid "View Broken Links"
77
 
78
  #: core/core.php:521
79
  msgid "Settings saved."
80
+ msgstr "R&eacute;glages enregistr&eacute;s"
81
 
82
  #: core/core.php:527
83
  msgid "Thank you for your donation!"
147
 
148
  #: core/core.php:683
149
  msgid "Send authors e-mail notifications about broken links in their posts"
150
+ msgstr "Envoyer un courriel de notification aux auteurs des articles qui ont des liens cass&eacute;s"
151
 
152
  #: core/core.php:690
153
  msgid "Link tweaks"
197
 
198
  #: core/core.php:826
199
  msgid "Error : All link parsers missing!"
200
+ msgstr "Erreur: Tous les analyseurs de liens sont absents!"
201
 
202
  #: core/core.php:833
203
  msgid "Exclusion list"
224
 
225
  #: core/core.php:886
226
  msgid "Links that take longer than this to load will be marked as broken."
227
+ msgstr "Les liens qui prennent plus de temps que cela à se charger seront marqu&eacute;s comme cass&eacute;s."
228
 
229
  #: core/core.php:893
230
  msgid "Link monitor"
244
 
245
  #: core/core.php:934
246
  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."
247
+ msgstr "Cette extension fonctionne en cr&eacute;ant un processus en fond de t&acirc;che p&eacute;riodiquement qui parcourt les articles en cherchant les liens, v&eacute;rifie les URL d&eacute;couvertes, et effectue d'autres t&acirc;ches consommatrices de temps. Vous pouvez sp&eacute;cifier ici le temps maximal o&ugrave; le processus peut s'ex&eacute;cuter avant de s'arr&ecirc;ter."
248
 
249
  #: core/core.php:943
250
  msgid "Server load limit"
314
 
315
  #: core/core.php:1380
316
  msgid "Filter deleted"
317
+ msgstr "Filtre supprim&eacute;"
318
 
319
  #: core/core.php:1427
320
  msgid "Replaced %d redirect with a direct link"
330
 
331
  #: core/core.php:1449
332
  msgid "None of the selected links are redirects!"
333
+ msgstr "Aucun des liens s&eacute;lectionn&eacute; ne sont des redirections!"
334
 
335
  #: core/core.php:1527
336
  msgid "%d link updated."
644
  #: includes/admin/links-page-js.php:99
645
  #: includes/admin/table-printer.php:616
646
  msgid "Not broken"
647
+ msgstr "Pas cass&eacute;"
648
 
649
  #: includes/admin/links-page-js.php:213
650
  msgid "%d instances of the link were successfully modified."
778
 
779
  #: includes/admin/sidebar.php:40
780
  msgid "Donate $10, $20 or $50!"
781
+ msgstr "Donner $10, $20 ou $50!"
782
 
783
  #: includes/admin/sidebar.php:43
784
  msgid "If you like this plugin, please donate to support development and maintenance!"
851
 
852
  #: includes/admin/table-printer.php:320
853
  msgid "Find"
854
+ msgstr "Trouver"
855
 
856
  #: includes/admin/table-printer.php:324
857
  msgid "Replace with"
899
 
900
  #: includes/admin/table-printer.php:504
901
  msgid "Instance count"
902
+ msgstr "Nombre d'instances"
903
 
904
  #: includes/admin/table-printer.php:513
905
  msgid "This link has failed %d time."
922
  #: includes/admin/table-printer.php:571
923
  msgctxt "checked how long ago"
924
  msgid "Checked"
925
+ msgstr "V&eacute;rifi&eacute;"
926
 
927
  #: includes/admin/table-printer.php:587
928
  msgid "Broken for"
1533
 
1534
  #: modules/extras/megaupload.php:130
1535
  msgid "File Temporarily Unavailable"
1536
+ msgstr "Fichier temporairement inaccessible"
1537
 
1538
  #: modules/extras/megaupload.php:136
1539
  msgid "API Error"
languages/broken-link-checker-it_IT.mo CHANGED
Binary file
languages/broken-link-checker-it_IT.po CHANGED
@@ -7,8 +7,8 @@ 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: 2011-12-10 11:41:41+00:00\n"
11
- "PO-Revision-Date: 2011-12-13 10:30+0100\n"
12
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
13
  "Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
14
  "MIME-Version: 1.0\n"
@@ -18,331 +18,6 @@ msgstr ""
18
  "X-Poedit-Language: Italian\n"
19
  "X-Poedit-Country: ITALY\n"
20
 
21
- #: modules/containers/dummy.php:34
22
- #: modules/containers/dummy.php:45
23
- msgid "I don't know how to edit a '%s' [%d]."
24
- msgstr "Non so come modificare un '%s' [%d]."
25
-
26
- #: modules/containers/custom_field.php:84
27
- msgid "Failed to update the meta field '%s' on %s [%d]"
28
- msgstr "Non é stato possibile aggiornare il campo meta '%s' in %s [%d]"
29
-
30
- #: modules/containers/custom_field.php:110
31
- msgid "Failed to delete the meta field '%s' on %s [%d]"
32
- msgstr "Non é stato possibile cancellare il campo meta '%s' in %s [%d]"
33
-
34
- #: modules/containers/custom_field.php:187
35
- msgid "Edit this post"
36
- msgstr "Modifica questo articolo"
37
-
38
- #: modules/containers/custom_field.php:197
39
- #: includes/any-post.php:455
40
- msgid "Edit this item"
41
- msgstr "modifica questo termine"
42
-
43
- #: modules/containers/custom_field.php:197
44
- #: modules/containers/blogroll.php:46
45
- #: modules/containers/comment.php:153
46
- #: includes/any-post.php:397
47
- msgid "Edit"
48
- msgstr "Modifica"
49
-
50
- #: modules/containers/custom_field.php:203
51
- #: includes/any-post.php:405
52
- msgid "Move this item to the Trash"
53
- msgstr "Sposta questo termine nel cestino"
54
-
55
- #: modules/containers/custom_field.php:205
56
- #: includes/any-post.php:407
57
- msgid "Trash"
58
- msgstr "Cestino"
59
-
60
- #: modules/containers/custom_field.php:210
61
- #: includes/any-post.php:412
62
- msgid "Delete this item permanently"
63
- msgstr "Cancella questo termine in modo definitivo"
64
-
65
- #: modules/containers/custom_field.php:212
66
- #: modules/containers/blogroll.php:47
67
- #: includes/any-post.php:414
68
- msgid "Delete"
69
- msgstr "Cancella"
70
-
71
- #: modules/containers/custom_field.php:217
72
- msgid "View \"%s\""
73
- msgstr "Visualizza \"%s\""
74
-
75
- #: modules/containers/custom_field.php:217
76
- #: modules/containers/comment.php:166
77
- #: includes/any-post.php:436
78
- msgid "View"
79
- msgstr "Visualizza"
80
-
81
- #: modules/containers/custom_field.php:284
82
- #: includes/any-post.php:564
83
- msgid "Failed to delete post \"%s\" (%d)"
84
- msgstr "Non é stato possibile cancellare il post \"%s\" (%d)"
85
-
86
- #: modules/containers/custom_field.php:303
87
- #: includes/any-post.php:583
88
- msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
89
- msgstr "Non é stato possibile spostare l'articolo \"%s\" (%d) nel cestino poiché la funzione cestino non é attiva"
90
-
91
- #: modules/containers/custom_field.php:322
92
- #: includes/any-post.php:603
93
- msgid "Failed to move post \"%s\" (%d) to the trash"
94
- msgstr "Impossibile spostare l'articolo \"%s\" (%d) nel cestino"
95
-
96
- #: modules/containers/blogroll.php:21
97
- msgid "Bookmark"
98
- msgstr "Segnalibro"
99
-
100
- #: modules/containers/blogroll.php:27
101
- #: modules/containers/blogroll.php:46
102
- msgid "Edit this bookmark"
103
- msgstr "Modifica questo segnalibro"
104
-
105
- #: modules/containers/blogroll.php:47
106
- msgid ""
107
- "You are about to delete this link '%s'\n"
108
- " 'Cancel' to stop, 'OK' to delete."
109
- msgstr ""
110
- "Stai per cancellare questo link '%s'\n"
111
- " 'Annulla' per fermarti, 'OK' per cancellare."
112
-
113
- #: modules/containers/blogroll.php:83
114
- #: modules/containers/comment.php:43
115
- #: includes/any-post.php:519
116
- msgid "Nothing to update"
117
- msgstr "Nulla da aggiornare"
118
-
119
- #: modules/containers/blogroll.php:97
120
- msgid "Updating bookmark %d failed"
121
- msgstr "Non é stato possibile aggiornare il bookmark %d"
122
-
123
- #: modules/containers/blogroll.php:128
124
- msgid "Failed to delete blogroll link \"%s\" (%d)"
125
- msgstr "Non é stato possibile cancellare il link \"%s\" (%d) presente nel blogroll"
126
-
127
- #: modules/containers/blogroll.php:298
128
- msgid "%d blogroll link deleted."
129
- msgid_plural "%d blogroll links deleted."
130
- msgstr[0] "Il link %d presente nel blogroll é stato cancellato"
131
- msgstr[1] "I link %d presenti nel blogroll sono stati cancellati"
132
-
133
- #: modules/containers/comment.php:53
134
- msgid "Updating comment %d failed"
135
- msgstr "Non é stato possibile aggiornare il commento %d"
136
-
137
- #: modules/containers/comment.php:74
138
- msgid "Failed to delete comment %d"
139
- msgstr "Non é stato possibile cancellare il commento %d"
140
-
141
- #: modules/containers/comment.php:95
142
- msgid "Can't move comment %d to the trash"
143
- msgstr "Non é stato possibile spostare nel cestino il commento %d"
144
-
145
- #: modules/containers/comment.php:153
146
- #: modules/containers/comment.php:195
147
- msgid "Edit comment"
148
- msgstr "Modifica commento"
149
-
150
- #: modules/containers/comment.php:160
151
- msgid "Delete Permanently"
152
- msgstr "Cancella definitivamente"
153
-
154
- #: modules/containers/comment.php:162
155
- msgid "Move this comment to the trash"
156
- msgstr "Sposta questo commento nel cestino"
157
-
158
- #: modules/containers/comment.php:162
159
- msgctxt "verb"
160
- msgid "Trash"
161
- msgstr "Cestino"
162
-
163
- #: modules/containers/comment.php:166
164
- msgid "View comment"
165
- msgstr "Visualizza il commento"
166
-
167
- #: modules/containers/comment.php:183
168
- msgid "Comment"
169
- msgstr "Commento"
170
-
171
- #: modules/containers/comment.php:355
172
- msgid "%d comment has been deleted."
173
- msgid_plural "%d comments have been deleted."
174
- msgstr[0] "%d commento é stato cancellato"
175
- msgstr[1] "%d commenti sono stati cancellati"
176
-
177
- #: modules/containers/comment.php:374
178
- msgid "%d comment moved to the Trash."
179
- msgid_plural "%d comments moved to the Trash."
180
- msgstr[0] "%d commento spostato nel cestino"
181
- msgstr[1] "%d commenti spostati nel cestino"
182
-
183
- #: modules/checkers/http.php:242
184
- msgid "Server Not Found"
185
- msgstr "Server non trovato"
186
-
187
- #: modules/checkers/http.php:257
188
- msgid "Connection Failed"
189
- msgstr "Tentativo di connessione non riuscito"
190
-
191
- #: modules/checkers/http.php:263
192
- #: modules/extras/mediafire.php:96
193
- #: includes/links.php:845
194
- msgid "Unknown Error"
195
- msgstr "Errore sconosciuto"
196
-
197
- #: modules/checkers/http.php:292
198
- #: modules/checkers/http.php:362
199
- msgid "HTTP code : %d"
200
- msgstr "Codice HTTP : %d"
201
-
202
- #: modules/checkers/http.php:294
203
- #: modules/checkers/http.php:364
204
- msgid "(No response)"
205
- msgstr "(nessuna risposta)"
206
-
207
- #: modules/checkers/http.php:300
208
- msgid "Most likely the connection timed out or the domain doesn't exist."
209
- msgstr "Connessione scaduta oppure il dominio non esiste."
210
-
211
- #: modules/checkers/http.php:371
212
- msgid "Request timed out."
213
- msgstr "Richiesta scaduta."
214
-
215
- #: modules/checkers/http.php:389
216
- msgid "Using Snoopy"
217
- msgstr "Snoopy in uso"
218
-
219
- #: modules/parsers/image.php:159
220
- msgid "Image"
221
- msgstr "Immagine"
222
-
223
- #: modules/parsers/metadata.php:117
224
- msgid "Custom field"
225
- msgstr "Campo personalizzato"
226
-
227
- #: modules/extras/youtube-iframe.php:25
228
- #: modules/extras/youtube-embed.php:24
229
- msgid "YouTube Video"
230
- msgstr "YouTube Video"
231
-
232
- #: modules/extras/youtube-iframe.php:26
233
- #: modules/extras/youtube-embed.php:25
234
- msgid "Embedded YouTube video"
235
- msgstr "Video incorporato YouTube"
236
-
237
- #: modules/extras/dailymotion-embed.php:23
238
- msgid "DailyMotion Video"
239
- msgstr "DailyMotion Video"
240
-
241
- #: modules/extras/dailymotion-embed.php:24
242
- msgid "Embedded DailyMotion video"
243
- msgstr "Video incorporato DailyMotion"
244
-
245
- #: modules/extras/rapidshare.php:142
246
- #: modules/extras/mediafire.php:91
247
- #: modules/extras/megaupload.php:109
248
- msgid "Not Found"
249
- msgstr "Non trovato"
250
-
251
- #: modules/extras/rapidshare.php:148
252
- #: modules/extras/rapidshare.php:154
253
- #: modules/extras/rapidshare.php:181
254
- #: modules/extras/megaupload.php:101
255
- #: includes/links.php:875
256
- msgctxt "link status"
257
- msgid "OK"
258
- msgstr "OK"
259
-
260
- #: modules/extras/rapidshare.php:161
261
- msgid "RS Server Down"
262
- msgstr "RS Server Down"
263
-
264
- #: modules/extras/rapidshare.php:168
265
- msgid "File Blocked"
266
- msgstr "File bloccato"
267
-
268
- #: modules/extras/rapidshare.php:175
269
- msgid "File Locked"
270
- msgstr "File protetto"
271
-
272
- #: modules/extras/rapidshare.php:186
273
- msgid "RapidShare : %s"
274
- msgstr "RapidShare : %s"
275
-
276
- #: modules/extras/rapidshare.php:192
277
- msgid "RapidShare API error: %s"
278
- msgstr "Errore API RapidShare: %s"
279
-
280
- #: modules/extras/embed-parser-base.php:182
281
- msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
282
- msgstr "I video incorporati non possono essere modificati da Broken Link Checker. Sostituisci o modifica i video manualmente."
283
-
284
- #: modules/extras/vimeo-embed.php:24
285
- msgid "Vimeo Video"
286
- msgstr "Vimeo Video"
287
-
288
- #: modules/extras/vimeo-embed.php:25
289
- msgid "Embedded Vimeo video"
290
- msgstr "Video incorporato Vimeo"
291
-
292
- #: modules/extras/youtube.php:73
293
- #: modules/extras/youtube.php:76
294
- msgid "Video Not Found"
295
- msgstr "Video non trovato"
296
-
297
- #: modules/extras/youtube.php:84
298
- msgid "Video Removed"
299
- msgstr "Video rimosso"
300
-
301
- #: modules/extras/youtube.php:92
302
- msgid "Invalid Video ID"
303
- msgstr "ID video non valida"
304
-
305
- #: modules/extras/youtube.php:104
306
- msgid "Video OK"
307
- msgstr "Video OK"
308
-
309
- #: modules/extras/youtube.php:105
310
- #: modules/extras/youtube.php:132
311
- msgid "OK"
312
- msgstr "OK"
313
-
314
- #: modules/extras/youtube.php:118
315
- msgid "Video status : %s%s"
316
- msgstr "Stato video : %s%s"
317
-
318
- #: modules/extras/youtube.php:137
319
- msgid "Video Restricted"
320
- msgstr "Video riservato"
321
-
322
- #: modules/extras/youtube.php:154
323
- msgid "Unknown YouTube API response received."
324
- msgstr "Risposta sconosciuta ricevuta da API YouTube."
325
-
326
- #: modules/extras/megaupload.php:116
327
- msgid "File Temporarily Unavailable"
328
- msgstr "File temporameamente non disponibile"
329
-
330
- #: modules/extras/megaupload.php:122
331
- msgid "API Error"
332
- msgstr "Errore API"
333
-
334
- #: core/init.php:231
335
- msgid "Once Weekly"
336
- msgstr "Una volta alla settimana"
337
-
338
- #: core/init.php:237
339
- msgid "Twice a Month"
340
- msgstr "Due volte al mese"
341
-
342
- #: core/init.php:307
343
- msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
344
- msgstr "L'installazione di Broken Link Checker é fallita. Prova a disattivare quindi, riattivare il plugin."
345
-
346
  #: core/core.php:146
347
  #: includes/admin/links-page-js.php:37
348
  msgid "Loading..."
@@ -379,7 +54,7 @@ msgid "Feedback"
379
  msgstr "Feedback"
380
 
381
  #: core/core.php:330
382
- #: includes/admin/sidebar.php:50
383
  msgid "More plugins by Janis Elsts"
384
  msgstr "Altri plugin da Janis Elsts"
385
 
@@ -392,12 +67,12 @@ msgid "Settings"
392
  msgstr "Impostazioni"
393
 
394
  #: core/core.php:378
395
- #: core/core.php:1160
396
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
397
  msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
398
 
399
  #: core/core.php:382
400
- #: core/core.php:1164
401
  msgid "Try deactivating and then reactivating the plugin."
402
  msgstr "Prova a disattivare quindi, riattivare il plugin."
403
 
@@ -484,455 +159,484 @@ msgid "Apply custom formatting to broken links"
484
  msgstr "Applica formattazione personalizzata ai link rotti"
485
 
486
  #: core/core.php:700
487
- #: core/core.php:728
488
  msgid "Edit CSS"
489
  msgstr "Modifica CSS"
490
 
491
- #: core/core.php:724
 
 
 
 
 
 
 
 
 
492
  msgid "Apply custom formatting to removed links"
493
  msgstr "Applica la formattazione personalizzata ai link rimossi"
494
 
495
- #: core/core.php:752
 
 
 
 
496
  msgid "Stop search engines from following broken links"
497
  msgstr "Blocca i motori di ricerca per i seguenti link"
498
 
499
- #: core/core.php:769
500
  msgid "Look for links in"
501
  msgstr "Cerca i links in"
502
 
503
- #: core/core.php:780
504
  msgid "Post statuses"
505
  msgstr "Stati articolo"
506
 
507
- #: core/core.php:813
508
  msgid "Link types"
509
  msgstr "Tipo di link"
510
 
511
- #: core/core.php:819
512
  msgid "Error : All link parsers missing!"
513
  msgstr "Errore : manca l'analisi di tutti i link!"
514
 
515
- #: core/core.php:826
516
  msgid "Exclusion list"
517
  msgstr "Lista estromessi"
518
 
519
- #: core/core.php:827
520
  msgid "Don't check links where the URL contains any of these words (one per line) :"
521
  msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
522
 
523
- #: core/core.php:845
524
  msgid "Check links using"
525
  msgstr "Controlla utilizzo link"
526
 
527
- #: core/core.php:864
528
  #: includes/links.php:849
529
  msgid "Timeout"
530
  msgstr "Timeout"
531
 
532
- #: core/core.php:870
533
- #: core/core.php:916
534
- #: core/core.php:2725
535
  msgid "%s seconds"
536
  msgstr "%s secondi"
537
 
538
- #: core/core.php:879
539
  msgid "Links that take longer than this to load will be marked as broken."
540
  msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
541
 
542
- #: core/core.php:886
543
  msgid "Link monitor"
544
  msgstr "Monitoraggio link"
545
 
546
- #: core/core.php:894
547
  msgid "Run continuously while the Dashboard is open"
548
  msgstr "Funzionamento continuo durante il periodo di login"
549
 
550
- #: core/core.php:902
551
  msgid "Run hourly in the background"
552
  msgstr "Funzionamento in background ogni ora"
553
 
554
- #: core/core.php:910
555
  msgid "Max. execution time"
556
  msgstr "Tempo max. operazione"
557
 
558
- #: core/core.php:927
559
  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."
560
  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."
561
 
562
- #: core/core.php:936
563
  msgid "Server load limit"
564
  msgstr "Limite server load"
565
 
566
- #: core/core.php:951
567
  msgid "Current load : %s"
568
  msgstr "In caricamento : %s"
569
 
570
- #: core/core.php:956
571
  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."
572
  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."
573
 
574
- #: core/core.php:965
575
  msgid "Not available"
576
  msgstr "Non disponibile"
577
 
578
- #: core/core.php:967
579
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
580
  msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
581
 
582
- #: core/core.php:975
583
  msgid "Forced recheck"
584
  msgstr "Imponi nuova verifica"
585
 
586
- #: core/core.php:978
587
  msgid "Re-check all pages"
588
  msgstr "Ricontrolla tutte le pagine"
589
 
590
- #: core/core.php:982
591
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
592
  msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
593
 
594
- #: core/core.php:993
595
  msgid "Save Changes"
596
  msgstr "Salva le modifiche"
597
 
598
- #: core/core.php:1044
599
  msgid "Configure"
600
  msgstr "Configura"
601
 
602
- #: core/core.php:1126
603
  msgid "Check URLs entered in these custom fields (one per line) :"
604
  msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
605
 
606
- #: core/core.php:1263
607
- #: core/core.php:1344
608
- #: core/core.php:1376
609
  msgid "Database error : %s"
610
  msgstr "Errore database : %s"
611
 
612
- #: core/core.php:1326
613
  msgid "You must enter a filter name!"
614
  msgstr "Deve essere inserito un nome del filtro!"
615
 
616
- #: core/core.php:1330
617
  msgid "Invalid search query."
618
  msgstr "Termine di ricerca non valido."
619
 
620
- #: core/core.php:1339
621
  msgid "Filter \"%s\" created"
622
  msgstr "E' stato creato il filtro \"%s\""
623
 
624
- #: core/core.php:1366
625
  msgid "Filter ID not specified."
626
  msgstr "ID filtro non specificato."
627
 
628
- #: core/core.php:1373
629
  msgid "Filter deleted"
630
  msgstr "Il filtro é stato cancellato"
631
 
632
- #: core/core.php:1420
633
  msgid "Replaced %d redirect with a direct link"
634
  msgid_plural "Replaced %d redirects with direct links"
635
  msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
636
  msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
637
 
638
- #: core/core.php:1431
639
  msgid "Failed to fix %d redirect"
640
  msgid_plural "Failed to fix %d redirects"
641
  msgstr[0] "Impossibile correggere il reindirizzamento per %d"
642
  msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
643
 
644
- #: core/core.php:1442
645
  msgid "None of the selected links are redirects!"
646
  msgstr "Nessuno dei link selezionati é reindirizzato!"
647
 
648
- #: core/core.php:1520
649
  msgid "%d link updated."
650
  msgid_plural "%d links updated."
651
  msgstr[0] "%d link aggiornato."
652
  msgstr[1] "%d link aggiornati."
653
 
654
- #: core/core.php:1531
655
  msgid "Failed to update %d link."
656
  msgid_plural "Failed to update %d links."
657
  msgstr[0] "Impossibile aggiornare il link %d"
658
  msgstr[1] "Impossibile aggiornare i link %d"
659
 
660
- #: core/core.php:1585
661
  msgid "%d link removed"
662
  msgid_plural "%d links removed"
663
  msgstr[0] "%d il link é stato rimosso"
664
  msgstr[1] "%d i link sono stati rimossi"
665
 
666
- #: core/core.php:1596
667
  msgid "Failed to remove %d link"
668
  msgid_plural "Failed to remove %d links"
669
  msgstr[0] "Impossibile rimuovere il link %d"
670
  msgstr[1] "Impossibile rimuovere i link %d"
671
 
672
- #: core/core.php:1705
673
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
674
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
675
  msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
676
  msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
677
 
678
- #: core/core.php:1727
679
  msgid "Didn't find anything to delete!"
680
  msgstr "Nulla da cancellare!"
681
 
682
- #: core/core.php:1755
683
  msgid "%d link scheduled for rechecking"
684
  msgid_plural "%d links scheduled for rechecking"
685
  msgstr[0] "%d link in verifica programmata"
686
  msgstr[1] "%d link in verifica programmata"
687
 
688
- #: core/core.php:1801
689
- #: core/core.php:2405
690
  msgid "This link was manually marked as working by the user."
691
  msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
692
 
693
- #: core/core.php:1808
694
  msgid "Couldn't modify link %d"
695
  msgstr "Non é possibile modificare il link %d"
696
 
697
- #: core/core.php:1818
698
  msgid "%d link marked as not broken"
699
  msgid_plural "%d links marked as not broken"
700
  msgstr[0] "%d link segnato come funzionante"
701
  msgstr[1] "%d link segnati come funzionanti"
702
 
703
- #: core/core.php:1858
704
  msgid "Table columns"
705
  msgstr "Colonne tabella"
706
 
707
- #: core/core.php:1877
708
  msgid "Show on screen"
709
  msgstr "Mostra sullo schermo"
710
 
711
- #: core/core.php:1884
712
  msgid "links"
713
  msgstr "link"
714
 
715
- #: core/core.php:1885
716
  #: includes/admin/table-printer.php:163
717
  msgid "Apply"
718
  msgstr "Applica"
719
 
720
- #: core/core.php:1889
721
  msgid "Misc"
722
  msgstr "Varie"
723
 
724
- #: core/core.php:1904
725
  msgid "Highlight links broken for at least %s days"
726
  msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
727
 
728
- #: core/core.php:1913
729
  msgid "Color-code status codes"
730
  msgstr "Codici stato codice-colore"
731
 
732
- #: core/core.php:1930
733
- #: core/core.php:2390
734
- #: core/core.php:2426
735
- #: core/core.php:2489
736
  msgid "You're not allowed to do that!"
737
  msgstr "Non hai il permesso per farlo!"
738
 
739
- #: core/core.php:2271
740
  msgid "View broken links"
741
  msgstr "Visualizza i link rotti"
742
 
743
- #: core/core.php:2272
744
  msgid "Found %d broken link"
745
  msgid_plural "Found %d broken links"
746
  msgstr[0] "E' stato trovato %d link rotto"
747
  msgstr[1] "Sono stati trovati %d link rotti"
748
 
749
- #: core/core.php:2278
750
  msgid "No broken links found."
751
  msgstr "Non é stato trovato alcun link rotto."
752
 
753
- #: core/core.php:2285
754
  msgid "%d URL in the work queue"
755
  msgid_plural "%d URLs in the work queue"
756
  msgstr[0] "%d URL in coda di elaborazione"
757
  msgstr[1] "%d URL in coda di elaborazione"
758
 
759
- #: core/core.php:2288
760
  msgid "No URLs in the work queue."
761
  msgstr "Nessun URL in coda di elaborazione."
762
 
763
- #: core/core.php:2294
764
  msgid "Detected %d unique URL"
765
  msgid_plural "Detected %d unique URLs"
766
  msgstr[0] "E' stato rilevato %d URL unico"
767
  msgstr[1] "Sono stati rilevati %d URL unici"
768
 
769
- #: core/core.php:2295
770
  msgid "in %d link"
771
  msgid_plural "in %d links"
772
  msgstr[0] "in %d link"
773
  msgstr[1] "in %d link"
774
 
775
- #: core/core.php:2300
776
  msgid "and still searching..."
777
  msgstr "ricerca in corso..."
778
 
779
- #: core/core.php:2306
780
  msgid "Searching your blog for links..."
781
  msgstr "Ricerca dei link in corso..."
782
 
783
- #: core/core.php:2308
784
  msgid "No links detected."
785
  msgstr "Nessun link é stato rilevato."
786
 
787
- #: core/core.php:2334
788
  msgctxt "current load"
789
  msgid "Unknown"
790
  msgstr "Sconosciuto"
791
 
792
- #: core/core.php:2398
793
- #: core/core.php:2436
794
- #: core/core.php:2499
795
  msgid "Oops, I can't find the link %d"
796
  msgstr "Oops, non é possibile trovare il link %d"
797
 
798
- #: core/core.php:2411
799
  msgid "Oops, couldn't modify the link!"
800
  msgstr "Oops, non é possibile modificare il link!"
801
 
802
- #: core/core.php:2414
803
- #: core/core.php:2525
804
  msgid "Error : link_id not specified"
805
  msgstr "Errore : non é stata specificata la link_id"
806
 
807
- #: core/core.php:2446
808
  msgid "Oops, the new URL is invalid!"
809
  msgstr "Oops, il nuovo URL non é valido!"
810
 
811
- #: core/core.php:2457
812
- #: core/core.php:2508
813
  msgid "An unexpected error occured!"
814
  msgstr "Si é verificato un errore inatteso!"
815
 
816
- #: core/core.php:2475
817
  msgid "Error : link_id or new_url not specified"
818
  msgstr "Errore : non é stata specificata la link_id oppure il new_url"
819
 
820
- #: core/core.php:2534
821
  msgid "You don't have sufficient privileges to access this information!"
822
  msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
823
 
824
- #: core/core.php:2547
825
  msgid "Error : link ID not specified"
826
  msgstr "Errore : La ID del link non é stata specificata"
827
 
828
- #: core/core.php:2561
829
  msgid "Failed to load link details (%s)"
830
  msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
831
 
832
- #. #-#-#-#-# plugin.pot (Broken Link Checker 1.3.1) #-#-#-#-#
833
  #. Plugin Name of the plugin/theme
834
- #: core/core.php:2614
835
  msgid "Broken Link Checker"
836
  msgstr "Broken Link Checker"
837
 
838
- #: core/core.php:2634
839
  msgid "PHP version"
840
  msgstr "Versione PHP"
841
 
842
- #: core/core.php:2640
843
  msgid "MySQL version"
844
  msgstr "Versione MySQL"
845
 
846
- #: core/core.php:2653
847
  msgid "You have an old version of CURL. Redirect detection may not work properly."
848
  msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
849
 
850
- #: core/core.php:2665
851
- #: core/core.php:2681
852
- #: core/core.php:2686
853
  msgid "Not installed"
854
  msgstr "Non installato"
855
 
856
- #: core/core.php:2668
857
  msgid "CURL version"
858
  msgstr "Versione CURL"
859
 
860
- #: core/core.php:2674
861
  msgid "Installed"
862
  msgstr "Installato"
863
 
864
- #: core/core.php:2687
865
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
866
  msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
867
 
868
- #: core/core.php:2698
869
  msgid "On"
870
  msgstr "On"
871
 
872
- #: core/core.php:2699
873
  msgid "Redirects may be detected as broken links when safe_mode is on."
874
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
875
 
876
- #: core/core.php:2704
877
- #: core/core.php:2718
878
  msgid "Off"
879
  msgstr "Off"
880
 
881
- #: core/core.php:2712
882
  msgid "On ( %s )"
883
  msgstr "On ( %s )"
884
 
885
- #: core/core.php:2713
886
  msgid "Redirects may be detected as broken links when open_basedir is on."
887
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
888
 
889
- #: core/core.php:2742
890
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
891
  msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
892
 
893
- #: core/core.php:2833
894
- #: core/core.php:2931
895
  msgid "[%s] Broken links detected"
896
  msgstr "[%s] Link rotti rilevati"
897
 
898
- #: core/core.php:2838
899
  msgid "Broken Link Checker has detected %d new broken link on your site."
900
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
901
  msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
902
  msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
903
 
904
- #: core/core.php:2861
905
  msgid "Here's a list of the first %d broken links:"
906
  msgid_plural "Here's a list of the first %d broken links:"
907
  msgstr[0] "Ecco una lista del primo %d link rotto:"
908
  msgstr[1] "Ecco una lista dei primi %d link rotti:"
909
 
910
- #: core/core.php:2870
911
  msgid "Here's a list of the new broken links: "
912
  msgstr "Ecco una lista con i nuovi link rotti:"
913
 
914
- #: core/core.php:2879
915
  msgid "Link text : %s"
916
  msgstr "Testo del link : %s"
917
 
918
- #: core/core.php:2880
919
  msgid "Link URL : <a href=\"%s\">%s</a>"
920
  msgstr "URL del link : <a href=\"%s\">%s</a>"
921
 
922
- #: core/core.php:2881
923
  msgid "Source : %s"
924
  msgstr "Sorgente : %s"
925
 
926
- #: core/core.php:2894
927
  msgid "You can see all broken links here:"
928
  msgstr "Qui puoi vedere tutti i link rotti:"
929
 
930
- #: core/core.php:2936
931
  msgid "Broken Link Checker has detected %d new broken link in your posts."
932
  msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
933
  msgstr[0] "Broken Link Checker ha rilevato nei tuoi articoli %d nuovo link rotto."
934
  msgstr[1] "Broken Link Checker ha rilevato nei tuoi articoli %d nuovi link rotti."
935
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
936
  #: includes/admin/links-page-js.php:58
937
  #: includes/admin/links-page-js.php:301
938
  msgid "Wait..."
@@ -1014,6 +718,10 @@ msgstr "Inserisci prima il termine di ricerca."
1014
  msgid "Select one or more links to edit."
1015
  msgstr "Seleziona uno o più link da modificare."
1016
 
 
 
 
 
1017
  #: includes/admin/search-form.php:16
1018
  msgid "Save This Search As a Filter"
1019
  msgstr "Salva questa ricerca come filtro"
@@ -1069,22 +777,18 @@ msgstr "Ricerca link"
1069
  msgid "Cancel"
1070
  msgstr "Annulla"
1071
 
1072
- #: includes/admin/sidebar.php:2
1073
  msgid "Donate $10, $20 or $50!"
1074
  msgstr "Dona $10, $20 or $50!"
1075
 
1076
- #: includes/admin/sidebar.php:5
1077
  msgid "If you like this plugin, please donate to support development and maintenance!"
1078
  msgstr "Avessi gradito BLC, sostieni con una donazione il suo sviluppo ed il mantenimento!"
1079
 
1080
- #: includes/admin/sidebar.php:22
1081
  msgid "Return to WordPress Dashboard"
1082
  msgstr "Ritorna alla Bacheca WordPress"
1083
 
1084
- #: includes/admin/options-page-js.php:54
1085
- msgid "Hide debug info"
1086
- msgstr "Nascondi le info debug"
1087
-
1088
  #: includes/admin/table-printer.php:177
1089
  msgid "Compact View"
1090
  msgstr "Visualizzazione compatta"
@@ -1249,58 +953,33 @@ msgstr "Aggiorna URL"
1249
  msgid "[An orphaned link! This is a bug.]"
1250
  msgstr "[Un link orfano! Questo é un bug.]"
1251
 
1252
- #: includes/admin/db-upgrade.php:95
1253
- msgid "Failed to delete old DB tables. Database error : %s"
1254
- msgstr "Non é stato possibile cancellare le vecchie tabelle del DB. Errore database : %s"
1255
-
1256
- #: includes/parsers.php:109
1257
- msgid "Editing is not implemented in the '%s' parser"
1258
- msgstr "La modifica non é implementata nel '%s' parser"
1259
-
1260
- #: includes/parsers.php:124
1261
- msgid "Unlinking is not implemented in the '%s' parser"
1262
- msgstr "Il de-link non é implementatato nel '%s' parser"
1263
-
1264
- #: includes/link-query.php:25
1265
- msgid "Broken"
1266
- msgstr "Rotto"
1267
-
1268
- #: includes/link-query.php:27
1269
- msgid "No broken links found"
1270
- msgstr "Non é stato trovato alcun link rotto"
1271
-
1272
- #: includes/link-query.php:34
1273
- msgid "Redirects"
1274
- msgstr "Reindirizzamenti"
1275
-
1276
- #: includes/link-query.php:35
1277
- msgid "Redirected Links"
1278
- msgstr "Link reindirizzati"
1279
-
1280
- #: includes/link-query.php:36
1281
- msgid "No redirects found"
1282
- msgstr "Nessun reindirizzamento é stato trovato"
1283
-
1284
- #: includes/link-query.php:44
1285
- msgid "All"
1286
- msgstr "Tutti"
1287
-
1288
- #: includes/link-query.php:45
1289
- msgid "Detected Links"
1290
- msgstr "Link rilevati"
1291
 
1292
- #: includes/link-query.php:46
1293
- msgid "No links found (yet)"
1294
- msgstr "Nessun link trovato (ancora)"
 
1295
 
1296
- #: includes/link-query.php:54
1297
- msgid "Search Results"
1298
- msgstr "Risultati della ricerca"
 
1299
 
1300
- #: includes/link-query.php:55
1301
- #: includes/link-query.php:102
1302
- msgid "No links found for your query"
1303
- msgstr "Nessun link trovato in relazione ai termini di ricerca"
 
 
 
 
 
 
1304
 
1305
  #: includes/any-post.php:427
1306
  msgid "Preview &#8220;%s&#8221;"
@@ -1314,10 +993,42 @@ msgstr "Anteprima"
1314
  msgid "View &#8220;%s&#8221;"
1315
  msgstr "Visualizza &#8220;%s&#8221;"
1316
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1317
  #: includes/any-post.php:529
1318
  msgid "Updating post %d failed"
1319
  msgstr "Aggiornamento articolo %d non riuscito"
1320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1321
  #: includes/any-post.php:711
1322
  msgid "%d post deleted."
1323
  msgid_plural "%d posts deleted."
@@ -1365,58 +1076,6 @@ msgstr[1] "%d '%s' sono stati cancellati"
1365
  msgid "Container type '%s' not recognized"
1366
  msgstr "Container type '%s' non riconosciuto"
1367
 
1368
- #: includes/links.php:215
1369
- msgid "The plugin script was terminated while trying to check the link."
1370
- msgstr "Lo script del plugin was é stato fermato durante il tentativo di verifica del link."
1371
-
1372
- #: includes/links.php:261
1373
- msgid "The plugin doesn't know how to check this type of link."
1374
- msgstr "Questo plugin non é in grado di potere verificare questo tipo di link."
1375
-
1376
- #: includes/links.php:349
1377
- msgid "Link is valid."
1378
- msgstr "Il link é valido."
1379
-
1380
- #: includes/links.php:351
1381
- msgid "Link is broken."
1382
- msgstr "Il link é rotto."
1383
-
1384
- #: includes/links.php:564
1385
- #: includes/links.php:666
1386
- #: includes/links.php:693
1387
- msgid "Link is not valid"
1388
- msgstr "Link non valido"
1389
-
1390
- #: includes/links.php:581
1391
- msgid "This link can not be edited because it is not used anywhere on this site."
1392
- msgstr "Questo link non può essere modificato poiché non viene utilizzato in nessuna parte di questo sito."
1393
-
1394
- #: includes/links.php:607
1395
- msgid "Failed to create a DB entry for the new URL."
1396
- msgstr "Non é stato possibile creare una entry nel DB per il nuovo URL."
1397
-
1398
- #: includes/links.php:673
1399
- msgid "This link is not a redirect"
1400
- msgstr "Questo link non é redirect"
1401
-
1402
- #: includes/links.php:720
1403
- #: includes/links.php:757
1404
- msgid "Couldn't delete the link's database record"
1405
- msgstr "Non é possibile cancellare dal database il record per il link"
1406
-
1407
- #: includes/links.php:831
1408
- msgctxt "link status"
1409
- msgid "Unknown"
1410
- msgstr "Sconosciuto"
1411
-
1412
- #: includes/links.php:869
1413
- msgid "Not checked"
1414
- msgstr "Non verificato"
1415
-
1416
- #: includes/links.php:872
1417
- msgid "False positive"
1418
- msgstr "Falso positivo"
1419
-
1420
  #: includes/extra-strings.php:2
1421
  msgctxt "module name"
1422
  msgid "Basic HTTP"
@@ -1444,63 +1103,205 @@ msgstr "Video incorporati DailyMotion"
1444
 
1445
  #: includes/extra-strings.php:7
1446
  msgctxt "module name"
 
 
 
 
 
 
 
 
 
 
1447
  msgid "Embedded Vimeo videos"
1448
  msgstr "Video incorporati Vimeo"
1449
 
1450
- #: includes/extra-strings.php:8
1451
  msgctxt "module name"
1452
  msgid "Embedded YouTube videos"
1453
  msgstr "Video incorporati YouTube"
1454
 
1455
- #: includes/extra-strings.php:9
1456
  msgctxt "module name"
1457
  msgid "Embedded YouTube videos (old embed code)"
1458
  msgstr "Video incorporati YouTube (vecchio codice embed)"
1459
 
1460
- #: includes/extra-strings.php:10
 
 
 
 
 
1461
  msgctxt "module name"
1462
  msgid "HTML images"
1463
  msgstr "HTML immagini"
1464
 
1465
- #: includes/extra-strings.php:11
1466
  msgctxt "module name"
1467
  msgid "HTML links"
1468
  msgstr "HTML link"
1469
 
1470
- #: includes/extra-strings.php:12
1471
  msgctxt "module name"
1472
  msgid "MediaFire API"
1473
  msgstr "API MediaFire"
1474
 
1475
- #: includes/extra-strings.php:13
1476
  msgctxt "module name"
1477
  msgid "MegaUpload API"
1478
  msgstr "API MegaUpload"
1479
 
1480
- #: includes/extra-strings.php:14
1481
  msgctxt "module name"
1482
  msgid "Plaintext URLs"
1483
  msgstr "URL senza formattazione "
1484
 
1485
- #: includes/extra-strings.php:15
1486
  msgctxt "module name"
1487
  msgid "RapidShare API"
1488
  msgstr "API di RapidShare"
1489
 
1490
- #: includes/extra-strings.php:16
1491
- msgctxt "module name"
1492
- msgid "YouTube API"
1493
- msgstr "API di YouTube"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1494
 
1495
- #: includes/extra-strings.php:17
1496
- msgctxt "module name"
1497
- msgid "Posts"
1498
- msgstr "Articoli"
1499
 
1500
- #: includes/extra-strings.php:18
1501
- msgctxt "module name"
1502
- msgid "Pages"
1503
- msgstr "Pagine"
1504
 
1505
  #: includes/utility-class.php:244
1506
  msgid "%d second"
@@ -1562,15 +1363,274 @@ msgid_plural "%d months ago"
1562
  msgstr[0] "%d mese fa"
1563
  msgstr[1] "%d mesi fa"
1564
 
1565
- #: includes/instances.php:102
1566
- #: includes/instances.php:158
1567
- msgid "Container %s[%d] not found"
1568
- msgstr "Container %s[%d] non trovato"
1569
 
1570
- #: includes/instances.php:111
1571
- #: includes/instances.php:167
1572
- msgid "Parser '%s' not found."
1573
- msgstr "Parser '%s' non trovato."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1574
 
1575
  #. Plugin URI of the plugin/theme
1576
  msgid "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: 2012-03-27 09:01:12+00:00\n"
11
+ "PO-Revision-Date: 2012-07-21 22:30+0100\n"
12
  "Last-Translator: Gianni Diurno (aka gidibao) <gidibao[at]gmail[dot]com>\n"
13
  "Language-Team: Gianni Diurno | gidibao.net & charmingpress.com\n"
14
  "MIME-Version: 1.0\n"
18
  "X-Poedit-Language: Italian\n"
19
  "X-Poedit-Country: ITALY\n"
20
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  #: core/core.php:146
22
  #: includes/admin/links-page-js.php:37
23
  msgid "Loading..."
54
  msgstr "Feedback"
55
 
56
  #: core/core.php:330
57
+ #: includes/admin/sidebar.php:18
58
  msgid "More plugins by Janis Elsts"
59
  msgstr "Altri plugin da Janis Elsts"
60
 
67
  msgstr "Impostazioni"
68
 
69
  #: core/core.php:378
70
+ #: core/core.php:1167
71
  msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
72
  msgstr "Errore: le tabelle del database di questo plugin non sono aggiornate! (versione in uso : %d, attesa : %d)"
73
 
74
  #: core/core.php:382
75
+ #: core/core.php:1171
76
  msgid "Try deactivating and then reactivating the plugin."
77
  msgstr "Prova a disattivare quindi, riattivare il plugin."
78
 
159
  msgstr "Applica formattazione personalizzata ai link rotti"
160
 
161
  #: core/core.php:700
162
+ #: core/core.php:730
163
  msgid "Edit CSS"
164
  msgstr "Modifica CSS"
165
 
166
+ #: core/core.php:715
167
+ msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
168
+ msgstr "Esempio : Lorem ipsum <a %s>link rotto</a>, dolor sit amet."
169
+
170
+ #: core/core.php:718
171
+ #: core/core.php:749
172
+ msgid "Click \"Save Changes\" to update example output."
173
+ msgstr "Clicca \"Salva le modifiche\" per aggiornare output esempio."
174
+
175
+ #: core/core.php:726
176
  msgid "Apply custom formatting to removed links"
177
  msgstr "Applica la formattazione personalizzata ai link rimossi"
178
 
179
+ #: core/core.php:746
180
+ msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
181
+ msgstr "Esempio : Lorem ipsum <span %s>link rimosso</span>, dolor sit amet."
182
+
183
+ #: core/core.php:759
184
  msgid "Stop search engines from following broken links"
185
  msgstr "Blocca i motori di ricerca per i seguenti link"
186
 
187
+ #: core/core.php:776
188
  msgid "Look for links in"
189
  msgstr "Cerca i links in"
190
 
191
+ #: core/core.php:787
192
  msgid "Post statuses"
193
  msgstr "Stati articolo"
194
 
195
+ #: core/core.php:820
196
  msgid "Link types"
197
  msgstr "Tipo di link"
198
 
199
+ #: core/core.php:826
200
  msgid "Error : All link parsers missing!"
201
  msgstr "Errore : manca l'analisi di tutti i link!"
202
 
203
+ #: core/core.php:833
204
  msgid "Exclusion list"
205
  msgstr "Lista estromessi"
206
 
207
+ #: core/core.php:834
208
  msgid "Don't check links where the URL contains any of these words (one per line) :"
209
  msgstr "Non controllare gli URL che contengono queste parole (una per riga):"
210
 
211
+ #: core/core.php:852
212
  msgid "Check links using"
213
  msgstr "Controlla utilizzo link"
214
 
215
+ #: core/core.php:871
216
  #: includes/links.php:849
217
  msgid "Timeout"
218
  msgstr "Timeout"
219
 
220
+ #: core/core.php:877
221
+ #: core/core.php:923
222
+ #: core/core.php:2732
223
  msgid "%s seconds"
224
  msgstr "%s secondi"
225
 
226
+ #: core/core.php:886
227
  msgid "Links that take longer than this to load will be marked as broken."
228
  msgstr "I link che impiegheranno un maggior tempo per essere caricati verranno considerati come rotti."
229
 
230
+ #: core/core.php:893
231
  msgid "Link monitor"
232
  msgstr "Monitoraggio link"
233
 
234
+ #: core/core.php:901
235
  msgid "Run continuously while the Dashboard is open"
236
  msgstr "Funzionamento continuo durante il periodo di login"
237
 
238
+ #: core/core.php:909
239
  msgid "Run hourly in the background"
240
  msgstr "Funzionamento in background ogni ora"
241
 
242
+ #: core/core.php:917
243
  msgid "Max. execution time"
244
  msgstr "Tempo max. operazione"
245
 
246
+ #: core/core.php:934
247
  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."
248
  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."
249
 
250
+ #: core/core.php:943
251
  msgid "Server load limit"
252
  msgstr "Limite server load"
253
 
254
+ #: core/core.php:958
255
  msgid "Current load : %s"
256
  msgstr "In caricamento : %s"
257
 
258
+ #: core/core.php:963
259
  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."
260
  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."
261
 
262
+ #: core/core.php:972
263
  msgid "Not available"
264
  msgstr "Non disponibile"
265
 
266
+ #: core/core.php:974
267
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
268
  msgstr "Il limite di caricamento funziona solamente per i sistemi Linux-like laddove la funzione <code>/proc/loadavg</code> sia presente ed accessibile."
269
 
270
+ #: core/core.php:982
271
  msgid "Forced recheck"
272
  msgstr "Imponi nuova verifica"
273
 
274
+ #: core/core.php:985
275
  msgid "Re-check all pages"
276
  msgstr "Ricontrolla tutte le pagine"
277
 
278
+ #: core/core.php:989
279
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
280
  msgstr "La \"Opzione atomica\". Clicca questo pulsante per fare sì che il plugin svuoti i link nel database ed effettui da zero un controllo del sito."
281
 
282
+ #: core/core.php:1000
283
  msgid "Save Changes"
284
  msgstr "Salva le modifiche"
285
 
286
+ #: core/core.php:1051
287
  msgid "Configure"
288
  msgstr "Configura"
289
 
290
+ #: core/core.php:1133
291
  msgid "Check URLs entered in these custom fields (one per line) :"
292
  msgstr "Controlla gli URL inseriti in questi campi personalizzati (uno per riga):"
293
 
294
+ #: core/core.php:1270
295
+ #: core/core.php:1351
296
+ #: core/core.php:1383
297
  msgid "Database error : %s"
298
  msgstr "Errore database : %s"
299
 
300
+ #: core/core.php:1333
301
  msgid "You must enter a filter name!"
302
  msgstr "Deve essere inserito un nome del filtro!"
303
 
304
+ #: core/core.php:1337
305
  msgid "Invalid search query."
306
  msgstr "Termine di ricerca non valido."
307
 
308
+ #: core/core.php:1346
309
  msgid "Filter \"%s\" created"
310
  msgstr "E' stato creato il filtro \"%s\""
311
 
312
+ #: core/core.php:1373
313
  msgid "Filter ID not specified."
314
  msgstr "ID filtro non specificato."
315
 
316
+ #: core/core.php:1380
317
  msgid "Filter deleted"
318
  msgstr "Il filtro é stato cancellato"
319
 
320
+ #: core/core.php:1427
321
  msgid "Replaced %d redirect with a direct link"
322
  msgid_plural "Replaced %d redirects with direct links"
323
  msgstr[0] "Sostituito %d reindirizzamento con un link diretto"
324
  msgstr[1] "Sostituiti %d reindirizzamenti con dei link diretti"
325
 
326
+ #: core/core.php:1438
327
  msgid "Failed to fix %d redirect"
328
  msgid_plural "Failed to fix %d redirects"
329
  msgstr[0] "Impossibile correggere il reindirizzamento per %d"
330
  msgstr[1] "Impossibile correggere i reindirizzamenti per %d"
331
 
332
+ #: core/core.php:1449
333
  msgid "None of the selected links are redirects!"
334
  msgstr "Nessuno dei link selezionati é reindirizzato!"
335
 
336
+ #: core/core.php:1527
337
  msgid "%d link updated."
338
  msgid_plural "%d links updated."
339
  msgstr[0] "%d link aggiornato."
340
  msgstr[1] "%d link aggiornati."
341
 
342
+ #: core/core.php:1538
343
  msgid "Failed to update %d link."
344
  msgid_plural "Failed to update %d links."
345
  msgstr[0] "Impossibile aggiornare il link %d"
346
  msgstr[1] "Impossibile aggiornare i link %d"
347
 
348
+ #: core/core.php:1592
349
  msgid "%d link removed"
350
  msgid_plural "%d links removed"
351
  msgstr[0] "%d il link é stato rimosso"
352
  msgstr[1] "%d i link sono stati rimossi"
353
 
354
+ #: core/core.php:1603
355
  msgid "Failed to remove %d link"
356
  msgid_plural "Failed to remove %d links"
357
  msgstr[0] "Impossibile rimuovere il link %d"
358
  msgstr[1] "Impossibile rimuovere i link %d"
359
 
360
+ #: core/core.php:1712
361
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
362
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
363
  msgstr[0] "%d l'elemento é stato saltato poiché non potrà essere spostato nel cestino. Dovrai cancellarlo manualmente."
364
  msgstr[1] "%d gli elementi sono stati saltati poiché non potranno essere spostati nel cestino. Dovrai cancellarli manualmente."
365
 
366
+ #: core/core.php:1734
367
  msgid "Didn't find anything to delete!"
368
  msgstr "Nulla da cancellare!"
369
 
370
+ #: core/core.php:1762
371
  msgid "%d link scheduled for rechecking"
372
  msgid_plural "%d links scheduled for rechecking"
373
  msgstr[0] "%d link in verifica programmata"
374
  msgstr[1] "%d link in verifica programmata"
375
 
376
+ #: core/core.php:1808
377
+ #: core/core.php:2412
378
  msgid "This link was manually marked as working by the user."
379
  msgstr "L'utente ha segnalato manualmente che questo link é funzionante."
380
 
381
+ #: core/core.php:1815
382
  msgid "Couldn't modify link %d"
383
  msgstr "Non é possibile modificare il link %d"
384
 
385
+ #: core/core.php:1825
386
  msgid "%d link marked as not broken"
387
  msgid_plural "%d links marked as not broken"
388
  msgstr[0] "%d link segnato come funzionante"
389
  msgstr[1] "%d link segnati come funzionanti"
390
 
391
+ #: core/core.php:1865
392
  msgid "Table columns"
393
  msgstr "Colonne tabella"
394
 
395
+ #: core/core.php:1884
396
  msgid "Show on screen"
397
  msgstr "Mostra sullo schermo"
398
 
399
+ #: core/core.php:1891
400
  msgid "links"
401
  msgstr "link"
402
 
403
+ #: core/core.php:1892
404
  #: includes/admin/table-printer.php:163
405
  msgid "Apply"
406
  msgstr "Applica"
407
 
408
+ #: core/core.php:1896
409
  msgid "Misc"
410
  msgstr "Varie"
411
 
412
+ #: core/core.php:1911
413
  msgid "Highlight links broken for at least %s days"
414
  msgstr "Evidenzia i link rotti per gli ultimi %s giorni"
415
 
416
+ #: core/core.php:1920
417
  msgid "Color-code status codes"
418
  msgstr "Codici stato codice-colore"
419
 
420
+ #: core/core.php:1937
421
+ #: core/core.php:2397
422
+ #: core/core.php:2433
423
+ #: core/core.php:2496
424
  msgid "You're not allowed to do that!"
425
  msgstr "Non hai il permesso per farlo!"
426
 
427
+ #: core/core.php:2278
428
  msgid "View broken links"
429
  msgstr "Visualizza i link rotti"
430
 
431
+ #: core/core.php:2279
432
  msgid "Found %d broken link"
433
  msgid_plural "Found %d broken links"
434
  msgstr[0] "E' stato trovato %d link rotto"
435
  msgstr[1] "Sono stati trovati %d link rotti"
436
 
437
+ #: core/core.php:2285
438
  msgid "No broken links found."
439
  msgstr "Non é stato trovato alcun link rotto."
440
 
441
+ #: core/core.php:2292
442
  msgid "%d URL in the work queue"
443
  msgid_plural "%d URLs in the work queue"
444
  msgstr[0] "%d URL in coda di elaborazione"
445
  msgstr[1] "%d URL in coda di elaborazione"
446
 
447
+ #: core/core.php:2295
448
  msgid "No URLs in the work queue."
449
  msgstr "Nessun URL in coda di elaborazione."
450
 
451
+ #: core/core.php:2301
452
  msgid "Detected %d unique URL"
453
  msgid_plural "Detected %d unique URLs"
454
  msgstr[0] "E' stato rilevato %d URL unico"
455
  msgstr[1] "Sono stati rilevati %d URL unici"
456
 
457
+ #: core/core.php:2302
458
  msgid "in %d link"
459
  msgid_plural "in %d links"
460
  msgstr[0] "in %d link"
461
  msgstr[1] "in %d link"
462
 
463
+ #: core/core.php:2307
464
  msgid "and still searching..."
465
  msgstr "ricerca in corso..."
466
 
467
+ #: core/core.php:2313
468
  msgid "Searching your blog for links..."
469
  msgstr "Ricerca dei link in corso..."
470
 
471
+ #: core/core.php:2315
472
  msgid "No links detected."
473
  msgstr "Nessun link é stato rilevato."
474
 
475
+ #: core/core.php:2341
476
  msgctxt "current load"
477
  msgid "Unknown"
478
  msgstr "Sconosciuto"
479
 
480
+ #: core/core.php:2405
481
+ #: core/core.php:2443
482
+ #: core/core.php:2506
483
  msgid "Oops, I can't find the link %d"
484
  msgstr "Oops, non é possibile trovare il link %d"
485
 
486
+ #: core/core.php:2418
487
  msgid "Oops, couldn't modify the link!"
488
  msgstr "Oops, non é possibile modificare il link!"
489
 
490
+ #: core/core.php:2421
491
+ #: core/core.php:2532
492
  msgid "Error : link_id not specified"
493
  msgstr "Errore : non é stata specificata la link_id"
494
 
495
+ #: core/core.php:2453
496
  msgid "Oops, the new URL is invalid!"
497
  msgstr "Oops, il nuovo URL non é valido!"
498
 
499
+ #: core/core.php:2464
500
+ #: core/core.php:2515
501
  msgid "An unexpected error occured!"
502
  msgstr "Si é verificato un errore inatteso!"
503
 
504
+ #: core/core.php:2482
505
  msgid "Error : link_id or new_url not specified"
506
  msgstr "Errore : non é stata specificata la link_id oppure il new_url"
507
 
508
+ #: core/core.php:2541
509
  msgid "You don't have sufficient privileges to access this information!"
510
  msgstr "Non hai i permessi necessari per poter accedere a questa informazione!"
511
 
512
+ #: core/core.php:2554
513
  msgid "Error : link ID not specified"
514
  msgstr "Errore : La ID del link non é stata specificata"
515
 
516
+ #: core/core.php:2568
517
  msgid "Failed to load link details (%s)"
518
  msgstr "Non é stato possibile caricare i dettagli sul link (%s)"
519
 
520
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.4) #-#-#-#-#
521
  #. Plugin Name of the plugin/theme
522
+ #: core/core.php:2621
523
  msgid "Broken Link Checker"
524
  msgstr "Broken Link Checker"
525
 
526
+ #: core/core.php:2641
527
  msgid "PHP version"
528
  msgstr "Versione PHP"
529
 
530
+ #: core/core.php:2647
531
  msgid "MySQL version"
532
  msgstr "Versione MySQL"
533
 
534
+ #: core/core.php:2660
535
  msgid "You have an old version of CURL. Redirect detection may not work properly."
536
  msgstr "Hai una versione datata del CURL. Il rilevamento del reindirizzamento potrebbe non funzionare."
537
 
538
+ #: core/core.php:2672
539
+ #: core/core.php:2688
540
+ #: core/core.php:2693
541
  msgid "Not installed"
542
  msgstr "Non installato"
543
 
544
+ #: core/core.php:2675
545
  msgid "CURL version"
546
  msgstr "Versione CURL"
547
 
548
+ #: core/core.php:2681
549
  msgid "Installed"
550
  msgstr "Installato"
551
 
552
+ #: core/core.php:2694
553
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
554
  msgstr "E' necessario che tu abbia installato il CURL oppure Snoopy affinché il plugin possa funzionare!"
555
 
556
+ #: core/core.php:2705
557
  msgid "On"
558
  msgstr "On"
559
 
560
+ #: core/core.php:2706
561
  msgid "Redirects may be detected as broken links when safe_mode is on."
562
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la modalità safe_mode fosse attiva."
563
 
564
+ #: core/core.php:2711
565
+ #: core/core.php:2725
566
  msgid "Off"
567
  msgstr "Off"
568
 
569
+ #: core/core.php:2719
570
  msgid "On ( %s )"
571
  msgstr "On ( %s )"
572
 
573
+ #: core/core.php:2720
574
  msgid "Redirects may be detected as broken links when open_basedir is on."
575
  msgstr "I reindirizzamenti potrebbero essere considerati come link rotti qualora la funzione open_basedir fosse attiva."
576
 
577
+ #: core/core.php:2749
578
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
579
  msgstr "Nel caso in cui questo valore fosse a zero nonostante tu abbia caricato più volte la pagina, é probabile che tu abbia rilevato un bug."
580
 
581
+ #: core/core.php:2840
582
+ #: core/core.php:2938
583
  msgid "[%s] Broken links detected"
584
  msgstr "[%s] Link rotti rilevati"
585
 
586
+ #: core/core.php:2845
587
  msgid "Broken Link Checker has detected %d new broken link on your site."
588
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
589
  msgstr[0] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotto."
590
  msgstr[1] "Broken Link Checker ha rilevato nel tuo sito %d nuovo link rotti."
591
 
592
+ #: core/core.php:2868
593
  msgid "Here's a list of the first %d broken links:"
594
  msgid_plural "Here's a list of the first %d broken links:"
595
  msgstr[0] "Ecco una lista del primo %d link rotto:"
596
  msgstr[1] "Ecco una lista dei primi %d link rotti:"
597
 
598
+ #: core/core.php:2877
599
  msgid "Here's a list of the new broken links: "
600
  msgstr "Ecco una lista con i nuovi link rotti:"
601
 
602
+ #: core/core.php:2886
603
  msgid "Link text : %s"
604
  msgstr "Testo del link : %s"
605
 
606
+ #: core/core.php:2887
607
  msgid "Link URL : <a href=\"%s\">%s</a>"
608
  msgstr "URL del link : <a href=\"%s\">%s</a>"
609
 
610
+ #: core/core.php:2888
611
  msgid "Source : %s"
612
  msgstr "Sorgente : %s"
613
 
614
+ #: core/core.php:2901
615
  msgid "You can see all broken links here:"
616
  msgstr "Qui puoi vedere tutti i link rotti:"
617
 
618
+ #: core/core.php:2943
619
  msgid "Broken Link Checker has detected %d new broken link in your posts."
620
  msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
621
  msgstr[0] "Broken Link Checker ha rilevato nei tuoi articoli %d nuovo link rotto."
622
  msgstr[1] "Broken Link Checker ha rilevato nei tuoi articoli %d nuovi link rotti."
623
 
624
+ #: core/init.php:231
625
+ msgid "Once Weekly"
626
+ msgstr "Una volta alla settimana"
627
+
628
+ #: core/init.php:237
629
+ msgid "Twice a Month"
630
+ msgstr "Due volte al mese"
631
+
632
+ #: core/init.php:307
633
+ msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
634
+ msgstr "L'installazione di Broken Link Checker é fallita. Prova a disattivare quindi, riattivare il plugin."
635
+
636
+ #: includes/admin/db-upgrade.php:95
637
+ msgid "Failed to delete old DB tables. Database error : %s"
638
+ msgstr "Non é stato possibile cancellare le vecchie tabelle del DB. Errore database : %s"
639
+
640
  #: includes/admin/links-page-js.php:58
641
  #: includes/admin/links-page-js.php:301
642
  msgid "Wait..."
718
  msgid "Select one or more links to edit."
719
  msgstr "Seleziona uno o più link da modificare."
720
 
721
+ #: includes/admin/options-page-js.php:54
722
+ msgid "Hide debug info"
723
+ msgstr "Nascondi le info debug"
724
+
725
  #: includes/admin/search-form.php:16
726
  msgid "Save This Search As a Filter"
727
  msgstr "Salva questa ricerca come filtro"
777
  msgid "Cancel"
778
  msgstr "Annulla"
779
 
780
+ #: includes/admin/sidebar.php:40
781
  msgid "Donate $10, $20 or $50!"
782
  msgstr "Dona $10, $20 or $50!"
783
 
784
+ #: includes/admin/sidebar.php:43
785
  msgid "If you like this plugin, please donate to support development and maintenance!"
786
  msgstr "Avessi gradito BLC, sostieni con una donazione il suo sviluppo ed il mantenimento!"
787
 
788
+ #: includes/admin/sidebar.php:60
789
  msgid "Return to WordPress Dashboard"
790
  msgstr "Ritorna alla Bacheca WordPress"
791
 
 
 
 
 
792
  #: includes/admin/table-printer.php:177
793
  msgid "Compact View"
794
  msgstr "Visualizzazione compatta"
953
  msgid "[An orphaned link! This is a bug.]"
954
  msgstr "[Un link orfano! Questo é un bug.]"
955
 
956
+ #: includes/any-post.php:397
957
+ #: modules/containers/blogroll.php:46
958
+ #: modules/containers/comment.php:153
959
+ #: modules/containers/custom_field.php:197
960
+ msgid "Edit"
961
+ msgstr "Modifica"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
962
 
963
+ #: includes/any-post.php:405
964
+ #: modules/containers/custom_field.php:203
965
+ msgid "Move this item to the Trash"
966
+ msgstr "Sposta questo termine nel cestino"
967
 
968
+ #: includes/any-post.php:407
969
+ #: modules/containers/custom_field.php:205
970
+ msgid "Trash"
971
+ msgstr "Cestino"
972
 
973
+ #: includes/any-post.php:412
974
+ #: modules/containers/custom_field.php:210
975
+ msgid "Delete this item permanently"
976
+ msgstr "Cancella questo termine in modo definitivo"
977
+
978
+ #: includes/any-post.php:414
979
+ #: modules/containers/blogroll.php:47
980
+ #: modules/containers/custom_field.php:212
981
+ msgid "Delete"
982
+ msgstr "Cancella"
983
 
984
  #: includes/any-post.php:427
985
  msgid "Preview &#8220;%s&#8221;"
993
  msgid "View &#8220;%s&#8221;"
994
  msgstr "Visualizza &#8220;%s&#8221;"
995
 
996
+ #: includes/any-post.php:436
997
+ #: modules/containers/comment.php:166
998
+ #: modules/containers/custom_field.php:217
999
+ msgid "View"
1000
+ msgstr "Visualizza"
1001
+
1002
+ #: includes/any-post.php:455
1003
+ #: modules/containers/custom_field.php:197
1004
+ msgid "Edit this item"
1005
+ msgstr "modifica questo termine"
1006
+
1007
+ #: includes/any-post.php:519
1008
+ #: modules/containers/blogroll.php:83
1009
+ #: modules/containers/comment.php:43
1010
+ msgid "Nothing to update"
1011
+ msgstr "Nulla da aggiornare"
1012
+
1013
  #: includes/any-post.php:529
1014
  msgid "Updating post %d failed"
1015
  msgstr "Aggiornamento articolo %d non riuscito"
1016
 
1017
+ #: includes/any-post.php:564
1018
+ #: modules/containers/custom_field.php:284
1019
+ msgid "Failed to delete post \"%s\" (%d)"
1020
+ msgstr "Non é stato possibile cancellare il post \"%s\" (%d)"
1021
+
1022
+ #: includes/any-post.php:583
1023
+ #: modules/containers/custom_field.php:303
1024
+ msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1025
+ msgstr "Non é stato possibile spostare l'articolo \"%s\" (%d) nel cestino poiché la funzione cestino non é attiva"
1026
+
1027
+ #: includes/any-post.php:603
1028
+ #: modules/containers/custom_field.php:322
1029
+ msgid "Failed to move post \"%s\" (%d) to the trash"
1030
+ msgstr "Impossibile spostare l'articolo \"%s\" (%d) nel cestino"
1031
+
1032
  #: includes/any-post.php:711
1033
  msgid "%d post deleted."
1034
  msgid_plural "%d posts deleted."
1076
  msgid "Container type '%s' not recognized"
1077
  msgstr "Container type '%s' non riconosciuto"
1078
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1079
  #: includes/extra-strings.php:2
1080
  msgctxt "module name"
1081
  msgid "Basic HTTP"
1103
 
1104
  #: includes/extra-strings.php:7
1105
  msgctxt "module name"
1106
+ msgid "Embedded GoogleVideo videos"
1107
+ msgstr "Video incorporati GoogleVideo"
1108
+
1109
+ #: includes/extra-strings.php:8
1110
+ msgctxt "module name"
1111
+ msgid "Embedded Megavideo videos"
1112
+ msgstr "Video incorporati Megavideo"
1113
+
1114
+ #: includes/extra-strings.php:9
1115
+ msgctxt "module name"
1116
  msgid "Embedded Vimeo videos"
1117
  msgstr "Video incorporati Vimeo"
1118
 
1119
+ #: includes/extra-strings.php:10
1120
  msgctxt "module name"
1121
  msgid "Embedded YouTube videos"
1122
  msgstr "Video incorporati YouTube"
1123
 
1124
+ #: includes/extra-strings.php:11
1125
  msgctxt "module name"
1126
  msgid "Embedded YouTube videos (old embed code)"
1127
  msgstr "Video incorporati YouTube (vecchio codice embed)"
1128
 
1129
+ #: includes/extra-strings.php:12
1130
+ msgctxt "module name"
1131
+ msgid "FileServe API"
1132
+ msgstr "API FileServe"
1133
+
1134
+ #: includes/extra-strings.php:13
1135
  msgctxt "module name"
1136
  msgid "HTML images"
1137
  msgstr "HTML immagini"
1138
 
1139
+ #: includes/extra-strings.php:14
1140
  msgctxt "module name"
1141
  msgid "HTML links"
1142
  msgstr "HTML link"
1143
 
1144
+ #: includes/extra-strings.php:15
1145
  msgctxt "module name"
1146
  msgid "MediaFire API"
1147
  msgstr "API MediaFire"
1148
 
1149
+ #: includes/extra-strings.php:16
1150
  msgctxt "module name"
1151
  msgid "MegaUpload API"
1152
  msgstr "API MegaUpload"
1153
 
1154
+ #: includes/extra-strings.php:17
1155
  msgctxt "module name"
1156
  msgid "Plaintext URLs"
1157
  msgstr "URL senza formattazione "
1158
 
1159
+ #: includes/extra-strings.php:18
1160
  msgctxt "module name"
1161
  msgid "RapidShare API"
1162
  msgstr "API di RapidShare"
1163
 
1164
+ #: includes/extra-strings.php:19
1165
+ msgctxt "module name"
1166
+ msgid "YouTube API"
1167
+ msgstr "API di YouTube"
1168
+
1169
+ #: includes/extra-strings.php:20
1170
+ msgctxt "module name"
1171
+ msgid "Posts"
1172
+ msgstr "Articoli"
1173
+
1174
+ #: includes/extra-strings.php:21
1175
+ msgctxt "module name"
1176
+ msgid "Pages"
1177
+ msgstr "Pagine"
1178
+
1179
+ #: includes/instances.php:102
1180
+ #: includes/instances.php:158
1181
+ msgid "Container %s[%d] not found"
1182
+ msgstr "Container %s[%d] non trovato"
1183
+
1184
+ #: includes/instances.php:111
1185
+ #: includes/instances.php:167
1186
+ msgid "Parser '%s' not found."
1187
+ msgstr "Parser '%s' non trovato."
1188
+
1189
+ #: includes/link-query.php:25
1190
+ msgid "Broken"
1191
+ msgstr "Rotto"
1192
+
1193
+ #: includes/link-query.php:27
1194
+ msgid "No broken links found"
1195
+ msgstr "Non é stato trovato alcun link rotto"
1196
+
1197
+ #: includes/link-query.php:34
1198
+ msgid "Redirects"
1199
+ msgstr "Reindirizzamenti"
1200
+
1201
+ #: includes/link-query.php:35
1202
+ msgid "Redirected Links"
1203
+ msgstr "Link reindirizzati"
1204
+
1205
+ #: includes/link-query.php:36
1206
+ msgid "No redirects found"
1207
+ msgstr "Nessun reindirizzamento é stato trovato"
1208
+
1209
+ #: includes/link-query.php:44
1210
+ msgid "All"
1211
+ msgstr "Tutti"
1212
+
1213
+ #: includes/link-query.php:45
1214
+ msgid "Detected Links"
1215
+ msgstr "Link rilevati"
1216
+
1217
+ #: includes/link-query.php:46
1218
+ msgid "No links found (yet)"
1219
+ msgstr "Nessun link trovato (ancora)"
1220
+
1221
+ #: includes/link-query.php:54
1222
+ msgid "Search Results"
1223
+ msgstr "Risultati della ricerca"
1224
+
1225
+ #: includes/link-query.php:55
1226
+ #: includes/link-query.php:102
1227
+ msgid "No links found for your query"
1228
+ msgstr "Nessun link trovato in relazione ai termini di ricerca"
1229
+
1230
+ #: includes/links.php:215
1231
+ msgid "The plugin script was terminated while trying to check the link."
1232
+ msgstr "Lo script del plugin was é stato fermato durante il tentativo di verifica del link."
1233
+
1234
+ #: includes/links.php:261
1235
+ msgid "The plugin doesn't know how to check this type of link."
1236
+ msgstr "Questo plugin non é in grado di potere verificare questo tipo di link."
1237
+
1238
+ #: includes/links.php:349
1239
+ msgid "Link is valid."
1240
+ msgstr "Il link é valido."
1241
+
1242
+ #: includes/links.php:351
1243
+ msgid "Link is broken."
1244
+ msgstr "Il link é rotto."
1245
+
1246
+ #: includes/links.php:564
1247
+ #: includes/links.php:666
1248
+ #: includes/links.php:693
1249
+ msgid "Link is not valid"
1250
+ msgstr "Link non valido"
1251
+
1252
+ #: includes/links.php:581
1253
+ msgid "This link can not be edited because it is not used anywhere on this site."
1254
+ msgstr "Questo link non può essere modificato poiché non viene utilizzato in nessuna parte di questo sito."
1255
+
1256
+ #: includes/links.php:607
1257
+ msgid "Failed to create a DB entry for the new URL."
1258
+ msgstr "Non é stato possibile creare una entry nel DB per il nuovo URL."
1259
+
1260
+ #: includes/links.php:673
1261
+ msgid "This link is not a redirect"
1262
+ msgstr "Questo link non é redirect"
1263
+
1264
+ #: includes/links.php:720
1265
+ #: includes/links.php:757
1266
+ msgid "Couldn't delete the link's database record"
1267
+ msgstr "Non é possibile cancellare dal database il record per il link"
1268
+
1269
+ #: includes/links.php:831
1270
+ msgctxt "link status"
1271
+ msgid "Unknown"
1272
+ msgstr "Sconosciuto"
1273
+
1274
+ #: includes/links.php:845
1275
+ #: modules/checkers/http.php:264
1276
+ #: modules/extras/mediafire.php:101
1277
+ msgid "Unknown Error"
1278
+ msgstr "Errore sconosciuto"
1279
+
1280
+ #: includes/links.php:869
1281
+ msgid "Not checked"
1282
+ msgstr "Non verificato"
1283
+
1284
+ #: includes/links.php:872
1285
+ msgid "False positive"
1286
+ msgstr "Falso positivo"
1287
+
1288
+ #: includes/links.php:875
1289
+ #: modules/extras/fileserve.php:121
1290
+ #: modules/extras/megaupload.php:115
1291
+ #: modules/extras/rapidshare.php:145
1292
+ #: modules/extras/rapidshare.php:151
1293
+ #: modules/extras/rapidshare.php:178
1294
+ msgctxt "link status"
1295
+ msgid "OK"
1296
+ msgstr "OK"
1297
 
1298
+ #: includes/parsers.php:109
1299
+ msgid "Editing is not implemented in the '%s' parser"
1300
+ msgstr "La modifica non é implementata nel '%s' parser"
 
1301
 
1302
+ #: includes/parsers.php:124
1303
+ msgid "Unlinking is not implemented in the '%s' parser"
1304
+ msgstr "Il de-link non é implementatato nel '%s' parser"
 
1305
 
1306
  #: includes/utility-class.php:244
1307
  msgid "%d second"
1363
  msgstr[0] "%d mese fa"
1364
  msgstr[1] "%d mesi fa"
1365
 
1366
+ #: modules/checkers/http.php:243
1367
+ msgid "Server Not Found"
1368
+ msgstr "Server non trovato"
 
1369
 
1370
+ #: modules/checkers/http.php:258
1371
+ msgid "Connection Failed"
1372
+ msgstr "Tentativo di connessione non riuscito"
1373
+
1374
+ #: modules/checkers/http.php:293
1375
+ #: modules/checkers/http.php:363
1376
+ msgid "HTTP code : %d"
1377
+ msgstr "Codice HTTP : %d"
1378
+
1379
+ #: modules/checkers/http.php:295
1380
+ #: modules/checkers/http.php:365
1381
+ msgid "(No response)"
1382
+ msgstr "(nessuna risposta)"
1383
+
1384
+ #: modules/checkers/http.php:301
1385
+ msgid "Most likely the connection timed out or the domain doesn't exist."
1386
+ msgstr "Connessione scaduta oppure il dominio non esiste."
1387
+
1388
+ #: modules/checkers/http.php:372
1389
+ msgid "Request timed out."
1390
+ msgstr "Richiesta scaduta."
1391
+
1392
+ #: modules/checkers/http.php:390
1393
+ msgid "Using Snoopy"
1394
+ msgstr "Snoopy in uso"
1395
+
1396
+ #: modules/containers/blogroll.php:21
1397
+ msgid "Bookmark"
1398
+ msgstr "Segnalibro"
1399
+
1400
+ #: modules/containers/blogroll.php:27
1401
+ #: modules/containers/blogroll.php:46
1402
+ msgid "Edit this bookmark"
1403
+ msgstr "Modifica questo segnalibro"
1404
+
1405
+ #: modules/containers/blogroll.php:47
1406
+ msgid ""
1407
+ "You are about to delete this link '%s'\n"
1408
+ " 'Cancel' to stop, 'OK' to delete."
1409
+ msgstr ""
1410
+ "Stai per cancellare questo link '%s'\n"
1411
+ " 'Annulla' per fermarti, 'OK' per cancellare."
1412
+
1413
+ #: modules/containers/blogroll.php:97
1414
+ msgid "Updating bookmark %d failed"
1415
+ msgstr "Non é stato possibile aggiornare il bookmark %d"
1416
+
1417
+ #: modules/containers/blogroll.php:128
1418
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
1419
+ msgstr "Non é stato possibile cancellare il link \"%s\" (%d) presente nel blogroll"
1420
+
1421
+ #: modules/containers/blogroll.php:298
1422
+ msgid "%d blogroll link deleted."
1423
+ msgid_plural "%d blogroll links deleted."
1424
+ msgstr[0] "Il link %d presente nel blogroll é stato cancellato"
1425
+ msgstr[1] "I link %d presenti nel blogroll sono stati cancellati"
1426
+
1427
+ #: modules/containers/comment.php:53
1428
+ msgid "Updating comment %d failed"
1429
+ msgstr "Non é stato possibile aggiornare il commento %d"
1430
+
1431
+ #: modules/containers/comment.php:74
1432
+ msgid "Failed to delete comment %d"
1433
+ msgstr "Non é stato possibile cancellare il commento %d"
1434
+
1435
+ #: modules/containers/comment.php:95
1436
+ msgid "Can't move comment %d to the trash"
1437
+ msgstr "Non é stato possibile spostare nel cestino il commento %d"
1438
+
1439
+ #: modules/containers/comment.php:153
1440
+ #: modules/containers/comment.php:195
1441
+ msgid "Edit comment"
1442
+ msgstr "Modifica commento"
1443
+
1444
+ #: modules/containers/comment.php:160
1445
+ msgid "Delete Permanently"
1446
+ msgstr "Cancella definitivamente"
1447
+
1448
+ #: modules/containers/comment.php:162
1449
+ msgid "Move this comment to the trash"
1450
+ msgstr "Sposta questo commento nel cestino"
1451
+
1452
+ #: modules/containers/comment.php:162
1453
+ msgctxt "verb"
1454
+ msgid "Trash"
1455
+ msgstr "Cestino"
1456
+
1457
+ #: modules/containers/comment.php:166
1458
+ msgid "View comment"
1459
+ msgstr "Visualizza il commento"
1460
+
1461
+ #: modules/containers/comment.php:183
1462
+ msgid "Comment"
1463
+ msgstr "Commento"
1464
+
1465
+ #: modules/containers/comment.php:355
1466
+ msgid "%d comment has been deleted."
1467
+ msgid_plural "%d comments have been deleted."
1468
+ msgstr[0] "%d commento é stato cancellato"
1469
+ msgstr[1] "%d commenti sono stati cancellati"
1470
+
1471
+ #: modules/containers/comment.php:374
1472
+ msgid "%d comment moved to the Trash."
1473
+ msgid_plural "%d comments moved to the Trash."
1474
+ msgstr[0] "%d commento spostato nel cestino"
1475
+ msgstr[1] "%d commenti spostati nel cestino"
1476
+
1477
+ #: modules/containers/custom_field.php:84
1478
+ msgid "Failed to update the meta field '%s' on %s [%d]"
1479
+ msgstr "Non é stato possibile aggiornare il campo meta '%s' in %s [%d]"
1480
+
1481
+ #: modules/containers/custom_field.php:110
1482
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
1483
+ msgstr "Non é stato possibile cancellare il campo meta '%s' in %s [%d]"
1484
+
1485
+ #: modules/containers/custom_field.php:187
1486
+ msgid "Edit this post"
1487
+ msgstr "Modifica questo articolo"
1488
+
1489
+ #: modules/containers/custom_field.php:217
1490
+ msgid "View \"%s\""
1491
+ msgstr "Visualizza \"%s\""
1492
+
1493
+ #: modules/containers/dummy.php:34
1494
+ #: modules/containers/dummy.php:45
1495
+ msgid "I don't know how to edit a '%s' [%d]."
1496
+ msgstr "Non so come modificare un '%s' [%d]."
1497
+
1498
+ #: modules/extras/dailymotion-embed.php:23
1499
+ msgid "DailyMotion Video"
1500
+ msgstr "DailyMotion Video"
1501
+
1502
+ #: modules/extras/dailymotion-embed.php:24
1503
+ msgid "Embedded DailyMotion video"
1504
+ msgstr "Video incorporato DailyMotion"
1505
+
1506
+ #: modules/extras/embed-parser-base.php:196
1507
+ msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1508
+ msgstr "I video incorporati non possono essere modificati da Broken Link Checker. Sostituisci o modifica i video manualmente."
1509
+
1510
+ #: modules/extras/fileserve.php:55
1511
+ msgid "Using FileServe API"
1512
+ msgstr "Utilizzo API FileServe"
1513
+
1514
+ #: modules/extras/fileserve.php:112
1515
+ #: modules/extras/mediafire.php:91
1516
+ #: modules/extras/mediafire.php:96
1517
+ #: modules/extras/megaupload.php:81
1518
+ #: modules/extras/megaupload.php:123
1519
+ #: modules/extras/rapidshare.php:139
1520
+ msgid "Not Found"
1521
+ msgstr "Non trovato"
1522
+
1523
+ #: modules/extras/fileserve.php:115
1524
+ msgid "FileServe : %d %s"
1525
+ msgstr "FileServe : %d %s"
1526
+
1527
+ #: modules/extras/googlevideo-embed.php:24
1528
+ msgid "GoogleVideo Video"
1529
+ msgstr "GoogleVideo Video"
1530
+
1531
+ #: modules/extras/googlevideo-embed.php:25
1532
+ msgid "Embedded GoogleVideo video"
1533
+ msgstr "Video incorporato GoogleVideo"
1534
+
1535
+ #: modules/extras/megaupload.php:130
1536
+ msgid "File Temporarily Unavailable"
1537
+ msgstr "File temporameamente non disponibile"
1538
+
1539
+ #: modules/extras/megaupload.php:136
1540
+ msgid "API Error"
1541
+ msgstr "Errore API"
1542
+
1543
+ #: modules/extras/megavideo-embed.php:24
1544
+ msgid "Megavideo Video"
1545
+ msgstr "Megavideo Video"
1546
+
1547
+ #: modules/extras/megavideo-embed.php:25
1548
+ msgid "Embedded Megavideo video"
1549
+ msgstr "Video incorporato Megavideo"
1550
+
1551
+ #: modules/extras/rapidshare.php:51
1552
+ msgid "Using RapidShare API"
1553
+ msgstr "Utilizzo API RapidShare"
1554
+
1555
+ #: modules/extras/rapidshare.php:158
1556
+ msgid "RS Server Down"
1557
+ msgstr "RS Server Down"
1558
+
1559
+ #: modules/extras/rapidshare.php:165
1560
+ msgid "File Blocked"
1561
+ msgstr "File bloccato"
1562
+
1563
+ #: modules/extras/rapidshare.php:172
1564
+ msgid "File Locked"
1565
+ msgstr "File protetto"
1566
+
1567
+ #: modules/extras/rapidshare.php:183
1568
+ msgid "RapidShare : %s"
1569
+ msgstr "RapidShare : %s"
1570
+
1571
+ #: modules/extras/rapidshare.php:189
1572
+ msgid "RapidShare API error: %s"
1573
+ msgstr "Errore API RapidShare: %s"
1574
+
1575
+ #: modules/extras/vimeo-embed.php:24
1576
+ msgid "Vimeo Video"
1577
+ msgstr "Vimeo Video"
1578
+
1579
+ #: modules/extras/vimeo-embed.php:25
1580
+ msgid "Embedded Vimeo video"
1581
+ msgstr "Video incorporato Vimeo"
1582
+
1583
+ #: modules/extras/youtube-embed.php:24
1584
+ #: modules/extras/youtube-iframe.php:25
1585
+ msgid "YouTube Video"
1586
+ msgstr "YouTube Video"
1587
+
1588
+ #: modules/extras/youtube-embed.php:25
1589
+ #: modules/extras/youtube-iframe.php:26
1590
+ msgid "Embedded YouTube video"
1591
+ msgstr "Video incorporato YouTube"
1592
+
1593
+ #: modules/extras/youtube.php:73
1594
+ #: modules/extras/youtube.php:76
1595
+ msgid "Video Not Found"
1596
+ msgstr "Video non trovato"
1597
+
1598
+ #: modules/extras/youtube.php:84
1599
+ msgid "Video Removed"
1600
+ msgstr "Video rimosso"
1601
+
1602
+ #: modules/extras/youtube.php:92
1603
+ msgid "Invalid Video ID"
1604
+ msgstr "ID video non valida"
1605
+
1606
+ #: modules/extras/youtube.php:104
1607
+ msgid "Video OK"
1608
+ msgstr "Video OK"
1609
+
1610
+ #: modules/extras/youtube.php:105
1611
+ #: modules/extras/youtube.php:132
1612
+ msgid "OK"
1613
+ msgstr "OK"
1614
+
1615
+ #: modules/extras/youtube.php:118
1616
+ msgid "Video status : %s%s"
1617
+ msgstr "Stato video : %s%s"
1618
+
1619
+ #: modules/extras/youtube.php:137
1620
+ msgid "Video Restricted"
1621
+ msgstr "Video riservato"
1622
+
1623
+ #: modules/extras/youtube.php:154
1624
+ msgid "Unknown YouTube API response received."
1625
+ msgstr "Risposta sconosciuta ricevuta da API YouTube."
1626
+
1627
+ #: modules/parsers/image.php:159
1628
+ msgid "Image"
1629
+ msgstr "Immagine"
1630
+
1631
+ #: modules/parsers/metadata.php:117
1632
+ msgid "Custom field"
1633
+ msgstr "Campo personalizzato"
1634
 
1635
  #. Plugin URI of the plugin/theme
1636
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
languages/broken-link-checker-zh_CN.mo CHANGED
Binary file
languages/broken-link-checker-zh_CN.po CHANGED
@@ -1,11 +1,11 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
- "Report-Msgid-Bugs-To: whiteshadow@w-shadow.com\n"
5
- "POT-Creation-Date: 2009-10-30 11:06+0000\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: HankYang <yrstyh@gmail.com>\n"
8
- "Language-Team: wenzhu.org <yrstyh@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -14,683 +14,1740 @@ msgstr ""
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
 
17
- #: core.php:132
18
- #: core.php:1284
19
  msgid "Loading..."
20
  msgstr "加载中……"
21
 
22
- #: core.php:155
23
- #: core.php:569
24
  msgid "[ Network error ]"
25
- msgstr "[网络错误]"
26
 
27
- #: core.php:180
28
  msgid "Automatically expand the widget if broken links have been detected"
29
- msgstr "若检测到失效链接则自动展开窗口部件"
30
-
31
- #: core.php:359
32
- #: core.php:368
33
- #: core.php:386
34
- #: core.php:400
35
- #: core.php:907
36
- #, php-format
37
- msgid "Database error : %s"
38
- msgstr "数据库错误:%s"
39
 
40
- #: core.php:423
41
  msgid "Link Checker Settings"
42
  msgstr "链接检查器设置"
43
 
44
- #: core.php:424
45
  msgid "Link Checker"
46
  msgstr "链接检查器"
47
 
48
- #: core.php:435
 
 
 
 
 
49
  msgid "View Broken Links"
50
  msgstr "查看失效链接"
51
 
52
- #: core.php:436
53
- #: core.php:833
54
- msgid "Broken Links"
55
- msgstr "失效链接"
56
 
57
- #: core.php:453
 
 
 
 
58
  msgid "Settings"
59
  msgstr "设置"
60
 
61
- #: core.php:533
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  msgid "Broken Link Checker Options"
63
  msgstr "链接检查器选项"
64
 
65
- #: core.php:546
 
66
  msgid "Status"
67
  msgstr "状态"
68
 
69
- #: core.php:548
70
- #: core.php:771
71
  msgid "Show debug info"
72
  msgstr "显示调试信息"
73
 
74
- #: core.php:582
75
- msgid "Re-check all pages"
76
- msgstr "重新检查所有页面"
77
-
78
- #: core.php:606
79
  msgid "Check each link"
80
- msgstr "检查每一个链接"
81
 
82
- #: core.php:611
83
- #, php-format
84
  msgid "Every %s hours"
85
  msgstr "每 %s 小时"
86
 
87
- #: core.php:620
88
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
89
- msgstr "已有的链接将以这个频率检测,新加的链接通常会被尽快检测"
 
 
 
 
 
 
 
 
 
 
 
 
90
 
91
- #: core.php:627
92
- msgid "Broken link CSS"
93
- msgstr "失效链接的CSS样式"
94
 
95
- #: core.php:632
96
- msgid "Apply <em>class=\"broken_link\"</em> to broken links"
97
- msgstr "将样式<em>class=\"broken_link\"</em>应用到失效链接"
98
 
99
- #: core.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgid "Exclusion list"
101
  msgstr "排除列表"
102
 
103
- #: core.php:645
104
  msgid "Don't check links where the URL contains any of these words (one per line) :"
105
- msgstr "不检测含有以下关键字的链接(每个关键字一行)"
106
 
107
- #: core.php:655
108
- msgid "Custom fields"
109
- msgstr "自定义内容"
110
 
111
- #: core.php:656
112
- msgid "Check URLs entered in these custom fields (one per line) :"
113
- msgstr "检测输入到此自定义栏目中的链接(每个链接一行)"
114
-
115
- #: core.php:667
116
- msgid "Advanced"
117
- msgstr "高级"
118
-
119
- #: core.php:673
120
  msgid "Timeout"
121
  msgstr "超时"
122
 
123
- #: core.php:679
124
- #: core.php:735
125
- #, php-format
126
  msgid "%s seconds"
127
  msgstr "%s 秒"
128
 
129
- #: core.php:688
130
  msgid "Links that take longer than this to load will be marked as broken."
131
- msgstr "若链接超过这么长的时间响应将被视为失效"
132
 
133
- #: core.php:697
134
- msgid "Custom temporary directory"
135
- msgstr "自定义临时目录"
136
-
137
- #: core.php:706
138
- #: core.php:2047
139
- #: core.php:2088
140
- msgid "OK"
141
- msgstr "确定"
142
 
143
- #: core.php:709
144
- msgid "Error : This directory isn't writable by PHP."
145
- msgstr "错误:此目录不可被PHP写入"
146
 
147
- #: core.php:714
148
- msgid "Error : This directory doesn't exist."
149
- msgstr "错误:此目录不存在"
150
 
151
- #: core.php:722
152
- msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
153
- msgstr "如果你想让插件的锁档使用一个自定义目录。否则请留空。"
154
-
155
- #: core.php:729
156
  msgid "Max. execution time"
157
  msgstr "最大执行时间"
158
 
159
- #: core.php:746
160
- msgid "The plugin works by periodically creating a background worker instance that parses your posts looking for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the background instance may run each time before stopping."
161
- msgstr "此插件通通过定期在后台创建一个实例来解析你的文章以搜索链接,检查找到的链接并执行一些其他耗时的任务。在这里你可以设置后台实例每次最多可以运行多长时间。"
 
 
 
 
 
 
 
 
162
 
163
- #: core.php:756
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  msgid "Save Changes"
165
  msgstr "保存更改"
166
 
167
- #: core.php:769
168
- msgid "Hide debug info"
169
- msgstr "隐藏调试信息"
170
 
171
- #: core.php:832
172
- msgid "Broken"
173
- msgstr "失效"
174
 
175
- #: core.php:834
176
- msgid "No broken links found"
177
- msgstr "未找到失效链接"
 
 
178
 
179
- #: core.php:838
180
- msgid "Redirects"
181
- msgstr "重定向"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
 
183
- #: core.php:839
184
- msgid "Redirected Links"
185
- msgstr "被重定向的链接"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
 
187
- #: core.php:840
188
- msgid "No redirects found"
189
- msgstr "未发现重定向的链接"
190
 
191
- #: core.php:845
192
- msgid "All"
193
- msgstr "所有"
 
194
 
195
- #: core.php:846
196
- msgid "Detected Links"
197
- msgstr "检测到的链接"
198
 
199
- #: core.php:847
200
- msgid "No links found (yet)"
201
- msgstr "(尚未)发现连接"
 
202
 
203
- #: core.php:966
204
- msgid "&laquo;"
205
- msgstr "&laquo;"
206
 
207
- #: core.php:967
208
- msgid "&raquo;"
209
- msgstr "&raquo;"
 
 
210
 
211
- #: core.php:974
212
- #: core.php:1149
213
- #, php-format
214
- msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
215
- msgstr "显示 <span class=\"current-link-count\">%s</span> 的 %s&#8211;%s"
216
 
217
- #: core.php:996
218
- msgid "Source"
219
- msgstr "来源"
220
 
221
- #: core.php:998
222
- msgid "Link Text"
223
- msgstr "链接文字"
224
 
225
- #: core.php:999
226
- msgid "URL"
227
- msgstr "网址"
228
 
229
- #: core.php:1025
230
- #: core.php:1031
231
- msgid "Edit this post"
232
- msgstr "编辑此文章"
233
 
234
- #: core.php:1031
235
- #: core.php:1046
236
- msgid "Edit"
237
- msgstr "编辑"
238
 
239
- #: core.php:1032
240
- msgid "Delete this post"
241
- msgstr "删除此文章"
 
 
 
242
 
243
- #: core.php:1032
244
- #, php-format
245
- msgid ""
246
- "You are about to delete this post '%s'\n"
247
- " 'Cancel' to stop, 'OK' to delete."
248
- msgstr ""
249
- "你将要删除这篇文章 '%s'\n"
250
- " '取消'以停止, '确定'以删除."
251
 
252
- #: core.php:1032
253
- #: core.php:1047
254
- msgid "Delete"
255
- msgstr "删除"
 
256
 
257
- #: core.php:1034
258
- #, php-format
259
- msgid "View \"%s\""
260
- msgstr "查看 \"%s\""
261
 
262
- #: core.php:1034
263
- msgid "View"
264
- msgstr "查看"
 
265
 
266
- #: core.php:1041
267
- #: core.php:1046
268
- msgid "Edit this bookmark"
269
- msgstr "编辑此书签"
270
 
271
- #: core.php:1047
272
- #, php-format
273
- msgid ""
274
- "You are about to delete this link '%s'\n"
275
- " 'Cancel' to stop, 'OK' to delete."
276
- msgstr ""
277
- "你将要删除这个链接 '%s'\n"
278
- " '取消' 以停止, '确定' 以删除."
279
 
280
- #: core.php:1056
281
- msgid "[An orphaned link! This is a bug.]"
282
- msgstr "[一个孤立链接!这是一个错误。]"
283
 
284
- #: core.php:1070
285
- msgid "Image"
286
- msgstr "图像"
287
 
288
- #: core.php:1081
289
- msgid "Custom field"
290
- msgstr "自定义项目"
 
 
291
 
292
- #: core.php:1089
293
- msgid "Bookmark"
294
- msgstr "书签"
295
 
296
- #: core.php:1104
297
- msgid "Show more info about this link"
298
- msgstr "显示关于此链接的更多信息"
299
 
300
- #: core.php:1104
301
- #: core.php:2381
302
- msgid "Details"
303
- msgstr "详情"
304
 
305
- #: core.php:1106
306
- msgid "Remove this link from all posts"
307
- msgstr "将此链接从所有文章中删除"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
 
309
- #: core.php:1107
310
- #: core.php:1371
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
311
  msgid "Unlink"
312
  msgstr "取消链接"
313
 
314
- #: core.php:1110
315
- #: core.php:1401
316
- #: core.php:1412
317
- msgid "Excluded"
318
- msgstr "已排除的"
319
 
320
- #: core.php:1112
321
- msgid "Add this URL to the exclusion list"
322
- msgstr "将此链接添加进排除列表"
 
 
 
 
323
 
324
- #: core.php:1113
325
- #: core.php:1415
326
- msgid "Exclude"
327
- msgstr "排除"
 
 
 
328
 
329
- #: core.php:1116
330
- msgid "Edit link URL"
331
- msgstr "修改这个网址"
 
 
 
 
332
 
333
- #: core.php:1116
334
- #: core.php:1340
335
- msgid "Edit URL"
336
- msgstr "修改网址"
337
 
338
- #: core.php:1122
339
- msgid "Cancel URL editing"
340
- msgstr "取消网址修改"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
341
 
342
- #: core.php:1122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgid "Cancel"
344
  msgstr "取消"
345
 
346
- #: core.php:1133
347
- msgid "Remove this link from the list of broken links and mark it as valid"
348
- msgstr "将此链接从失效链接列表中删除并标记为有效"
 
349
 
350
- #: core.php:1135
351
- #: core.php:1204
352
- msgid "Discard"
353
- msgstr "忽略"
354
 
355
- #: core.php:1180
356
- #: core.php:1347
357
- #: core.php:1384
358
- msgid "Wait..."
359
- msgstr "稍等……"
360
 
361
- #: core.php:1238
362
- msgid "Save URL"
363
- msgstr "保存网址"
364
 
365
- #: core.php:1248
366
- msgid "Saving changes..."
367
- msgstr "保存更改中……"
368
 
369
- #: core.php:1437
370
- msgid "Log"
371
- msgstr "日志"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
372
 
373
- #: core.php:1445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374
  msgid "Post published on"
375
  msgstr "文章发布在"
376
 
377
- #: core.php:1450
378
  msgid "Link last checked"
379
  msgstr "最后一次检查的链接"
380
 
381
- #: core.php:1454
382
  msgid "Never"
383
  msgstr "从不"
384
 
385
- #: core.php:1460
386
- msgid "HTTP code"
387
- msgstr "HTTP代码"
388
-
389
- #: core.php:1465
390
  msgid "Response time"
391
  msgstr "响应时间"
392
 
393
- #: core.php:1467
394
- #, php-format
395
  msgid "%2.3f seconds"
396
  msgstr "%2.3f 秒"
397
 
398
- #: core.php:1470
399
  msgid "Final URL"
400
  msgstr "最终网址"
401
 
402
- #: core.php:1475
403
  msgid "Redirect count"
404
  msgstr "重定向数目"
405
 
406
- #: core.php:1480
407
  msgid "Instance count"
408
  msgstr "实例数目"
409
 
410
- #: core.php:1489
411
- #, php-format
412
  msgid "This link has failed %d time."
413
  msgid_plural "This link has failed %d times."
414
- msgstr[0] "此链接失败了%d"
415
-
416
- #: core.php:1879
417
- #: core.php:2206
418
- msgid "This link wasn't checked because a matching keyword was found on your exclusion list."
419
- msgstr "没有检查此链接因为它包含了您的排除列表中的关键字"
420
-
421
- #: core.php:1921
422
- msgid "View broken links"
423
- msgstr "查看失效链接"
424
-
425
- #: core.php:1922
426
- #, php-format
427
- msgid "Found %d broken link"
428
- msgid_plural "Found %d broken links"
429
- msgstr[0] "已找到%d条失效链接"
430
-
431
- #: core.php:1928
432
- msgid "No broken links found."
433
- msgstr "未找到失效链接。"
434
 
435
- #: core.php:1935
436
- #, php-format
437
- msgid "%d URL in the work queue"
438
- msgid_plural "%d URLs in the work queue"
439
- msgstr[0] "执行队列中还有%d条网址"
440
 
441
- #: core.php:1938
442
- msgid "No URLs in the work queue."
443
- msgstr "执行队列中无网址"
444
-
445
- #: core.php:1944
446
- #, php-format
447
- msgid "Detected %d unique URL"
448
- msgid_plural "Detected %d unique URLs"
449
- msgstr[0] "发现%d条唯一网址"
450
 
451
- #: core.php:1945
452
- #, php-format
453
- msgid "in %d link"
454
- msgid_plural "in %d links"
455
- msgstr[0] "在 %d 条链接中"
456
 
457
- #: core.php:1950
458
- msgid "and still searching..."
459
- msgstr "还在继续搜索……"
 
460
 
461
- #: core.php:1956
462
- msgid "Searching your blog for links..."
463
- msgstr "正在您的博客中搜索链接……"
464
 
465
- #: core.php:1958
466
- msgid "No links detected."
467
- msgstr "没有发现链接。"
468
 
469
- #: core.php:2027
470
- #: core.php:2059
471
- #: core.php:2102
472
- #: core.php:2183
473
- msgid "You're not allowed to do that!"
474
- msgstr "您无权限执行此操作!"
475
 
476
- #: core.php:2035
477
- #: core.php:2069
478
- #: core.php:2112
479
- #: core.php:2193
480
- #, php-format
481
- msgid "Oops, I can't find the link %d"
482
- msgstr "啊哦,我找不到%d号链接"
483
 
484
- #: core.php:2043
485
- msgid "This link was manually marked as working by the user."
486
- msgstr "此链接被用户标记为有效。"
487
 
488
- #: core.php:2049
489
- msgid "Oops, couldn't modify the link!"
490
- msgstr "啊哦,无法修改此链接!"
491
 
492
- #: core.php:2052
493
- #: core.php:2129
494
- msgid "Error : link_id not specified"
495
- msgstr "错误:未指定link_id"
496
 
497
- #: core.php:2076
498
- msgid "Oops, the new URL is invalid!"
499
- msgstr "啊哦,这条新的链接无效!"
500
 
501
- #: core.php:2085
502
- msgid "An unexpected error occured!"
503
- msgstr "发生了一个未捕获的异常!"
504
 
505
- #: core.php:2094
506
- msgid "Error : link_id or new_url not specified"
507
- msgstr "错误:未指定link_id或者new_url"
508
 
509
- #: core.php:2119
510
- #, php-format
511
- msgid "URL %s was removed."
512
- msgstr "网址%s已经被删除。"
513
 
514
- #: core.php:2123
515
- msgid "The plugin failed to remove the link."
516
- msgstr "移除链接失败。"
 
 
 
517
 
518
- #: core.php:2138
519
- msgid "You don't have sufficient privileges to access this information!"
520
- msgstr "您没有足够的权限来访问此信息!"
 
521
 
522
- #: core.php:2151
523
- msgid "Error : link ID not specified"
524
- msgstr "错误:链接ID未指定"
 
525
 
526
- #: core.php:2175
527
- #, php-format
528
- msgid "Failed to load link details (%s)"
529
- msgstr "加载链接(%s)详情失败"
530
 
531
- #: core.php:2213
532
- #, php-format
533
- msgid "URL %s added to the exclusion list"
534
- msgstr "网址%s成功添加到排除列表"
 
535
 
536
- #: core.php:2217
537
- msgid "Link ID not specified"
538
- msgstr "链接ID未指定"
539
 
540
- #: core.php:2367
541
- #, php-format
542
- msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
543
- msgstr "当前的临时目录不可访问;请<a href=\"%s\">重新设置一个</a>."
544
 
545
- #: core.php:2372
546
- #, php-format
547
- msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
548
- msgstr "请让目录<code>%1$s</code>可被插件写入或者<a href=\"%2$s\">设置一个自定义临时目录</a>."
549
 
550
- #: core.php:2379
551
- msgid "Broken Link Checker can't create a lockfile."
552
- msgstr "无效链接检查器无法创建一个锁档"
 
 
553
 
554
- #: core.php:2384
555
- msgid ""
556
- "The plugin uses a file-based locking mechanism to ensure that only one instance of the\r\n"
557
- "\t\t\t\tresource-heavy link checking algorithm is running at any given time. Unfortunately, \r\n"
558
- "\t\t\t\tBLC can't find a writable directory where it could store the lockfile - it failed to \r\n"
559
- "\t\t\t\tdetect the location of your server's temporary directory, and the plugin's own directory\r\n"
560
- "\t\t\t\tisn't writable by PHP. To fix this problem, please make the plugin's directory writable\r\n"
561
- "\t\t\t\tor enter a specify a custom temporary directory in the plugin's settings."
562
- msgstr ""
563
- "此插件利用一个基于文件的锁定机制来确定在任何时间里\r\n"
564
- "\t\t\t\t只有一个大型的链接检查算法运行。不幸的是,\r\n"
565
- "\t\t\t\t BLC无法找到一个可写入的目录来保存锁档。它无法检测到你服务器上的临时目录,而且 \r\n"
566
- "\t\t\t\t插件自身所在的目录也无法被PHP写入。要修复这个问题,请使插件的目录可写。\r\n"
567
- "\t\t\t\t或者在插件的设置中指定一个临时目录。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
568
 
569
- #: core.php:2409
570
- msgid "PHP version"
571
- msgstr "PHP版本"
572
 
573
- #: core.php:2415
574
- msgid "MySQL version"
575
- msgstr "MySQL版本"
576
 
577
- #: core.php:2428
578
- msgid "You have an old version of CURL. Redirect detection may not work properly."
579
- msgstr "您的CURL版本过低。重定向检测可能无法正确运行。"
580
 
581
- #: core.php:2440
582
- #: core.php:2456
583
- #: core.php:2461
584
- msgid "Not installed"
585
- msgstr "未安装"
586
 
587
- #: core.php:2443
588
- msgid "CURL version"
589
- msgstr "CURL版本"
590
 
591
- #: core.php:2449
592
- msgid "Installed"
593
- msgstr "已安装"
594
 
595
- #: core.php:2462
596
- msgid "You must have either CURL or Snoopy installed for the plugin to work!"
597
- msgstr "要让插件正常运行,您必须安装CURL或者Snoopy!"
598
 
599
- #: core.php:2473
600
- msgid "On"
601
- msgstr "开启"
602
 
603
- #: core.php:2474
604
- msgid "Redirects may be detected as broken links when safe_mode is on."
605
- msgstr "在安全模式打开时重定向可能被识别为无效链接。"
606
 
607
- #: core.php:2479
608
- #: core.php:2493
609
- msgid "Off"
610
- msgstr "关闭"
611
 
612
- #: core.php:2487
613
- #, php-format
614
- msgid "On ( %s )"
615
- msgstr "在(%s)内"
616
 
617
- #: core.php:2488
618
- msgid "Redirects may be detected as broken links when open_basedir is on."
619
- msgstr "当open_basedir打开时重定向可能被识别为无效链接。"
 
620
 
621
- #: core.php:2507
622
- msgid "Can't create a lockfile. Please specify a custom temporary directory."
623
- msgstr "无法建立锁档。请指定一个自定义临时目录。"
624
 
625
- #: link-classes.php:212
626
- msgid "First try : 0 (No response)"
627
- msgstr "第一次尝试:0(无响应)"
628
 
629
- #: link-classes.php:214
630
- #, php-format
631
- msgid "First try : %d"
632
- msgstr "第一次尝试:%d"
633
 
634
- #: link-classes.php:222
635
- msgid "Trying a second time with different settings..."
636
- msgstr "用不同的设置尝试第二次……"
637
 
638
- #: link-classes.php:237
639
- msgid "Second try : 0 (No response)"
640
- msgstr "第二次尝试:0(无响应)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
641
 
642
- #: link-classes.php:239
643
- #, php-format
644
- msgid "Second try : %d"
645
- msgstr "第二次尝试:%d"
646
 
647
- #: link-classes.php:265
648
  msgid "Using Snoopy"
649
  msgstr "使用Snoopy"
650
 
651
- #: link-classes.php:285
652
- msgid "Request timed out."
653
- msgstr "请求超时。"
654
 
655
- #: link-classes.php:304
656
- msgid "Link is valid."
657
- msgstr "链接有效。"
 
658
 
659
- #: link-classes.php:309
660
- msgid "Link is broken."
661
- msgstr "链接失效。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
662
 
663
- #: link-classes.php:313
664
- msgid "Most likely the connection timed out or the domain doesn't exist."
665
- msgstr "最大的可能是连接超时或者此域名不存在。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
 
667
- #: link-classes.php:354
668
- #, php-format
669
- msgid "Error adding link %s : %s"
670
- msgstr "在添加链接 %s : %s 时发生错误"
671
 
672
- #: link-classes.php:374
673
- #, php-format
674
- msgid "Error updating link %d : %s"
675
- msgstr "在更行链接 %d : %s 时失败。"
676
 
677
- #. Plugin Name of an extension
678
- msgid "Broken Link Checker"
679
- msgstr "失效链接检查器"
 
 
 
 
 
 
 
 
680
 
681
- #. Plugin URI of an extension
682
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
683
  msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
684
 
685
- #. Description of an extension
686
- msgid "Checks your posts for broken links and missing images and notifies you on the dashboard if any are found."
687
- msgstr "检查您文章中的失效链接和丢失的图片,如果有任何发现就在控制面板中提醒您。"
688
 
689
- #. Author of an extension
690
  msgid "Janis Elsts"
691
  msgstr "Janis Elsts"
692
 
693
- #. Author URI of an extension
694
  msgid "http://w-shadow.com/blog/"
695
  msgstr "http://w-shadow.com/blog/"
696
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2012-07-11 15:57:29+00:00\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Kaijia Feng <fengkaijia@gmail.com>\n"
8
+ "Language-Team: Broken Link Checker <fengkaijia@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
 
17
+ #: core/core.php:151
18
+ #: includes/admin/links-page-js.php:37
19
  msgid "Loading..."
20
  msgstr "加载中……"
21
 
22
+ #: core/core.php:175
23
+ #: includes/admin/options-page-js.php:18
24
  msgid "[ Network error ]"
25
+ msgstr "[ 网络错误 ]"
26
 
27
+ #: core/core.php:202
28
  msgid "Automatically expand the widget if broken links have been detected"
29
+ msgstr "当检测到失效链接时自动展开窗口部件"
 
 
 
 
 
 
 
 
 
30
 
31
+ #: core/core.php:292
32
  msgid "Link Checker Settings"
33
  msgstr "链接检查器设置"
34
 
35
+ #: core/core.php:293
36
  msgid "Link Checker"
37
  msgstr "链接检查器"
38
 
39
+ #: core/core.php:298
40
+ #: includes/link-query.php:27
41
+ msgid "Broken Links"
42
+ msgstr "失效链接"
43
+
44
+ #: core/core.php:314
45
  msgid "View Broken Links"
46
  msgstr "查看失效链接"
47
 
48
+ #: core/core.php:329
49
+ msgid "Feedback"
50
+ msgstr "反馈"
 
51
 
52
+ #: core/core.php:368
53
+ msgid "Go to Broken Links"
54
+ msgstr "查看失效链接"
55
+
56
+ #: core/core.php:397
57
  msgid "Settings"
58
  msgstr "设置"
59
 
60
+ #: core/core.php:554
61
+ msgid "Settings saved."
62
+ msgstr "设置已保存。"
63
+
64
+ #: core/core.php:560
65
+ msgid "Thank you for your donation!"
66
+ msgstr "感谢您的捐赠!"
67
+
68
+ #: core/core.php:568
69
+ msgid "Complete site recheck started."
70
+ msgstr "站点完整重新检查开始。"
71
+
72
+ #: core/core.php:577
73
+ msgid "Details"
74
+ msgstr "详情"
75
+
76
+ #: core/core.php:591
77
+ msgid "General"
78
+ msgstr "常规"
79
+
80
+ #: core/core.php:592
81
+ msgid "Look For Links In"
82
+ msgstr "检查范围"
83
+
84
+ #: core/core.php:593
85
+ msgid "Which Links To Check"
86
+ msgstr "检查类型"
87
+
88
+ #: core/core.php:594
89
+ msgid "Protocols & APIs"
90
+ msgstr "协议和API"
91
+
92
+ #: core/core.php:595
93
+ msgid "Advanced"
94
+ msgstr "高级"
95
+
96
+ #: core/core.php:610
97
  msgid "Broken Link Checker Options"
98
  msgstr "链接检查器选项"
99
 
100
+ #: core/core.php:652
101
+ #: includes/admin/table-printer.php:197
102
  msgid "Status"
103
  msgstr "状态"
104
 
105
+ #: core/core.php:654
106
+ #: includes/admin/options-page-js.php:56
107
  msgid "Show debug info"
108
  msgstr "显示调试信息"
109
 
110
+ #: core/core.php:682
 
 
 
 
111
  msgid "Check each link"
112
+ msgstr "检查每个链接"
113
 
114
+ #: core/core.php:687
 
115
  msgid "Every %s hours"
116
  msgstr "每 %s 小时"
117
 
118
+ #: core/core.php:696
119
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
120
+ msgstr "将以此频率检测所有链接,将立即检测新增链接。"
121
+
122
+ #: core/core.php:703
123
+ msgid "E-mail notifications"
124
+ msgstr "Email通知"
125
+
126
+ #: core/core.php:709
127
+ msgid "Send me e-mail notifications about newly detected broken links"
128
+ msgstr "当检测到新失效链接时向我发送Email通知"
129
+
130
+ #: core/core.php:717
131
+ msgid "Send authors e-mail notifications about broken links in their posts"
132
+ msgstr "当检测到新失效链接时向作者发送Email通知"
133
 
134
+ #: core/core.php:724
135
+ msgid "Link tweaks"
136
+ msgstr "链接调整"
137
 
138
+ #: core/core.php:730
139
+ msgid "Apply custom formatting to broken links"
140
+ msgstr "将自定义样式应用到失效链接"
141
 
142
+ #: core/core.php:734
143
+ #: core/core.php:765
144
+ msgid "Edit CSS"
145
+ msgstr "编辑样式"
146
+
147
+ #: core/core.php:750
148
+ msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
149
+ msgstr "示例:Lorem ipsum <a %s>失效链接</a>, dolor sit amet."
150
+
151
+ #: core/core.php:753
152
+ #: core/core.php:784
153
+ msgid "Click \"Save Changes\" to update example output."
154
+ msgstr "单击“保持变更”更新输出示例。"
155
+
156
+ #: core/core.php:761
157
+ msgid "Apply custom formatting to removed links"
158
+ msgstr "对已经移除的链接应用自定义格式"
159
+
160
+ #: core/core.php:781
161
+ msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
162
+ msgstr "示例:Lorem ipsum <span %s>失效链接</span>, dolor sit amet."
163
+
164
+ #: core/core.php:794
165
+ msgid "Stop search engines from following broken links"
166
+ msgstr "要求搜索引擎不跟踪已经失效的链接"
167
+
168
+ #: core/core.php:811
169
+ msgid "Look for links in"
170
+ msgstr "检查以下范围的链接"
171
+
172
+ #: core/core.php:822
173
+ msgid "Post statuses"
174
+ msgstr "发布状态"
175
+
176
+ #: core/core.php:855
177
+ msgid "Link types"
178
+ msgstr "链接类型"
179
+
180
+ #: core/core.php:861
181
+ msgid "Error : All link parsers missing!"
182
+ msgstr "错误:无法找到链接解析器!"
183
+
184
+ #: core/core.php:868
185
  msgid "Exclusion list"
186
  msgstr "排除列表"
187
 
188
+ #: core/core.php:869
189
  msgid "Don't check links where the URL contains any of these words (one per line) :"
190
+ msgstr "不检测含有以下关键字的链接(每个关键字一行):"
191
 
192
+ #: core/core.php:887
193
+ msgid "Check links using"
194
+ msgstr "检查链接"
195
 
196
+ #: core/core.php:906
197
+ #: includes/links.php:856
 
 
 
 
 
 
 
198
  msgid "Timeout"
199
  msgstr "超时"
200
 
201
+ #: core/core.php:912
202
+ #: core/core.php:958
203
+ #: core/core.php:2801
204
  msgid "%s seconds"
205
  msgstr "%s 秒"
206
 
207
+ #: core/core.php:921
208
  msgid "Links that take longer than this to load will be marked as broken."
209
+ msgstr "检测时若链接在此时间内未响应将被视为失效。"
210
 
211
+ #: core/core.php:928
212
+ msgid "Link monitor"
213
+ msgstr "链接监视器"
 
 
 
 
 
 
214
 
215
+ #: core/core.php:936
216
+ msgid "Run continuously while the Dashboard is open"
217
+ msgstr "在仪表盘打开时持续运行"
218
 
219
+ #: core/core.php:944
220
+ msgid "Run hourly in the background"
221
+ msgstr "在后台每小时运行一次"
222
 
223
+ #: core/core.php:952
 
 
 
 
224
  msgid "Max. execution time"
225
  msgstr "最大执行时间"
226
 
227
+ #: core/core.php:969
228
+ 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."
229
+ msgstr "插件通过定期在后台创建一个实例来解析你的文章以搜索链接,检查找到的链接并执行一些其他耗时的任务。在这里你可以设置后台实例每次最多可以运行多长时间,通常情况下,链接监视会在每次会话结束前完成。"
230
+
231
+ #: core/core.php:978
232
+ msgid "Server load limit"
233
+ msgstr "服务器负载限制"
234
+
235
+ #: core/core.php:993
236
+ msgid "Current load : %s"
237
+ msgstr "当前负载:%s"
238
 
239
+ #: core/core.php:998
240
+ 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."
241
+ msgstr "当平均<a href=\"%s\">服务器负载</a>超过此值时,链接检查将会暂停。留空此栏以关闭负载限制。"
242
+
243
+ #: core/core.php:1007
244
+ msgid "Not available"
245
+ msgstr "不可用"
246
+
247
+ #: core/core.php:1009
248
+ msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
249
+ msgstr "负载限制仅适用于开启<code>/proc/loadavg</code>并且可读取的类Linux操作系统。"
250
+
251
+ #: core/core.php:1017
252
+ msgid "Forced recheck"
253
+ msgstr "强制重新检查"
254
+
255
+ #: core/core.php:1020
256
+ msgid "Re-check all pages"
257
+ msgstr "重新检查所有页面"
258
+
259
+ #: core/core.php:1024
260
+ msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
261
+ msgstr "注意这是“强破坏性选项”。单击此按钮以清空链接数据库并重新检查站点上的所有链接。"
262
+
263
+ #: core/core.php:1035
264
  msgid "Save Changes"
265
  msgstr "保存更改"
266
 
267
+ #: core/core.php:1086
268
+ msgid "Configure"
269
+ msgstr "配置"
270
 
271
+ #: core/core.php:1168
272
+ msgid "Check URLs entered in these custom fields (one per line) :"
273
+ msgstr "检测输入到此自定义栏目中的链接(每个链接一行):"
274
 
275
+ #: core/core.php:1296
276
+ #: core/core.php:1378
277
+ #: core/core.php:1410
278
+ msgid "Database error : %s"
279
+ msgstr "数据库错误:%s"
280
 
281
+ #: core/core.php:1360
282
+ msgid "You must enter a filter name!"
283
+ msgstr "你需要输入一个过滤器名称!"
284
+
285
+ #: core/core.php:1364
286
+ msgid "Invalid search query."
287
+ msgstr "无效的查询。"
288
+
289
+ #: core/core.php:1373
290
+ msgid "Filter \"%s\" created"
291
+ msgstr "已创建“%s”过滤器"
292
+
293
+ #: core/core.php:1400
294
+ msgid "Filter ID not specified."
295
+ msgstr "过滤器ID未指定。"
296
+
297
+ #: core/core.php:1407
298
+ msgid "Filter deleted"
299
+ msgstr "已删除过滤器"
300
+
301
+ #: core/core.php:1454
302
+ msgid "Replaced %d redirect with a direct link"
303
+ msgid_plural "Replaced %d redirects with direct links"
304
+ msgstr[0] "已使用直接链接替换了%d个重定向"
305
+
306
+ #: core/core.php:1465
307
+ msgid "Failed to fix %d redirect"
308
+ msgid_plural "Failed to fix %d redirects"
309
+ msgstr[0] "修复%d个重定向失败"
310
+
311
+ #: core/core.php:1476
312
+ msgid "None of the selected links are redirects!"
313
+ msgstr "选中的链接均不是重定向链接!"
314
+
315
+ #: core/core.php:1554
316
+ msgid "%d link updated."
317
+ msgid_plural "%d links updated."
318
+ msgstr[0] "%d个链接已更新。"
319
+
320
+ #: core/core.php:1565
321
+ msgid "Failed to update %d link."
322
+ msgid_plural "Failed to update %d links."
323
+ msgstr[0] "更新%d个链接失败。"
324
+
325
+ #: core/core.php:1619
326
+ msgid "%d link removed"
327
+ msgid_plural "%d links removed"
328
+ msgstr[0] "已移除%d个链接"
329
+
330
+ #: core/core.php:1630
331
+ msgid "Failed to remove %d link"
332
+ msgid_plural "Failed to remove %d links"
333
+ msgstr[0] "移除%d个链接失败"
334
+
335
+ #: core/core.php:1739
336
+ msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
337
+ msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
338
+ msgstr[0] "%d个项目由于无法移动到回收站而被忽略,你需要手动删除这些项目。"
339
+
340
+ #: core/core.php:1761
341
+ msgid "Didn't find anything to delete!"
342
+ msgstr "没有任何需要删除的内容!"
343
+
344
+ #: core/core.php:1789
345
+ msgid "%d link scheduled for rechecking"
346
+ msgid_plural "%d links scheduled for rechecking"
347
+ msgstr[0] "已计划重新检查%d个链接"
348
+
349
+ #: core/core.php:1835
350
+ #: core/core.php:2444
351
+ msgid "This link was manually marked as working by the user."
352
+ msgstr "此链接被用户标记为有效。"
353
 
354
+ #: core/core.php:1842
355
+ msgid "Couldn't modify link %d"
356
+ msgstr "无法修改链接%d"
357
+
358
+ #: core/core.php:1852
359
+ msgid "%d link marked as not broken"
360
+ msgid_plural "%d links marked as not broken"
361
+ msgstr[0] "%d个链接被标记为未损坏"
362
+
363
+ #: core/core.php:1892
364
+ msgid "Table columns"
365
+ msgstr "表格栏目"
366
+
367
+ #: core/core.php:1911
368
+ msgid "Show on screen"
369
+ msgstr "在屏幕上显示"
370
+
371
+ #: core/core.php:1918
372
+ msgid "links"
373
+ msgstr "链接"
374
+
375
+ #: core/core.php:1919
376
+ #: includes/admin/table-printer.php:165
377
+ msgid "Apply"
378
+ msgstr "应用"
379
+
380
+ #: core/core.php:1923
381
+ msgid "Misc"
382
+ msgstr "杂项"
383
+
384
+ #: core/core.php:1938
385
+ msgid "Highlight links broken for at least %s days"
386
+ msgstr "高亮显示至少已经失效%s天的链接"
387
+
388
+ #: core/core.php:1947
389
+ msgid "Color-code status codes"
390
+ msgstr "色彩标记状态码"
391
+
392
+ #: core/core.php:1964
393
+ #: core/core.php:2429
394
+ #: core/core.php:2469
395
+ #: core/core.php:2502
396
+ #: core/core.php:2565
397
+ msgid "You're not allowed to do that!"
398
+ msgstr "您无权限执行此操作!"
399
 
400
+ #: core/core.php:2299
401
+ msgid "View broken links"
402
+ msgstr "查看失效链接"
403
 
404
+ #: core/core.php:2300
405
+ msgid "Found %d broken link"
406
+ msgid_plural "Found %d broken links"
407
+ msgstr[0] "已找到%d条失效链接"
408
 
409
+ #: core/core.php:2306
410
+ msgid "No broken links found."
411
+ msgstr "未找到失效链接。"
412
 
413
+ #: core/core.php:2313
414
+ msgid "%d URL in the work queue"
415
+ msgid_plural "%d URLs in the work queue"
416
+ msgstr[0] "执行队列中还有%d条网址"
417
 
418
+ #: core/core.php:2316
419
+ msgid "No URLs in the work queue."
420
+ msgstr "执行队列中无网址。"
421
 
422
+ #: core/core.php:2322
423
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
424
+ msgid "%d unique URL"
425
+ msgid_plural "%d unique URLs"
426
+ msgstr[0] "%d个唯一网址"
427
 
428
+ #: core/core.php:2326
429
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
430
+ msgid "%d link"
431
+ msgid_plural "%d links"
432
+ msgstr[0] "%d个链接"
433
 
434
+ #: core/core.php:2332
435
+ msgid "Detected %1$s in %2$s and still searching..."
436
+ msgstr "在%2$s中发现%1$s,还在继续搜索……"
437
 
438
+ #: core/core.php:2338
439
+ msgid "Detected %1$s in %2$s."
440
+ msgstr "在%2$s中发现%1$s。"
441
 
442
+ #: core/core.php:2345
443
+ msgid "Searching your blog for links..."
444
+ msgstr "正在您的博客中搜索链接……"
445
 
446
+ #: core/core.php:2347
447
+ msgid "No links detected."
448
+ msgstr "没有发现链接。"
 
449
 
450
+ #: core/core.php:2373
451
+ msgctxt "current load"
452
+ msgid "Unknown"
453
+ msgstr "未知"
454
 
455
+ #: core/core.php:2437
456
+ #: core/core.php:2477
457
+ #: core/core.php:2512
458
+ #: core/core.php:2575
459
+ msgid "Oops, I can't find the link %d"
460
+ msgstr "啊哦,我找不到%d号链接"
461
 
462
+ #: core/core.php:2450
463
+ #: core/core.php:2487
464
+ msgid "Oops, couldn't modify the link!"
465
+ msgstr "啊哦,无法修改此链接!"
 
 
 
 
466
 
467
+ #: core/core.php:2453
468
+ #: core/core.php:2490
469
+ #: core/core.php:2601
470
+ msgid "Error : link_id not specified"
471
+ msgstr "错误:未指定link_id"
472
 
473
+ #: core/core.php:2522
474
+ msgid "Oops, the new URL is invalid!"
475
+ msgstr "啊哦,这条新的链接无效!"
 
476
 
477
+ #: core/core.php:2533
478
+ #: core/core.php:2584
479
+ msgid "An unexpected error occured!"
480
+ msgstr "发生了一个未捕获的异常!"
481
 
482
+ #: core/core.php:2551
483
+ msgid "Error : link_id or new_url not specified"
484
+ msgstr "错误:未指定link_id或者new_url"
 
485
 
486
+ #: core/core.php:2610
487
+ msgid "You don't have sufficient privileges to access this information!"
488
+ msgstr "您没有足够的权限来访问此信息!"
 
 
 
 
 
489
 
490
+ #: core/core.php:2623
491
+ msgid "Error : link ID not specified"
492
+ msgstr "错误:链接ID未指定"
493
 
494
+ #: core/core.php:2637
495
+ msgid "Failed to load link details (%s)"
496
+ msgstr "加载链接(%s)详情失败"
497
 
498
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.6.2) #-#-#-#-#
499
+ #. Plugin Name of the plugin/theme
500
+ #: core/core.php:2690
501
+ msgid "Broken Link Checker"
502
+ msgstr "失效链接检查器"
503
 
504
+ #: core/core.php:2710
505
+ msgid "PHP version"
506
+ msgstr "PHP版本"
507
 
508
+ #: core/core.php:2716
509
+ msgid "MySQL version"
510
+ msgstr "MySQL版本"
511
 
512
+ #: core/core.php:2729
513
+ msgid "You have an old version of CURL. Redirect detection may not work properly."
514
+ msgstr "您的CURL版本过低。重定向检测可能无法正确运行。"
 
515
 
516
+ #: core/core.php:2741
517
+ #: core/core.php:2757
518
+ #: core/core.php:2762
519
+ msgid "Not installed"
520
+ msgstr "未安装"
521
+
522
+ #: core/core.php:2744
523
+ msgid "CURL version"
524
+ msgstr "CURL版本"
525
+
526
+ #: core/core.php:2750
527
+ msgid "Installed"
528
+ msgstr "已安装"
529
+
530
+ #: core/core.php:2763
531
+ msgid "You must have either CURL or Snoopy installed for the plugin to work!"
532
+ msgstr "要让插件正常运行,您必须安装CURL或者Snoopy!"
533
+
534
+ #: core/core.php:2774
535
+ msgid "On"
536
+ msgstr "开启"
537
+
538
+ #: core/core.php:2775
539
+ msgid "Redirects may be detected as broken links when safe_mode is on."
540
+ msgstr "在安全模式打开时重定向可能被识别为无效链接。"
541
+
542
+ #: core/core.php:2780
543
+ #: core/core.php:2794
544
+ msgid "Off"
545
+ msgstr "关闭"
546
+
547
+ #: core/core.php:2788
548
+ msgid "On ( %s )"
549
+ msgstr "在(%s)内"
550
+
551
+ #: core/core.php:2789
552
+ msgid "Redirects may be detected as broken links when open_basedir is on."
553
+ msgstr "当open_basedir打开时重定向可能被识别为无效链接。"
554
+
555
+ #: core/core.php:2818
556
+ msgid "If this value is zero even after several page reloads you have probably encountered a bug."
557
+ msgstr "如果此值为0,你将有可能在重新载入数页后遇到问题。"
558
+
559
+ #: core/core.php:2909
560
+ #: core/core.php:3007
561
+ msgid "[%s] Broken links detected"
562
+ msgstr "[%s] 检测到失效链接"
563
+
564
+ #: core/core.php:2914
565
+ msgid "Broken Link Checker has detected %d new broken link on your site."
566
+ msgid_plural "Broken Link Checker has detected %d new broken links on your site."
567
+ msgstr[0] "失效链接检查器在站点上发现了%d个新的失效链接。"
568
+
569
+ #: core/core.php:2937
570
+ msgid "Here's a list of the first %d broken links:"
571
+ msgid_plural "Here's a list of the first %d broken links:"
572
+ msgstr[0] "以下列表显示了最新的%s个失效链接:"
573
+
574
+ #: core/core.php:2946
575
+ msgid "Here's a list of the new broken links: "
576
+ msgstr "以下列出了新的失效链接:"
577
+
578
+ #: core/core.php:2955
579
+ msgid "Link text : %s"
580
+ msgstr "链接文字:%s"
581
+
582
+ #: core/core.php:2956
583
+ msgid "Link URL : <a href=\"%s\">%s</a>"
584
+ msgstr "链接网址:<a href=\"%s\">%s</a>"
585
+
586
+ #: core/core.php:2957
587
+ msgid "Source : %s"
588
+ msgstr "来源:%s"
589
+
590
+ #: core/core.php:2970
591
+ msgid "You can see all broken links here:"
592
+ msgstr "你可以在此处浏览所有的失效链接:"
593
+
594
+ #: core/core.php:3012
595
+ msgid "Broken Link Checker has detected %d new broken link in your posts."
596
+ msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
597
+ msgstr[0] "失效链接检查器在你的文章中发现了%d个新的失效链接。"
598
+
599
+ #: core/init.php:235
600
+ msgid "Once Weekly"
601
+ msgstr "每周一次"
602
+
603
+ #: core/init.php:241
604
+ msgid "Twice a Month"
605
+ msgstr "每月两次"
606
+
607
+ #: core/init.php:317
608
+ msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
609
+ msgstr "失效链接检查器安装失败。请尝试重新激活本插件。"
610
 
611
+ #: includes/admin/db-upgrade.php:95
612
+ msgid "Failed to delete old DB tables. Database error : %s"
613
+ msgstr "删除旧数据库失败。数据库错误:%s"
614
+
615
+ #: includes/admin/links-page-js.php:55
616
+ #: includes/admin/links-page-js.php:403
617
+ msgid "Wait..."
618
+ msgstr "稍等……"
619
+
620
+ #: includes/admin/links-page-js.php:100
621
+ #: includes/admin/table-printer.php:630
622
+ msgid "Not broken"
623
+ msgstr "未失效"
624
+
625
+ #: includes/admin/links-page-js.php:315
626
+ msgid "%d instances of the link were successfully modified."
627
+ msgstr "成功修改了%d个链接。"
628
+
629
+ #: includes/admin/links-page-js.php:321
630
+ msgid "However, %d instances couldn't be edited and still point to the old URL."
631
+ msgstr "然而,%d个链接由于无法被编辑仍然指向了旧的网址。"
632
+
633
+ #: includes/admin/links-page-js.php:327
634
+ msgid "The link could not be modified."
635
+ msgstr "无法修改链接。"
636
+
637
+ #: includes/admin/links-page-js.php:330
638
+ #: includes/admin/links-page-js.php:455
639
+ msgid "The following error(s) occured :"
640
+ msgstr "发生了以下错误:"
641
+
642
+ #: includes/admin/links-page-js.php:441
643
+ msgid "%d instances of the link were successfully unlinked."
644
+ msgstr "成功取消了%d个链接。"
645
+
646
+ #: includes/admin/links-page-js.php:447
647
+ msgid "However, %d instances couldn't be removed."
648
+ msgstr "然而,%d个链接无法被移除。"
649
+
650
+ #: includes/admin/links-page-js.php:452
651
+ msgid "The plugin failed to remove the link."
652
+ msgstr "移除链接失败。"
653
+
654
+ #: includes/admin/links-page-js.php:463
655
+ #: includes/admin/table-printer.php:273
656
+ #: includes/admin/table-printer.php:624
657
  msgid "Unlink"
658
  msgstr "取消链接"
659
 
660
+ #: includes/admin/links-page-js.php:507
661
+ msgid "Enter a name for the new custom filter"
662
+ msgstr "输入一个新的自定义过滤器名程"
 
 
663
 
664
+ #: includes/admin/links-page-js.php:518
665
+ msgid ""
666
+ "You are about to delete the current filter.\n"
667
+ "'Cancel' to stop, 'OK' to delete"
668
+ msgstr ""
669
+ "你将要删除当前使用的过滤器。\n"
670
+ " “取消”以停止,“确定”以删除"
671
 
672
+ #: includes/admin/links-page-js.php:538
673
+ msgid ""
674
+ "Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
675
+ "'Cancel' to stop, 'OK' to delete"
676
+ msgstr ""
677
+ "你确认将会删除任何包含有任意一个选定链接的文章、书签和其他内容吗?本操作无法撤销。\n"
678
+ "“取消”以停止,“确定”以删除"
679
 
680
+ #: includes/admin/links-page-js.php:548
681
+ msgid ""
682
+ "Are you sure you want to remove the selected links? This action can't be undone.\n"
683
+ "'Cancel' to stop, 'OK' to remove"
684
+ msgstr ""
685
+ "你确认将会删除选定的链接吗?本操作无法撤销。\n"
686
+ "“取消”以停止,“确定”以删除"
687
 
688
+ #: includes/admin/links-page-js.php:657
689
+ msgid "Enter a search string first."
690
+ msgstr "需要先输入搜索字符"
 
691
 
692
+ #: includes/admin/links-page-js.php:664
693
+ msgid "Select one or more links to edit."
694
+ msgstr "选择并编辑一个或多个链接"
695
+
696
+ #: includes/admin/options-page-js.php:54
697
+ msgid "Hide debug info"
698
+ msgstr "隐藏调试信息"
699
+
700
+ #: includes/admin/search-form.php:16
701
+ msgid "Save This Search As a Filter"
702
+ msgstr "保存此搜索为过滤器"
703
+
704
+ #: includes/admin/search-form.php:26
705
+ msgid "Delete This Filter"
706
+ msgstr "删除此过滤器"
707
+
708
+ #: includes/admin/search-form.php:32
709
+ #: includes/link-query.php:65
710
+ msgid "Search"
711
+ msgstr "搜索"
712
+
713
+ #: includes/admin/search-form.php:42
714
+ msgid "Link text"
715
+ msgstr "链接文字"
716
+
717
+ #: includes/admin/search-form.php:45
718
+ #: includes/admin/table-printer.php:202
719
+ msgid "URL"
720
+ msgstr "网址"
721
+
722
+ #: includes/admin/search-form.php:48
723
+ #: includes/admin/table-printer.php:491
724
+ msgid "HTTP code"
725
+ msgstr "HTTP代码"
726
 
727
+ #: includes/admin/search-form.php:51
728
+ msgid "Link status"
729
+ msgstr "链接状态"
730
+
731
+ #: includes/admin/search-form.php:68
732
+ #: includes/admin/search-form.php:85
733
+ msgid "Link type"
734
+ msgstr "链接类型"
735
+
736
+ #: includes/admin/search-form.php:70
737
+ msgid "Any"
738
+ msgstr "任意"
739
+
740
+ #: includes/admin/search-form.php:74
741
+ msgid "Links used in"
742
+ msgstr "链接使用于"
743
+
744
+ #: includes/admin/search-form.php:112
745
+ msgid "Search Links"
746
+ msgstr "搜索链接"
747
+
748
+ #: includes/admin/search-form.php:113
749
+ #: includes/admin/table-printer.php:349
750
+ #: includes/admin/table-printer.php:652
751
+ #: includes/admin/table-printer.php:658
752
  msgid "Cancel"
753
  msgstr "取消"
754
 
755
+ #: includes/admin/sidebar.php:28
756
+ #: includes/admin/sidebar.php:68
757
+ msgid "More plugins by Janis Elsts"
758
+ msgstr "更多Janis Elsts制作的插件"
759
 
760
+ #: includes/admin/sidebar.php:85
761
+ msgid "Donate $10, $20 or $50!"
762
+ msgstr "捐赠$10、$20或$50!"
 
763
 
764
+ #: includes/admin/sidebar.php:88
765
+ msgid "If you like this plugin, please donate to support development and maintenance!"
766
+ msgstr "如果你喜欢本插件,请捐款支持插件的开发与维护!"
 
 
767
 
768
+ #: includes/admin/sidebar.php:106
769
+ msgid "Return to WordPress Dashboard"
770
+ msgstr "返回到WordPress仪表盘"
771
 
772
+ #: includes/admin/table-printer.php:179
773
+ msgid "Compact View"
774
+ msgstr "紧凑视图"
775
 
776
+ #: includes/admin/table-printer.php:180
777
+ msgid "Detailed View"
778
+ msgstr "详细视图"
779
+
780
+ #: includes/admin/table-printer.php:209
781
+ msgid "Source"
782
+ msgstr "来源"
783
+
784
+ #: includes/admin/table-printer.php:215
785
+ msgid "Link Text"
786
+ msgstr "链接文字"
787
+
788
+ #: includes/admin/table-printer.php:220
789
+ msgid "Redirect URL"
790
+ msgstr "重定向网址"
791
+
792
+ #: includes/admin/table-printer.php:268
793
+ msgid "Bulk Actions"
794
+ msgstr "批量操作"
795
+
796
+ #: includes/admin/table-printer.php:269
797
+ #: includes/admin/table-printer.php:621
798
+ msgid "Edit URL"
799
+ msgstr "修改网址"
800
+
801
+ #: includes/admin/table-printer.php:270
802
+ msgid "Recheck"
803
+ msgstr "重新检查"
804
+
805
+ #: includes/admin/table-printer.php:271
806
+ msgid "Fix redirects"
807
+ msgstr "修复重定向"
808
+
809
+ #: includes/admin/table-printer.php:272
810
+ msgid "Mark as not broken"
811
+ msgstr "标记为未失效"
812
+
813
+ #: includes/admin/table-printer.php:276
814
+ msgid "Move sources to Trash"
815
+ msgstr "移动到回收站"
816
+
817
+ #: includes/admin/table-printer.php:278
818
+ msgid "Delete sources"
819
+ msgstr "删除资源"
820
 
821
+ #: includes/admin/table-printer.php:293
822
+ msgid "&laquo;"
823
+ msgstr "&laquo;"
824
+
825
+ #: includes/admin/table-printer.php:294
826
+ msgid "&raquo;"
827
+ msgstr "&raquo;"
828
+
829
+ #: includes/admin/table-printer.php:302
830
+ msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
831
+ msgstr "显示%s&#8211;%s项结果,总共<span class=\"current-link-count\">%s</span>项"
832
+
833
+ #: includes/admin/table-printer.php:325
834
+ msgid "Bulk Edit URLs"
835
+ msgstr "批量修改网址"
836
+
837
+ #: includes/admin/table-printer.php:327
838
+ msgid "Find"
839
+ msgstr "查找"
840
+
841
+ #: includes/admin/table-printer.php:331
842
+ msgid "Replace with"
843
+ msgstr "代替以"
844
+
845
+ #: includes/admin/table-printer.php:339
846
+ msgid "Case sensitive"
847
+ msgstr "大小写敏感"
848
+
849
+ #: includes/admin/table-printer.php:343
850
+ msgid "Regular expression"
851
+ msgstr "正则表达式"
852
+
853
+ #: includes/admin/table-printer.php:351
854
+ msgid "Update"
855
+ msgstr "更新"
856
+
857
+ #: includes/admin/table-printer.php:476
858
  msgid "Post published on"
859
  msgstr "文章发布在"
860
 
861
+ #: includes/admin/table-printer.php:481
862
  msgid "Link last checked"
863
  msgstr "最后一次检查的链接"
864
 
865
+ #: includes/admin/table-printer.php:485
866
  msgid "Never"
867
  msgstr "从不"
868
 
869
+ #: includes/admin/table-printer.php:496
 
 
 
 
870
  msgid "Response time"
871
  msgstr "响应时间"
872
 
873
+ #: includes/admin/table-printer.php:498
 
874
  msgid "%2.3f seconds"
875
  msgstr "%2.3f 秒"
876
 
877
+ #: includes/admin/table-printer.php:501
878
  msgid "Final URL"
879
  msgstr "最终网址"
880
 
881
+ #: includes/admin/table-printer.php:506
882
  msgid "Redirect count"
883
  msgstr "重定向数目"
884
 
885
+ #: includes/admin/table-printer.php:511
886
  msgid "Instance count"
887
  msgstr "实例数目"
888
 
889
+ #: includes/admin/table-printer.php:520
 
890
  msgid "This link has failed %d time."
891
  msgid_plural "This link has failed %d times."
892
+ msgstr[0] "此链接失败了%d次。"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
893
 
894
+ #: includes/admin/table-printer.php:528
895
+ msgid "This link has been broken for %s."
896
+ msgstr "此链接已失效%s。"
 
 
897
 
898
+ #: includes/admin/table-printer.php:539
899
+ msgid "Log"
900
+ msgstr "日志"
 
 
 
 
 
 
901
 
902
+ #: includes/admin/table-printer.php:564
903
+ msgid "Show more info about this link"
904
+ msgstr "显示关于此链接的更多信息"
 
 
905
 
906
+ #: includes/admin/table-printer.php:582
907
+ msgctxt "checked how long ago"
908
+ msgid "Checked"
909
+ msgstr "已检查"
910
 
911
+ #: includes/admin/table-printer.php:598
912
+ msgid "Broken for"
913
+ msgstr "失效于"
914
 
915
+ #: includes/admin/table-printer.php:621
916
+ msgid "Edit link URL"
917
+ msgstr "修改这个网址"
918
 
919
+ #: includes/admin/table-printer.php:623
920
+ msgid "Remove this link from all posts"
921
+ msgstr "将此链接从所有文章中删除"
 
 
 
922
 
923
+ #: includes/admin/table-printer.php:629
924
+ msgid "Remove this link from the list of broken links and mark it as valid"
925
+ msgstr "将此链接从失效链接列表中删除并标记为有效"
 
 
 
 
926
 
927
+ #: includes/admin/table-printer.php:637
928
+ msgid "Hide this link and do not report it again unless its status changes"
929
+ msgstr "隐藏此链接,除非链接状态发生改变不再报告此链接问题"
930
 
931
+ #: includes/admin/table-printer.php:638
932
+ msgid "Dismiss"
933
+ msgstr "屏蔽"
934
 
935
+ #: includes/admin/table-printer.php:643
936
+ msgid "Undismiss this link"
937
+ msgstr "不再屏蔽此链接"
 
938
 
939
+ #: includes/admin/table-printer.php:644
940
+ msgid "Undismiss"
941
+ msgstr "取消屏蔽"
942
 
943
+ #: includes/admin/table-printer.php:652
944
+ msgid "Cancel URL editing"
945
+ msgstr "取消网址修改"
946
 
947
+ #: includes/admin/table-printer.php:659
948
+ msgid "Update URL"
949
+ msgstr "修改网址"
950
 
951
+ #: includes/admin/table-printer.php:686
952
+ msgid "[An orphaned link! This is a bug.]"
953
+ msgstr "[一个孤立链接!这是一个错误。]"
 
954
 
955
+ #: includes/any-post.php:397
956
+ #: modules/containers/blogroll.php:46
957
+ #: modules/containers/comment.php:153
958
+ #: modules/containers/custom_field.php:197
959
+ msgid "Edit"
960
+ msgstr "编辑"
961
 
962
+ #: includes/any-post.php:405
963
+ #: modules/containers/custom_field.php:203
964
+ msgid "Move this item to the Trash"
965
+ msgstr "移动此项到回收站"
966
 
967
+ #: includes/any-post.php:407
968
+ #: modules/containers/custom_field.php:205
969
+ msgid "Trash"
970
+ msgstr "回收站"
971
 
972
+ #: includes/any-post.php:412
973
+ #: modules/containers/custom_field.php:210
974
+ msgid "Delete this item permanently"
975
+ msgstr "永久删除此项目"
976
 
977
+ #: includes/any-post.php:414
978
+ #: modules/containers/blogroll.php:47
979
+ #: modules/containers/custom_field.php:212
980
+ msgid "Delete"
981
+ msgstr "删除"
982
 
983
+ #: includes/any-post.php:427
984
+ msgid "Preview &#8220;%s&#8221;"
985
+ msgstr "预览 &#8220;%s&#8221;"
986
 
987
+ #: includes/any-post.php:428
988
+ msgid "Preview"
989
+ msgstr "预览"
 
990
 
991
+ #: includes/any-post.php:435
992
+ msgid "View &#8220;%s&#8221;"
993
+ msgstr "查看 &#8220;%s&#8221;"
 
994
 
995
+ #: includes/any-post.php:436
996
+ #: modules/containers/comment.php:166
997
+ #: modules/containers/custom_field.php:217
998
+ msgid "View"
999
+ msgstr "查看"
1000
 
1001
+ #: includes/any-post.php:455
1002
+ #: modules/containers/custom_field.php:197
1003
+ msgid "Edit this item"
1004
+ msgstr "编辑此项目"
1005
+
1006
+ #: includes/any-post.php:519
1007
+ #: modules/containers/blogroll.php:83
1008
+ #: modules/containers/comment.php:43
1009
+ msgid "Nothing to update"
1010
+ msgstr "无需更新"
1011
+
1012
+ #: includes/any-post.php:529
1013
+ msgid "Updating post %d failed"
1014
+ msgstr "更新文章%d失败"
1015
+
1016
+ #: includes/any-post.php:564
1017
+ #: modules/containers/custom_field.php:284
1018
+ msgid "Failed to delete post \"%s\" (%d)"
1019
+ msgstr "删除文章《%s》(%d)失败"
1020
+
1021
+ #: includes/any-post.php:583
1022
+ #: modules/containers/custom_field.php:303
1023
+ msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1024
+ msgstr "由于回收站功能已关闭,无法移动文章《%s》(%d)到回收站。"
1025
+
1026
+ #: includes/any-post.php:603
1027
+ #: modules/containers/custom_field.php:322
1028
+ msgid "Failed to move post \"%s\" (%d) to the trash"
1029
+ msgstr "移动文章《%s》(%d)到回收站失败"
1030
+
1031
+ #: includes/any-post.php:711
1032
+ msgid "%d post deleted."
1033
+ msgid_plural "%d posts deleted."
1034
+ msgstr[0] "已删除%d片文章。"
1035
+
1036
+ #: includes/any-post.php:713
1037
+ msgid "%d page deleted."
1038
+ msgid_plural "%d pages deleted."
1039
+ msgstr[0] "已删除%d个页面。"
1040
+
1041
+ #: includes/any-post.php:715
1042
+ msgid "%d \"%s\" deleted."
1043
+ msgid_plural "%d \"%s\" deleted."
1044
+ msgstr[0] "已删除%d个“%s”。"
1045
+
1046
+ #: includes/any-post.php:734
1047
+ msgid "%d post moved to the Trash."
1048
+ msgid_plural "%d posts moved to the Trash."
1049
+ msgstr[0] "已移动%d片文章到回收站。"
1050
+
1051
+ #: includes/any-post.php:736
1052
+ msgid "%d page moved to the Trash."
1053
+ msgid_plural "%d pages moved to the Trash."
1054
+ msgstr[0] "已移动%d个页面到回收站。"
1055
+
1056
+ #: includes/any-post.php:738
1057
+ msgid "%d \"%s\" moved to the Trash."
1058
+ msgid_plural "%d \"%s\" moved to the Trash."
1059
+ msgstr[0] "已移动%d个“%s”到回收站。"
1060
+
1061
+ #: includes/containers.php:122
1062
+ msgid "%d '%s' has been deleted"
1063
+ msgid_plural "%d '%s' have been deleted"
1064
+ msgstr[0] "已删除%d个‘%s’。"
1065
+
1066
+ #: includes/containers.php:873
1067
+ #: includes/containers.php:891
1068
+ msgid "Container type '%s' not recognized"
1069
+ msgstr "无法识别“%s”类型"
1070
+
1071
+ #: includes/extra-strings.php:2
1072
+ msgctxt "module name"
1073
+ msgid "Basic HTTP"
1074
+ msgstr "标准HTTP"
1075
+
1076
+ #: includes/extra-strings.php:3
1077
+ msgctxt "module name"
1078
+ msgid "Blogroll items"
1079
+ msgstr "摘要项目"
1080
+
1081
+ #: includes/extra-strings.php:4
1082
+ msgctxt "module name"
1083
+ msgid "Comments"
1084
+ msgstr "评论"
1085
+
1086
+ #: includes/extra-strings.php:5
1087
+ msgctxt "module name"
1088
+ msgid "Custom fields"
1089
+ msgstr "自定义栏目"
1090
+
1091
+ #: includes/extra-strings.php:6
1092
+ msgctxt "module name"
1093
+ msgid "Embedded DailyMotion videos"
1094
+ msgstr "引用的DailyMotion视频"
1095
+
1096
+ #: includes/extra-strings.php:7
1097
+ msgctxt "module name"
1098
+ msgid "Embedded GoogleVideo videos"
1099
+ msgstr "引用的GoogleVideo视频"
1100
+
1101
+ #: includes/extra-strings.php:8
1102
+ msgctxt "module name"
1103
+ msgid "Embedded Megavideo videos"
1104
+ msgstr "引用的Megavideo视频"
1105
+
1106
+ #: includes/extra-strings.php:9
1107
+ msgctxt "module name"
1108
+ msgid "Embedded Vimeo videos"
1109
+ msgstr "引用的Vimeo视频"
1110
+
1111
+ #: includes/extra-strings.php:10
1112
+ msgctxt "module name"
1113
+ msgid "Embedded YouTube videos"
1114
+ msgstr "引用的Youtube视频"
1115
+
1116
+ #: includes/extra-strings.php:11
1117
+ msgctxt "module name"
1118
+ msgid "Embedded YouTube videos (old embed code)"
1119
+ msgstr "引用的Megavideo视频(旧版引用代码)"
1120
+
1121
+ #: includes/extra-strings.php:12
1122
+ msgctxt "module name"
1123
+ msgid "FileServe API"
1124
+ msgstr "FileServe API"
1125
+
1126
+ #: includes/extra-strings.php:13
1127
+ msgctxt "module name"
1128
+ msgid "HTML images"
1129
+ msgstr "HTML图像"
1130
+
1131
+ #: includes/extra-strings.php:14
1132
+ msgctxt "module name"
1133
+ msgid "HTML links"
1134
+ msgstr "HTML链接"
1135
+
1136
+ #: includes/extra-strings.php:15
1137
+ msgctxt "module name"
1138
+ msgid "MediaFire API"
1139
+ msgstr "MediaFire API"
1140
+
1141
+ #: includes/extra-strings.php:16
1142
+ msgctxt "module name"
1143
+ msgid "MegaUpload API"
1144
+ msgstr "MegaUpload API"
1145
+
1146
+ #: includes/extra-strings.php:17
1147
+ msgctxt "module name"
1148
+ msgid "Plaintext URLs"
1149
+ msgstr "纯文本网址"
1150
+
1151
+ #: includes/extra-strings.php:18
1152
+ msgctxt "module name"
1153
+ msgid "RapidShare API"
1154
+ msgstr "RapidShare API"
1155
+
1156
+ #: includes/extra-strings.php:19
1157
+ msgctxt "module name"
1158
+ msgid "YouTube API"
1159
+ msgstr "YouTube API"
1160
+
1161
+ #: includes/extra-strings.php:20
1162
+ msgctxt "module name"
1163
+ msgid "Posts"
1164
+ msgstr "文章"
1165
+
1166
+ #: includes/extra-strings.php:21
1167
+ msgctxt "module name"
1168
+ msgid "Pages"
1169
+ msgstr "页面"
1170
+
1171
+ #: includes/instances.php:102
1172
+ #: includes/instances.php:158
1173
+ msgid "Container %s[%d] not found"
1174
+ msgstr "没有找到%s[%d]容器"
1175
+
1176
+ #: includes/instances.php:111
1177
+ #: includes/instances.php:167
1178
+ msgid "Parser '%s' not found."
1179
+ msgstr "没有找到%s解析器。"
1180
+
1181
+ #: includes/link-query.php:26
1182
+ msgid "Broken"
1183
+ msgstr "失效"
1184
 
1185
+ #: includes/link-query.php:28
1186
+ msgid "No broken links found"
1187
+ msgstr "未找到失效链接"
1188
 
1189
+ #: includes/link-query.php:36
1190
+ msgid "Redirects"
1191
+ msgstr "重定向"
1192
 
1193
+ #: includes/link-query.php:37
1194
+ msgid "Redirected Links"
1195
+ msgstr "被重定向的链接"
1196
 
1197
+ #: includes/link-query.php:38
1198
+ msgid "No redirects found"
1199
+ msgstr "未发现重定向的链接"
 
 
1200
 
1201
+ #: includes/link-query.php:46
1202
+ msgid "Dismissed"
1203
+ msgstr "已屏蔽"
1204
 
1205
+ #: includes/link-query.php:47
1206
+ msgid "Dismissed Links"
1207
+ msgstr "已屏蔽链接"
1208
 
1209
+ #: includes/link-query.php:48
1210
+ msgid "No dismissed links found"
1211
+ msgstr "未找到已屏蔽链接"
1212
 
1213
+ #: includes/link-query.php:56
1214
+ msgid "All"
1215
+ msgstr "所有"
1216
 
1217
+ #: includes/link-query.php:57
1218
+ msgid "Detected Links"
1219
+ msgstr "检测到的链接"
1220
 
1221
+ #: includes/link-query.php:58
1222
+ msgid "No links found (yet)"
1223
+ msgstr "(尚未)发现连接"
 
1224
 
1225
+ #: includes/link-query.php:66
1226
+ msgid "Search Results"
1227
+ msgstr "搜索结果"
 
1228
 
1229
+ #: includes/link-query.php:67
1230
+ #: includes/link-query.php:114
1231
+ msgid "No links found for your query"
1232
+ msgstr "没有查询到链接"
1233
 
1234
+ #: includes/links.php:218
1235
+ msgid "The plugin script was terminated while trying to check the link."
1236
+ msgstr "插件脚步在试图检查链接时被关闭。"
1237
 
1238
+ #: includes/links.php:264
1239
+ msgid "The plugin doesn't know how to check this type of link."
1240
+ msgstr "插件无法找到检查此类链接的方法。"
1241
 
1242
+ #: includes/links.php:357
1243
+ msgid "Link is valid."
1244
+ msgstr "链接有效。"
 
1245
 
1246
+ #: includes/links.php:359
1247
+ msgid "Link is broken."
1248
+ msgstr "链接失效。"
1249
 
1250
+ #: includes/links.php:571
1251
+ #: includes/links.php:673
1252
+ #: includes/links.php:700
1253
+ msgid "Link is not valid"
1254
+ msgstr "链接有误"
1255
+
1256
+ #: includes/links.php:588
1257
+ msgid "This link can not be edited because it is not used anywhere on this site."
1258
+ msgstr "此链接因未在任何内容中使用而无法被编辑。"
1259
+
1260
+ #: includes/links.php:614
1261
+ msgid "Failed to create a DB entry for the new URL."
1262
+ msgstr "为新网址建立数据库条目失败。"
1263
+
1264
+ #: includes/links.php:680
1265
+ msgid "This link is not a redirect"
1266
+ msgstr "此链接不是重定向"
1267
+
1268
+ #: includes/links.php:727
1269
+ #: includes/links.php:764
1270
+ msgid "Couldn't delete the link's database record"
1271
+ msgstr "无法删除链接的数据库记录"
1272
+
1273
+ #: includes/links.php:838
1274
+ msgctxt "link status"
1275
+ msgid "Unknown"
1276
+ msgstr "未知"
1277
+
1278
+ #: includes/links.php:852
1279
+ #: modules/checkers/http.php:264
1280
+ #: modules/extras/mediafire.php:101
1281
+ msgid "Unknown Error"
1282
+ msgstr "未知错误"
1283
+
1284
+ #: includes/links.php:876
1285
+ msgid "Not checked"
1286
+ msgstr "未检查"
1287
+
1288
+ #: includes/links.php:879
1289
+ msgid "False positive"
1290
+ msgstr "错误报告"
1291
+
1292
+ #: includes/links.php:882
1293
+ #: modules/extras/fileserve.php:121
1294
+ #: modules/extras/megaupload.php:115
1295
+ #: modules/extras/rapidshare.php:145
1296
+ #: modules/extras/rapidshare.php:151
1297
+ #: modules/extras/rapidshare.php:178
1298
+ msgctxt "link status"
1299
+ msgid "OK"
1300
+ msgstr "正常"
1301
+
1302
+ #: includes/parsers.php:109
1303
+ msgid "Editing is not implemented in the '%s' parser"
1304
+ msgstr "编辑未在“%s”解析器中生效"
1305
+
1306
+ #: includes/parsers.php:124
1307
+ msgid "Unlinking is not implemented in the '%s' parser"
1308
+ msgstr "取消操作未在“%s”解析器中生效"
1309
+
1310
+ #: includes/utility-class.php:245
1311
+ msgid "%d second"
1312
+ msgid_plural "%d seconds"
1313
+ msgstr[0] "%d秒"
1314
+
1315
+ #: includes/utility-class.php:246
1316
+ msgid "%d second ago"
1317
+ msgid_plural "%d seconds ago"
1318
+ msgstr[0] "%s秒前"
1319
+
1320
+ #: includes/utility-class.php:249
1321
+ msgid "%d minute"
1322
+ msgid_plural "%d minutes"
1323
+ msgstr[0] "%d分钟"
1324
+
1325
+ #: includes/utility-class.php:250
1326
+ msgid "%d minute ago"
1327
+ msgid_plural "%d minutes ago"
1328
+ msgstr[0] "%d分钟前"
1329
+
1330
+ #: includes/utility-class.php:253
1331
+ msgid "%d hour"
1332
+ msgid_plural "%d hours"
1333
+ msgstr[0] "%d小时"
1334
+
1335
+ #: includes/utility-class.php:254
1336
+ msgid "%d hour ago"
1337
+ msgid_plural "%d hours ago"
1338
+ msgstr[0] "%d小时前"
1339
+
1340
+ #: includes/utility-class.php:257
1341
+ msgid "%d day"
1342
+ msgid_plural "%d days"
1343
+ msgstr[0] "%d天"
1344
+
1345
+ #: includes/utility-class.php:258
1346
+ msgid "%d day ago"
1347
+ msgid_plural "%d days ago"
1348
+ msgstr[0] "%d天"
1349
+
1350
+ #: includes/utility-class.php:261
1351
+ msgid "%d month"
1352
+ msgid_plural "%d months"
1353
+ msgstr[0] "%d月"
1354
+
1355
+ #: includes/utility-class.php:262
1356
+ msgid "%d month ago"
1357
+ msgid_plural "%d months ago"
1358
+ msgstr[0] "%d月前"
1359
+
1360
+ #: modules/checkers/http.php:243
1361
+ msgid "Server Not Found"
1362
+ msgstr "找不到服务器"
1363
+
1364
+ #: modules/checkers/http.php:258
1365
+ msgid "Connection Failed"
1366
+ msgstr "建立连接失败"
1367
+
1368
+ #: modules/checkers/http.php:293
1369
+ #: modules/checkers/http.php:363
1370
+ msgid "HTTP code : %d"
1371
+ msgstr "HTTP代码:%d"
1372
+
1373
+ #: modules/checkers/http.php:295
1374
+ #: modules/checkers/http.php:365
1375
+ msgid "(No response)"
1376
+ msgstr "(无响应)"
1377
+
1378
+ #: modules/checkers/http.php:301
1379
+ msgid "Most likely the connection timed out or the domain doesn't exist."
1380
+ msgstr "最大的可能是连接超时或者此域名不存在。"
1381
 
1382
+ #: modules/checkers/http.php:372
1383
+ msgid "Request timed out."
1384
+ msgstr "请求超时。"
 
1385
 
1386
+ #: modules/checkers/http.php:390
1387
  msgid "Using Snoopy"
1388
  msgstr "使用Snoopy"
1389
 
1390
+ #: modules/containers/blogroll.php:21
1391
+ msgid "Bookmark"
1392
+ msgstr "书签"
1393
 
1394
+ #: modules/containers/blogroll.php:27
1395
+ #: modules/containers/blogroll.php:46
1396
+ msgid "Edit this bookmark"
1397
+ msgstr "编辑此书签"
1398
 
1399
+ #: modules/containers/blogroll.php:47
1400
+ msgid ""
1401
+ "You are about to delete this link '%s'\n"
1402
+ " 'Cancel' to stop, 'OK' to delete."
1403
+ msgstr ""
1404
+ "你将要删除“%s”链接\n"
1405
+ " “取消”以停止,“确定”以删除"
1406
+
1407
+ #: modules/containers/blogroll.php:97
1408
+ msgid "Updating bookmark %d failed"
1409
+ msgstr "更新书签%d失败"
1410
+
1411
+ #: modules/containers/blogroll.php:128
1412
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
1413
+ msgstr "删除博客链接“%s”(%d)失败"
1414
+
1415
+ #: modules/containers/blogroll.php:298
1416
+ msgid "%d blogroll link deleted."
1417
+ msgid_plural "%d blogroll links deleted."
1418
+ msgstr[0] "已删除%d个摘要链接。"
1419
+
1420
+ #: modules/containers/comment.php:53
1421
+ msgid "Updating comment %d failed"
1422
+ msgstr "更新评论%d失败"
1423
+
1424
+ #: modules/containers/comment.php:74
1425
+ msgid "Failed to delete comment %d"
1426
+ msgstr "删除评论%d失败"
1427
+
1428
+ #: modules/containers/comment.php:95
1429
+ msgid "Can't move comment %d to the trash"
1430
+ msgstr "无法移动评论%d到回收站"
1431
+
1432
+ #: modules/containers/comment.php:153
1433
+ #: modules/containers/comment.php:195
1434
+ msgid "Edit comment"
1435
+ msgstr "编辑评论"
1436
+
1437
+ #: modules/containers/comment.php:160
1438
+ msgid "Delete Permanently"
1439
+ msgstr "永久删除"
1440
+
1441
+ #: modules/containers/comment.php:162
1442
+ msgid "Move this comment to the trash"
1443
+ msgstr "移动此条评论到回收站"
1444
+
1445
+ #: modules/containers/comment.php:162
1446
+ msgctxt "verb"
1447
+ msgid "Trash"
1448
+ msgstr "回收站"
1449
+
1450
+ #: modules/containers/comment.php:166
1451
+ msgid "View comment"
1452
+ msgstr "查看评论"
1453
+
1454
+ #: modules/containers/comment.php:183
1455
+ msgid "Comment"
1456
+ msgstr "评论"
1457
+
1458
+ #: modules/containers/comment.php:355
1459
+ msgid "%d comment has been deleted."
1460
+ msgid_plural "%d comments have been deleted."
1461
+ msgstr[0] "已删除%d条评论"
1462
+
1463
+ #: modules/containers/comment.php:374
1464
+ msgid "%d comment moved to the Trash."
1465
+ msgid_plural "%d comments moved to the Trash."
1466
+ msgstr[0] "已移动%d条评论到回收站"
1467
+
1468
+ #: modules/containers/custom_field.php:84
1469
+ msgid "Failed to update the meta field '%s' on %s [%d]"
1470
+ msgstr "更新Meta栏目“%s”失败,栏目位于%s [%d]"
1471
+
1472
+ #: modules/containers/custom_field.php:110
1473
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
1474
+ msgstr "删除Meta栏目“%s”失败,栏目位于%s [%d]"
1475
+
1476
+ #: modules/containers/custom_field.php:187
1477
+ msgid "Edit this post"
1478
+ msgstr "编辑此文章"
1479
 
1480
+ #: modules/containers/custom_field.php:217
1481
+ msgid "View \"%s\""
1482
+ msgstr "查看“%s”"
1483
+
1484
+ #: modules/containers/dummy.php:34
1485
+ #: modules/containers/dummy.php:45
1486
+ msgid "I don't know how to edit a '%s' [%d]."
1487
+ msgstr "我不知道如何编辑“%s” [%d]。"
1488
+
1489
+ #: modules/extras/dailymotion-embed.php:23
1490
+ msgid "DailyMotion Video"
1491
+ msgstr "DailyMotion视频"
1492
+
1493
+ #: modules/extras/dailymotion-embed.php:24
1494
+ msgid "Embedded DailyMotion video"
1495
+ msgstr "嵌入的DailyMotion视频"
1496
+
1497
+ #: modules/extras/embed-parser-base.php:196
1498
+ msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
1499
+ msgstr "无法使用失效链接检查器编辑嵌入的视频,请手动编辑或替换存在问题的视频。"
1500
+
1501
+ #: modules/extras/fileserve.php:55
1502
+ msgid "Using FileServe API"
1503
+ msgstr "使用FileServe API"
1504
+
1505
+ #: modules/extras/fileserve.php:112
1506
+ #: modules/extras/mediafire.php:91
1507
+ #: modules/extras/mediafire.php:96
1508
+ #: modules/extras/megaupload.php:81
1509
+ #: modules/extras/megaupload.php:123
1510
+ #: modules/extras/rapidshare.php:139
1511
+ msgid "Not Found"
1512
+ msgstr "找不到"
1513
+
1514
+ #: modules/extras/fileserve.php:115
1515
+ msgid "FileServe : %d %s"
1516
+ msgstr "FileServe:%d %s"
1517
+
1518
+ #: modules/extras/googlevideo-embed.php:24
1519
+ msgid "GoogleVideo Video"
1520
+ msgstr "GoogleVideo视频"
1521
+
1522
+ #: modules/extras/googlevideo-embed.php:25
1523
+ msgid "Embedded GoogleVideo video"
1524
+ msgstr "引用的GoogleVideo视频"
1525
+
1526
+ #: modules/extras/megaupload.php:130
1527
+ msgid "File Temporarily Unavailable"
1528
+ msgstr "文件临时不可用"
1529
+
1530
+ #: modules/extras/megaupload.php:136
1531
+ msgid "API Error"
1532
+ msgstr "API错误"
1533
+
1534
+ #: modules/extras/megavideo-embed.php:24
1535
+ msgid "Megavideo Video"
1536
+ msgstr "Megavideo视频"
1537
+
1538
+ #: modules/extras/megavideo-embed.php:25
1539
+ msgid "Embedded Megavideo video"
1540
+ msgstr "嵌入的Megavideo视频"
1541
+
1542
+ #: modules/extras/rapidshare.php:51
1543
+ msgid "Using RapidShare API"
1544
+ msgstr "使用RapidShare API"
1545
+
1546
+ #: modules/extras/rapidshare.php:158
1547
+ msgid "RS Server Down"
1548
+ msgstr "RapidShare服务器宕机"
1549
+
1550
+ #: modules/extras/rapidshare.php:165
1551
+ msgid "File Blocked"
1552
+ msgstr "文件已被屏蔽"
1553
+
1554
+ #: modules/extras/rapidshare.php:172
1555
+ msgid "File Locked"
1556
+ msgstr "文件已被锁定"
1557
+
1558
+ #: modules/extras/rapidshare.php:183
1559
+ msgid "RapidShare : %s"
1560
+ msgstr "RapidShare:%s"
1561
+
1562
+ #: modules/extras/rapidshare.php:189
1563
+ msgid "RapidShare API error: %s"
1564
+ msgstr "RapidShare API错误:%s"
1565
+
1566
+ #: modules/extras/vimeo-embed.php:24
1567
+ msgid "Vimeo Video"
1568
+ msgstr "Vimeo视频"
1569
+
1570
+ #: modules/extras/vimeo-embed.php:25
1571
+ msgid "Embedded Vimeo video"
1572
+ msgstr "嵌入的Vimeo视频"
1573
+
1574
+ #: modules/extras/youtube-embed.php:24
1575
+ #: modules/extras/youtube-iframe.php:25
1576
+ msgid "YouTube Video"
1577
+ msgstr "YouTube视频"
1578
+
1579
+ #: modules/extras/youtube-embed.php:25
1580
+ #: modules/extras/youtube-iframe.php:26
1581
+ msgid "Embedded YouTube video"
1582
+ msgstr "嵌入的YouTube视频"
1583
+
1584
+ #: modules/extras/youtube.php:73
1585
+ #: modules/extras/youtube.php:76
1586
+ msgid "Video Not Found"
1587
+ msgstr "找不到视频"
1588
+
1589
+ #: modules/extras/youtube.php:84
1590
+ msgid "Video Removed"
1591
+ msgstr "视频已被移除"
1592
+
1593
+ #: modules/extras/youtube.php:92
1594
+ msgid "Invalid Video ID"
1595
+ msgstr "无效的视频ID"
1596
+
1597
+ #: modules/extras/youtube.php:104
1598
+ msgid "Video OK"
1599
+ msgstr "视频正常"
1600
+
1601
+ #: modules/extras/youtube.php:105
1602
+ #: modules/extras/youtube.php:132
1603
+ msgid "OK"
1604
+ msgstr "正常"
1605
 
1606
+ #: modules/extras/youtube.php:118
1607
+ msgid "Video status : %s%s"
1608
+ msgstr "视频状态:%s%s"
 
1609
 
1610
+ #: modules/extras/youtube.php:137
1611
+ msgid "Video Restricted"
1612
+ msgstr "视频受限制"
 
1613
 
1614
+ #: modules/extras/youtube.php:154
1615
+ msgid "Unknown YouTube API response received."
1616
+ msgstr "收到未知的YouTube API响应。"
1617
+
1618
+ #: modules/parsers/image.php:159
1619
+ msgid "Image"
1620
+ msgstr "图像"
1621
+
1622
+ #: modules/parsers/metadata.php:117
1623
+ msgid "Custom field"
1624
+ msgstr "自定义项目"
1625
 
1626
+ #. Plugin URI of the plugin/theme
1627
  msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1628
  msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1629
 
1630
+ #. Description of the plugin/theme
1631
+ msgid "Checks your blog for broken links and missing images and notifies you on the dashboard if any are found."
1632
+ msgstr "检查您文章中的失效链接和丢失的图片,如果有任何发现就在仪表盘中提醒您。"
1633
 
1634
+ #. Author of the plugin/theme
1635
  msgid "Janis Elsts"
1636
  msgstr "Janis Elsts"
1637
 
1638
+ #. Author URI of the plugin/theme
1639
  msgid "http://w-shadow.com/blog/"
1640
  msgstr "http://w-shadow.com/blog/"
1641
 
1642
+ #~ msgid ""
1643
+ #~ "Error: The plugin's database tables are not up to date! (Current "
1644
+ #~ "version : %d, expected : %d)"
1645
+ #~ msgstr "错误:插件数据表不是最新版(当前版本:%d,需要版本:%d)"
1646
+
1647
+ #~ msgid "Try deactivating and then reactivating the plugin."
1648
+ #~ msgstr "请尝试停用后再次启用本插件。"
1649
+
1650
+ #~ msgid "Broken link CSS"
1651
+ #~ msgstr "失效链接的CSS样式"
1652
+
1653
+ #~ msgid "Custom temporary directory"
1654
+ #~ msgstr "自定义临时目录"
1655
+
1656
+ #~ msgid "Error : This directory isn't writable by PHP."
1657
+ #~ msgstr "错误:此目录不可被PHP写入"
1658
+
1659
+ #~ msgid "Error : This directory doesn't exist."
1660
+ #~ msgstr "错误:此目录不存在"
1661
+
1662
+ #~ msgid ""
1663
+ #~ "Set this field if you want the plugin to use a custom directory for its "
1664
+ #~ "lockfiles. Otherwise, leave it blank."
1665
+ #~ msgstr "如果你想让插件的锁档使用一个自定义目录。否则请留空。"
1666
+
1667
+ #~ msgid "Excluded"
1668
+ #~ msgstr "已排除的"
1669
+
1670
+ #~ msgid "Add this URL to the exclusion list"
1671
+ #~ msgstr "将此链接添加进排除列表"
1672
+
1673
+ #~ msgid "Exclude"
1674
+ #~ msgstr "排除"
1675
+
1676
+ #~ msgid "Discard"
1677
+ #~ msgstr "忽略"
1678
+
1679
+ #~ msgid "Save URL"
1680
+ #~ msgstr "保存网址"
1681
+
1682
+ #~ msgid "Saving changes..."
1683
+ #~ msgstr "保存更改中……"
1684
+
1685
+ #~ msgid ""
1686
+ #~ "This link wasn't checked because a matching keyword was found on your "
1687
+ #~ "exclusion list."
1688
+ #~ msgstr "没有检查此链接因为它包含了您的排除列表中的关键字"
1689
+
1690
+ #~ msgid "URL %s was removed."
1691
+ #~ msgstr "网址%s已经被删除。"
1692
+
1693
+ #~ msgid "URL %s added to the exclusion list"
1694
+ #~ msgstr "网址%s成功添加到排除列表"
1695
+
1696
+ #~ msgid ""
1697
+ #~ "The current temporary directory is not accessible; please <a href=\"%s"
1698
+ #~ "\">set a different one</a>."
1699
+ #~ msgstr "当前的临时目录不可访问;请<a href=\"%s\">重新设置一个</a>."
1700
+
1701
+ #~ msgid ""
1702
+ #~ "Please make the directory <code>%1$s</code> writable by plugins or <a "
1703
+ #~ "href=\"%2$s\">set a custom temporary directory</a>."
1704
+ #~ msgstr ""
1705
+ #~ "请让目录<code>%1$s</code>可被插件写入或者<a href=\"%2$s\">设置一个自定义临"
1706
+ #~ "时目录</a>."
1707
+
1708
+ #~ msgid "Broken Link Checker can't create a lockfile."
1709
+ #~ msgstr "无效链接检查器无法创建一个锁档"
1710
+
1711
+ #~ msgid ""
1712
+ #~ "The plugin uses a file-based locking mechanism to ensure that only one "
1713
+ #~ "instance of the\r\n"
1714
+ #~ "\t\t\t\tresource-heavy link checking algorithm is running at any given "
1715
+ #~ "time. Unfortunately, \r\n"
1716
+ #~ "\t\t\t\tBLC can't find a writable directory where it could store the "
1717
+ #~ "lockfile - it failed to \r\n"
1718
+ #~ "\t\t\t\tdetect the location of your server's temporary directory, and the "
1719
+ #~ "plugin's own directory\r\n"
1720
+ #~ "\t\t\t\tisn't writable by PHP. To fix this problem, please make the "
1721
+ #~ "plugin's directory writable\r\n"
1722
+ #~ "\t\t\t\tor enter a specify a custom temporary directory in the plugin's "
1723
+ #~ "settings."
1724
+ #~ msgstr ""
1725
+ #~ "此插件利用一个基于文件的锁定机制来确定在任何时间里\r\n"
1726
+ #~ "\t\t\t\t只有一个大型的链接检查算法运行。不幸的是,\r\n"
1727
+ #~ "\t\t\t\t BLC无法找到一个可写入的目录来保存锁档。它无法检测到你服务器上的临"
1728
+ #~ "时目录,而且 \r\n"
1729
+ #~ "\t\t\t\t插件自身所在的目录也无法被PHP写入。要修复这个问题,请使插件的目录"
1730
+ #~ "可写。\r\n"
1731
+ #~ "\t\t\t\t或者在插件的设置中指定一个临时目录。"
1732
+
1733
+ #~ msgid ""
1734
+ #~ "Can't create a lockfile. Please specify a custom temporary directory."
1735
+ #~ msgstr "无法建立锁档。请指定一个自定义临时目录。"
1736
+
1737
+ #~ msgid "First try : %d"
1738
+ #~ msgstr "第一次尝试:%d"
1739
+
1740
+ #~ msgid "Trying a second time with different settings..."
1741
+ #~ msgstr "用不同的设置尝试第二次……"
1742
+
1743
+ #~ msgid "Second try : 0 (No response)"
1744
+ #~ msgstr "第二次尝试:0(无响应)"
1745
+
1746
+ #~ msgid "Second try : %d"
1747
+ #~ msgstr "第二次尝试:%d"
1748
+
1749
+ #~ msgid "Error adding link %s : %s"
1750
+ #~ msgstr "在添加链接 %s : %s 时发生错误"
1751
+
1752
+ #~ msgid "Error updating link %d : %s"
1753
+ #~ msgstr "在更行链接 %d : %s 时失败。"
languages/broken-link-checker.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Broken Link Checker package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Broken Link Checker 1.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
7
- "POT-Creation-Date: 2012-03-27 09:01:12+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,224 +12,210 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: core/core.php:146 includes/admin/links-page-js.php:37
16
  msgid "Loading..."
17
  msgstr ""
18
 
19
- #: core/core.php:170 includes/admin/options-page-js.php:18
20
  msgid "[ Network error ]"
21
  msgstr ""
22
 
23
- #: core/core.php:195
24
  msgid "Automatically expand the widget if broken links have been detected"
25
  msgstr ""
26
 
27
- #: core/core.php:285
28
  msgid "Link Checker Settings"
29
  msgstr ""
30
 
31
- #: core/core.php:286
32
  msgid "Link Checker"
33
  msgstr ""
34
 
35
- #: core/core.php:291 includes/link-query.php:26
36
  msgid "Broken Links"
37
  msgstr ""
38
 
39
- #: core/core.php:307
40
  msgid "View Broken Links"
41
  msgstr ""
42
 
43
- #: core/core.php:322
44
  msgid "Feedback"
45
  msgstr ""
46
 
47
- #: core/core.php:330 includes/admin/sidebar.php:18
48
- msgid "More plugins by Janis Elsts"
49
- msgstr ""
50
-
51
- #: core/core.php:337
52
  msgid "Go to Broken Links"
53
  msgstr ""
54
 
55
- #: core/core.php:366
56
  msgid "Settings"
57
  msgstr ""
58
 
59
- #: core/core.php:378 core/core.php:1167
60
- msgid ""
61
- "Error: The plugin's database tables are not up to date! (Current version : %"
62
- "d, expected : %d)"
63
- msgstr ""
64
-
65
- #: core/core.php:382 core/core.php:1171
66
- msgid "Try deactivating and then reactivating the plugin."
67
- msgstr ""
68
-
69
- #: core/core.php:521
70
  msgid "Settings saved."
71
  msgstr ""
72
 
73
- #: core/core.php:527
74
  msgid "Thank you for your donation!"
75
  msgstr ""
76
 
77
- #: core/core.php:534
78
  msgid "Complete site recheck started."
79
  msgstr ""
80
 
81
- #: core/core.php:543
82
  msgid "Details"
83
  msgstr ""
84
 
85
- #: core/core.php:557
86
  msgid "General"
87
  msgstr ""
88
 
89
- #: core/core.php:558
90
  msgid "Look For Links In"
91
  msgstr ""
92
 
93
- #: core/core.php:559
94
  msgid "Which Links To Check"
95
  msgstr ""
96
 
97
- #: core/core.php:560
98
  msgid "Protocols & APIs"
99
  msgstr ""
100
 
101
- #: core/core.php:561
102
  msgid "Advanced"
103
  msgstr ""
104
 
105
- #: core/core.php:576
106
  msgid "Broken Link Checker Options"
107
  msgstr ""
108
 
109
- #: core/core.php:618 includes/admin/table-printer.php:195
110
  msgid "Status"
111
  msgstr ""
112
 
113
- #: core/core.php:620 includes/admin/options-page-js.php:56
114
  msgid "Show debug info"
115
  msgstr ""
116
 
117
- #: core/core.php:648
118
  msgid "Check each link"
119
  msgstr ""
120
 
121
- #: core/core.php:653
122
  msgid "Every %s hours"
123
  msgstr ""
124
 
125
- #: core/core.php:662
126
  msgid ""
127
  "Existing links will be checked this often. New links will usually be checked "
128
  "ASAP."
129
  msgstr ""
130
 
131
- #: core/core.php:669
132
  msgid "E-mail notifications"
133
  msgstr ""
134
 
135
- #: core/core.php:675
136
  msgid "Send me e-mail notifications about newly detected broken links"
137
  msgstr ""
138
 
139
- #: core/core.php:683
140
  msgid "Send authors e-mail notifications about broken links in their posts"
141
  msgstr ""
142
 
143
- #: core/core.php:690
144
  msgid "Link tweaks"
145
  msgstr ""
146
 
147
- #: core/core.php:696
148
  msgid "Apply custom formatting to broken links"
149
  msgstr ""
150
 
151
- #: core/core.php:700 core/core.php:730
152
  msgid "Edit CSS"
153
  msgstr ""
154
 
155
- #: core/core.php:715
156
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
157
  msgstr ""
158
 
159
- #: core/core.php:718 core/core.php:749
160
  msgid "Click \"Save Changes\" to update example output."
161
  msgstr ""
162
 
163
- #: core/core.php:726
164
  msgid "Apply custom formatting to removed links"
165
  msgstr ""
166
 
167
- #: core/core.php:746
168
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
169
  msgstr ""
170
 
171
- #: core/core.php:759
172
  msgid "Stop search engines from following broken links"
173
  msgstr ""
174
 
175
- #: core/core.php:776
176
  msgid "Look for links in"
177
  msgstr ""
178
 
179
- #: core/core.php:787
180
  msgid "Post statuses"
181
  msgstr ""
182
 
183
- #: core/core.php:820
184
  msgid "Link types"
185
  msgstr ""
186
 
187
- #: core/core.php:826
188
  msgid "Error : All link parsers missing!"
189
  msgstr ""
190
 
191
- #: core/core.php:833
192
  msgid "Exclusion list"
193
  msgstr ""
194
 
195
- #: core/core.php:834
196
  msgid ""
197
  "Don't check links where the URL contains any of these words (one per line) :"
198
  msgstr ""
199
 
200
- #: core/core.php:852
201
  msgid "Check links using"
202
  msgstr ""
203
 
204
- #: core/core.php:871 includes/links.php:849
205
  msgid "Timeout"
206
  msgstr ""
207
 
208
- #: core/core.php:877 core/core.php:923 core/core.php:2732
209
  msgid "%s seconds"
210
  msgstr ""
211
 
212
- #: core/core.php:886
213
  msgid "Links that take longer than this to load will be marked as broken."
214
  msgstr ""
215
 
216
- #: core/core.php:893
217
  msgid "Link monitor"
218
  msgstr ""
219
 
220
- #: core/core.php:901
221
  msgid "Run continuously while the Dashboard is open"
222
  msgstr ""
223
 
224
- #: core/core.php:909
225
  msgid "Run hourly in the background"
226
  msgstr ""
227
 
228
- #: core/core.php:917
229
  msgid "Max. execution time"
230
  msgstr ""
231
 
232
- #: core/core.php:934
233
  msgid ""
234
  "The plugin works by periodically launching a background job that parses your "
235
  "posts for links, checks the discovered URLs, and performs other time-"
@@ -237,121 +223,121 @@ msgid ""
237
  "may run each time before stopping."
238
  msgstr ""
239
 
240
- #: core/core.php:943
241
  msgid "Server load limit"
242
  msgstr ""
243
 
244
- #: core/core.php:958
245
  msgid "Current load : %s"
246
  msgstr ""
247
 
248
- #: core/core.php:963
249
  msgid ""
250
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
251
  "a> rises above this number. Leave this field blank to disable load limiting."
252
  msgstr ""
253
 
254
- #: core/core.php:972
255
  msgid "Not available"
256
  msgstr ""
257
 
258
- #: core/core.php:974
259
  msgid ""
260
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
261
  "code> is present and accessible."
262
  msgstr ""
263
 
264
- #: core/core.php:982
265
  msgid "Forced recheck"
266
  msgstr ""
267
 
268
- #: core/core.php:985
269
  msgid "Re-check all pages"
270
  msgstr ""
271
 
272
- #: core/core.php:989
273
  msgid ""
274
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
275
  "database and recheck the entire site from scratch."
276
  msgstr ""
277
 
278
- #: core/core.php:1000
279
  msgid "Save Changes"
280
  msgstr ""
281
 
282
- #: core/core.php:1051
283
  msgid "Configure"
284
  msgstr ""
285
 
286
- #: core/core.php:1133
287
  msgid "Check URLs entered in these custom fields (one per line) :"
288
  msgstr ""
289
 
290
- #: core/core.php:1270 core/core.php:1351 core/core.php:1383
291
  msgid "Database error : %s"
292
  msgstr ""
293
 
294
- #: core/core.php:1333
295
  msgid "You must enter a filter name!"
296
  msgstr ""
297
 
298
- #: core/core.php:1337
299
  msgid "Invalid search query."
300
  msgstr ""
301
 
302
- #: core/core.php:1346
303
  msgid "Filter \"%s\" created"
304
  msgstr ""
305
 
306
- #: core/core.php:1373
307
  msgid "Filter ID not specified."
308
  msgstr ""
309
 
310
- #: core/core.php:1380
311
  msgid "Filter deleted"
312
  msgstr ""
313
 
314
- #: core/core.php:1427
315
  msgid "Replaced %d redirect with a direct link"
316
  msgid_plural "Replaced %d redirects with direct links"
317
  msgstr[0] ""
318
  msgstr[1] ""
319
 
320
- #: core/core.php:1438
321
  msgid "Failed to fix %d redirect"
322
  msgid_plural "Failed to fix %d redirects"
323
  msgstr[0] ""
324
  msgstr[1] ""
325
 
326
- #: core/core.php:1449
327
  msgid "None of the selected links are redirects!"
328
  msgstr ""
329
 
330
- #: core/core.php:1527
331
  msgid "%d link updated."
332
  msgid_plural "%d links updated."
333
  msgstr[0] ""
334
  msgstr[1] ""
335
 
336
- #: core/core.php:1538
337
  msgid "Failed to update %d link."
338
  msgid_plural "Failed to update %d links."
339
  msgstr[0] ""
340
  msgstr[1] ""
341
 
342
- #: core/core.php:1592
343
  msgid "%d link removed"
344
  msgid_plural "%d links removed"
345
  msgstr[0] ""
346
  msgstr[1] ""
347
 
348
- #: core/core.php:1603
349
  msgid "Failed to remove %d link"
350
  msgid_plural "Failed to remove %d links"
351
  msgstr[0] ""
352
  msgstr[1] ""
353
 
354
- #: core/core.php:1712
355
  msgid ""
356
  "%d item was skipped because it can't be moved to the Trash. You need to "
357
  "delete it manually."
@@ -361,265 +347,272 @@ msgid_plural ""
361
  msgstr[0] ""
362
  msgstr[1] ""
363
 
364
- #: core/core.php:1734
365
  msgid "Didn't find anything to delete!"
366
  msgstr ""
367
 
368
- #: core/core.php:1762
369
  msgid "%d link scheduled for rechecking"
370
  msgid_plural "%d links scheduled for rechecking"
371
  msgstr[0] ""
372
  msgstr[1] ""
373
 
374
- #: core/core.php:1808 core/core.php:2412
375
  msgid "This link was manually marked as working by the user."
376
  msgstr ""
377
 
378
- #: core/core.php:1815
379
  msgid "Couldn't modify link %d"
380
  msgstr ""
381
 
382
- #: core/core.php:1825
383
  msgid "%d link marked as not broken"
384
  msgid_plural "%d links marked as not broken"
385
  msgstr[0] ""
386
  msgstr[1] ""
387
 
388
- #: core/core.php:1865
389
  msgid "Table columns"
390
  msgstr ""
391
 
392
- #: core/core.php:1884
393
  msgid "Show on screen"
394
  msgstr ""
395
 
396
- #: core/core.php:1891
397
  msgid "links"
398
  msgstr ""
399
 
400
- #: core/core.php:1892 includes/admin/table-printer.php:163
401
  msgid "Apply"
402
  msgstr ""
403
 
404
- #: core/core.php:1896
405
  msgid "Misc"
406
  msgstr ""
407
 
408
- #: core/core.php:1911
409
  msgid "Highlight links broken for at least %s days"
410
  msgstr ""
411
 
412
- #: core/core.php:1920
413
  msgid "Color-code status codes"
414
  msgstr ""
415
 
416
- #: core/core.php:1937 core/core.php:2397 core/core.php:2433 core/core.php:2496
 
417
  msgid "You're not allowed to do that!"
418
  msgstr ""
419
 
420
- #: core/core.php:2278
421
  msgid "View broken links"
422
  msgstr ""
423
 
424
- #: core/core.php:2279
425
  msgid "Found %d broken link"
426
  msgid_plural "Found %d broken links"
427
  msgstr[0] ""
428
  msgstr[1] ""
429
 
430
- #: core/core.php:2285
431
  msgid "No broken links found."
432
  msgstr ""
433
 
434
- #: core/core.php:2292
435
  msgid "%d URL in the work queue"
436
  msgid_plural "%d URLs in the work queue"
437
  msgstr[0] ""
438
  msgstr[1] ""
439
 
440
- #: core/core.php:2295
441
  msgid "No URLs in the work queue."
442
  msgstr ""
443
 
444
- #: core/core.php:2301
445
- msgid "Detected %d unique URL"
446
- msgid_plural "Detected %d unique URLs"
 
447
  msgstr[0] ""
448
  msgstr[1] ""
449
 
450
- #: core/core.php:2302
451
- msgid "in %d link"
452
- msgid_plural "in %d links"
 
453
  msgstr[0] ""
454
  msgstr[1] ""
455
 
456
- #: core/core.php:2307
457
- msgid "and still searching..."
458
  msgstr ""
459
 
460
- #: core/core.php:2313
 
 
 
 
461
  msgid "Searching your blog for links..."
462
  msgstr ""
463
 
464
- #: core/core.php:2315
465
  msgid "No links detected."
466
  msgstr ""
467
 
468
- #: core/core.php:2341
469
  msgctxt "current load"
470
  msgid "Unknown"
471
  msgstr ""
472
 
473
- #: core/core.php:2405 core/core.php:2443 core/core.php:2506
474
  msgid "Oops, I can't find the link %d"
475
  msgstr ""
476
 
477
- #: core/core.php:2418
478
  msgid "Oops, couldn't modify the link!"
479
  msgstr ""
480
 
481
- #: core/core.php:2421 core/core.php:2532
482
  msgid "Error : link_id not specified"
483
  msgstr ""
484
 
485
- #: core/core.php:2453
486
  msgid "Oops, the new URL is invalid!"
487
  msgstr ""
488
 
489
- #: core/core.php:2464 core/core.php:2515
490
  msgid "An unexpected error occured!"
491
  msgstr ""
492
 
493
- #: core/core.php:2482
494
  msgid "Error : link_id or new_url not specified"
495
  msgstr ""
496
 
497
- #: core/core.php:2541
498
  msgid "You don't have sufficient privileges to access this information!"
499
  msgstr ""
500
 
501
- #: core/core.php:2554
502
  msgid "Error : link ID not specified"
503
  msgstr ""
504
 
505
- #: core/core.php:2568
506
  msgid "Failed to load link details (%s)"
507
  msgstr ""
508
 
509
- #. #-#-#-#-# plugin.pot (Broken Link Checker 1.4) #-#-#-#-#
510
  #. Plugin Name of the plugin/theme
511
- #: core/core.php:2621
512
  msgid "Broken Link Checker"
513
  msgstr ""
514
 
515
- #: core/core.php:2641
516
  msgid "PHP version"
517
  msgstr ""
518
 
519
- #: core/core.php:2647
520
  msgid "MySQL version"
521
  msgstr ""
522
 
523
- #: core/core.php:2660
524
  msgid ""
525
  "You have an old version of CURL. Redirect detection may not work properly."
526
  msgstr ""
527
 
528
- #: core/core.php:2672 core/core.php:2688 core/core.php:2693
529
  msgid "Not installed"
530
  msgstr ""
531
 
532
- #: core/core.php:2675
533
  msgid "CURL version"
534
  msgstr ""
535
 
536
- #: core/core.php:2681
537
  msgid "Installed"
538
  msgstr ""
539
 
540
- #: core/core.php:2694
541
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
542
  msgstr ""
543
 
544
- #: core/core.php:2705
545
  msgid "On"
546
  msgstr ""
547
 
548
- #: core/core.php:2706
549
  msgid "Redirects may be detected as broken links when safe_mode is on."
550
  msgstr ""
551
 
552
- #: core/core.php:2711 core/core.php:2725
553
  msgid "Off"
554
  msgstr ""
555
 
556
- #: core/core.php:2719
557
  msgid "On ( %s )"
558
  msgstr ""
559
 
560
- #: core/core.php:2720
561
  msgid "Redirects may be detected as broken links when open_basedir is on."
562
  msgstr ""
563
 
564
- #: core/core.php:2749
565
  msgid ""
566
  "If this value is zero even after several page reloads you have probably "
567
  "encountered a bug."
568
  msgstr ""
569
 
570
- #: core/core.php:2840 core/core.php:2938
571
  msgid "[%s] Broken links detected"
572
  msgstr ""
573
 
574
- #: core/core.php:2845
575
  msgid "Broken Link Checker has detected %d new broken link on your site."
576
  msgid_plural ""
577
  "Broken Link Checker has detected %d new broken links on your site."
578
  msgstr[0] ""
579
  msgstr[1] ""
580
 
581
- #: core/core.php:2868
582
  msgid "Here's a list of the first %d broken links:"
583
  msgid_plural "Here's a list of the first %d broken links:"
584
  msgstr[0] ""
585
  msgstr[1] ""
586
 
587
- #: core/core.php:2877
588
  msgid "Here's a list of the new broken links: "
589
  msgstr ""
590
 
591
- #: core/core.php:2886
592
  msgid "Link text : %s"
593
  msgstr ""
594
 
595
- #: core/core.php:2887
596
  msgid "Link URL : <a href=\"%s\">%s</a>"
597
  msgstr ""
598
 
599
- #: core/core.php:2888
600
  msgid "Source : %s"
601
  msgstr ""
602
 
603
- #: core/core.php:2901
604
  msgid "You can see all broken links here:"
605
  msgstr ""
606
 
607
- #: core/core.php:2943
608
  msgid "Broken Link Checker has detected %d new broken link in your posts."
609
  msgid_plural ""
610
  "Broken Link Checker has detected %d new broken links in your posts."
611
  msgstr[0] ""
612
  msgstr[1] ""
613
 
614
- #: core/init.php:231
615
  msgid "Once Weekly"
616
  msgstr ""
617
 
618
- #: core/init.php:237
619
  msgid "Twice a Month"
620
  msgstr ""
621
 
622
- #: core/init.php:307
623
  msgid ""
624
  "Broken Link Checker installation failed. Try deactivating and then "
625
  "reactivating the plugin."
@@ -629,77 +622,77 @@ msgstr ""
629
  msgid "Failed to delete old DB tables. Database error : %s"
630
  msgstr ""
631
 
632
- #: includes/admin/links-page-js.php:58 includes/admin/links-page-js.php:301
633
  msgid "Wait..."
634
  msgstr ""
635
 
636
- #: includes/admin/links-page-js.php:99 includes/admin/table-printer.php:616
637
  msgid "Not broken"
638
  msgstr ""
639
 
640
- #: includes/admin/links-page-js.php:213
641
  msgid "%d instances of the link were successfully modified."
642
  msgstr ""
643
 
644
- #: includes/admin/links-page-js.php:219
645
  msgid ""
646
  "However, %d instances couldn't be edited and still point to the old URL."
647
  msgstr ""
648
 
649
- #: includes/admin/links-page-js.php:225
650
  msgid "The link could not be modified."
651
  msgstr ""
652
 
653
- #: includes/admin/links-page-js.php:228 includes/admin/links-page-js.php:353
654
  msgid "The following error(s) occured :"
655
  msgstr ""
656
 
657
- #: includes/admin/links-page-js.php:339
658
  msgid "%d instances of the link were successfully unlinked."
659
  msgstr ""
660
 
661
- #: includes/admin/links-page-js.php:345
662
  msgid "However, %d instances couldn't be removed."
663
  msgstr ""
664
 
665
- #: includes/admin/links-page-js.php:350
666
  msgid "The plugin failed to remove the link."
667
  msgstr ""
668
 
669
- #: includes/admin/links-page-js.php:361 includes/admin/table-printer.php:266
670
- #: includes/admin/table-printer.php:610
671
  msgid "Unlink"
672
  msgstr ""
673
 
674
- #: includes/admin/links-page-js.php:405
675
  msgid "Enter a name for the new custom filter"
676
  msgstr ""
677
 
678
- #: includes/admin/links-page-js.php:416
679
  msgid ""
680
  "You are about to delete the current filter.\n"
681
  "'Cancel' to stop, 'OK' to delete"
682
  msgstr ""
683
 
684
- #: includes/admin/links-page-js.php:439
685
  msgid ""
686
  "Are you sure you want to delete all posts, bookmarks or other items that "
687
  "contain any of the selected links? This action can't be undone.\n"
688
  "'Cancel' to stop, 'OK' to delete"
689
  msgstr ""
690
 
691
- #: includes/admin/links-page-js.php:449
692
  msgid ""
693
  "Are you sure you want to remove the selected links? This action can't be "
694
  "undone.\n"
695
  "'Cancel' to stop, 'OK' to remove"
696
  msgstr ""
697
 
698
- #: includes/admin/links-page-js.php:558
699
  msgid "Enter a search string first."
700
  msgstr ""
701
 
702
- #: includes/admin/links-page-js.php:565
703
  msgid "Select one or more links to edit."
704
  msgstr ""
705
 
@@ -715,7 +708,7 @@ msgstr ""
715
  msgid "Delete This Filter"
716
  msgstr ""
717
 
718
- #: includes/admin/search-form.php:32 includes/link-query.php:53
719
  msgid "Search"
720
  msgstr ""
721
 
@@ -723,11 +716,11 @@ msgstr ""
723
  msgid "Link text"
724
  msgstr ""
725
 
726
- #: includes/admin/search-form.php:45 includes/admin/table-printer.php:200
727
  msgid "URL"
728
  msgstr ""
729
 
730
- #: includes/admin/search-form.php:48 includes/admin/table-printer.php:484
731
  msgid "HTTP code"
732
  msgstr ""
733
 
@@ -751,185 +744,209 @@ msgstr ""
751
  msgid "Search Links"
752
  msgstr ""
753
 
754
- #: includes/admin/search-form.php:113 includes/admin/table-printer.php:342
755
- #: includes/admin/table-printer.php:624 includes/admin/table-printer.php:630
756
  msgid "Cancel"
757
  msgstr ""
758
 
759
- #: includes/admin/sidebar.php:40
 
 
 
 
760
  msgid "Donate $10, $20 or $50!"
761
  msgstr ""
762
 
763
- #: includes/admin/sidebar.php:43
764
  msgid ""
765
  "If you like this plugin, please donate to support development and "
766
  "maintenance!"
767
  msgstr ""
768
 
769
- #: includes/admin/sidebar.php:60
770
  msgid "Return to WordPress Dashboard"
771
  msgstr ""
772
 
773
- #: includes/admin/table-printer.php:177
774
  msgid "Compact View"
775
  msgstr ""
776
 
777
- #: includes/admin/table-printer.php:178
778
  msgid "Detailed View"
779
  msgstr ""
780
 
781
- #: includes/admin/table-printer.php:207
782
  msgid "Source"
783
  msgstr ""
784
 
785
- #: includes/admin/table-printer.php:213
786
  msgid "Link Text"
787
  msgstr ""
788
 
789
- #: includes/admin/table-printer.php:261
 
 
 
 
790
  msgid "Bulk Actions"
791
  msgstr ""
792
 
793
- #: includes/admin/table-printer.php:262 includes/admin/table-printer.php:607
794
  msgid "Edit URL"
795
  msgstr ""
796
 
797
- #: includes/admin/table-printer.php:263
798
  msgid "Recheck"
799
  msgstr ""
800
 
801
- #: includes/admin/table-printer.php:264
802
  msgid "Fix redirects"
803
  msgstr ""
804
 
805
- #: includes/admin/table-printer.php:265
806
  msgid "Mark as not broken"
807
  msgstr ""
808
 
809
- #: includes/admin/table-printer.php:269
810
  msgid "Move sources to Trash"
811
  msgstr ""
812
 
813
- #: includes/admin/table-printer.php:271
814
  msgid "Delete sources"
815
  msgstr ""
816
 
817
- #: includes/admin/table-printer.php:286
818
  msgid "&laquo;"
819
  msgstr ""
820
 
821
- #: includes/admin/table-printer.php:287
822
  msgid "&raquo;"
823
  msgstr ""
824
 
825
- #: includes/admin/table-printer.php:295
826
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
827
  msgstr ""
828
 
829
- #: includes/admin/table-printer.php:318
830
  msgid "Bulk Edit URLs"
831
  msgstr ""
832
 
833
- #: includes/admin/table-printer.php:320
834
  msgid "Find"
835
  msgstr ""
836
 
837
- #: includes/admin/table-printer.php:324
838
  msgid "Replace with"
839
  msgstr ""
840
 
841
- #: includes/admin/table-printer.php:332
842
  msgid "Case sensitive"
843
  msgstr ""
844
 
845
- #: includes/admin/table-printer.php:336
846
  msgid "Regular expression"
847
  msgstr ""
848
 
849
- #: includes/admin/table-printer.php:344
850
  msgid "Update"
851
  msgstr ""
852
 
853
- #: includes/admin/table-printer.php:469
854
  msgid "Post published on"
855
  msgstr ""
856
 
857
- #: includes/admin/table-printer.php:474
858
  msgid "Link last checked"
859
  msgstr ""
860
 
861
- #: includes/admin/table-printer.php:478
862
  msgid "Never"
863
  msgstr ""
864
 
865
- #: includes/admin/table-printer.php:489
866
  msgid "Response time"
867
  msgstr ""
868
 
869
- #: includes/admin/table-printer.php:491
870
  msgid "%2.3f seconds"
871
  msgstr ""
872
 
873
- #: includes/admin/table-printer.php:494
874
  msgid "Final URL"
875
  msgstr ""
876
 
877
- #: includes/admin/table-printer.php:499
878
  msgid "Redirect count"
879
  msgstr ""
880
 
881
- #: includes/admin/table-printer.php:504
882
  msgid "Instance count"
883
  msgstr ""
884
 
885
- #: includes/admin/table-printer.php:513
886
  msgid "This link has failed %d time."
887
  msgid_plural "This link has failed %d times."
888
  msgstr[0] ""
889
  msgstr[1] ""
890
 
891
- #: includes/admin/table-printer.php:521
892
  msgid "This link has been broken for %s."
893
  msgstr ""
894
 
895
- #: includes/admin/table-printer.php:532
896
  msgid "Log"
897
  msgstr ""
898
 
899
- #: includes/admin/table-printer.php:553
900
  msgid "Show more info about this link"
901
  msgstr ""
902
 
903
- #: includes/admin/table-printer.php:571
904
  msgctxt "checked how long ago"
905
  msgid "Checked"
906
  msgstr ""
907
 
908
- #: includes/admin/table-printer.php:587
909
  msgid "Broken for"
910
  msgstr ""
911
 
912
- #: includes/admin/table-printer.php:607
913
  msgid "Edit link URL"
914
  msgstr ""
915
 
916
- #: includes/admin/table-printer.php:609
917
  msgid "Remove this link from all posts"
918
  msgstr ""
919
 
920
- #: includes/admin/table-printer.php:615
921
  msgid "Remove this link from the list of broken links and mark it as valid"
922
  msgstr ""
923
 
924
- #: includes/admin/table-printer.php:624
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
925
  msgid "Cancel URL editing"
926
  msgstr ""
927
 
928
- #: includes/admin/table-printer.php:631
929
  msgid "Update URL"
930
  msgstr ""
931
 
932
- #: includes/admin/table-printer.php:653
933
  msgid "[An orphaned link! This is a bug.]"
934
  msgstr ""
935
 
@@ -1153,102 +1170,114 @@ msgstr ""
1153
  msgid "Parser '%s' not found."
1154
  msgstr ""
1155
 
1156
- #: includes/link-query.php:25
1157
  msgid "Broken"
1158
  msgstr ""
1159
 
1160
- #: includes/link-query.php:27
1161
  msgid "No broken links found"
1162
  msgstr ""
1163
 
1164
- #: includes/link-query.php:34
1165
  msgid "Redirects"
1166
  msgstr ""
1167
 
1168
- #: includes/link-query.php:35
1169
  msgid "Redirected Links"
1170
  msgstr ""
1171
 
1172
- #: includes/link-query.php:36
1173
  msgid "No redirects found"
1174
  msgstr ""
1175
 
1176
- #: includes/link-query.php:44
 
 
 
 
 
 
 
 
 
 
 
 
1177
  msgid "All"
1178
  msgstr ""
1179
 
1180
- #: includes/link-query.php:45
1181
  msgid "Detected Links"
1182
  msgstr ""
1183
 
1184
- #: includes/link-query.php:46
1185
  msgid "No links found (yet)"
1186
  msgstr ""
1187
 
1188
- #: includes/link-query.php:54
1189
  msgid "Search Results"
1190
  msgstr ""
1191
 
1192
- #: includes/link-query.php:55 includes/link-query.php:102
1193
  msgid "No links found for your query"
1194
  msgstr ""
1195
 
1196
- #: includes/links.php:215
1197
  msgid "The plugin script was terminated while trying to check the link."
1198
  msgstr ""
1199
 
1200
- #: includes/links.php:261
1201
  msgid "The plugin doesn't know how to check this type of link."
1202
  msgstr ""
1203
 
1204
- #: includes/links.php:349
1205
  msgid "Link is valid."
1206
  msgstr ""
1207
 
1208
- #: includes/links.php:351
1209
  msgid "Link is broken."
1210
  msgstr ""
1211
 
1212
- #: includes/links.php:564 includes/links.php:666 includes/links.php:693
1213
  msgid "Link is not valid"
1214
  msgstr ""
1215
 
1216
- #: includes/links.php:581
1217
  msgid ""
1218
  "This link can not be edited because it is not used anywhere on this site."
1219
  msgstr ""
1220
 
1221
- #: includes/links.php:607
1222
  msgid "Failed to create a DB entry for the new URL."
1223
  msgstr ""
1224
 
1225
- #: includes/links.php:673
1226
  msgid "This link is not a redirect"
1227
  msgstr ""
1228
 
1229
- #: includes/links.php:720 includes/links.php:757
1230
  msgid "Couldn't delete the link's database record"
1231
  msgstr ""
1232
 
1233
- #: includes/links.php:831
1234
  msgctxt "link status"
1235
  msgid "Unknown"
1236
  msgstr ""
1237
 
1238
- #: includes/links.php:845 modules/checkers/http.php:264
1239
  #: modules/extras/mediafire.php:101
1240
  msgid "Unknown Error"
1241
  msgstr ""
1242
 
1243
- #: includes/links.php:869
1244
  msgid "Not checked"
1245
  msgstr ""
1246
 
1247
- #: includes/links.php:872
1248
  msgid "False positive"
1249
  msgstr ""
1250
 
1251
- #: includes/links.php:875 modules/extras/fileserve.php:121
1252
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1253
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1254
  msgctxt "link status"
@@ -1263,61 +1292,61 @@ msgstr ""
1263
  msgid "Unlinking is not implemented in the '%s' parser"
1264
  msgstr ""
1265
 
1266
- #: includes/utility-class.php:244
1267
  msgid "%d second"
1268
  msgid_plural "%d seconds"
1269
  msgstr[0] ""
1270
  msgstr[1] ""
1271
 
1272
- #: includes/utility-class.php:245
1273
  msgid "%d second ago"
1274
  msgid_plural "%d seconds ago"
1275
  msgstr[0] ""
1276
  msgstr[1] ""
1277
 
1278
- #: includes/utility-class.php:248
1279
  msgid "%d minute"
1280
  msgid_plural "%d minutes"
1281
  msgstr[0] ""
1282
  msgstr[1] ""
1283
 
1284
- #: includes/utility-class.php:249
1285
  msgid "%d minute ago"
1286
  msgid_plural "%d minutes ago"
1287
  msgstr[0] ""
1288
  msgstr[1] ""
1289
 
1290
- #: includes/utility-class.php:252
1291
  msgid "%d hour"
1292
  msgid_plural "%d hours"
1293
  msgstr[0] ""
1294
  msgstr[1] ""
1295
 
1296
- #: includes/utility-class.php:253
1297
  msgid "%d hour ago"
1298
  msgid_plural "%d hours ago"
1299
  msgstr[0] ""
1300
  msgstr[1] ""
1301
 
1302
- #: includes/utility-class.php:256
1303
  msgid "%d day"
1304
  msgid_plural "%d days"
1305
  msgstr[0] ""
1306
  msgstr[1] ""
1307
 
1308
- #: includes/utility-class.php:257
1309
  msgid "%d day ago"
1310
  msgid_plural "%d days ago"
1311
  msgstr[0] ""
1312
  msgstr[1] ""
1313
 
1314
- #: includes/utility-class.php:260
1315
  msgid "%d month"
1316
  msgid_plural "%d months"
1317
  msgstr[0] ""
1318
  msgstr[1] ""
1319
 
1320
- #: includes/utility-class.php:261
1321
  msgid "%d month ago"
1322
  msgid_plural "%d months ago"
1323
  msgstr[0] ""
2
  # This file is distributed under the same license as the Broken Link Checker package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Broken Link Checker 1.6.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
7
+ "POT-Creation-Date: 2012-07-11 15:57:29+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: core/core.php:151 includes/admin/links-page-js.php:37
16
  msgid "Loading..."
17
  msgstr ""
18
 
19
+ #: core/core.php:175 includes/admin/options-page-js.php:18
20
  msgid "[ Network error ]"
21
  msgstr ""
22
 
23
+ #: core/core.php:202
24
  msgid "Automatically expand the widget if broken links have been detected"
25
  msgstr ""
26
 
27
+ #: core/core.php:292
28
  msgid "Link Checker Settings"
29
  msgstr ""
30
 
31
+ #: core/core.php:293
32
  msgid "Link Checker"
33
  msgstr ""
34
 
35
+ #: core/core.php:298 includes/link-query.php:27
36
  msgid "Broken Links"
37
  msgstr ""
38
 
39
+ #: core/core.php:314
40
  msgid "View Broken Links"
41
  msgstr ""
42
 
43
+ #: core/core.php:329
44
  msgid "Feedback"
45
  msgstr ""
46
 
47
+ #: core/core.php:368
 
 
 
 
48
  msgid "Go to Broken Links"
49
  msgstr ""
50
 
51
+ #: core/core.php:397
52
  msgid "Settings"
53
  msgstr ""
54
 
55
+ #: core/core.php:554
 
 
 
 
 
 
 
 
 
 
56
  msgid "Settings saved."
57
  msgstr ""
58
 
59
+ #: core/core.php:560
60
  msgid "Thank you for your donation!"
61
  msgstr ""
62
 
63
+ #: core/core.php:568
64
  msgid "Complete site recheck started."
65
  msgstr ""
66
 
67
+ #: core/core.php:577
68
  msgid "Details"
69
  msgstr ""
70
 
71
+ #: core/core.php:591
72
  msgid "General"
73
  msgstr ""
74
 
75
+ #: core/core.php:592
76
  msgid "Look For Links In"
77
  msgstr ""
78
 
79
+ #: core/core.php:593
80
  msgid "Which Links To Check"
81
  msgstr ""
82
 
83
+ #: core/core.php:594
84
  msgid "Protocols & APIs"
85
  msgstr ""
86
 
87
+ #: core/core.php:595
88
  msgid "Advanced"
89
  msgstr ""
90
 
91
+ #: core/core.php:610
92
  msgid "Broken Link Checker Options"
93
  msgstr ""
94
 
95
+ #: core/core.php:652 includes/admin/table-printer.php:197
96
  msgid "Status"
97
  msgstr ""
98
 
99
+ #: core/core.php:654 includes/admin/options-page-js.php:56
100
  msgid "Show debug info"
101
  msgstr ""
102
 
103
+ #: core/core.php:682
104
  msgid "Check each link"
105
  msgstr ""
106
 
107
+ #: core/core.php:687
108
  msgid "Every %s hours"
109
  msgstr ""
110
 
111
+ #: core/core.php:696
112
  msgid ""
113
  "Existing links will be checked this often. New links will usually be checked "
114
  "ASAP."
115
  msgstr ""
116
 
117
+ #: core/core.php:703
118
  msgid "E-mail notifications"
119
  msgstr ""
120
 
121
+ #: core/core.php:709
122
  msgid "Send me e-mail notifications about newly detected broken links"
123
  msgstr ""
124
 
125
+ #: core/core.php:717
126
  msgid "Send authors e-mail notifications about broken links in their posts"
127
  msgstr ""
128
 
129
+ #: core/core.php:724
130
  msgid "Link tweaks"
131
  msgstr ""
132
 
133
+ #: core/core.php:730
134
  msgid "Apply custom formatting to broken links"
135
  msgstr ""
136
 
137
+ #: core/core.php:734 core/core.php:765
138
  msgid "Edit CSS"
139
  msgstr ""
140
 
141
+ #: core/core.php:750
142
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
143
  msgstr ""
144
 
145
+ #: core/core.php:753 core/core.php:784
146
  msgid "Click \"Save Changes\" to update example output."
147
  msgstr ""
148
 
149
+ #: core/core.php:761
150
  msgid "Apply custom formatting to removed links"
151
  msgstr ""
152
 
153
+ #: core/core.php:781
154
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
155
  msgstr ""
156
 
157
+ #: core/core.php:794
158
  msgid "Stop search engines from following broken links"
159
  msgstr ""
160
 
161
+ #: core/core.php:811
162
  msgid "Look for links in"
163
  msgstr ""
164
 
165
+ #: core/core.php:822
166
  msgid "Post statuses"
167
  msgstr ""
168
 
169
+ #: core/core.php:855
170
  msgid "Link types"
171
  msgstr ""
172
 
173
+ #: core/core.php:861
174
  msgid "Error : All link parsers missing!"
175
  msgstr ""
176
 
177
+ #: core/core.php:868
178
  msgid "Exclusion list"
179
  msgstr ""
180
 
181
+ #: core/core.php:869
182
  msgid ""
183
  "Don't check links where the URL contains any of these words (one per line) :"
184
  msgstr ""
185
 
186
+ #: core/core.php:887
187
  msgid "Check links using"
188
  msgstr ""
189
 
190
+ #: core/core.php:906 includes/links.php:856
191
  msgid "Timeout"
192
  msgstr ""
193
 
194
+ #: core/core.php:912 core/core.php:958 core/core.php:2801
195
  msgid "%s seconds"
196
  msgstr ""
197
 
198
+ #: core/core.php:921
199
  msgid "Links that take longer than this to load will be marked as broken."
200
  msgstr ""
201
 
202
+ #: core/core.php:928
203
  msgid "Link monitor"
204
  msgstr ""
205
 
206
+ #: core/core.php:936
207
  msgid "Run continuously while the Dashboard is open"
208
  msgstr ""
209
 
210
+ #: core/core.php:944
211
  msgid "Run hourly in the background"
212
  msgstr ""
213
 
214
+ #: core/core.php:952
215
  msgid "Max. execution time"
216
  msgstr ""
217
 
218
+ #: core/core.php:969
219
  msgid ""
220
  "The plugin works by periodically launching a background job that parses your "
221
  "posts for links, checks the discovered URLs, and performs other time-"
223
  "may run each time before stopping."
224
  msgstr ""
225
 
226
+ #: core/core.php:978
227
  msgid "Server load limit"
228
  msgstr ""
229
 
230
+ #: core/core.php:993
231
  msgid "Current load : %s"
232
  msgstr ""
233
 
234
+ #: core/core.php:998
235
  msgid ""
236
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
237
  "a> rises above this number. Leave this field blank to disable load limiting."
238
  msgstr ""
239
 
240
+ #: core/core.php:1007
241
  msgid "Not available"
242
  msgstr ""
243
 
244
+ #: core/core.php:1009
245
  msgid ""
246
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
247
  "code> is present and accessible."
248
  msgstr ""
249
 
250
+ #: core/core.php:1017
251
  msgid "Forced recheck"
252
  msgstr ""
253
 
254
+ #: core/core.php:1020
255
  msgid "Re-check all pages"
256
  msgstr ""
257
 
258
+ #: core/core.php:1024
259
  msgid ""
260
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
261
  "database and recheck the entire site from scratch."
262
  msgstr ""
263
 
264
+ #: core/core.php:1035
265
  msgid "Save Changes"
266
  msgstr ""
267
 
268
+ #: core/core.php:1086
269
  msgid "Configure"
270
  msgstr ""
271
 
272
+ #: core/core.php:1168
273
  msgid "Check URLs entered in these custom fields (one per line) :"
274
  msgstr ""
275
 
276
+ #: core/core.php:1296 core/core.php:1378 core/core.php:1410
277
  msgid "Database error : %s"
278
  msgstr ""
279
 
280
+ #: core/core.php:1360
281
  msgid "You must enter a filter name!"
282
  msgstr ""
283
 
284
+ #: core/core.php:1364
285
  msgid "Invalid search query."
286
  msgstr ""
287
 
288
+ #: core/core.php:1373
289
  msgid "Filter \"%s\" created"
290
  msgstr ""
291
 
292
+ #: core/core.php:1400
293
  msgid "Filter ID not specified."
294
  msgstr ""
295
 
296
+ #: core/core.php:1407
297
  msgid "Filter deleted"
298
  msgstr ""
299
 
300
+ #: core/core.php:1454
301
  msgid "Replaced %d redirect with a direct link"
302
  msgid_plural "Replaced %d redirects with direct links"
303
  msgstr[0] ""
304
  msgstr[1] ""
305
 
306
+ #: core/core.php:1465
307
  msgid "Failed to fix %d redirect"
308
  msgid_plural "Failed to fix %d redirects"
309
  msgstr[0] ""
310
  msgstr[1] ""
311
 
312
+ #: core/core.php:1476
313
  msgid "None of the selected links are redirects!"
314
  msgstr ""
315
 
316
+ #: core/core.php:1554
317
  msgid "%d link updated."
318
  msgid_plural "%d links updated."
319
  msgstr[0] ""
320
  msgstr[1] ""
321
 
322
+ #: core/core.php:1565
323
  msgid "Failed to update %d link."
324
  msgid_plural "Failed to update %d links."
325
  msgstr[0] ""
326
  msgstr[1] ""
327
 
328
+ #: core/core.php:1619
329
  msgid "%d link removed"
330
  msgid_plural "%d links removed"
331
  msgstr[0] ""
332
  msgstr[1] ""
333
 
334
+ #: core/core.php:1630
335
  msgid "Failed to remove %d link"
336
  msgid_plural "Failed to remove %d links"
337
  msgstr[0] ""
338
  msgstr[1] ""
339
 
340
+ #: core/core.php:1739
341
  msgid ""
342
  "%d item was skipped because it can't be moved to the Trash. You need to "
343
  "delete it manually."
347
  msgstr[0] ""
348
  msgstr[1] ""
349
 
350
+ #: core/core.php:1761
351
  msgid "Didn't find anything to delete!"
352
  msgstr ""
353
 
354
+ #: core/core.php:1789
355
  msgid "%d link scheduled for rechecking"
356
  msgid_plural "%d links scheduled for rechecking"
357
  msgstr[0] ""
358
  msgstr[1] ""
359
 
360
+ #: core/core.php:1835 core/core.php:2444
361
  msgid "This link was manually marked as working by the user."
362
  msgstr ""
363
 
364
+ #: core/core.php:1842
365
  msgid "Couldn't modify link %d"
366
  msgstr ""
367
 
368
+ #: core/core.php:1852
369
  msgid "%d link marked as not broken"
370
  msgid_plural "%d links marked as not broken"
371
  msgstr[0] ""
372
  msgstr[1] ""
373
 
374
+ #: core/core.php:1892
375
  msgid "Table columns"
376
  msgstr ""
377
 
378
+ #: core/core.php:1911
379
  msgid "Show on screen"
380
  msgstr ""
381
 
382
+ #: core/core.php:1918
383
  msgid "links"
384
  msgstr ""
385
 
386
+ #: core/core.php:1919 includes/admin/table-printer.php:165
387
  msgid "Apply"
388
  msgstr ""
389
 
390
+ #: core/core.php:1923
391
  msgid "Misc"
392
  msgstr ""
393
 
394
+ #: core/core.php:1938
395
  msgid "Highlight links broken for at least %s days"
396
  msgstr ""
397
 
398
+ #: core/core.php:1947
399
  msgid "Color-code status codes"
400
  msgstr ""
401
 
402
+ #: core/core.php:1964 core/core.php:2429 core/core.php:2469 core/core.php:2502
403
+ #: core/core.php:2565
404
  msgid "You're not allowed to do that!"
405
  msgstr ""
406
 
407
+ #: core/core.php:2299
408
  msgid "View broken links"
409
  msgstr ""
410
 
411
+ #: core/core.php:2300
412
  msgid "Found %d broken link"
413
  msgid_plural "Found %d broken links"
414
  msgstr[0] ""
415
  msgstr[1] ""
416
 
417
+ #: core/core.php:2306
418
  msgid "No broken links found."
419
  msgstr ""
420
 
421
+ #: core/core.php:2313
422
  msgid "%d URL in the work queue"
423
  msgid_plural "%d URLs in the work queue"
424
  msgstr[0] ""
425
  msgstr[1] ""
426
 
427
+ #: core/core.php:2316
428
  msgid "No URLs in the work queue."
429
  msgstr ""
430
 
431
+ #: core/core.php:2322
432
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
433
+ msgid "%d unique URL"
434
+ msgid_plural "%d unique URLs"
435
  msgstr[0] ""
436
  msgstr[1] ""
437
 
438
+ #: core/core.php:2326
439
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
440
+ msgid "%d link"
441
+ msgid_plural "%d links"
442
  msgstr[0] ""
443
  msgstr[1] ""
444
 
445
+ #: core/core.php:2332
446
+ msgid "Detected %1$s in %2$s and still searching..."
447
  msgstr ""
448
 
449
+ #: core/core.php:2338
450
+ msgid "Detected %1$s in %2$s."
451
+ msgstr ""
452
+
453
+ #: core/core.php:2345
454
  msgid "Searching your blog for links..."
455
  msgstr ""
456
 
457
+ #: core/core.php:2347
458
  msgid "No links detected."
459
  msgstr ""
460
 
461
+ #: core/core.php:2373
462
  msgctxt "current load"
463
  msgid "Unknown"
464
  msgstr ""
465
 
466
+ #: core/core.php:2437 core/core.php:2477 core/core.php:2512 core/core.php:2575
467
  msgid "Oops, I can't find the link %d"
468
  msgstr ""
469
 
470
+ #: core/core.php:2450 core/core.php:2487
471
  msgid "Oops, couldn't modify the link!"
472
  msgstr ""
473
 
474
+ #: core/core.php:2453 core/core.php:2490 core/core.php:2601
475
  msgid "Error : link_id not specified"
476
  msgstr ""
477
 
478
+ #: core/core.php:2522
479
  msgid "Oops, the new URL is invalid!"
480
  msgstr ""
481
 
482
+ #: core/core.php:2533 core/core.php:2584
483
  msgid "An unexpected error occured!"
484
  msgstr ""
485
 
486
+ #: core/core.php:2551
487
  msgid "Error : link_id or new_url not specified"
488
  msgstr ""
489
 
490
+ #: core/core.php:2610
491
  msgid "You don't have sufficient privileges to access this information!"
492
  msgstr ""
493
 
494
+ #: core/core.php:2623
495
  msgid "Error : link ID not specified"
496
  msgstr ""
497
 
498
+ #: core/core.php:2637
499
  msgid "Failed to load link details (%s)"
500
  msgstr ""
501
 
502
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.6.2) #-#-#-#-#
503
  #. Plugin Name of the plugin/theme
504
+ #: core/core.php:2690
505
  msgid "Broken Link Checker"
506
  msgstr ""
507
 
508
+ #: core/core.php:2710
509
  msgid "PHP version"
510
  msgstr ""
511
 
512
+ #: core/core.php:2716
513
  msgid "MySQL version"
514
  msgstr ""
515
 
516
+ #: core/core.php:2729
517
  msgid ""
518
  "You have an old version of CURL. Redirect detection may not work properly."
519
  msgstr ""
520
 
521
+ #: core/core.php:2741 core/core.php:2757 core/core.php:2762
522
  msgid "Not installed"
523
  msgstr ""
524
 
525
+ #: core/core.php:2744
526
  msgid "CURL version"
527
  msgstr ""
528
 
529
+ #: core/core.php:2750
530
  msgid "Installed"
531
  msgstr ""
532
 
533
+ #: core/core.php:2763
534
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
535
  msgstr ""
536
 
537
+ #: core/core.php:2774
538
  msgid "On"
539
  msgstr ""
540
 
541
+ #: core/core.php:2775
542
  msgid "Redirects may be detected as broken links when safe_mode is on."
543
  msgstr ""
544
 
545
+ #: core/core.php:2780 core/core.php:2794
546
  msgid "Off"
547
  msgstr ""
548
 
549
+ #: core/core.php:2788
550
  msgid "On ( %s )"
551
  msgstr ""
552
 
553
+ #: core/core.php:2789
554
  msgid "Redirects may be detected as broken links when open_basedir is on."
555
  msgstr ""
556
 
557
+ #: core/core.php:2818
558
  msgid ""
559
  "If this value is zero even after several page reloads you have probably "
560
  "encountered a bug."
561
  msgstr ""
562
 
563
+ #: core/core.php:2909 core/core.php:3007
564
  msgid "[%s] Broken links detected"
565
  msgstr ""
566
 
567
+ #: core/core.php:2914
568
  msgid "Broken Link Checker has detected %d new broken link on your site."
569
  msgid_plural ""
570
  "Broken Link Checker has detected %d new broken links on your site."
571
  msgstr[0] ""
572
  msgstr[1] ""
573
 
574
+ #: core/core.php:2937
575
  msgid "Here's a list of the first %d broken links:"
576
  msgid_plural "Here's a list of the first %d broken links:"
577
  msgstr[0] ""
578
  msgstr[1] ""
579
 
580
+ #: core/core.php:2946
581
  msgid "Here's a list of the new broken links: "
582
  msgstr ""
583
 
584
+ #: core/core.php:2955
585
  msgid "Link text : %s"
586
  msgstr ""
587
 
588
+ #: core/core.php:2956
589
  msgid "Link URL : <a href=\"%s\">%s</a>"
590
  msgstr ""
591
 
592
+ #: core/core.php:2957
593
  msgid "Source : %s"
594
  msgstr ""
595
 
596
+ #: core/core.php:2970
597
  msgid "You can see all broken links here:"
598
  msgstr ""
599
 
600
+ #: core/core.php:3012
601
  msgid "Broken Link Checker has detected %d new broken link in your posts."
602
  msgid_plural ""
603
  "Broken Link Checker has detected %d new broken links in your posts."
604
  msgstr[0] ""
605
  msgstr[1] ""
606
 
607
+ #: core/init.php:235
608
  msgid "Once Weekly"
609
  msgstr ""
610
 
611
+ #: core/init.php:241
612
  msgid "Twice a Month"
613
  msgstr ""
614
 
615
+ #: core/init.php:317
616
  msgid ""
617
  "Broken Link Checker installation failed. Try deactivating and then "
618
  "reactivating the plugin."
622
  msgid "Failed to delete old DB tables. Database error : %s"
623
  msgstr ""
624
 
625
+ #: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:403
626
  msgid "Wait..."
627
  msgstr ""
628
 
629
+ #: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:630
630
  msgid "Not broken"
631
  msgstr ""
632
 
633
+ #: includes/admin/links-page-js.php:315
634
  msgid "%d instances of the link were successfully modified."
635
  msgstr ""
636
 
637
+ #: includes/admin/links-page-js.php:321
638
  msgid ""
639
  "However, %d instances couldn't be edited and still point to the old URL."
640
  msgstr ""
641
 
642
+ #: includes/admin/links-page-js.php:327
643
  msgid "The link could not be modified."
644
  msgstr ""
645
 
646
+ #: includes/admin/links-page-js.php:330 includes/admin/links-page-js.php:455
647
  msgid "The following error(s) occured :"
648
  msgstr ""
649
 
650
+ #: includes/admin/links-page-js.php:441
651
  msgid "%d instances of the link were successfully unlinked."
652
  msgstr ""
653
 
654
+ #: includes/admin/links-page-js.php:447
655
  msgid "However, %d instances couldn't be removed."
656
  msgstr ""
657
 
658
+ #: includes/admin/links-page-js.php:452
659
  msgid "The plugin failed to remove the link."
660
  msgstr ""
661
 
662
+ #: includes/admin/links-page-js.php:463 includes/admin/table-printer.php:273
663
+ #: includes/admin/table-printer.php:624
664
  msgid "Unlink"
665
  msgstr ""
666
 
667
+ #: includes/admin/links-page-js.php:507
668
  msgid "Enter a name for the new custom filter"
669
  msgstr ""
670
 
671
+ #: includes/admin/links-page-js.php:518
672
  msgid ""
673
  "You are about to delete the current filter.\n"
674
  "'Cancel' to stop, 'OK' to delete"
675
  msgstr ""
676
 
677
+ #: includes/admin/links-page-js.php:538
678
  msgid ""
679
  "Are you sure you want to delete all posts, bookmarks or other items that "
680
  "contain any of the selected links? This action can't be undone.\n"
681
  "'Cancel' to stop, 'OK' to delete"
682
  msgstr ""
683
 
684
+ #: includes/admin/links-page-js.php:548
685
  msgid ""
686
  "Are you sure you want to remove the selected links? This action can't be "
687
  "undone.\n"
688
  "'Cancel' to stop, 'OK' to remove"
689
  msgstr ""
690
 
691
+ #: includes/admin/links-page-js.php:657
692
  msgid "Enter a search string first."
693
  msgstr ""
694
 
695
+ #: includes/admin/links-page-js.php:664
696
  msgid "Select one or more links to edit."
697
  msgstr ""
698
 
708
  msgid "Delete This Filter"
709
  msgstr ""
710
 
711
+ #: includes/admin/search-form.php:32 includes/link-query.php:65
712
  msgid "Search"
713
  msgstr ""
714
 
716
  msgid "Link text"
717
  msgstr ""
718
 
719
+ #: includes/admin/search-form.php:45 includes/admin/table-printer.php:202
720
  msgid "URL"
721
  msgstr ""
722
 
723
+ #: includes/admin/search-form.php:48 includes/admin/table-printer.php:491
724
  msgid "HTTP code"
725
  msgstr ""
726
 
744
  msgid "Search Links"
745
  msgstr ""
746
 
747
+ #: includes/admin/search-form.php:113 includes/admin/table-printer.php:349
748
+ #: includes/admin/table-printer.php:652 includes/admin/table-printer.php:658
749
  msgid "Cancel"
750
  msgstr ""
751
 
752
+ #: includes/admin/sidebar.php:28 includes/admin/sidebar.php:68
753
+ msgid "More plugins by Janis Elsts"
754
+ msgstr ""
755
+
756
+ #: includes/admin/sidebar.php:85
757
  msgid "Donate $10, $20 or $50!"
758
  msgstr ""
759
 
760
+ #: includes/admin/sidebar.php:88
761
  msgid ""
762
  "If you like this plugin, please donate to support development and "
763
  "maintenance!"
764
  msgstr ""
765
 
766
+ #: includes/admin/sidebar.php:106
767
  msgid "Return to WordPress Dashboard"
768
  msgstr ""
769
 
770
+ #: includes/admin/table-printer.php:179
771
  msgid "Compact View"
772
  msgstr ""
773
 
774
+ #: includes/admin/table-printer.php:180
775
  msgid "Detailed View"
776
  msgstr ""
777
 
778
+ #: includes/admin/table-printer.php:209
779
  msgid "Source"
780
  msgstr ""
781
 
782
+ #: includes/admin/table-printer.php:215
783
  msgid "Link Text"
784
  msgstr ""
785
 
786
+ #: includes/admin/table-printer.php:220
787
+ msgid "Redirect URL"
788
+ msgstr ""
789
+
790
+ #: includes/admin/table-printer.php:268
791
  msgid "Bulk Actions"
792
  msgstr ""
793
 
794
+ #: includes/admin/table-printer.php:269 includes/admin/table-printer.php:621
795
  msgid "Edit URL"
796
  msgstr ""
797
 
798
+ #: includes/admin/table-printer.php:270
799
  msgid "Recheck"
800
  msgstr ""
801
 
802
+ #: includes/admin/table-printer.php:271
803
  msgid "Fix redirects"
804
  msgstr ""
805
 
806
+ #: includes/admin/table-printer.php:272
807
  msgid "Mark as not broken"
808
  msgstr ""
809
 
810
+ #: includes/admin/table-printer.php:276
811
  msgid "Move sources to Trash"
812
  msgstr ""
813
 
814
+ #: includes/admin/table-printer.php:278
815
  msgid "Delete sources"
816
  msgstr ""
817
 
818
+ #: includes/admin/table-printer.php:293
819
  msgid "&laquo;"
820
  msgstr ""
821
 
822
+ #: includes/admin/table-printer.php:294
823
  msgid "&raquo;"
824
  msgstr ""
825
 
826
+ #: includes/admin/table-printer.php:302
827
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
828
  msgstr ""
829
 
830
+ #: includes/admin/table-printer.php:325
831
  msgid "Bulk Edit URLs"
832
  msgstr ""
833
 
834
+ #: includes/admin/table-printer.php:327
835
  msgid "Find"
836
  msgstr ""
837
 
838
+ #: includes/admin/table-printer.php:331
839
  msgid "Replace with"
840
  msgstr ""
841
 
842
+ #: includes/admin/table-printer.php:339
843
  msgid "Case sensitive"
844
  msgstr ""
845
 
846
+ #: includes/admin/table-printer.php:343
847
  msgid "Regular expression"
848
  msgstr ""
849
 
850
+ #: includes/admin/table-printer.php:351
851
  msgid "Update"
852
  msgstr ""
853
 
854
+ #: includes/admin/table-printer.php:476
855
  msgid "Post published on"
856
  msgstr ""
857
 
858
+ #: includes/admin/table-printer.php:481
859
  msgid "Link last checked"
860
  msgstr ""
861
 
862
+ #: includes/admin/table-printer.php:485
863
  msgid "Never"
864
  msgstr ""
865
 
866
+ #: includes/admin/table-printer.php:496
867
  msgid "Response time"
868
  msgstr ""
869
 
870
+ #: includes/admin/table-printer.php:498
871
  msgid "%2.3f seconds"
872
  msgstr ""
873
 
874
+ #: includes/admin/table-printer.php:501
875
  msgid "Final URL"
876
  msgstr ""
877
 
878
+ #: includes/admin/table-printer.php:506
879
  msgid "Redirect count"
880
  msgstr ""
881
 
882
+ #: includes/admin/table-printer.php:511
883
  msgid "Instance count"
884
  msgstr ""
885
 
886
+ #: includes/admin/table-printer.php:520
887
  msgid "This link has failed %d time."
888
  msgid_plural "This link has failed %d times."
889
  msgstr[0] ""
890
  msgstr[1] ""
891
 
892
+ #: includes/admin/table-printer.php:528
893
  msgid "This link has been broken for %s."
894
  msgstr ""
895
 
896
+ #: includes/admin/table-printer.php:539
897
  msgid "Log"
898
  msgstr ""
899
 
900
+ #: includes/admin/table-printer.php:564
901
  msgid "Show more info about this link"
902
  msgstr ""
903
 
904
+ #: includes/admin/table-printer.php:582
905
  msgctxt "checked how long ago"
906
  msgid "Checked"
907
  msgstr ""
908
 
909
+ #: includes/admin/table-printer.php:598
910
  msgid "Broken for"
911
  msgstr ""
912
 
913
+ #: includes/admin/table-printer.php:621
914
  msgid "Edit link URL"
915
  msgstr ""
916
 
917
+ #: includes/admin/table-printer.php:623
918
  msgid "Remove this link from all posts"
919
  msgstr ""
920
 
921
+ #: includes/admin/table-printer.php:629
922
  msgid "Remove this link from the list of broken links and mark it as valid"
923
  msgstr ""
924
 
925
+ #: includes/admin/table-printer.php:637
926
+ msgid "Hide this link and do not report it again unless its status changes"
927
+ msgstr ""
928
+
929
+ #: includes/admin/table-printer.php:638
930
+ msgid "Dismiss"
931
+ msgstr ""
932
+
933
+ #: includes/admin/table-printer.php:643
934
+ msgid "Undismiss this link"
935
+ msgstr ""
936
+
937
+ #: includes/admin/table-printer.php:644
938
+ msgid "Undismiss"
939
+ msgstr ""
940
+
941
+ #: includes/admin/table-printer.php:652
942
  msgid "Cancel URL editing"
943
  msgstr ""
944
 
945
+ #: includes/admin/table-printer.php:659
946
  msgid "Update URL"
947
  msgstr ""
948
 
949
+ #: includes/admin/table-printer.php:686
950
  msgid "[An orphaned link! This is a bug.]"
951
  msgstr ""
952
 
1170
  msgid "Parser '%s' not found."
1171
  msgstr ""
1172
 
1173
+ #: includes/link-query.php:26
1174
  msgid "Broken"
1175
  msgstr ""
1176
 
1177
+ #: includes/link-query.php:28
1178
  msgid "No broken links found"
1179
  msgstr ""
1180
 
1181
+ #: includes/link-query.php:36
1182
  msgid "Redirects"
1183
  msgstr ""
1184
 
1185
+ #: includes/link-query.php:37
1186
  msgid "Redirected Links"
1187
  msgstr ""
1188
 
1189
+ #: includes/link-query.php:38
1190
  msgid "No redirects found"
1191
  msgstr ""
1192
 
1193
+ #: includes/link-query.php:46
1194
+ msgid "Dismissed"
1195
+ msgstr ""
1196
+
1197
+ #: includes/link-query.php:47
1198
+ msgid "Dismissed Links"
1199
+ msgstr ""
1200
+
1201
+ #: includes/link-query.php:48
1202
+ msgid "No dismissed links found"
1203
+ msgstr ""
1204
+
1205
+ #: includes/link-query.php:56
1206
  msgid "All"
1207
  msgstr ""
1208
 
1209
+ #: includes/link-query.php:57
1210
  msgid "Detected Links"
1211
  msgstr ""
1212
 
1213
+ #: includes/link-query.php:58
1214
  msgid "No links found (yet)"
1215
  msgstr ""
1216
 
1217
+ #: includes/link-query.php:66
1218
  msgid "Search Results"
1219
  msgstr ""
1220
 
1221
+ #: includes/link-query.php:67 includes/link-query.php:114
1222
  msgid "No links found for your query"
1223
  msgstr ""
1224
 
1225
+ #: includes/links.php:218
1226
  msgid "The plugin script was terminated while trying to check the link."
1227
  msgstr ""
1228
 
1229
+ #: includes/links.php:264
1230
  msgid "The plugin doesn't know how to check this type of link."
1231
  msgstr ""
1232
 
1233
+ #: includes/links.php:357
1234
  msgid "Link is valid."
1235
  msgstr ""
1236
 
1237
+ #: includes/links.php:359
1238
  msgid "Link is broken."
1239
  msgstr ""
1240
 
1241
+ #: includes/links.php:571 includes/links.php:673 includes/links.php:700
1242
  msgid "Link is not valid"
1243
  msgstr ""
1244
 
1245
+ #: includes/links.php:588
1246
  msgid ""
1247
  "This link can not be edited because it is not used anywhere on this site."
1248
  msgstr ""
1249
 
1250
+ #: includes/links.php:614
1251
  msgid "Failed to create a DB entry for the new URL."
1252
  msgstr ""
1253
 
1254
+ #: includes/links.php:680
1255
  msgid "This link is not a redirect"
1256
  msgstr ""
1257
 
1258
+ #: includes/links.php:727 includes/links.php:764
1259
  msgid "Couldn't delete the link's database record"
1260
  msgstr ""
1261
 
1262
+ #: includes/links.php:838
1263
  msgctxt "link status"
1264
  msgid "Unknown"
1265
  msgstr ""
1266
 
1267
+ #: includes/links.php:852 modules/checkers/http.php:264
1268
  #: modules/extras/mediafire.php:101
1269
  msgid "Unknown Error"
1270
  msgstr ""
1271
 
1272
+ #: includes/links.php:876
1273
  msgid "Not checked"
1274
  msgstr ""
1275
 
1276
+ #: includes/links.php:879
1277
  msgid "False positive"
1278
  msgstr ""
1279
 
1280
+ #: includes/links.php:882 modules/extras/fileserve.php:121
1281
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1282
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1283
  msgctxt "link status"
1292
  msgid "Unlinking is not implemented in the '%s' parser"
1293
  msgstr ""
1294
 
1295
+ #: includes/utility-class.php:245
1296
  msgid "%d second"
1297
  msgid_plural "%d seconds"
1298
  msgstr[0] ""
1299
  msgstr[1] ""
1300
 
1301
+ #: includes/utility-class.php:246
1302
  msgid "%d second ago"
1303
  msgid_plural "%d seconds ago"
1304
  msgstr[0] ""
1305
  msgstr[1] ""
1306
 
1307
+ #: includes/utility-class.php:249
1308
  msgid "%d minute"
1309
  msgid_plural "%d minutes"
1310
  msgstr[0] ""
1311
  msgstr[1] ""
1312
 
1313
+ #: includes/utility-class.php:250
1314
  msgid "%d minute ago"
1315
  msgid_plural "%d minutes ago"
1316
  msgstr[0] ""
1317
  msgstr[1] ""
1318
 
1319
+ #: includes/utility-class.php:253
1320
  msgid "%d hour"
1321
  msgid_plural "%d hours"
1322
  msgstr[0] ""
1323
  msgstr[1] ""
1324
 
1325
+ #: includes/utility-class.php:254
1326
  msgid "%d hour ago"
1327
  msgid_plural "%d hours ago"
1328
  msgstr[0] ""
1329
  msgstr[1] ""
1330
 
1331
+ #: includes/utility-class.php:257
1332
  msgid "%d day"
1333
  msgid_plural "%d days"
1334
  msgstr[0] ""
1335
  msgstr[1] ""
1336
 
1337
+ #: includes/utility-class.php:258
1338
  msgid "%d day ago"
1339
  msgid_plural "%d days ago"
1340
  msgstr[0] ""
1341
  msgstr[1] ""
1342
 
1343
+ #: includes/utility-class.php:261
1344
  msgid "%d month"
1345
  msgid_plural "%d months"
1346
  msgstr[0] ""
1347
  msgstr[1] ""
1348
 
1349
+ #: includes/utility-class.php:262
1350
  msgid "%d month ago"
1351
  msgid_plural "%d months ago"
1352
  msgstr[0] ""
modules/checkers/http.php CHANGED
@@ -403,5 +403,3 @@ class blcSnoopyHttp extends blcHttpCheckerBase {
403
  }
404
 
405
  }
406
-
407
- ?>
403
  }
404
 
405
  }
 
 
modules/containers/blogroll.php CHANGED
@@ -16,8 +16,8 @@ class blcBookmark extends blcContainer{
16
  $bookmark = $this->get_wrapped_object();
17
 
18
  $image = sprintf(
19
- '<img src="%s/broken-link-checker/images/link.png" class="blc-small-image" title="%2$s" alt="%2$s">',
20
- WP_PLUGIN_URL,
21
  __('Bookmark', 'broken-link-checker')
22
  );
23
 
@@ -64,7 +64,7 @@ class blcBookmark extends blcContainer{
64
  */
65
  function get_wrapped_object($ensure_consistency = false){
66
  if( $ensure_consistency || is_null($this->wrapped_object) ){
67
- $this->wrapped_object = &get_bookmark($this->container_id);
68
  }
69
  return $this->wrapped_object;
70
  }
@@ -131,7 +131,7 @@ class blcBookmark extends blcContainer{
131
  );
132
 
133
  return new WP_Error( 'delete_failed', $msg );
134
- };
135
  }
136
 
137
  function current_user_can_delete(){
@@ -176,9 +176,9 @@ class blcBookmarkManager extends blcContainerManager{
176
  function init(){
177
  parent::init();
178
 
179
- add_action('add_link', array(&$this,'hook_add_link'));
180
- add_action('edit_link', array(&$this,'hook_edit_link'));
181
- add_action('delete_link', array(&$this,'hook_delete_link'));
182
  }
183
 
184
  /**
@@ -222,7 +222,7 @@ class blcBookmarkManager extends blcContainerManager{
222
  * @return void
223
  */
224
  function resynch($forced = false){
225
- global $wpdb;
226
 
227
  if ( !$forced ){
228
  //Usually the number of bookmarks is rather small, so it's cheap enough to always
@@ -305,5 +305,3 @@ class blcBookmarkManager extends blcContainerManager{
305
  );
306
  }
307
  }
308
-
309
- ?>
16
  $bookmark = $this->get_wrapped_object();
17
 
18
  $image = sprintf(
19
+ '<img src="%1$s" class="blc-small-image" title="%2$s" alt="%2$s">',
20
+ esc_attr( plugins_url('/images/link.png', BLC_PLUGIN_FILE) ),
21
  __('Bookmark', 'broken-link-checker')
22
  );
23
 
64
  */
65
  function get_wrapped_object($ensure_consistency = false){
66
  if( $ensure_consistency || is_null($this->wrapped_object) ){
67
+ $this->wrapped_object = get_bookmark($this->container_id);
68
  }
69
  return $this->wrapped_object;
70
  }
131
  );
132
 
133
  return new WP_Error( 'delete_failed', $msg );
134
+ }
135
  }
136
 
137
  function current_user_can_delete(){
176
  function init(){
177
  parent::init();
178
 
179
+ add_action('add_link', array($this,'hook_add_link'));
180
+ add_action('edit_link', array($this,'hook_edit_link'));
181
+ add_action('delete_link', array($this,'hook_delete_link'));
182
  }
183
 
184
  /**
222
  * @return void
223
  */
224
  function resynch($forced = false){
225
+ global $wpdb; /** @var wpdb $wpdb */
226
 
227
  if ( !$forced ){
228
  //Usually the number of bookmarks is rather small, so it's cheap enough to always
305
  );
306
  }
307
  }
 
 
modules/containers/comment.php CHANGED
@@ -423,5 +423,3 @@ class blcCommentManager extends blcContainerManager {
423
  return $containers;
424
  }
425
  }
426
-
427
- ?>
423
  return $containers;
424
  }
425
  }
 
 
modules/containers/custom_field.php CHANGED
@@ -89,16 +89,16 @@ class blcPostMeta extends blcContainer {
89
  );
90
  }
91
  }
92
-
93
- /**
94
- * "Unlink"-ing a custom fields removes all metadata fields that contain the specified URL.
95
- *
96
- * @param string $field_name
97
- * @param blcParser $parser_type
98
- * @param string $url
99
- * @param string $raw_url
100
- * @return bool|WP_Error True on success, or an error object if something went wrong.
101
- */
102
  function unlink($field_name, $parser, $url, $raw_url =''){
103
  $rez = delete_metadata($this->meta_type, $this->container_id, $field_name, $raw_url);
104
  if ( $rez ){
@@ -310,7 +310,7 @@ class blcPostMeta extends blcContainer {
310
  $post = &get_post($this->container_id);
311
  if ( $post->post_status == 'trash' ){
312
  //Prevent conflicts between post and custom field containers trying to trash the same post.
313
- return true;
314
  }
315
 
316
  if ( wp_trash_post($this->container_id) ){
@@ -346,21 +346,16 @@ class blcPostMetaManager extends blcContainerManager {
346
  parent::init();
347
 
348
  //Intercept 2.9+ style metadata modification actions
349
- add_action( "added_{$this->meta_type}_meta", array(&$this, 'meta_modified'), 10, 4 );
350
- add_action( "updated_{$this->meta_type}_meta", array(&$this, 'meta_modified'), 10, 4 );
351
- add_action( "deleted_{$this->meta_type}_meta", array(&$this, 'meta_modified'), 10, 4 );
352
- //Also intercept the equivalent actions used in /wp-admin/includes/post.php.
353
- //(WP is bloody inconsistent. The action names differ by a single character
354
- //but have different argument counts)
355
- add_action( "added_{$this->meta_type}meta", array(&$this, 'meta_modified'), 10, 4 );
356
- add_action( "deleted_{$this->meta_type}meta", array(&$this, 'meta_modified'), 10, 1 );//NB : 1 argument!
357
-
358
  //When a post is deleted, also delete the custom field container associated with it.
359
- add_action('delete_post', array(&$this,'post_deleted'));
360
- add_action('trash_post', array(&$this,'post_deleted'));
361
 
362
  //Re-parse custom fields when a post is restored from trash
363
- add_action('untrashed_post', array(&$this,'post_untrashed'));
364
  }
365
 
366
 
@@ -576,5 +571,3 @@ class blcPostMetaManager extends blcContainerManager {
576
  return blcAnyPostContainerManager::ui_bulk_trash_message($n);
577
  }
578
  }
579
-
580
- ?>
89
  );
90
  }
91
  }
92
+
93
+ /**
94
+ * "Unlink"-ing a custom fields removes all metadata fields that contain the specified URL.
95
+ *
96
+ * @param string $field_name
97
+ * @param blcParser $parser
98
+ * @param string $url
99
+ * @param string $raw_url
100
+ * @return bool|WP_Error True on success, or an error object if something went wrong.
101
+ */
102
  function unlink($field_name, $parser, $url, $raw_url =''){
103
  $rez = delete_metadata($this->meta_type, $this->container_id, $field_name, $raw_url);
104
  if ( $rez ){
310
  $post = &get_post($this->container_id);
311
  if ( $post->post_status == 'trash' ){
312
  //Prevent conflicts between post and custom field containers trying to trash the same post.
313
+ return true;
314
  }
315
 
316
  if ( wp_trash_post($this->container_id) ){
346
  parent::init();
347
 
348
  //Intercept 2.9+ style metadata modification actions
349
+ add_action( "added_{$this->meta_type}_meta", array($this, 'meta_modified'), 10, 4 );
350
+ add_action( "updated_{$this->meta_type}_meta", array($this, 'meta_modified'), 10, 4 );
351
+ add_action( "deleted_{$this->meta_type}_meta", array($this, 'meta_modified'), 10, 4 );
352
+
 
 
 
 
 
353
  //When a post is deleted, also delete the custom field container associated with it.
354
+ add_action('delete_post', array($this,'post_deleted'));
355
+ add_action('trash_post', array($this,'post_deleted'));
356
 
357
  //Re-parse custom fields when a post is restored from trash
358
+ add_action('untrashed_post', array($this,'post_untrashed'));
359
  }
360
 
361
 
571
  return blcAnyPostContainerManager::ui_bulk_trash_message($n);
572
  }
573
  }
 
 
modules/containers/dummy.php CHANGED
@@ -73,5 +73,3 @@ class blcDummyManager extends blcContainerManager {
73
  //Do nothing.
74
  }
75
  }
76
-
77
- ?>
73
  //Do nothing.
74
  }
75
  }
 
 
modules/extras/dailymotion-embed.php CHANGED
@@ -34,6 +34,4 @@ class blcDailyMotionEmbed extends blcEmbedParserBase {
34
 
35
  return $url;
36
  }
37
- }
38
-
39
- ?>
34
 
35
  return $url;
36
  }
37
+ }
 
 
modules/extras/embed-parser-base.php CHANGED
@@ -198,6 +198,4 @@ class blcEmbedParserBase extends blcParser {
198
  }
199
  }
200
 
201
- endif;
202
-
203
- ?>
198
  }
199
  }
200
 
201
+ endif;
 
 
modules/extras/mediafire.php CHANGED
@@ -163,5 +163,3 @@ class blcMediaFireChecker extends blcChecker {
163
  }
164
 
165
  }
166
-
167
- ?>
163
  }
164
 
165
  }
 
 
modules/extras/megaupload.php CHANGED
@@ -265,5 +265,3 @@ class blcMegaUploadChecker extends blcChecker {
265
  }
266
 
267
  }
268
-
269
- ?>
265
  }
266
 
267
  }
 
 
modules/extras/plaintext-url.php CHANGED
@@ -150,5 +150,4 @@ class blcPlaintextURL extends blcParser {
150
  return $match[0];
151
  }
152
  }
153
- }
154
- ?>
150
  return $match[0];
151
  }
152
  }
153
+ }
 
modules/extras/rapidshare.php CHANGED
@@ -211,5 +211,3 @@ class blcRapidShareChecker extends blcChecker {
211
  }
212
 
213
  }
214
-
215
- ?>
211
  }
212
 
213
  }
 
 
modules/extras/vimeo-embed.php CHANGED
@@ -45,5 +45,3 @@ class blcVimeoEmbed extends blcEmbedParserBase {
45
  return $url;
46
  }
47
  }
48
-
49
- ?>
45
  return $url;
46
  }
47
  }
 
 
modules/extras/youtube-embed.php CHANGED
@@ -36,5 +36,3 @@ class blcYouTubeEmbed extends blcEmbedParserBase {
36
  return $url;
37
  }
38
  }
39
-
40
- ?>
36
  return $url;
37
  }
38
  }
 
 
modules/extras/youtube-iframe.php CHANGED
@@ -73,5 +73,3 @@ class blcYouTubeIframe extends blcEmbedParserBase {
73
  return $url;
74
  }
75
  }
76
-
77
- ?>
73
  return $url;
74
  }
75
  }
 
 
modules/extras/youtube.php CHANGED
@@ -13,7 +13,7 @@ ModuleLazyInit: true
13
  ModuleClassName: blcYouTubeChecker
14
  ModulePriority: 100
15
 
16
- ModuleCheckerUrlPattern: @^http://([\w\d]+\.)*youtube\.[^/]+/watch\?.*v=[^/#]@i
17
  */
18
 
19
  class blcYouTubeChecker extends blcChecker {
@@ -43,9 +43,13 @@ class blcYouTubeChecker extends blcChecker {
43
 
44
  //Extract the video ID from the URL
45
  $components = @parse_url($url);
46
- parse_str($components['query'], $query);
47
- $video_id = $query['v'];
48
-
 
 
 
 
49
  //Fetch video data from the YouTube API
50
  $api_url = 'http://gdata.youtube.com/feeds/api/videos/' . $video_id . '?key=' . urlencode($this->youtube_developer_key);
51
  $conf = blc_get_configuration();
@@ -155,7 +159,7 @@ class blcYouTubeChecker extends blcChecker {
155
  break;
156
  }
157
  }
158
-
159
  //The hash should contain info about all pieces of data that pertain to determining if the
160
  //link is working.
161
  $result['result_hash'] = implode('|', array(
@@ -171,5 +175,3 @@ class blcYouTubeChecker extends blcChecker {
171
  }
172
 
173
  }
174
-
175
- ?>
13
  ModuleClassName: blcYouTubeChecker
14
  ModulePriority: 100
15
 
16
+ ModuleCheckerUrlPattern: @^http://(?:([\w\d]+\.)*youtube\.[^/]+/watch\?.*v=[^/#]|youtu\.be/[^/#\?]+)@i
17
  */
18
 
19
  class blcYouTubeChecker extends blcChecker {
43
 
44
  //Extract the video ID from the URL
45
  $components = @parse_url($url);
46
+ if ( strtolower($components['host']) === 'youtu.be' ) {
47
+ $video_id = trim($components['path'], '/');
48
+ } else {
49
+ parse_str($components['query'], $query);
50
+ $video_id = $query['v'];
51
+ }
52
+
53
  //Fetch video data from the YouTube API
54
  $api_url = 'http://gdata.youtube.com/feeds/api/videos/' . $video_id . '?key=' . urlencode($this->youtube_developer_key);
55
  $conf = blc_get_configuration();
159
  break;
160
  }
161
  }
162
+
163
  //The hash should contain info about all pieces of data that pertain to determining if the
164
  //link is working.
165
  $result['result_hash'] = implode('|', array(
175
  }
176
 
177
  }
 
 
modules/parsers/html_link.php CHANGED
@@ -37,7 +37,7 @@ class blcHTMLLink extends blcParser {
37
  'base_url' => $base_url,
38
  'default_link_text' => $default_link_text,
39
  );
40
- $instances = $this->map($content, array(&$this, 'parser_callback'), $params);
41
 
42
  //The parser callback returns NULL when it finds an invalid link. Filter out those nulls
43
  //from the list of instances.
@@ -56,7 +56,7 @@ class blcHTMLLink extends blcParser {
56
  * @return blcLinkInstance|null
57
  */
58
  function parser_callback($link, $params){
59
- extract($params);
60
 
61
  $url = $raw_url = $link['href'];
62
  $url = trim($url);
@@ -340,6 +340,4 @@ class blcHTMLLink extends blcParser {
340
 
341
  return $link;
342
  }
343
- }
344
-
345
- ?>
37
  'base_url' => $base_url,
38
  'default_link_text' => $default_link_text,
39
  );
40
+ $instances = $this->map($content, array($this, 'parser_callback'), $params);
41
 
42
  //The parser callback returns NULL when it finds an invalid link. Filter out those nulls
43
  //from the list of instances.
56
  * @return blcLinkInstance|null
57
  */
58
  function parser_callback($link, $params){
59
+ $base_url = $params['base_url'];
60
 
61
  $url = $raw_url = $link['href'];
62
  $url = trim($url);
340
 
341
  return $link;
342
  }
343
+ }
 
 
modules/parsers/image.php CHANGED
@@ -20,6 +20,11 @@ class blcHTMLImage extends blcParser {
20
 
21
  // \1 \2 \3 URL \4
22
  var $img_pattern = '/(<img[\s]+[^>]*src\s*=\s*)([\"\'])([^>]+?)\2([^<>]*>)/i';
 
 
 
 
 
23
 
24
  /**
25
  * Parse a string for HTML images - <img src="URL">
@@ -171,5 +176,3 @@ class blcHTMLImage extends blcParser {
171
  return $text;
172
  }
173
  }
174
-
175
- ?>
20
 
21
  // \1 \2 \3 URL \4
22
  var $img_pattern = '/(<img[\s]+[^>]*src\s*=\s*)([\"\'])([^>]+?)\2([^<>]*>)/i';
23
+
24
+ /** @var string Used in link editing callbacks. */
25
+ private $old_url = '';
26
+ /** @var string */
27
+ private $new_url = '';
28
 
29
  /**
30
  * Parse a string for HTML images - <img src="URL">
176
  return $text;
177
  }
178
  }
 
 
modules/parsers/metadata.php CHANGED
@@ -108,6 +108,7 @@ class blcMetadataParser extends blcParser {
108
  * Get the link text for printing in the "Broken Links" table.
109
  *
110
  * @param blcLinkInstance $instance
 
111
  * @return string HTML
112
  */
113
  function ui_get_link_text($instance, $context = 'display'){
@@ -129,5 +130,3 @@ class blcMetadataParser extends blcParser {
129
  return $field_html;
130
  }
131
  }
132
-
133
- ?>
108
  * Get the link text for printing in the "Broken Links" table.
109
  *
110
  * @param blcLinkInstance $instance
111
+ * @param string $context
112
  * @return string HTML
113
  */
114
  function ui_get_link_text($instance, $context = 'display'){
130
  return $field_html;
131
  }
132
  }
 
 
modules/parsers/url_field.php CHANGED
@@ -94,5 +94,3 @@ class blcUrlField extends blcParser {
94
  return '';
95
  }
96
  }
97
-
98
- ?>
94
  return '';
95
  }
96
  }
 
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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: 3.2
6
- Tested up to: 3.4.1
7
- Stable tag: 1.6.2
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
@@ -45,12 +45,13 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
45
 
46
  * Belorussian - [M. Comfi](http://www.comfi.com/)
47
  * Bulgarian - [Ajoft Technologes](http://www.ajoft.com/)
48
- * Chinese Simplified - [Hank Yang](http://wenzhu.org/)
49
  * Chinese Traditional - [YILIN](http://sh2153.com)
50
  * Czech - [Lelkoun](http://lelkoun.cz/)
51
  * Danish - [Georg S. Adamsen](http://wordpress.blogos.dk/)
52
  * Dutch - [Gideon van Melle](http://www.gvmelle.com/)
53
- * French - [Whiler](http://blogs.wittwer.fr/whiler/), Luc Capronnier
 
54
  * German - [Ivan Graf](http://blog.bildergallery.com/)
55
  * Hindi - [Outshine Solutions](http://outshinesolutions.com/)
56
  * Irish - [Ray Gren](http://letsbefamous.com/)
@@ -91,6 +92,18 @@ To upgrade your installation
91
 
92
  == Changelog ==
93
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  = 1.6.2 =
95
  * Another attempt to fix the "database not up to date" that some users are still experiencing even with 1.6.1.
96
 
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: 3.2
6
+ Tested up to: 3.5
7
+ Stable tag: 1.7
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
45
 
46
  * Belorussian - [M. Comfi](http://www.comfi.com/)
47
  * Bulgarian - [Ajoft Technologes](http://www.ajoft.com/)
48
+ * Chinese Simplified - Kaijia Feng
49
  * Chinese Traditional - [YILIN](http://sh2153.com)
50
  * Czech - [Lelkoun](http://lelkoun.cz/)
51
  * Danish - [Georg S. Adamsen](http://wordpress.blogos.dk/)
52
  * Dutch - [Gideon van Melle](http://www.gvmelle.com/)
53
+ * Finnish - [Jani Alha](http://www.wysiwyg.fi)
54
+ * French - [Whiler](http://blogs.wittwer.fr/whiler/), Luc Capronnier, [Guillaume Boda](http://www.michtoblog.com/)
55
  * German - [Ivan Graf](http://blog.bildergallery.com/)
56
  * Hindi - [Outshine Solutions](http://outshinesolutions.com/)
57
  * Irish - [Ray Gren](http://letsbefamous.com/)
92
 
93
  == Changelog ==
94
 
95
+ = 1.7 =
96
+ * Added support for youtu.be shortlinks.
97
+ * Added a Finnish translation.
98
+ * Fixed a graphical bug where the currently selected settings tab would not be highlighted in WordPress 3.5.
99
+ * Removed the "Blogroll items" module from the list of link containers enabled by default. The WordPress developer team is planning to remove Link Manager from core, and the "Links" menu will be hidden by default in new WP 3.5 installs.
100
+ * Removed the Admin Menu Editor Pro ad from the "Settings -> Link Checker" and the "Tools -> Broken Links" pages.
101
+ * Disabled the news link (if any) for users who have donated.
102
+ * Removed support for pre-WP 2.9 post meta actions.
103
+ * Minor styling changes of screen meta links.
104
+ * Updated Danish, Germa, Italian, French and Simplified Chinese translations.
105
+ * Tested on WordPress 3.5.
106
+
107
  = 1.6.2 =
108
  * Another attempt to fix the "database not up to date" that some users are still experiencing even with 1.6.1.
109
 
uninstall.php CHANGED
@@ -15,10 +15,8 @@ if( defined( 'ABSPATH') && defined('WP_UNINSTALL_PLUGIN') ) {
15
 
16
  //Remove the database tables
17
  $mywpdb = $GLOBALS['wpdb'];
18
- if( isset($mywpdb) ) {
19
  //EXTERMINATE!
20
  $mywpdb->query( "DROP TABLE IF EXISTS {$mywpdb->prefix}blc_linkdata, {$mywpdb->prefix}blc_postdata, {$mywpdb->prefix}blc_instances, {$mywpdb->prefix}blc_links, {$mywpdb->prefix}blc_synch, {$mywpdb->prefix}blc_filters" );
21
  }
22
  }
23
-
24
- ?>
15
 
16
  //Remove the database tables
17
  $mywpdb = $GLOBALS['wpdb'];
18
+ if( isset($mywpdb) ) { /** @var wpdb $mywpdb */
19
  //EXTERMINATE!
20
  $mywpdb->query( "DROP TABLE IF EXISTS {$mywpdb->prefix}blc_linkdata, {$mywpdb->prefix}blc_postdata, {$mywpdb->prefix}blc_instances, {$mywpdb->prefix}blc_links, {$mywpdb->prefix}blc_synch, {$mywpdb->prefix}blc_filters" );
21
  }
22
  }