Broken Link Checker - Version 1.9.4

Version Description

  • Tested on WP 4.0 beta.
  • Added a Serbo-Croatian translation.
  • Added a Slovakian translation.
  • Replaced the old Japanese translation with a new and more up-to-date version from a different translator.
  • Updated Dutch, German, Polish, Hebrew and other translations.
  • Fixed a notice about undefined index "status_text".
  • Fixed a "doing it wrong" warning related to screen options.
  • Fixed spurious false positives on links copied from Word or similar editors.
  • Fixed view switcher appearance in WP 4.0.
  • Replaced the deprecated like_esc() function with $wpdb->esc_like() where available.
  • Fixed plaintext URLs not being detected if they're the very first thing in a post.
  • Fixed a bug that caused quotes and other special characters in the broken link CSS and removed link CSS fields to be auto-escaped with a slash, potentially breaking the CSS.
  • Fixed a bug that caused the "check custom fields" feature work inconsistently or not at all on custom post types.
  • Fixed duplicate custom field links showing up when the user creates a revision with different field values.
  • Fixed a specific type of false positive where some links would get flagged as "Unknown Error" and the log message would be "Empty reply from server".
  • Fixed a bug where only the first enabled post type would be resynchronized during plugin activation.
  • Added more logging.
  • Removed Megavideo and MegaUpload modules. These sites no longer exist.
Download this release

Release Info

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

Code changes from version 1.9.3 to 1.9.4

Files changed (49) hide show
  1. broken-link-checker.php +1 -1
  2. core/core.php +103 -25
  3. core/init.php +1 -1
  4. css/options-page.css +11 -1
  5. images/embedplus_banner.jpg +0 -0
  6. includes/activation.php +23 -2
  7. includes/admin/db-upgrade.php +23 -12
  8. includes/admin/options-page-js.php +5 -0
  9. includes/admin/sidebar.php +15 -0
  10. includes/admin/table-printer.php +12 -4
  11. includes/any-post.php +20 -11
  12. includes/containers.php +5 -3
  13. includes/extra-strings.php +0 -3
  14. includes/instances.php +6 -2
  15. includes/link-query.php +16 -4
  16. includes/links.php +10 -8
  17. includes/logger.php +2 -2
  18. includes/module-base.php +9 -1
  19. includes/module-manager.php +8 -1
  20. includes/modules.php +4 -1
  21. includes/parsers.php +9 -1
  22. includes/screen-options/screen-options.php +40 -24
  23. languages/broken-link-checker-de_DE.mo +0 -0
  24. languages/broken-link-checker-de_DE.po +292 -262
  25. languages/broken-link-checker-fr_FR.mo +0 -0
  26. languages/broken-link-checker-fr_FR.po +303 -273
  27. languages/broken-link-checker-he_IL.mo +0 -0
  28. languages/broken-link-checker-he_IL.po +324 -292
  29. languages/broken-link-checker-ja.mo +0 -0
  30. languages/broken-link-checker-ja.po +917 -535
  31. languages/broken-link-checker-nl_NL.mo +0 -0
  32. languages/broken-link-checker-nl_NL.po +302 -273
  33. languages/broken-link-checker-pt_PT.mo +0 -0
  34. languages/broken-link-checker-pt_PT.po +324 -292
  35. languages/broken-link-checker-sk_SK.mo +0 -0
  36. languages/broken-link-checker-sk_SK.po +892 -0
  37. languages/broken-link-checker-sr_RS.mo +0 -0
  38. languages/broken-link-checker-sr_RS.po +2177 -0
  39. languages/broken-link-checker-zh_CN.mo +0 -0
  40. languages/broken-link-checker-zh_CN.po +318 -292
  41. modules/checkers/http.php +29 -7
  42. modules/containers/comment.php +8 -5
  43. modules/containers/custom_field.php +32 -12
  44. modules/extras/fileserve.php +0 -147
  45. modules/extras/megaupload.php +0 -267
  46. modules/extras/megavideo-embed.php +0 -39
  47. modules/extras/plaintext-url-parser-base.php +1 -1
  48. modules/parsers/html_link.php +8 -7
  49. readme.txt +25 -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.9.3
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/
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.9.4
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/
9
  Text Domain: broken-link-checker
core/core.php CHANGED
@@ -90,9 +90,9 @@ class wsBrokenLinkChecker {
90
  add_screen_options_panel(
91
  'blc-screen-options',
92
  '',
93
- array(&$this, 'screen_options_html'),
94
  'tools_page_view-broken-links',
95
- array(&$this, 'ajax_save_screen_options'),
96
  true
97
  );
98
  }
@@ -398,6 +398,11 @@ class wsBrokenLinkChecker {
398
 
399
  if(isset($_POST['submit'])) {
400
  check_admin_referer('link-checker-options');
 
 
 
 
 
401
 
402
  //Activate/deactivate modules
403
  if ( !empty($_POST['module']) ){
@@ -417,6 +422,7 @@ class wsBrokenLinkChecker {
417
  $enabled_post_statuses = array('publish');
418
  }
419
  $this->conf->options['enabled_post_statuses'] = $enabled_post_statuses;
 
420
 
421
  //The execution time limit must be above zero
422
  $new_execution_time = intval($_POST['max_execution_time']);
@@ -431,11 +437,11 @@ class wsBrokenLinkChecker {
431
  }
432
 
433
  $this->conf->options['mark_broken_links'] = !empty($_POST['mark_broken_links']);
434
- $new_broken_link_css = trim($_POST['broken_link_css']);
435
  $this->conf->options['broken_link_css'] = $new_broken_link_css;
436
 
437
  $this->conf->options['mark_removed_links'] = !empty($_POST['mark_removed_links']);
438
- $new_removed_link_css = trim($_POST['removed_link_css']);
439
  $this->conf->options['removed_link_css'] = $new_removed_link_css;
440
 
441
  $this->conf->options['nofollow_broken_links'] = !empty($_POST['nofollow_broken_links']);
@@ -476,6 +482,13 @@ class wsBrokenLinkChecker {
476
 
477
  $this->conf->options['enable_load_limit'] = $this->conf->options['server_load_limit'] > 0;
478
  }
 
 
 
 
 
 
 
479
 
480
  //When to run the checker
481
  $this->conf->options['run_in_dashboard'] = !empty($_POST['run_in_dashboard']);
@@ -516,7 +529,7 @@ class wsBrokenLinkChecker {
516
 
517
  if ( $this->conf->options['logging_enabled'] ) {
518
  if ( $this->conf->options['custom_log_file_enabled'] ) {
519
- $log_file = strval($_POST['log_file']);
520
  } else {
521
  //Default log file is /wp-content/uploads/broken-link-checker/blc-log.txt
522
  $log_directory = self::get_default_log_directory();
@@ -1054,7 +1067,7 @@ class wsBrokenLinkChecker {
1054
 
1055
  $load = blcUtility::get_server_load();
1056
  $available = !empty($load);
1057
-
1058
  if ( $available ){
1059
  $value = !empty($this->conf->options['server_load_limit'])?sprintf('%.2f', $this->conf->options['server_load_limit']):'';
1060
  printf(
@@ -1086,6 +1099,24 @@ class wsBrokenLinkChecker {
1086
  </td>
1087
  </tr>
1088
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1089
  <tr valign="top">
1090
  <th scope="row"><?php _e('Logging', 'broken-link-checker'); ?></th>
1091
  <td>
@@ -1305,7 +1336,7 @@ class wsBrokenLinkChecker {
1305
  * @return void
1306
  */
1307
  function options_page_css(){
1308
- wp_enqueue_style('blc-options-page', plugins_url('css/options-page.css', BLC_PLUGIN_FILE), array(), '20131216');
1309
  wp_enqueue_style('dashboard');
1310
  }
1311
 
@@ -2192,8 +2223,7 @@ class wsBrokenLinkChecker {
2192
  ignore_user_abort( true );
2193
 
2194
  //Close the connection as per http://www.php.net/manual/en/features.connection-handling.php#71172
2195
- //This reduces resource usage and may solve the mysterious slowdowns certain users have
2196
- //encountered when activating the plugin.
2197
  //(Disable when debugging or you won't get the FirePHP output)
2198
  if ( !headers_sent() && (!defined('BLC_DEBUG') || !constant('BLC_DEBUG')) ){
2199
  @ob_end_clean(); //Discard the existing buffer, if any
@@ -2209,6 +2239,10 @@ class wsBrokenLinkChecker {
2209
  //Load modules for this context
2210
  $moduleManager = blcModuleManager::getInstance();
2211
  $moduleManager->load_modules('work');
 
 
 
 
2212
 
2213
 
2214
  /*****************************************
@@ -2220,14 +2254,16 @@ class wsBrokenLinkChecker {
2220
 
2221
  if ( $still_need_resynch ) {
2222
 
2223
- $target_usage_fraction = $this->conf->get('synch_target_resource_usage', 0.60);
2224
- //Target usage must be between 1% and 100%.
2225
- $target_usage_fraction = max(min($target_usage_fraction, 1), 0.01);
2226
-
2227
  //FB::log("Looking for containers that need parsing...");
2228
-
2229
- while( $containers = blcContainerHelper::get_unsynched_containers(50) ){
 
 
 
 
 
2230
  //FB::log($containers, 'Found containers');
 
2231
 
2232
  foreach($containers as $container){
2233
  $synch_start_time = microtime(true);
@@ -2236,7 +2272,7 @@ class wsBrokenLinkChecker {
2236
  $container->synch();
2237
 
2238
  $synch_elapsed_time = microtime(true) - $synch_start_time;
2239
- $blclog->debug(sprintf(
2240
  'Parsed container %s[%s] in %.2f ms',
2241
  $container->container_type,
2242
  $container->container_id,
@@ -2261,12 +2297,13 @@ class wsBrokenLinkChecker {
2261
 
2262
  //Intentionally slow down parsing to reduce the load on the server. Basically,
2263
  //we work $target_usage_fraction of the time and sleep the rest of the time.
2264
- $sleep_time = $synch_elapsed_time * (1 / $target_usage_fraction - 1);
2265
- if ($sleep_time > 0.0001) {
2266
- usleep($sleep_time * 1000000);
2267
- }
2268
  }
2269
  $orphans_possible = true;
 
 
 
 
2270
  }
2271
 
2272
  //FB::log('No unparsed items found.');
@@ -2289,8 +2326,13 @@ class wsBrokenLinkChecker {
2289
  *******************************************/
2290
 
2291
  if ( $orphans_possible ) {
2292
- //FB::log('Cleaning up the link table.');
 
 
2293
  blc_cleanup_links();
 
 
 
2294
  }
2295
 
2296
  //Check if we still have some execution time left
@@ -2311,7 +2353,14 @@ class wsBrokenLinkChecker {
2311
  /*****************************************
2312
  Check links
2313
  ******************************************/
2314
- while ( $links = $this->get_links_to_check(30) ){
 
 
 
 
 
 
 
2315
 
2316
  //Some unchecked links found
2317
  //FB::log("Checking ".count($links)." link(s)");
@@ -2349,7 +2398,10 @@ class wsBrokenLinkChecker {
2349
  return;
2350
  }
2351
  }
2352
-
 
 
 
2353
  }
2354
  //FB::log('No links need to be checked right now.');
2355
 
@@ -2357,6 +2409,31 @@ class wsBrokenLinkChecker {
2357
  $blclog->info('work(): All done.');
2358
  //FB::log('All done.');
2359
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2360
 
2361
  /**
2362
  * This function is called when the plugin's cron hook executes.
@@ -2378,7 +2455,7 @@ class wsBrokenLinkChecker {
2378
  * @return int|blcLink[]
2379
  */
2380
  function get_links_to_check($max_results = 0, $count_only = false){
2381
- global $wpdb; /* @var wpdb $wpdb */
2382
 
2383
  $check_threshold = date('Y-m-d H:i:s', strtotime('-'.$this->conf->options['check_threshold'].' hours'));
2384
  $recheck_threshold = date('Y-m-d H:i:s', time() - $this->conf->options['recheck_threshold']);
@@ -2439,6 +2516,7 @@ class wsBrokenLinkChecker {
2439
  $recheck_threshold
2440
  );
2441
  //FB::log($link_q, "Find links to check");
 
2442
 
2443
  //If we just need the number of links, retrieve it and return
2444
  if ( $count_only ){
@@ -2882,7 +2960,7 @@ class wsBrokenLinkChecker {
2882
  * @return bool
2883
  */
2884
  function server_too_busy(){
2885
- if ( !$this->conf->options['enable_load_limit'] ){
2886
  return false;
2887
  }
2888
 
90
  add_screen_options_panel(
91
  'blc-screen-options',
92
  '',
93
+ array($this, 'screen_options_html'),
94
  'tools_page_view-broken-links',
95
+ array($this, 'ajax_save_screen_options'),
96
  true
97
  );
98
  }
398
 
399
  if(isset($_POST['submit'])) {
400
  check_admin_referer('link-checker-options');
401
+
402
+ $cleanPost = $_POST;
403
+ if ( function_exists('wp_magic_quotes') ){
404
+ $cleanPost = stripslashes_deep($cleanPost); //Ceterum censeo, WP shouldn't mangle superglobals.
405
+ }
406
 
407
  //Activate/deactivate modules
408
  if ( !empty($_POST['module']) ){
422
  $enabled_post_statuses = array('publish');
423
  }
424
  $this->conf->options['enabled_post_statuses'] = $enabled_post_statuses;
425
+ //TODO: Resynch enabled post types when enabled statuses change.
426
 
427
  //The execution time limit must be above zero
428
  $new_execution_time = intval($_POST['max_execution_time']);
437
  }
438
 
439
  $this->conf->options['mark_broken_links'] = !empty($_POST['mark_broken_links']);
440
+ $new_broken_link_css = trim($cleanPost['broken_link_css']);
441
  $this->conf->options['broken_link_css'] = $new_broken_link_css;
442
 
443
  $this->conf->options['mark_removed_links'] = !empty($_POST['mark_removed_links']);
444
+ $new_removed_link_css = trim($cleanPost['removed_link_css']);
445
  $this->conf->options['removed_link_css'] = $new_removed_link_css;
446
 
447
  $this->conf->options['nofollow_broken_links'] = !empty($_POST['nofollow_broken_links']);
482
 
483
  $this->conf->options['enable_load_limit'] = $this->conf->options['server_load_limit'] > 0;
484
  }
485
+
486
+ //Target resource usage (1% to 100%)
487
+ if ( isset($_POST['target_resource_usage']) ) {
488
+ $usage = floatval($_POST['target_resource_usage']);
489
+ $usage = max(min($usage / 100, 1), 0.01);
490
+ $this->conf->options['target_resource_usage'] = $usage;
491
+ }
492
 
493
  //When to run the checker
494
  $this->conf->options['run_in_dashboard'] = !empty($_POST['run_in_dashboard']);
529
 
530
  if ( $this->conf->options['logging_enabled'] ) {
531
  if ( $this->conf->options['custom_log_file_enabled'] ) {
532
+ $log_file = strval($cleanPost['log_file']);
533
  } else {
534
  //Default log file is /wp-content/uploads/broken-link-checker/blc-log.txt
535
  $log_directory = self::get_default_log_directory();
1067
 
1068
  $load = blcUtility::get_server_load();
1069
  $available = !empty($load);
1070
+
1071
  if ( $available ){
1072
  $value = !empty($this->conf->options['server_load_limit'])?sprintf('%.2f', $this->conf->options['server_load_limit']):'';
1073
  printf(
1099
  </td>
1100
  </tr>
1101
 
1102
+ <tr valign="top">
1103
+ <th scope="row"><?php _e('Target resource usage', 'broken-link-checker'); ?></th>
1104
+ <td>
1105
+ <?php
1106
+ $target_resource_usage = $this->conf->get('target_resource_usage', 0.25);
1107
+ printf(
1108
+ '<input name="target_resource_usage" value="%d"
1109
+ type="range" min="1" max="100" id="target_resource_usage">',
1110
+ $target_resource_usage * 100
1111
+ );
1112
+ ?>
1113
+
1114
+ <span id="target_resource_usage_percent"><?php
1115
+ echo sprintf('%.0f%%', $target_resource_usage * 100);
1116
+ ?></span>
1117
+ </td>
1118
+ </tr>
1119
+
1120
  <tr valign="top">
1121
  <th scope="row"><?php _e('Logging', 'broken-link-checker'); ?></th>
1122
  <td>
1336
  * @return void
1337
  */
1338
  function options_page_css(){
1339
+ wp_enqueue_style('blc-options-page', plugins_url('css/options-page.css', BLC_PLUGIN_FILE), array(), '20140818');
1340
  wp_enqueue_style('dashboard');
1341
  }
1342
 
2223
  ignore_user_abort( true );
2224
 
2225
  //Close the connection as per http://www.php.net/manual/en/features.connection-handling.php#71172
2226
+ //This reduces resource usage.
 
2227
  //(Disable when debugging or you won't get the FirePHP output)
2228
  if ( !headers_sent() && (!defined('BLC_DEBUG') || !constant('BLC_DEBUG')) ){
2229
  @ob_end_clean(); //Discard the existing buffer, if any
2239
  //Load modules for this context
2240
  $moduleManager = blcModuleManager::getInstance();
2241
  $moduleManager->load_modules('work');
2242
+
2243
+ $target_usage_fraction = $this->conf->get('target_resource_usage', 0.25);
2244
+ //Target usage must be between 1% and 100%.
2245
+ $target_usage_fraction = max(min($target_usage_fraction, 1), 0.01);
2246
 
2247
 
2248
  /*****************************************
2254
 
2255
  if ( $still_need_resynch ) {
2256
 
 
 
 
 
2257
  //FB::log("Looking for containers that need parsing...");
2258
+ $max_containers_per_query = 50;
2259
+
2260
+ $start = microtime(true);
2261
+ $containers = blcContainerHelper::get_unsynched_containers($max_containers_per_query);
2262
+ $get_containers_time = microtime(true) - $start;
2263
+
2264
+ while( !empty($containers) ){
2265
  //FB::log($containers, 'Found containers');
2266
+ $this->sleep_to_maintain_ratio($get_containers_time, $target_usage_fraction);
2267
 
2268
  foreach($containers as $container){
2269
  $synch_start_time = microtime(true);
2272
  $container->synch();
2273
 
2274
  $synch_elapsed_time = microtime(true) - $synch_start_time;
2275
+ $blclog->info(sprintf(
2276
  'Parsed container %s[%s] in %.2f ms',
2277
  $container->container_type,
2278
  $container->container_id,
2297
 
2298
  //Intentionally slow down parsing to reduce the load on the server. Basically,
2299
  //we work $target_usage_fraction of the time and sleep the rest of the time.
2300
+ $this->sleep_to_maintain_ratio($synch_elapsed_time, $target_usage_fraction);
 
 
 
2301
  }
2302
  $orphans_possible = true;
2303
+
2304
+ $start = microtime(true);
2305
+ $containers = blcContainerHelper::get_unsynched_containers($max_containers_per_query);
2306
+ $get_containers_time = microtime(true) - $start;
2307
  }
2308
 
2309
  //FB::log('No unparsed items found.');
2326
  *******************************************/
2327
 
2328
  if ( $orphans_possible ) {
2329
+ $start = microtime(true);
2330
+
2331
+ $blclog->info('Removing orphaned links.');
2332
  blc_cleanup_links();
2333
+
2334
+ $get_links_time = microtime(true) - $start;
2335
+ $this->sleep_to_maintain_ratio($get_links_time, $target_usage_fraction);
2336
  }
2337
 
2338
  //Check if we still have some execution time left
2353
  /*****************************************
2354
  Check links
2355
  ******************************************/
2356
+ $max_links_per_query = 30;
2357
+
2358
+ $start = microtime(true);
2359
+ $links = $this->get_links_to_check($max_links_per_query);
2360
+ $get_links_time = microtime(true) - $start;
2361
+
2362
+ while ( $links ){
2363
+ $this->sleep_to_maintain_ratio($get_links_time, $target_usage_fraction);
2364
 
2365
  //Some unchecked links found
2366
  //FB::log("Checking ".count($links)." link(s)");
2398
  return;
2399
  }
2400
  }
2401
+
2402
+ $start = microtime(true);
2403
+ $links = $this->get_links_to_check($max_links_per_query);
2404
+ $get_links_time = microtime(true) - $start;
2405
  }
2406
  //FB::log('No links need to be checked right now.');
2407
 
2409
  $blclog->info('work(): All done.');
2410
  //FB::log('All done.');
2411
  }
2412
+
2413
+ /**
2414
+ * Sleep long enough to maintain the required $ratio between $elapsed_time and total runtime.
2415
+ *
2416
+ * For example, if $ratio is 0.25 and $elapsed_time is 1 second, this method will sleep for 3 seconds.
2417
+ * Total runtime = 1 + 3 = 4, ratio = 1 / 4 = 0.25.
2418
+ *
2419
+ * @param float $elapsed_time
2420
+ * @param float $ratio
2421
+ */
2422
+ private function sleep_to_maintain_ratio($elapsed_time, $ratio) {
2423
+ if ( ($ratio <= 0) || ($ratio > 1) ) {
2424
+ return;
2425
+ }
2426
+ $sleep_time = $elapsed_time * ((1 / $ratio) - 1);
2427
+ if ($sleep_time > 0.0001) {
2428
+ /*global $blclog;
2429
+ $blclog->debug(sprintf(
2430
+ 'Task took %.2f ms, sleeping for %.2f ms',
2431
+ $elapsed_time * 1000,
2432
+ $sleep_time * 1000
2433
+ ));*/
2434
+ usleep($sleep_time * 1000000);
2435
+ }
2436
+ }
2437
 
2438
  /**
2439
  * This function is called when the plugin's cron hook executes.
2455
  * @return int|blcLink[]
2456
  */
2457
  function get_links_to_check($max_results = 0, $count_only = false){
2458
+ global $wpdb, $blclog; /* @var wpdb $wpdb */
2459
 
2460
  $check_threshold = date('Y-m-d H:i:s', strtotime('-'.$this->conf->options['check_threshold'].' hours'));
2461
  $recheck_threshold = date('Y-m-d H:i:s', time() - $this->conf->options['recheck_threshold']);
2516
  $recheck_threshold
2517
  );
2518
  //FB::log($link_q, "Find links to check");
2519
+ //$blclog->debug("Find links to check: \n" . $link_q);
2520
 
2521
  //If we just need the number of links, retrieve it and return
2522
  if ( $count_only ){
2960
  * @return bool
2961
  */
2962
  function server_too_busy(){
2963
+ if ( !$this->conf->options['enable_load_limit'] || !isset($this->conf->options['server_load_limit']) ){
2964
  return false;
2965
  }
2966
 
core/init.php CHANGED
@@ -87,7 +87,7 @@ $blc_config_manager = new blcConfigurationManager(
87
 
88
  'suggestions_enabled' => true, //Whether to suggest alternative URLs for broken links.
89
 
90
- 'server_load_limit' => 4, //Stop parsing stuff & checking links if the 1-minute load average
91
  //goes over this value. Only works on Linux servers. 0 = no limit.
92
  'enable_load_limit' => true, //Enable/disable load monitoring.
93
 
87
 
88
  'suggestions_enabled' => true, //Whether to suggest alternative URLs for broken links.
89
 
90
+ 'server_load_limit' => null, //Stop parsing stuff & checking links if the 1-minute load average
91
  //goes over this value. Only works on Linux servers. 0 = no limit.
92
  'enable_load_limit' => true, //Enable/disable load monitoring.
93
 
css/options-page.css CHANGED
@@ -43,13 +43,23 @@ Sidebar
43
  }
44
 
45
  #themefuse-ad .inside,
46
- #managewp-ad .inside
 
47
  {
48
  padding: 2px 0 0 0;
49
  margin: 0;
50
  text-align: center;
51
  }
52
 
 
 
 
 
 
 
 
 
 
53
 
54
 
55
  #link_checker_options .form-table th {
43
  }
44
 
45
  #themefuse-ad .inside,
46
+ #managewp-ad .inside,
47
+ #embedplus-ad .inside
48
  {
49
  padding: 2px 0 0 0;
50
  margin: 0;
51
  text-align: center;
52
  }
53
 
54
+ #embedplus-ad .inside {
55
+ padding-top: 0;
56
+ }
57
+
58
+ #embedplus-ad {
59
+ border-style: none;
60
+ background-color: transparent;
61
+ box-shadow: none;
62
+ }
63
 
64
 
65
  #link_checker_options .form-table th {
images/embedplus_banner.jpg ADDED
Binary file
includes/activation.php CHANGED
@@ -14,6 +14,7 @@ register_shutdown_function(array(&$blclog, 'save')); //Make sure the log is save
14
 
15
  $blclog->clear();
16
  $blclog->info( sprintf('Plugin activated at %s.', date_i18n('Y-m-d H:i:s')) );
 
17
 
18
  //Reset the "installation_complete" flag
19
  $blc_config_manager->options['installation_complete'] = false;
@@ -48,29 +49,48 @@ if ( empty($blc_config_manager->options['custom_fields']) ){
48
 
49
  //Prepare the database.
50
  $blclog->info('Upgrading the database...');
 
51
  require_once BLC_DIRECTORY . '/includes/admin/db-upgrade.php';
52
  blcDatabaseUpgrader::upgrade_database();
 
53
 
54
  //Remove invalid DB entries
55
  $blclog->info('Cleaning up the database...');
 
56
  blc_cleanup_database();
 
57
 
58
  //Notify modules that the plugin has been activated. This will cause container
59
  //modules to create and update synch. records for all new/modified posts and other items.
60
- $blclog->info('Notifying modules...');
 
61
  $moduleManager->plugin_activated();
62
  blc_got_unsynched_items();
 
63
 
64
  //Turn off load limiting if it's not available on this server.
65
  $blclog->info('Updating server load limit settings...');
66
  $load = blcUtility::get_server_load();
67
  if ( empty($load) ){
68
  $blc_config_manager->options['enable_load_limit'] = false;
 
 
 
 
 
 
 
 
 
 
 
69
  }
70
 
71
  //And optimize my DB tables, too (for good measure)
72
- $blclog->info('Optimizing the database...');
 
73
  blcUtility::optimize_database();
 
74
 
75
  $blclog->info('Completing installation...');
76
  $blc_config_manager->options['installation_complete'] = true;
@@ -86,5 +106,6 @@ $blclog->info(sprintf(
86
  date_i18n('Y-m-d H:i:s'),
87
  $wpdb->num_queries - $queryCnt
88
  ));
 
89
  $blclog->save();
90
 
14
 
15
  $blclog->clear();
16
  $blclog->info( sprintf('Plugin activated at %s.', date_i18n('Y-m-d H:i:s')) );
17
+ $activation_start = microtime(true);
18
 
19
  //Reset the "installation_complete" flag
20
  $blc_config_manager->options['installation_complete'] = false;
49
 
50
  //Prepare the database.
51
  $blclog->info('Upgrading the database...');
52
+ $upgrade_start = microtime(true);
53
  require_once BLC_DIRECTORY . '/includes/admin/db-upgrade.php';
54
  blcDatabaseUpgrader::upgrade_database();
55
+ $blclog->info(sprintf('--- Total: %.3f seconds', microtime(true) - $upgrade_start));
56
 
57
  //Remove invalid DB entries
58
  $blclog->info('Cleaning up the database...');
59
+ $cleanup_start = microtime(true);
60
  blc_cleanup_database();
61
+ $blclog->info(sprintf('--- Total: %.3f seconds', microtime(true) - $cleanup_start));
62
 
63
  //Notify modules that the plugin has been activated. This will cause container
64
  //modules to create and update synch. records for all new/modified posts and other items.
65
+ $blclog->info('Notifying modules...');
66
+ $notification_start = microtime(true);
67
  $moduleManager->plugin_activated();
68
  blc_got_unsynched_items();
69
+ $blclog->info(sprintf('--- Total: %.3f seconds', microtime(true) - $notification_start));
70
 
71
  //Turn off load limiting if it's not available on this server.
72
  $blclog->info('Updating server load limit settings...');
73
  $load = blcUtility::get_server_load();
74
  if ( empty($load) ){
75
  $blc_config_manager->options['enable_load_limit'] = false;
76
+ $blclog->info('Disable load limit. Cannot retrieve current load average.');
77
+ } elseif ( $blc_config_manager->options['enable_load_limit'] && !isset($blc_config_manager->options['server_load_limit']) ) {
78
+ $fifteen_minutes = floatval(end($load));
79
+ $default_load_limit = round(max(min($fifteen_minutes * 2, $fifteen_minutes + 2), 4));
80
+ $blc_config_manager->options['server_load_limit'] = $default_load_limit;
81
+
82
+ $blclog->info(sprintf(
83
+ 'Set server load limit to %.2f. Current load average is %.2f',
84
+ $default_load_limit,
85
+ $fifteen_minutes
86
+ ));
87
  }
88
 
89
  //And optimize my DB tables, too (for good measure)
90
+ $blclog->info('Optimizing the database...');
91
+ $optimize_start = microtime(true);
92
  blcUtility::optimize_database();
93
+ $blclog->info(sprintf('--- Total: %.3f seconds', microtime(true) - $optimize_start));
94
 
95
  $blclog->info('Completing installation...');
96
  $blc_config_manager->options['installation_complete'] = true;
106
  date_i18n('Y-m-d H:i:s'),
107
  $wpdb->num_queries - $queryCnt
108
  ));
109
+ $blclog->info(sprintf('Total time: %.3f seconds', microtime(true) - $activation_start));
110
  $blclog->save();
111
 
includes/admin/db-upgrade.php CHANGED
@@ -8,7 +8,7 @@ class blcDatabaseUpgrader {
8
  * @return bool
9
  */
10
  public static function upgrade_database(){
11
- global $wpdb, $blclog;
12
 
13
  $conf = blc_get_configuration();
14
  $current = $conf->options['current_db_version'];
@@ -47,9 +47,10 @@ class blcDatabaseUpgrader {
47
  *
48
  * @return bool
49
  */
50
- function make_schema_current(){
51
  global $blclog;
52
-
 
53
  if ( !function_exists('blc_get_db_schema') ){
54
  require 'db-schema.php';
55
  }
@@ -58,13 +59,14 @@ class blcDatabaseUpgrader {
58
  $have_errors = false;
59
  foreach($query_log as $item){
60
  if ( $item['success'] ){
61
- $blclog->info(' [OK] ' . $item['query']);
62
  } else {
63
  $blclog->error(' [ ] ' . $item['query']);
64
  $blclog->error(' Database error : ' . $item['error_message']);
65
  $have_errors = true;
66
  }
67
  }
 
68
 
69
  $blclog->info('Database schema updated.');
70
  return !$have_errors;
@@ -75,7 +77,7 @@ class blcDatabaseUpgrader {
75
  *
76
  * @return bool
77
  */
78
- function drop_tables(){
79
  global $wpdb, $blclog; /** @var wpdb $wpdb */
80
 
81
  $blclog->info('Deleting the plugin\'s database tables');
@@ -107,7 +109,7 @@ class blcDatabaseUpgrader {
107
  return true;
108
  }
109
 
110
- function upgrade_095($trigger_errors = false){
111
  global $wpdb; /** @var wpdb $wpdb */
112
 
113
  //Prior to 0.9.5 all supported post types were internally represented using
@@ -163,7 +165,7 @@ class blcTableDelta {
163
  * @return array
164
  */
165
  static function delta($queries, $execute = true, $drop_columns = true, $drop_indexes = true){
166
- global $wpdb; /** @var wpdb $wpdb */
167
 
168
  // Separate individual queries into an array
169
  if ( !is_array($queries) ) {
@@ -184,7 +186,10 @@ class blcTableDelta {
184
  }
185
 
186
  // Check to see which tables and fields exist
 
187
  if ($tables = $wpdb->get_col('SHOW TABLES;')) {
 
 
188
  // For every table in the database
189
  foreach ($tables as $table) {
190
 
@@ -219,7 +224,9 @@ class blcTableDelta {
219
  //echo "Detected fields : <br>"; print_r($cfields);
220
 
221
  // Fetch the table column structure from the database
 
222
  $tablefields = $wpdb->get_results("SHOW FULL COLUMNS FROM {$table};");
 
223
 
224
  // For every field in the table
225
  foreach ($tablefields as $tablefield) {
@@ -265,8 +272,10 @@ class blcTableDelta {
265
  //echo 'Detected indexes : <br>'; print_r($indices);
266
 
267
  // Fetch the table index structure from the database
 
268
  $tableindices = $wpdb->get_results("SHOW INDEX FROM `{$table}`;");
269
-
 
270
  if ($tableindices) {
271
  // Clear the index array
272
  $index_ary = array();
@@ -333,8 +342,10 @@ class blcTableDelta {
333
  foreach ($cqueries as $query) {
334
  $log_item = array('query' => $query,);
335
  if ( $execute ) {
 
336
  $log_item['success'] = ($wpdb->query($query) !== false);
337
  $log_item['error_message'] = $wpdb->last_error;
 
338
  }
339
  $query_log[] = $log_item;
340
  }
@@ -351,7 +362,7 @@ class blcTableDelta {
351
  * @param string $line
352
  * @return array
353
  */
354
- function parse_create_definition($line){
355
  $line = preg_replace('@[,\r\n\s]+$@', '', $line); //Strip the ", " line separator
356
 
357
  $pieces = preg_split('@\s+|(?=\()@', $line, -1, PREG_SPLIT_NO_EMPTY);
@@ -426,7 +437,7 @@ class blcTableDelta {
426
  * @param string $line
427
  * @return array Array of index columns
428
  */
429
- function parse_index_column_list($line){
430
  $line = preg_replace('@^\s*\(|\)\s*$@', '', $line); //Strip the braces that surround the column list
431
  $pieces = preg_split('@\s*,\s*@', $line);
432
 
@@ -461,7 +472,7 @@ class blcTableDelta {
461
  * @param string $line
462
  * @return array
463
  */
464
- function parse_column_definition($line){
465
  $line = trim($line);
466
 
467
  //Extract datatype. This regexp is not entirely reliable - for example, it won't work
@@ -545,7 +556,7 @@ class blcTableDelta {
545
  * @param array $definition The return value of blcTableDelta::parse_create_definition()
546
  * @return string
547
  */
548
- function generate_index_string($definition){
549
 
550
  //Rebuild the index def. in a normalized form
551
  $index_definition = '';
8
  * @return bool
9
  */
10
  public static function upgrade_database(){
11
+ global $blclog;
12
 
13
  $conf = blc_get_configuration();
14
  $current = $conf->options['current_db_version'];
47
  *
48
  * @return bool
49
  */
50
+ static function make_schema_current(){
51
  global $blclog;
52
+
53
+ $start = microtime(true);
54
  if ( !function_exists('blc_get_db_schema') ){
55
  require 'db-schema.php';
56
  }
59
  $have_errors = false;
60
  foreach($query_log as $item){
61
  if ( $item['success'] ){
62
+ $blclog->info(' [OK] ' . $item['query'] . sprintf(' (%.3f seconds)', $item['query_time']));
63
  } else {
64
  $blclog->error(' [ ] ' . $item['query']);
65
  $blclog->error(' Database error : ' . $item['error_message']);
66
  $have_errors = true;
67
  }
68
  }
69
+ $blclog->info(sprintf('Schema update took %.3f seconds', microtime(true) - $start));
70
 
71
  $blclog->info('Database schema updated.');
72
  return !$have_errors;
77
  *
78
  * @return bool
79
  */
80
+ static function drop_tables(){
81
  global $wpdb, $blclog; /** @var wpdb $wpdb */
82
 
83
  $blclog->info('Deleting the plugin\'s database tables');
109
  return true;
110
  }
111
 
112
+ static function upgrade_095($trigger_errors = false){
113
  global $wpdb; /** @var wpdb $wpdb */
114
 
115
  //Prior to 0.9.5 all supported post types were internally represented using
165
  * @return array
166
  */
167
  static function delta($queries, $execute = true, $drop_columns = true, $drop_indexes = true){
168
+ global $wpdb, $blclog; /** @var wpdb $wpdb */
169
 
170
  // Separate individual queries into an array
171
  if ( !is_array($queries) ) {
186
  }
187
 
188
  // Check to see which tables and fields exist
189
+ $start_show_tables = microtime(true);
190
  if ($tables = $wpdb->get_col('SHOW TABLES;')) {
191
+ $blclog->info(sprintf('... SHOW TABLES (%.3f seconds)', microtime(true) - $start_show_tables));
192
+
193
  // For every table in the database
194
  foreach ($tables as $table) {
195
 
224
  //echo "Detected fields : <br>"; print_r($cfields);
225
 
226
  // Fetch the table column structure from the database
227
+ $start = microtime(true);
228
  $tablefields = $wpdb->get_results("SHOW FULL COLUMNS FROM {$table};");
229
+ $blclog->info(sprintf('... SHOW FULL COLUMNS FROM %s %.3f seconds', $table, microtime(true) - $start));
230
 
231
  // For every field in the table
232
  foreach ($tablefields as $tablefield) {
272
  //echo 'Detected indexes : <br>'; print_r($indices);
273
 
274
  // Fetch the table index structure from the database
275
+ $start = microtime(true);
276
  $tableindices = $wpdb->get_results("SHOW INDEX FROM `{$table}`;");
277
+ $blclog->info(sprintf('... SHOW INDEX FROM %s %.3f seconds', $table, microtime(true) - $start));
278
+
279
  if ($tableindices) {
280
  // Clear the index array
281
  $index_ary = array();
342
  foreach ($cqueries as $query) {
343
  $log_item = array('query' => $query,);
344
  if ( $execute ) {
345
+ $start = microtime(true);
346
  $log_item['success'] = ($wpdb->query($query) !== false);
347
  $log_item['error_message'] = $wpdb->last_error;
348
+ $log_item['query_time'] = microtime(true) - $start;
349
  }
350
  $query_log[] = $log_item;
351
  }
362
  * @param string $line
363
  * @return array
364
  */
365
+ static function parse_create_definition($line){
366
  $line = preg_replace('@[,\r\n\s]+$@', '', $line); //Strip the ", " line separator
367
 
368
  $pieces = preg_split('@\s+|(?=\()@', $line, -1, PREG_SPLIT_NO_EMPTY);
437
  * @param string $line
438
  * @return array Array of index columns
439
  */
440
+ static function parse_index_column_list($line){
441
  $line = preg_replace('@^\s*\(|\)\s*$@', '', $line); //Strip the braces that surround the column list
442
  $pieces = preg_split('@\s*,\s*@', $line);
443
 
472
  * @param string $line
473
  * @return array
474
  */
475
+ static function parse_column_definition($line){
476
  $line = trim($line);
477
 
478
  //Extract datatype. This regexp is not entirely reliable - for example, it won't work
556
  * @param array $definition The return value of blcTableDelta::parse_create_definition()
557
  * @return string
558
  */
559
+ static function generate_index_string($definition){
560
 
561
  //Rebuild the index def. in a normalized form
562
  $index_definition = '';
includes/admin/options-page-js.php CHANGED
@@ -127,6 +127,11 @@ jQuery(function($){
127
 
128
  blcToggleLogOptions();
129
  $('#logging_enabled').change(blcToggleLogOptions);
 
 
 
 
 
130
  });
131
 
132
  </script>
127
 
128
  blcToggleLogOptions();
129
  $('#logging_enabled').change(blcToggleLogOptions);
130
+
131
+ //
132
+ $('#target_resource_usage').change(function() {
133
+ $('#target_resource_usage_percent').text($(this).val() + '%')
134
+ });
135
  });
136
 
137
  </script>
includes/admin/sidebar.php CHANGED
@@ -9,6 +9,7 @@ $show_plugin_feed = false;
9
  if ( !$configuration->get('user_has_donated', false) ) {
10
  $show_plugin_feed = true;
11
  }
 
12
  ?>
13
 
14
  <!-- "More plugins" RSS feed -->
@@ -88,4 +89,18 @@ if ( !$configuration->get('user_has_donated') ):
88
  </div>
89
  </div>
90
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
  endif; ?>
9
  if ( !$configuration->get('user_has_donated', false) ) {
10
  $show_plugin_feed = true;
11
  }
12
+ $show_plugin_feed = false; //Disabled for now to make room for the EmbedPlus banner.
13
  ?>
14
 
15
  <!-- "More plugins" RSS feed -->
89
  </div>
90
  </div>
91
  <?php
92
+ endif; ?>
93
+
94
+ <!-- EmbedPlus banner -->
95
+ <?php
96
+ if ( !$configuration->get('user_has_donated') ):
97
+ ?>
98
+ <div id="embedplus-ad" class="postbox">
99
+ <div class="inside">
100
+ <a href="http://wordpress.org/plugins/youtube-embed-plus/" title="YouTube EmbedPlus">
101
+ <img src="<?php echo plugins_url('images/embedplus_banner.jpg', BLC_PLUGIN_FILE) ?>" width="255" height="255" alt="YouTube EmbedPlus">
102
+ </a>
103
+ </div>
104
+ </div>
105
+ <?php
106
  endif; ?>
includes/admin/table-printer.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
 
3
- if ( !class_exists('blcTablePrinter') ) {
4
 
5
  /**
6
  * Utility class for printing the link listing table.
@@ -182,8 +182,16 @@ class blcTablePrinter {
182
  ?>
183
 
184
  <div class="view-switch">
185
- <a href="<?php echo esc_url(add_query_arg('compact', '1', $_SERVER['REQUEST_URI'])) ?>"><img <?php if ( $table_compact ) echo 'class="current"'; ?> id="view-switch-list" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" width="20" height="20" title="<?php _e('Compact View', 'broken-link-checker') ?>" alt="<?php _e('Compact View', 'broken-link-checker') ?>" /></a>
186
- <a href="<?php echo esc_url(add_query_arg('compact', '0', $_SERVER['REQUEST_URI'])) ?>"><img <?php if ( !$table_compact ) echo 'class="current"'; ?> id="view-switch-excerpt" src="<?php echo esc_url( includes_url( 'images/blank.gif' ) ); ?>" width="20" height="20" title="<?php _e('Detailed View', 'broken-link-checker') ?>" alt="<?php _e('Detailed View', 'broken-link-checker') ?>" /></a>
 
 
 
 
 
 
 
 
187
  </div>
188
 
189
  <?php
@@ -482,7 +490,7 @@ class blcTablePrinter {
482
  *
483
  * @uses blcTablePrinter::details_row_contents()
484
  *
485
- * @param object $link The link to display.
486
  * @param array $visible_columns List of visible columns.
487
  * @param integer $rownum Table row number.
488
  * @return void
1
  <?php
2
 
3
+ if (!class_exists('blcTablePrinter')) {
4
 
5
  /**
6
  * Utility class for printing the link listing table.
182
  ?>
183
 
184
  <div class="view-switch">
185
+ <a
186
+ href="<?php echo esc_url(add_query_arg('compact', '1', $_SERVER['REQUEST_URI'])) ?>"
187
+ class="view-list <?php if ( $table_compact ) echo 'current'; ?>"
188
+ title="<?php echo esc_attr(__('Compact View', 'broken-link-checker')); ?>">
189
+ </a>
190
+ <a
191
+ href="<?php echo esc_url(add_query_arg('compact', '0', $_SERVER['REQUEST_URI'])) ?>"
192
+ class="view-excerpt <?php if ( !$table_compact ) echo 'current'; ?>"
193
+ title="<?php echo esc_attr(__('Detailed View', 'broken-link-checker')); ?>">
194
+ </a>
195
  </div>
196
 
197
  <?php
490
  *
491
  * @uses blcTablePrinter::details_row_contents()
492
  *
493
+ * @param blcLink $link The link to display.
494
  * @param array $visible_columns List of visible columns.
495
  * @param integer $rownum Table row number.
496
  * @return void
includes/any-post.php CHANGED
@@ -12,8 +12,8 @@
12
  * @access private
13
  */
14
  class blcPostTypeOverlord {
15
- var $enabled_post_types = array(); //Post types currently selected for link checking
16
- var $enabled_post_statuses = array('publish'); //Only posts that have one of these statuses shall be checked
17
 
18
  var $plugin_conf;
19
  var $resynch_already_done = false;
@@ -44,8 +44,7 @@ class blcPostTypeOverlord {
44
 
45
  $post_types = get_post_types(array(), 'objects');
46
  $exceptions = array('revision', 'nav_menu_item', 'attachment');
47
- $built_in = array('post', 'page');
48
-
49
  foreach($post_types as $data){
50
  $post_type = $data->name;
51
 
@@ -192,6 +191,7 @@ class blcPostTypeOverlord {
192
  if ( $forced ){
193
  //Create new synchronization records for all posts.
194
  $blclog->log('...... Creating synch records for these post types: '.implode(', ', $escaped_post_types) . ' that have one of these statuses: ' . implode(', ', $escaped_post_statuses));
 
195
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
196
  SELECT posts.id, posts.post_type, 0
197
  FROM {$wpdb->posts} AS posts
@@ -204,11 +204,12 @@ class blcPostTypeOverlord {
204
  "'" . implode("', '", $escaped_post_types) . "'"
205
  );
206
  $wpdb->query( $q );
207
- $blclog->log(sprintf('...... %d rows inserted', $wpdb->rows_affected));
208
  } else {
209
  //Delete synch records corresponding to posts that no longer exist.
210
  $blclog->log('...... Deleting synch records for removed posts');
211
- $q = "DELETE synch.*
 
212
  FROM
213
  {$wpdb->prefix}blc_synch AS synch LEFT JOIN {$wpdb->posts} AS posts
214
  ON posts.ID = synch.container_id
@@ -219,12 +220,15 @@ class blcPostTypeOverlord {
219
  "'" . implode("', '", $escaped_post_types) . "'"
220
  );
221
  $wpdb->query( $q );
222
- $blclog->log(sprintf('...... %d rows deleted', $wpdb->rows_affected));
 
 
223
 
224
  //Remove the 'synched' flag from all posts that have been updated
225
  //since the last time they were parsed/synchronized.
226
  $blclog->log('...... Marking changed posts as unsynched');
227
- $q = "UPDATE
 
228
  {$wpdb->prefix}blc_synch AS synch
229
  JOIN {$wpdb->posts} AS posts ON (synch.container_id = posts.ID and synch.container_type=posts.post_type)
230
  SET
@@ -232,10 +236,13 @@ class blcPostTypeOverlord {
232
  WHERE
233
  synch.last_synch < posts.post_modified";
234
  $wpdb->query( $q );
235
- $blclog->log(sprintf('...... %d rows updated', $wpdb->rows_affected));
 
 
236
 
237
  //Create synch. records for posts that don't have them.
238
  $blclog->log('...... Creating synch records for new posts');
 
239
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
240
  SELECT posts.id, posts.post_type, 0
241
  FROM
@@ -251,7 +258,9 @@ class blcPostTypeOverlord {
251
  "'" . implode("', '", $escaped_post_types) . "'"
252
  );
253
  $wpdb->query($q);
254
- $blclog->log(sprintf('...... %d rows inserted', $wpdb->rows_affected));
 
 
255
  }
256
 
257
  $this->resynch_already_done = true;
@@ -641,7 +650,7 @@ class blcAnyPostContainerManager extends blcContainerManager {
641
 
642
  function init(){
643
  parent::init();
644
-
645
  //Notify the overlord that the post/container type that this instance is
646
  //responsible for is enabled.
647
  $overlord = blcPostTypeOverlord::getInstance();
12
  * @access private
13
  */
14
  class blcPostTypeOverlord {
15
+ public $enabled_post_types = array(); //Post types currently selected for link checking
16
+ public $enabled_post_statuses = array('publish'); //Only posts that have one of these statuses shall be checked
17
 
18
  var $plugin_conf;
19
  var $resynch_already_done = false;
44
 
45
  $post_types = get_post_types(array(), 'objects');
46
  $exceptions = array('revision', 'nav_menu_item', 'attachment');
47
+
 
48
  foreach($post_types as $data){
49
  $post_type = $data->name;
50
 
191
  if ( $forced ){
192
  //Create new synchronization records for all posts.
193
  $blclog->log('...... Creating synch records for these post types: '.implode(', ', $escaped_post_types) . ' that have one of these statuses: ' . implode(', ', $escaped_post_statuses));
194
+ $start = microtime(true);
195
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
196
  SELECT posts.id, posts.post_type, 0
197
  FROM {$wpdb->posts} AS posts
204
  "'" . implode("', '", $escaped_post_types) . "'"
205
  );
206
  $wpdb->query( $q );
207
+ $blclog->log(sprintf('...... %d rows inserted in %.3f seconds', $wpdb->rows_affected, microtime(true) - $start));
208
  } else {
209
  //Delete synch records corresponding to posts that no longer exist.
210
  $blclog->log('...... Deleting synch records for removed posts');
211
+ $start = microtime(true);
212
+ $q = "DELETE synch.*
213
  FROM
214
  {$wpdb->prefix}blc_synch AS synch LEFT JOIN {$wpdb->posts} AS posts
215
  ON posts.ID = synch.container_id
220
  "'" . implode("', '", $escaped_post_types) . "'"
221
  );
222
  $wpdb->query( $q );
223
+ $elapsed = microtime(true) - $start;
224
+ $blclog->debug($q);
225
+ $blclog->log(sprintf('...... %d rows deleted in %.3f seconds', $wpdb->rows_affected, $elapsed));
226
 
227
  //Remove the 'synched' flag from all posts that have been updated
228
  //since the last time they were parsed/synchronized.
229
  $blclog->log('...... Marking changed posts as unsynched');
230
+ $start = microtime(true);
231
+ $q = "UPDATE
232
  {$wpdb->prefix}blc_synch AS synch
233
  JOIN {$wpdb->posts} AS posts ON (synch.container_id = posts.ID and synch.container_type=posts.post_type)
234
  SET
236
  WHERE
237
  synch.last_synch < posts.post_modified";
238
  $wpdb->query( $q );
239
+ $elapsed = microtime(true) - $start;
240
+ $blclog->debug($q);
241
+ $blclog->log(sprintf('...... %d rows updated in %.3f seconds', $wpdb->rows_affected, $elapsed));
242
 
243
  //Create synch. records for posts that don't have them.
244
  $blclog->log('...... Creating synch records for new posts');
245
+ $start = microtime(true);
246
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
247
  SELECT posts.id, posts.post_type, 0
248
  FROM
258
  "'" . implode("', '", $escaped_post_types) . "'"
259
  );
260
  $wpdb->query($q);
261
+ $elapsed = microtime(true) - $start;
262
+ $blclog->debug($q);
263
+ $blclog->log(sprintf('...... %d rows inserted in %.3f seconds', $wpdb->rows_affected, $elapsed));
264
  }
265
 
266
  $this->resynch_already_done = true;
650
 
651
  function init(){
652
  parent::init();
653
+
654
  //Notify the overlord that the post/container type that this instance is
655
  //responsible for is enabled.
656
  $overlord = blcPostTypeOverlord::getInstance();
includes/containers.php CHANGED
@@ -790,7 +790,7 @@ class blcContainerHelper {
790
  * @param array $container_types Associative array of timestamps, indexed by container types.
791
  * @return bool
792
  */
793
- function mark_as_unsynched_where($formats, $container_types){
794
  global $wpdb; /* @var wpdb $wpdb */
795
  global $blclog;
796
 
@@ -855,14 +855,16 @@ class blcContainerHelper {
855
  global $blclog;
856
 
857
  $module_manager = blcModuleManager::getInstance();
 
 
858
  $active_containers = $module_manager->get_escaped_ids('container');
859
-
860
  $q = "DELETE synch.*
861
  FROM {$wpdb->prefix}blc_synch AS synch
862
  WHERE
863
  synch.container_type NOT IN ({$active_containers})";
864
  $rez = $wpdb->query($q);
865
- $blclog->log(sprintf('... %d synch records deleted', $wpdb->rows_affected));
 
866
 
867
  return $rez !== false;
868
  }
790
  * @param array $container_types Associative array of timestamps, indexed by container types.
791
  * @return bool
792
  */
793
+ static function mark_as_unsynched_where($formats, $container_types){
794
  global $wpdb; /* @var wpdb $wpdb */
795
  global $blclog;
796
 
855
  global $blclog;
856
 
857
  $module_manager = blcModuleManager::getInstance();
858
+
859
+ $start = microtime(true);
860
  $active_containers = $module_manager->get_escaped_ids('container');
 
861
  $q = "DELETE synch.*
862
  FROM {$wpdb->prefix}blc_synch AS synch
863
  WHERE
864
  synch.container_type NOT IN ({$active_containers})";
865
  $rez = $wpdb->query($q);
866
+ $elapsed = microtime(true) - $start;
867
+ $blclog->log(sprintf('... %d synch records deleted in %.3f seconds', $wpdb->rows_affected, $elapsed));
868
 
869
  return $rez !== false;
870
  }
includes/extra-strings.php CHANGED
@@ -5,16 +5,13 @@ _x("Comments", "module name", "broken-link-checker");
5
  _x("Custom fields", "module name", "broken-link-checker");
6
  _x("Embedded DailyMotion videos", "module name", "broken-link-checker");
7
  _x("Embedded GoogleVideo videos", "module name", "broken-link-checker");
8
- _x("Embedded Megavideo videos", "module name", "broken-link-checker");
9
  _x("Embedded Vimeo videos", "module name", "broken-link-checker");
10
  _x("Embedded YouTube playlists (old embed code)", "module name", "broken-link-checker");
11
  _x("Embedded YouTube videos", "module name", "broken-link-checker");
12
  _x("Embedded YouTube videos (old embed code)", "module name", "broken-link-checker");
13
- _x("FileServe API", "module name", "broken-link-checker");
14
  _x("HTML images", "module name", "broken-link-checker");
15
  _x("HTML links", "module name", "broken-link-checker");
16
  _x("MediaFire API", "module name", "broken-link-checker");
17
- _x("MegaUpload API", "module name", "broken-link-checker");
18
  _x("Plaintext URLs", "module name", "broken-link-checker");
19
  _x("RapidShare API", "module name", "broken-link-checker");
20
  _x("Smart YouTube httpv:// URLs", "module name", "broken-link-checker");
5
  _x("Custom fields", "module name", "broken-link-checker");
6
  _x("Embedded DailyMotion videos", "module name", "broken-link-checker");
7
  _x("Embedded GoogleVideo videos", "module name", "broken-link-checker");
 
8
  _x("Embedded Vimeo videos", "module name", "broken-link-checker");
9
  _x("Embedded YouTube playlists (old embed code)", "module name", "broken-link-checker");
10
  _x("Embedded YouTube videos", "module name", "broken-link-checker");
11
  _x("Embedded YouTube videos (old embed code)", "module name", "broken-link-checker");
 
12
  _x("HTML images", "module name", "broken-link-checker");
13
  _x("HTML links", "module name", "broken-link-checker");
14
  _x("MediaFire API", "module name", "broken-link-checker");
 
15
  _x("Plaintext URLs", "module name", "broken-link-checker");
16
  _x("RapidShare API", "module name", "broken-link-checker");
17
  _x("Smart YouTube httpv:// URLs", "module name", "broken-link-checker");
includes/instances.php CHANGED
@@ -605,6 +605,7 @@ function blc_cleanup_instances(){
605
  global $blclog;
606
 
607
  //Delete all instances that reference non-existent containers
 
608
  $q = "DELETE instances.*
609
  FROM
610
  {$wpdb->prefix}blc_instances AS instances LEFT JOIN {$wpdb->prefix}blc_synch AS synch
@@ -612,9 +613,11 @@ function blc_cleanup_instances(){
612
  WHERE
613
  synch.container_id IS NULL";
614
  $rez = $wpdb->query($q);
615
- $blclog->log(sprintf('... %d instances deleted', $wpdb->rows_affected));
 
616
 
617
  //Delete instances that reference containers and parsers that are no longer active
 
618
  $manager = blcModuleManager::getInstance();
619
  $active_containers = $manager->get_escaped_ids('container');
620
  $active_parsers = $manager->get_escaped_ids('parser');
@@ -625,7 +628,8 @@ function blc_cleanup_instances(){
625
  instances.container_type NOT IN ({$active_containers}) OR
626
  instances.parser_type NOT IN ({$active_parsers})";
627
  $rez2 = $wpdb->query($q);
628
- $blclog->log(sprintf('... %d more instances deleted', $wpdb->rows_affected));
 
629
 
630
  return ($rez !== false) && ($rez2 !== false);
631
  }
605
  global $blclog;
606
 
607
  //Delete all instances that reference non-existent containers
608
+ $start = microtime(true);
609
  $q = "DELETE instances.*
610
  FROM
611
  {$wpdb->prefix}blc_instances AS instances LEFT JOIN {$wpdb->prefix}blc_synch AS synch
613
  WHERE
614
  synch.container_id IS NULL";
615
  $rez = $wpdb->query($q);
616
+ $elapsed = microtime(true) - $start;
617
+ $blclog->log(sprintf('... %d instances deleted in %.3f seconds', $wpdb->rows_affected, $elapsed));
618
 
619
  //Delete instances that reference containers and parsers that are no longer active
620
+ $start = microtime(true);
621
  $manager = blcModuleManager::getInstance();
622
  $active_containers = $manager->get_escaped_ids('container');
623
  $active_parsers = $manager->get_escaped_ids('parser');
628
  instances.container_type NOT IN ({$active_containers}) OR
629
  instances.parser_type NOT IN ({$active_parsers})";
630
  $rez2 = $wpdb->query($q);
631
+ $elapsed = microtime(true) - $start;
632
+ $blclog->log(sprintf('... %d more instances deleted in %.3f seconds', $wpdb->rows_affected, $elapsed));
633
 
634
  return ($rez !== false) && ($rez2 !== false);
635
  }
includes/link-query.php CHANGED
@@ -158,9 +158,12 @@ class blcLinkQuery {
158
  */
159
  function delete_custom_filter($filter_id){
160
  global $wpdb; /** @var wpdb $wpdb */
161
-
 
 
 
162
  //Remove the "f" character from the filter ID to get its database key
163
- $filter_id = intval(ltrim($_POST['filter_id'], 'f'));
164
 
165
  //Try to delete the filter
166
  $q = $wpdb->prepare("DELETE FROM {$wpdb->prefix}blc_filters WHERE id = %d", $filter_id);
@@ -346,7 +349,7 @@ class blcLinkQuery {
346
 
347
  //Anchor text - use LIKE search
348
  if ( !empty($params['s_link_text']) ){
349
- $s_link_text = like_escape(esc_sql($params['s_link_text']));
350
  $s_link_text = str_replace('*', '%', $s_link_text);
351
 
352
  $pieces[] = '(instances.link_text LIKE "%' . $s_link_text . '%")';
@@ -357,7 +360,7 @@ class blcLinkQuery {
357
  //There is limited wildcard support, e.g. "google.*/search" will match both
358
  //"google.com/search" and "google.lv/search"
359
  if ( !empty($params['s_link_url']) ){
360
- $s_link_url = like_escape(esc_sql($params['s_link_url']));
361
  $s_link_url = str_replace('*', '%', $s_link_url);
362
 
363
  $pieces[] = '(links.url LIKE "%'. $s_link_url .'%") OR '.
@@ -472,6 +475,15 @@ class blcLinkQuery {
472
  'order_exprs' => $order_exprs,
473
  );
474
  }
 
 
 
 
 
 
 
 
 
475
 
476
  /**
477
  * blcLinkQuery::get_links()
158
  */
159
  function delete_custom_filter($filter_id){
160
  global $wpdb; /** @var wpdb $wpdb */
161
+
162
+ if ( !isset($filter_id) ) {
163
+ $filter_id = $_POST['filter_id'];
164
+ }
165
  //Remove the "f" character from the filter ID to get its database key
166
+ $filter_id = intval(ltrim($filter_id, 'f'));
167
 
168
  //Try to delete the filter
169
  $q = $wpdb->prepare("DELETE FROM {$wpdb->prefix}blc_filters WHERE id = %d", $filter_id);
349
 
350
  //Anchor text - use LIKE search
351
  if ( !empty($params['s_link_text']) ){
352
+ $s_link_text = esc_sql($this->esc_like($params['s_link_text']));
353
  $s_link_text = str_replace('*', '%', $s_link_text);
354
 
355
  $pieces[] = '(instances.link_text LIKE "%' . $s_link_text . '%")';
360
  //There is limited wildcard support, e.g. "google.*/search" will match both
361
  //"google.com/search" and "google.lv/search"
362
  if ( !empty($params['s_link_url']) ){
363
+ $s_link_url = esc_sql($this->esc_like($params['s_link_url']));
364
  $s_link_url = str_replace('*', '%', $s_link_url);
365
 
366
  $pieces[] = '(links.url LIKE "%'. $s_link_url .'%") OR '.
475
  'order_exprs' => $order_exprs,
476
  );
477
  }
478
+
479
+ private function esc_like($input) {
480
+ global $wpdb; /** @var wpdb $wpdb */
481
+ if ( method_exists($wpdb, 'esc_like') ) {
482
+ return $wpdb->esc_like($input);
483
+ } else {
484
+ return like_escape($input);
485
+ }
486
+ }
487
 
488
  /**
489
  * blcLinkQuery::get_links()
includes/links.php CHANGED
@@ -146,15 +146,15 @@ class blcLink {
146
 
147
  } else if (is_string($arg)){
148
  //Load a link with URL = $arg from the DB. Create a new one if the record isn't found.
149
- $blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Trying to load a link by URL:', $arg);
150
  $q = $wpdb->prepare("SELECT * FROM {$wpdb->prefix}blc_links WHERE url=%s LIMIT 1", $arg);
151
  $arr = $wpdb->get_row( $q, ARRAY_A );
152
 
153
  if ( is_array($arr) ){ //Loaded successfully
154
- $blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Success!');
155
  $this->set_values($arr);
156
  } else { //Link not found, treat as new
157
- $blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Link not found.');
158
  $this->url = $arg;
159
  $this->is_new = true;
160
  }
@@ -417,7 +417,7 @@ class blcLink {
417
 
418
  if ($rez){
419
  $this->link_id = $wpdb->insert_id;
420
- $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Database record created. ID = ' . $this->link_id);
421
  //FB::info($this->link_id, "Link added");
422
  //If the link was successfully saved then it's no longer "new"
423
  $this->is_new = false;
@@ -449,7 +449,7 @@ class blcLink {
449
  $rez = $wpdb->query($q) !== false;
450
  if ( $rez ){
451
  //FB::log($this->link_id, "Link updated");
452
- $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Link updated.');
453
  } else {
454
  $blclog->error(__CLASS__ .':' . __FUNCTION__ . ' Error updating link', $this->url);
455
  //FB::error($wpdb->last_error, "Error updating link {$this->url}");
@@ -921,8 +921,9 @@ class blcLink {
921
  function blc_cleanup_links( $link_id = null ){
922
  global $wpdb; /* @var wpdb $wpdb */
923
  global $blclog;
924
-
925
- $q = "DELETE FROM {$wpdb->prefix}blc_links
 
926
  USING {$wpdb->prefix}blc_links LEFT JOIN {$wpdb->prefix}blc_instances
927
  ON {$wpdb->prefix}blc_instances.link_id = {$wpdb->prefix}blc_links.link_id
928
  WHERE
@@ -936,7 +937,8 @@ function blc_cleanup_links( $link_id = null ){
936
  }
937
 
938
  $rez = $wpdb->query( $q );
939
- $blclog->log(sprintf('... %d links deleted', $wpdb->rows_affected));
 
940
 
941
  return $rez !== false;
942
  }
146
 
147
  } else if (is_string($arg)){
148
  //Load a link with URL = $arg from the DB. Create a new one if the record isn't found.
149
+ // $blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Trying to load a link by URL:', $arg);
150
  $q = $wpdb->prepare("SELECT * FROM {$wpdb->prefix}blc_links WHERE url=%s LIMIT 1", $arg);
151
  $arr = $wpdb->get_row( $q, ARRAY_A );
152
 
153
  if ( is_array($arr) ){ //Loaded successfully
154
+ // $blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Success!');
155
  $this->set_values($arr);
156
  } else { //Link not found, treat as new
157
+ // $blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Link not found.');
158
  $this->url = $arg;
159
  $this->is_new = true;
160
  }
417
 
418
  if ($rez){
419
  $this->link_id = $wpdb->insert_id;
420
+ $blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Database record created. ID = ' . $this->link_id);
421
  //FB::info($this->link_id, "Link added");
422
  //If the link was successfully saved then it's no longer "new"
423
  $this->is_new = false;
449
  $rez = $wpdb->query($q) !== false;
450
  if ( $rez ){
451
  //FB::log($this->link_id, "Link updated");
452
+ $blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Link updated.');
453
  } else {
454
  $blclog->error(__CLASS__ .':' . __FUNCTION__ . ' Error updating link', $this->url);
455
  //FB::error($wpdb->last_error, "Error updating link {$this->url}");
921
  function blc_cleanup_links( $link_id = null ){
922
  global $wpdb; /* @var wpdb $wpdb */
923
  global $blclog;
924
+
925
+ $start = microtime(true);
926
+ $q = "DELETE FROM {$wpdb->prefix}blc_links
927
  USING {$wpdb->prefix}blc_links LEFT JOIN {$wpdb->prefix}blc_instances
928
  ON {$wpdb->prefix}blc_instances.link_id = {$wpdb->prefix}blc_links.link_id
929
  WHERE
937
  }
938
 
939
  $rez = $wpdb->query( $q );
940
+ $elapsed = microtime(true) - $start;
941
+ $blclog->log(sprintf('... %d links deleted in %.3f seconds', $wpdb->rows_affected, $elapsed));
942
 
943
  return $rez !== false;
944
  }
includes/logger.php CHANGED
@@ -24,7 +24,7 @@ class blcLogger {
24
  $this->__construct($param);
25
  }
26
 
27
- function log($message, $object = null, $level = BLC_LEVEL_DEBUG){
28
 
29
  }
30
 
@@ -133,7 +133,7 @@ class blcFileLogger extends blcLogger {
133
  $this->fileName = $fileName;
134
  }
135
 
136
- function log($message, $object = null, $level = BLC_LEVEL_DEBUG){
137
  if ( $level < $this->log_level ) {
138
  return;
139
  }
24
  $this->__construct($param);
25
  }
26
 
27
+ function log($message, $object = null, $level = BLC_LEVEL_INFO){
28
 
29
  }
30
 
133
  $this->fileName = $fileName;
134
  }
135
 
136
+ function log($message, $object = null, $level = BLC_LEVEL_INFO){
137
  if ( $level < $this->log_level ) {
138
  return;
139
  }
includes/module-base.php CHANGED
@@ -58,7 +58,7 @@ class blcModule {
58
  function activated(){
59
  //Should be overridden in a sub-class.
60
  }
61
-
62
  /**
63
  * Called when the module is deactivated.
64
  * Should be overridden in a sub-class.
@@ -68,5 +68,13 @@ class blcModule {
68
  function deactivated(){
69
  //Should be overridden in a sub-class.
70
  }
 
 
 
 
 
 
 
 
71
  }
72
 
58
  function activated(){
59
  //Should be overridden in a sub-class.
60
  }
61
+
62
  /**
63
  * Called when the module is deactivated.
64
  * Should be overridden in a sub-class.
68
  function deactivated(){
69
  //Should be overridden in a sub-class.
70
  }
71
+
72
+ /**
73
+ * Called when BLC itself is activated.
74
+ * Usually this method just calls activated(), but subclasses could override it for special handling.
75
+ */
76
+ function plugin_activated() {
77
+ $this->activated();
78
+ }
79
  }
80
 
includes/module-manager.php CHANGED
@@ -483,15 +483,22 @@ class blcModuleManager {
483
 
484
  //Ensure all active modules have the latest headers
485
  $blclog->log('... Updating module cache');
 
486
  $this->refresh_active_module_cache();
 
487
 
488
  //Notify them that we've been activated
 
 
 
 
 
489
  $active = $this->get_active_modules();
490
  foreach($active as $module_id => $module_data){
491
  $blclog->log( sprintf('... Notifying module "%s"', $module_id) );
492
  $module = $this->get_module($module_id);
493
  if ( $module ){
494
- $module->activated();
495
  } else {
496
  $blclog->warn(sprintf('... Module "%s" failed to load!', $module_id));
497
  }
483
 
484
  //Ensure all active modules have the latest headers
485
  $blclog->log('... Updating module cache');
486
+ $start = microtime(true);
487
  $this->refresh_active_module_cache();
488
+ $blclog->info(sprintf('... Cache refresh took %.3f seconds', microtime(true) - $start));
489
 
490
  //Notify them that we've been activated
491
+ $blclog->log('... Loading modules');
492
+ $start = microtime(true);
493
+ $this->load_modules();
494
+ $blclog->info(sprintf('... %d modules loaded in %.3f seconds', count($this->loaded), microtime(true) - $start));
495
+
496
  $active = $this->get_active_modules();
497
  foreach($active as $module_id => $module_data){
498
  $blclog->log( sprintf('... Notifying module "%s"', $module_id) );
499
  $module = $this->get_module($module_id);
500
  if ( $module ){
501
+ $module->plugin_activated();
502
  } else {
503
  $blclog->warn(sprintf('... Module "%s" failed to load!', $module_id));
504
  }
includes/modules.php CHANGED
@@ -25,4 +25,7 @@ $blc_module_manager = blcModuleManager::getInstance(array(
25
  'dummy', //Dummy container used as a fallback
26
  ));
27
 
28
- require 'any-post.php';
 
 
 
25
  'dummy', //Dummy container used as a fallback
26
  ));
27
 
28
+ require 'any-post.php';
29
+
30
+ //Let other plugins register virtual modules.
31
+ do_action('blc_register_modules', $blc_module_manager);
includes/parsers.php CHANGED
@@ -47,7 +47,15 @@ class blcParser extends blcModule {
47
  parent::activated();
48
  $this->resynch_relevant_containers();
49
  }
50
-
 
 
 
 
 
 
 
 
51
  /**
52
  * Mark containers that this parser might be interested in as unparsed.
53
  *
47
  parent::activated();
48
  $this->resynch_relevant_containers();
49
  }
50
+
51
+ /**
52
+ * Called when BLC is activated.
53
+ */
54
+ function plugin_activated() {
55
+ //Intentionally do nothing. BLC can not parse containers while it's inactive, so we can be
56
+ //pretty sure that there are no already-parsed containers that need to be resynchronized.
57
+ }
58
+
59
  /**
60
  * Mark containers that this parser might be interested in as unparsed.
61
  *
includes/screen-options/screen-options.php CHANGED
@@ -8,11 +8,11 @@ if ( !class_exists('wsScreenOptions12') ):
8
  * Do not access this class directly. Instead, use the add_screen_options_panel() function.
9
  *
10
  * @author Janis Elsts
11
- * @copyright 2010
12
- * @version 1.2
13
  * @access public
14
  */
15
- class wsScreenOptions12 {
16
  var $registered_panels; //List of custom "Screen Options" panels
17
  var $page_panels; //Index of panels registered for each page ($page => array of panel ids).
18
 
@@ -24,10 +24,11 @@ class wsScreenOptions12 {
24
  function init(){
25
  $this->registered_panels = array();
26
  $this->page_panels = array();
27
-
 
28
  add_filter('screen_settings', array(&$this, 'append_screen_settings'), 10, 2);
29
  add_action('admin_print_scripts', array(&$this, 'add_autosave_script'));
30
- }
31
 
32
  /**
33
  * Add a new settings panel to the "Screen Options" box.
@@ -37,38 +38,53 @@ class wsScreenOptions12 {
37
  * @param callback $callback Function that fills the panel with the desired content. Should return its output.
38
  * @param string|array $page The page(s) on which to show the panel (similar to add_meta_box()).
39
  * @param callback $save_callback Optional. Function that saves the settings.
40
- * @param bool $autosave Optional. If se, settings will be automatically saved (via AJAX) when the value of any input element in the panel changes. Defaults to false.
41
  * @return void
42
  */
43
  function add_screen_options_panel($id, $title, $callback, $page, $save_callback = null, $autosave = false){
44
  if ( !is_array($page) ){
45
  $page = array($page);
46
  }
47
- //Convert page hooks/slugs to screen IDs
48
- $page = array_map(array(&$this, 'page_to_screen_id'), $page);
49
- $page = array_unique($page);
50
-
51
  $new_panel = array(
52
  'title' => $title,
53
  'callback' => $callback,
54
- 'page' => $page,
55
  'save_callback' => $save_callback,
56
  'autosave' => $autosave,
57
  );
58
-
 
59
  if ( $save_callback ){
60
- add_action('wp_ajax_save_settings-' . $id, array(&$this, 'ajax_save_callback'));
61
  }
62
-
63
- //Store the panel ID in each relevant page's list
64
- foreach($page as $page_id){
65
- if ( !isset($this->page_panels[$page_id]) ){
66
- $this->page_panels[$page_id] = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  }
68
- $this->page_panels[$page_id][] = $id;
69
  }
70
-
71
- $this->registered_panels[$id] = $new_panel;
72
  }
73
 
74
  /**
@@ -243,7 +259,7 @@ global $ws_screen_options_versions;
243
  if ( !isset($ws_screen_options_versions) ){
244
  $ws_screen_options_versions = array();
245
  }
246
- $ws_screen_options_versions['1.2'] = 'wsScreenOptions12';
247
 
248
  endif;
249
 
@@ -265,7 +281,7 @@ if ( !function_exists('add_screen_options_panel') ){
265
  function add_screen_options_panel($id, $title, $callback, $page, $save_callback = null, $autosave = false){
266
  global $ws_screen_options_versions;
267
 
268
- static $instance = null;
269
  if ( is_null($instance) ){
270
  //Instantiate the latest version of the wsScreenOptions class
271
  uksort($ws_screen_options_versions, 'version_compare');
@@ -274,7 +290,7 @@ if ( !function_exists('add_screen_options_panel') ){
274
  $instance->init();
275
  }
276
 
277
- return $instance->add_screen_options_panel($id, $title, $callback, $page, $save_callback, $autosave);
278
  }
279
 
280
  }
8
  * Do not access this class directly. Instead, use the add_screen_options_panel() function.
9
  *
10
  * @author Janis Elsts
11
+ * @copyright 2014
12
+ * @version 1.3
13
  * @access public
14
  */
15
+ class wsScreenOptions13 {
16
  var $registered_panels; //List of custom "Screen Options" panels
17
  var $page_panels; //Index of panels registered for each page ($page => array of panel ids).
18
 
24
  function init(){
25
  $this->registered_panels = array();
26
  $this->page_panels = array();
27
+
28
+ add_action('current_screen', array($this, 'populate_page_panels'));
29
  add_filter('screen_settings', array(&$this, 'append_screen_settings'), 10, 2);
30
  add_action('admin_print_scripts', array(&$this, 'add_autosave_script'));
31
+ }
32
 
33
  /**
34
  * Add a new settings panel to the "Screen Options" box.
38
  * @param callback $callback Function that fills the panel with the desired content. Should return its output.
39
  * @param string|array $page The page(s) on which to show the panel (similar to add_meta_box()).
40
  * @param callback $save_callback Optional. Function that saves the settings.
41
+ * @param bool $autosave Optional. If set, settings will be automatically saved (via AJAX) when the value of any input element in the panel changes. Defaults to false.
42
  * @return void
43
  */
44
  function add_screen_options_panel($id, $title, $callback, $page, $save_callback = null, $autosave = false){
45
  if ( !is_array($page) ){
46
  $page = array($page);
47
  }
48
+
 
 
 
49
  $new_panel = array(
50
  'title' => $title,
51
  'callback' => $callback,
52
+ 'page' => $page,
53
  'save_callback' => $save_callback,
54
  'autosave' => $autosave,
55
  );
56
+ $this->registered_panels[$id] = $new_panel;
57
+
58
  if ( $save_callback ){
59
+ add_action('wp_ajax_save_settings-' . $id, array($this, 'ajax_save_callback'));
60
  }
61
+ }
62
+
63
+ /**
64
+ * Populate a lookup array for screen -> panels queries.
65
+ *
66
+ * This is a callback for the "current_screen" action. We have to do it in this hook or WordPress will
67
+ * complain about "doing it wrong" and incorrectly suggest using the "add_meta_boxes" action.
68
+ *
69
+ * "add_meta_boxes" doesn't work here because it only gets called on CPT pages and we want the ability
70
+ * to add screen options to any page.
71
+ */
72
+ function populate_page_panels() {
73
+ foreach($this->registered_panels as $id => $panel) {
74
+ $page = $panel['page'];
75
+
76
+ //Convert page hooks/slugs to screen IDs
77
+ $page = array_map(array($this, 'page_to_screen_id'), $page);
78
+ $page = array_unique($page);
79
+
80
+ //Store the panel ID in each relevant page's list
81
+ foreach($page as $page_id){
82
+ if ( !isset($this->page_panels[$page_id]) ){
83
+ $this->page_panels[$page_id] = array();
84
+ }
85
+ $this->page_panels[$page_id][] = $id;
86
  }
 
87
  }
 
 
88
  }
89
 
90
  /**
259
  if ( !isset($ws_screen_options_versions) ){
260
  $ws_screen_options_versions = array();
261
  }
262
+ $ws_screen_options_versions['1.3'] = 'wsScreenOptions13';
263
 
264
  endif;
265
 
281
  function add_screen_options_panel($id, $title, $callback, $page, $save_callback = null, $autosave = false){
282
  global $ws_screen_options_versions;
283
 
284
+ static $instance = null; /** @var wsScreenOptions13 $instance */
285
  if ( is_null($instance) ){
286
  //Instantiate the latest version of the wsScreenOptions class
287
  uksort($ws_screen_options_versions, 'version_compare');
290
  $instance->init();
291
  }
292
 
293
+ $instance->add_screen_options_panel($id, $title, $callback, $page, $save_callback, $autosave);
294
  }
295
 
296
  }
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.9\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
- "POT-Creation-Date: 2013-10-14 09:34:17+00:00\n"
6
- "PO-Revision-Date: 2013-10-20 10:01+0100\n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: \n"
9
  "Language: de_CH\n"
@@ -16,11 +16,11 @@ msgstr ""
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Textdomain-Support: yes\n"
18
  "X-Poedit-Basepath: .\n"
19
- "X-Generator: Poedit 1.5.7\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ broken-link-checker
23
- #: core/core.php:153 includes/admin/links-page-js.php:37
24
  msgid "Loading..."
25
  msgstr "Wird geladen ..."
26
 
@@ -69,76 +69,76 @@ msgid "Settings"
69
  msgstr "Einstellungen"
70
 
71
  # @ broken-link-checker
72
- #: core/core.php:538
73
  msgid "Settings saved."
74
  msgstr "Einstellungen gespeichert."
75
 
76
- #: core/core.php:544
77
  msgid "Thank you for your donation!"
78
  msgstr "Besten Dank für Ihre Spende!"
79
 
80
  # @ broken-link-checker
81
- #: core/core.php:552
82
  msgid "Complete site recheck started."
83
  msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
84
 
85
  # @ broken-link-checker
86
- #: core/core.php:561
87
  msgid "Details"
88
  msgstr "Details"
89
 
90
  # @ broken-link-checker
91
- #: core/core.php:575
92
  msgid "General"
93
  msgstr "Allgemein"
94
 
95
  # @ broken-link-checker
96
- #: core/core.php:576
97
  msgid "Look For Links In"
98
  msgstr "Suchen Sie nach Links in"
99
 
100
  # @ broken-link-checker
101
- #: core/core.php:577
102
  msgid "Which Links To Check"
103
  msgstr "Welche Links überprüfen"
104
 
105
  # @ broken-link-checker
106
- #: core/core.php:578
107
  msgid "Protocols & APIs"
108
  msgstr "Protokoll & Schnittstellen"
109
 
110
  # @ broken-link-checker
111
- #: core/core.php:579
112
  msgid "Advanced"
113
  msgstr "Erweitert"
114
 
115
  # @ broken-link-checker
116
- #: core/core.php:594
117
  msgid "Broken Link Checker Options"
118
  msgstr "Broken Link Checker Optionen"
119
 
120
  # @ broken-link-checker
121
- #: core/core.php:636 includes/admin/table-printer.php:200
122
  msgid "Status"
123
  msgstr "Status"
124
 
125
  # @ broken-link-checker
126
- #: core/core.php:638 includes/admin/options-page-js.php:56
127
  msgid "Show debug info"
128
  msgstr "Debug Infos anzeigen"
129
 
130
  # @ broken-link-checker
131
- #: core/core.php:666
132
  msgid "Check each link"
133
  msgstr "Überprüfe jeden Link"
134
 
135
  # @ broken-link-checker
136
- #: core/core.php:671
137
  msgid "Every %s hours"
138
  msgstr "Alle %s Stunden"
139
 
140
  # @ broken-link-checker
141
- #: core/core.php:680
142
  msgid ""
143
  "Existing links will be checked this often. New links will usually be checked "
144
  "ASAP."
@@ -147,29 +147,29 @@ msgstr ""
147
  "Links werden sofort geprüft."
148
 
149
  # @ broken-link-checker
150
- #: core/core.php:687
151
  msgid "E-mail notifications"
152
  msgstr "E-Mail Benachrichtigungen"
153
 
154
  # @ broken-link-checker
155
- #: core/core.php:693
156
  msgid "Send me e-mail notifications about newly detected broken links"
157
  msgstr ""
158
  "Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte "
159
  "Links erkannt werden"
160
 
161
  # @ broken-link-checker
162
- #: core/core.php:701
163
  msgid "Send authors e-mail notifications about broken links in their posts"
164
  msgstr ""
165
  "Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links "
166
  "erkannt werden"
167
 
168
- #: core/core.php:708
169
  msgid "Notification e-mail address"
170
  msgstr "Benachrichtigungs-E-Mail-Adresse"
171
 
172
- #: core/core.php:720
173
  msgid ""
174
  "Leave empty to use the e-mail address specified in Settings &rarr; General."
175
  msgstr ""
@@ -177,148 +177,148 @@ msgstr ""
177
  "verwenden."
178
 
179
  # @ broken-link-checker
180
- #: core/core.php:727
181
  msgid "Link tweaks"
182
  msgstr "Link Einstellungen"
183
 
184
  # @ broken-link-checker
185
- #: core/core.php:733
186
  msgid "Apply custom formatting to broken links"
187
  msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
188
 
189
  # @ broken-link-checker
190
- #: core/core.php:737 core/core.php:768
191
  msgid "Edit CSS"
192
  msgstr "Bearbeite CSS"
193
 
194
- #: core/core.php:753
195
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
196
- msgstr "Beispiel : Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
197
 
198
- #: core/core.php:756 core/core.php:787
199
  msgid "Click \"Save Changes\" to update example output."
200
  msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
201
 
202
  # @ broken-link-checker
203
- #: core/core.php:764
204
  msgid "Apply custom formatting to removed links"
205
  msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
206
 
207
- #: core/core.php:784
208
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
209
  msgstr "Beispiel: Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
210
 
211
  # @ broken-link-checker
212
- #: core/core.php:797
213
  msgid "Stop search engines from following broken links"
214
  msgstr "Suchmaschinen von folgenden fehlerhaften Links stoppen"
215
 
216
- #: core/core.php:805
217
  msgctxt "settings page"
218
  msgid "Suggestions"
219
  msgstr "Vorschläge"
220
 
221
  # @ broken-link-checker
222
- #: core/core.php:811
223
  msgid "Suggest alternatives to broken links"
224
  msgstr "Alternativen zu fehlerhaften Links vorschlagen"
225
 
226
  # @ broken-link-checker
227
- #: core/core.php:827
228
  msgid "Look for links in"
229
  msgstr "Suchen Sie nach Links in"
230
 
231
  # @ broken-link-checker
232
- #: core/core.php:838
233
  msgid "Post statuses"
234
  msgstr "Beitrag Status"
235
 
236
  # @ broken-link-checker
237
- #: core/core.php:871
238
  msgid "Link types"
239
  msgstr "Link Typen"
240
 
241
  # @ broken-link-checker
242
- #: core/core.php:877
243
  msgid "Error : All link parsers missing!"
244
  msgstr "Fehler: Alle Link-Parser fehlen!"
245
 
246
  # @ broken-link-checker
247
- #: core/core.php:884
248
  msgid "Exclusion list"
249
  msgstr "Ausschlussliste"
250
 
251
  # @ broken-link-checker
252
- #: core/core.php:885
253
  msgid ""
254
  "Don't check links where the URL contains any of these words (one per line) :"
255
  msgstr ""
256
  "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
257
 
258
  # @ broken-link-checker
259
- #: core/core.php:903
260
  msgid "Check links using"
261
  msgstr "Überprüfe Links"
262
 
263
  # @ broken-link-checker
264
- #: core/core.php:922 includes/links.php:857
265
  msgid "Timeout"
266
  msgstr "Zeitüberschreitung"
267
 
268
  # @ broken-link-checker
269
  # @ default
270
- #: core/core.php:928 core/core.php:997 core/core.php:2904
271
  msgid "%s seconds"
272
  msgstr "%s Sekunden"
273
 
274
  # @ broken-link-checker
275
- #: core/core.php:937
276
  msgid "Links that take longer than this to load will be marked as broken."
277
  msgstr ""
278
  "Links die länger zum laden brauchen als hier eingetragen, gelten als "
279
  "fehlerhaft."
280
 
281
  # @ broken-link-checker
282
- #: core/core.php:944
283
  msgid "Link monitor"
284
  msgstr "Link Monitor"
285
 
286
  # @ broken-link-checker
287
- #: core/core.php:952
288
  msgid "Run continuously while the Dashboard is open"
289
  msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
290
 
291
  # @ broken-link-checker
292
- #: core/core.php:960
293
  msgid "Run hourly in the background"
294
  msgstr "Stündlich im Hintergrund arbeiten"
295
 
296
- #: core/core.php:968
297
  msgid "Show the dashboard widget for"
298
  msgstr "Dashboard-Widget anzeigen für"
299
 
300
- #: core/core.php:973
301
  msgctxt "dashboard widget visibility"
302
  msgid "Administrator"
303
  msgstr "Administrator"
304
 
305
- #: core/core.php:974
306
  msgctxt "dashboard widget visibility"
307
  msgid "Editor and above"
308
  msgstr "Redakteur und höher"
309
 
310
- #: core/core.php:975
311
  msgctxt "dashboard widget visibility"
312
  msgid "Nobody (disables the widget)"
313
  msgstr "Niemand (deaktiviert das Widget)"
314
 
315
  # @ broken-link-checker
316
- #: core/core.php:991
317
  msgid "Max. execution time"
318
  msgstr "Max. Ausführungszeit"
319
 
320
  # @ broken-link-checker
321
- #: core/core.php:1008
322
  msgid ""
323
  "The plugin works by periodically launching a background job that parses your "
324
  "posts for links, checks the discovered URLs, and performs other time-"
@@ -331,16 +331,16 @@ msgstr ""
331
  "Instanzen laufen sollen, bevor sie gestoppt werden."
332
 
333
  # @ broken-link-checker
334
- #: core/core.php:1017
335
  msgid "Server load limit"
336
  msgstr "Server Belastungsgrenze"
337
 
338
- #: core/core.php:1032
339
  msgid "Current load : %s"
340
  msgstr "Aktuelle Belastung: %s"
341
 
342
  # @ broken-link-checker
343
- #: core/core.php:1037
344
  msgid ""
345
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
346
  "a> rises above this number. Leave this field blank to disable load limiting."
@@ -350,12 +350,12 @@ msgstr ""
350
  "Feld leer, um das Ladelimit zu deaktivieren."
351
 
352
  # @ broken-link-checker
353
- #: core/core.php:1046
354
  msgid "Not available"
355
  msgstr "Nicht verfügbar"
356
 
357
  # @ broken-link-checker
358
- #: core/core.php:1048
359
  msgid ""
360
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
361
  "code> is present and accessible."
@@ -363,18 +363,41 @@ msgstr ""
363
  "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</"
364
  "code> vorhanden und zugänglich ist."
365
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
366
  # @ broken-link-checker
367
- #: core/core.php:1056
368
  msgid "Forced recheck"
369
  msgstr "Erneute Überprüfung erzwingen"
370
 
371
  # @ broken-link-checker
372
- #: core/core.php:1059
373
  msgid "Re-check all pages"
374
  msgstr "Überprüfe alle Seiten noch einmal"
375
 
376
  # @ broken-link-checker
377
- #: core/core.php:1063
378
  msgid ""
379
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
380
  "database and recheck the entire site from scratch."
@@ -383,16 +406,16 @@ msgstr ""
383
  "Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
384
 
385
  # @ default
386
- #: core/core.php:1074
387
  msgid "Save Changes"
388
  msgstr "Änderungen speichern"
389
 
390
  # @ broken-link-checker
391
- #: core/core.php:1125
392
  msgid "Configure"
393
  msgstr "Konfigurieren"
394
 
395
- #: core/core.php:1207
396
  msgid ""
397
  "Enter the names of custom fields you want to check (one per line). If a "
398
  "field contains HTML code, prefix its name with <code>html:</code>. For "
@@ -404,84 +427,84 @@ msgstr ""
404
  "code>."
405
 
406
  # @ broken-link-checker
407
- #: core/core.php:1338 core/core.php:1421 core/core.php:1453
408
  msgid "Database error : %s"
409
  msgstr "Datenbank Fehler: %s"
410
 
411
  # @ broken-link-checker
412
- #: core/core.php:1403
413
  msgid "You must enter a filter name!"
414
  msgstr "Sie müssen einen Filter Namen eingeben!"
415
 
416
  # @ broken-link-checker
417
- #: core/core.php:1407
418
  msgid "Invalid search query."
419
  msgstr "Ungültige Suchanfrage."
420
 
421
  # @ broken-link-checker
422
- #: core/core.php:1416
423
  msgid "Filter \"%s\" created"
424
  msgstr "Filter \"%s\" erstellt"
425
 
426
  # @ broken-link-checker
427
- #: core/core.php:1443
428
  msgid "Filter ID not specified."
429
  msgstr "Link ID nicht spezifiziert."
430
 
431
  # @ broken-link-checker
432
- #: core/core.php:1450
433
  msgid "Filter deleted"
434
  msgstr "Filter gelöscht"
435
 
436
  # @ broken-link-checker
437
- #: core/core.php:1497
438
  msgid "Replaced %d redirect with a direct link"
439
  msgid_plural "Replaced %d redirects with direct links"
440
  msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
441
  msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
442
 
443
  # @ broken-link-checker
444
- #: core/core.php:1508
445
  msgid "Failed to fix %d redirect"
446
  msgid_plural "Failed to fix %d redirects"
447
  msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
448
  msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
449
 
450
  # @ broken-link-checker
451
- #: core/core.php:1519
452
  msgid "None of the selected links are redirects!"
453
  msgstr "Keiner der ausgewählten Links sind Umleitungen!"
454
 
455
  # @ broken-link-checker
456
- #: core/core.php:1597
457
  msgid "%d link updated."
458
  msgid_plural "%d links updated."
459
  msgstr[0] "Link %d aktualisiert."
460
  msgstr[1] "Links %d aktualisiert."
461
 
462
  # @ broken-link-checker
463
- #: core/core.php:1608
464
  msgid "Failed to update %d link."
465
  msgid_plural "Failed to update %d links."
466
  msgstr[0] "Link %d konnte nicht aktualisiert werden."
467
  msgstr[1] "Links %d konnten nicht aktualisiert werden."
468
 
469
  # @ broken-link-checker
470
- #: core/core.php:1697
471
  msgid "%d link removed"
472
  msgid_plural "%d links removed"
473
  msgstr[0] "%d Link entfernt"
474
  msgstr[1] "%d Links entfernt"
475
 
476
  # @ broken-link-checker
477
- #: core/core.php:1708
478
  msgid "Failed to remove %d link"
479
  msgid_plural "Failed to remove %d links"
480
  msgstr[0] "Link %d konnte nicht entfernt werden"
481
  msgstr[1] "Links %d konnten nicht entfernt werden"
482
 
483
  # @ default
484
- #: core/core.php:1817
485
  msgid ""
486
  "%d item was skipped because it can't be moved to the Trash. You need to "
487
  "delete it manually."
@@ -496,108 +519,108 @@ msgstr[1] ""
496
  "verschoben werden können. Löschen Sie diese manuell."
497
 
498
  # @ broken-link-checker
499
- #: core/core.php:1839
500
  msgid "Didn't find anything to delete!"
501
  msgstr "Nichts gefunden um zu löschen!"
502
 
503
  # @ broken-link-checker
504
- #: core/core.php:1867
505
  msgid "%d link scheduled for rechecking"
506
  msgid_plural "%d links scheduled for rechecking"
507
  msgstr[0] "%d Link zur erneuten Überprüfung geplant"
508
  msgstr[1] "%d Links zur erneuten Überprüfung geplant"
509
 
510
  # @ broken-link-checker
511
- #: core/core.php:1913 core/core.php:2522
512
  msgid "This link was manually marked as working by the user."
513
  msgstr ""
514
  "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
515
 
516
  # @ broken-link-checker
517
- #: core/core.php:1920
518
  msgid "Couldn't modify link %d"
519
  msgstr "Link %d konnte nicht geändert werden"
520
 
521
  # @ broken-link-checker
522
- #: core/core.php:1930
523
  msgid "%d link marked as not broken"
524
  msgid_plural "%d links marked as not broken"
525
  msgstr[0] "%d Link als nicht fehlerhaft markiert"
526
  msgstr[1] "%d Links als nicht fehlerhaft markiert"
527
 
528
  # @ broken-link-checker
529
- #: core/core.php:1970
530
  msgid "Table columns"
531
  msgstr "Tabellenspalten"
532
 
533
  # @ default
534
- #: core/core.php:1989
535
  msgid "Show on screen"
536
  msgstr "Auf dem Bildschirm anzeigen"
537
 
538
  # @ broken-link-checker
539
- #: core/core.php:1996
540
  msgid "links"
541
  msgstr "Links"
542
 
543
  # @ default
544
  # @ broken-link-checker
545
- #: core/core.php:1997 includes/admin/table-printer.php:168
546
  msgid "Apply"
547
  msgstr "Anwenden"
548
 
549
  # @ broken-link-checker
550
- #: core/core.php:2001
551
  msgid "Misc"
552
  msgstr "Sonstige"
553
 
554
  # @ broken-link-checker
555
- #: core/core.php:2016
556
  msgid "Highlight links broken for at least %s days"
557
  msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
558
 
559
  # @ broken-link-checker
560
- #: core/core.php:2025
561
  msgid "Color-code status codes"
562
  msgstr "Farb-Code Status Codes"
563
 
564
  # @ broken-link-checker
565
- #: core/core.php:2042 core/core.php:2507 core/core.php:2547 core/core.php:2580
566
- #: core/core.php:2667
567
  msgid "You're not allowed to do that!"
568
  msgstr "Sie haben nicht die Erlaubnis das zu tun!"
569
 
570
  # @ broken-link-checker
571
- #: core/core.php:2377
572
  msgid "View broken links"
573
  msgstr "Fehlerhafte Links anschauen"
574
 
575
  # @ broken-link-checker
576
- #: core/core.php:2378
577
  msgid "Found %d broken link"
578
  msgid_plural "Found %d broken links"
579
  msgstr[0] "%d fehlerhafte Links gefunden"
580
  msgstr[1] "%d fehlerhafte Links gefunden"
581
 
582
  # @ broken-link-checker
583
- #: core/core.php:2384
584
  msgid "No broken links found."
585
  msgstr "Keine fehlerhaften Links gefunden."
586
 
587
  # @ broken-link-checker
588
- #: core/core.php:2391
589
  msgid "%d URL in the work queue"
590
  msgid_plural "%d URLs in the work queue"
591
  msgstr[0] "%d URL in der Warteschlange"
592
  msgstr[1] "%d URLs in der Warteschlange"
593
 
594
  # @ broken-link-checker
595
- #: core/core.php:2394
596
  msgid "No URLs in the work queue."
597
  msgstr "Keine URLs in der Warteschlange."
598
 
599
  # @ broken-link-checker
600
- #: core/core.php:2400
601
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
602
  msgid "%d unique URL"
603
  msgid_plural "%d unique URLs"
@@ -605,7 +628,7 @@ msgstr[0] "%d eindeutige URL"
605
  msgstr[1] "%d eindeutige URLs"
606
 
607
  # @ broken-link-checker
608
- #: core/core.php:2404
609
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
610
  msgid "%d link"
611
  msgid_plural "%d links"
@@ -613,100 +636,99 @@ msgstr[0] "%d Link"
613
  msgstr[1] "%d Links"
614
 
615
  # @ broken-link-checker
616
- #: core/core.php:2410
617
  msgid "Detected %1$s in %2$s and still searching..."
618
  msgstr "Endeckt %1$s in %2$s und suche immer noch ..."
619
 
620
  # @ broken-link-checker
621
- #: core/core.php:2416
622
  msgid "Detected %1$s in %2$s."
623
  msgstr "Endeckt %1$s in %2$s."
624
 
625
  # @ broken-link-checker
626
- #: core/core.php:2423
627
  msgid "Searching your blog for links..."
628
  msgstr "Durchsucht Ihr Blog nach Links ..."
629
 
630
  # @ broken-link-checker
631
- #: core/core.php:2425
632
  msgid "No links detected."
633
  msgstr "Keine Links gefunden."
634
 
635
  # @ broken-link-checker
636
- #: core/core.php:2451
637
  msgctxt "current load"
638
  msgid "Unknown"
639
  msgstr "Unbekannt"
640
 
641
  # @ broken-link-checker
642
- #: core/core.php:2515 core/core.php:2555 core/core.php:2595 core/core.php:2677
643
  msgid "Oops, I can't find the link %d"
644
  msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
645
 
646
  # @ broken-link-checker
647
- #: core/core.php:2528 core/core.php:2565
648
  msgid "Oops, couldn't modify the link!"
649
  msgstr "Hoppla, der Link konnte nicht geändert werden!"
650
 
651
  # @ broken-link-checker
652
- #: core/core.php:2531 core/core.php:2568 core/core.php:2703
653
  msgid "Error : link_id not specified"
654
  msgstr "Fehler: Link ID nicht spezifiziert"
655
 
656
  # @ broken-link-checker
657
- #: core/core.php:2586
658
  msgid "Error : link_id or new_url not specified"
659
  msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
660
 
661
  # @ broken-link-checker
662
- #: core/core.php:2604
663
  msgid "Oops, the new URL is invalid!"
664
  msgstr "Hoppla, die neue URL funktioniert nicht!"
665
 
666
  # @ broken-link-checker
667
- #: core/core.php:2619
668
  msgid "An unexpected error occurred!"
669
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
670
 
671
  # @ broken-link-checker
672
- #: core/core.php:2686
673
  msgid "An unexpected error occured!"
674
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
675
 
676
  # @ broken-link-checker
677
- #: core/core.php:2712
678
  msgid "You don't have sufficient privileges to access this information!"
679
  msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
680
 
681
  # @ broken-link-checker
682
- #: core/core.php:2725
683
  msgid "Error : link ID not specified"
684
  msgstr "Fehler: Link ID nicht spezifiziert"
685
 
686
  # @ broken-link-checker
687
- #: core/core.php:2739
688
  msgid "Failed to load link details (%s)"
689
  msgstr "Laden der Link Details (%s) schlug fehl"
690
 
691
  # @ broken-link-checker
692
- #. #-#-#-#-# plugin.pot (Broken Link Checker 1.8.3) #-#-#-#-#
693
  #. Plugin Name of the plugin/theme
694
- #: core/core.php:2793
695
  msgid "Broken Link Checker"
696
  msgstr "Broken Link Checker"
697
 
698
  # @ broken-link-checker
699
- #: core/core.php:2813
700
  msgid "PHP version"
701
  msgstr "PHP Version"
702
 
703
  # @ broken-link-checker
704
- #: core/core.php:2819
705
  msgid "MySQL version"
706
  msgstr "MySQL Version"
707
 
708
  # @ broken-link-checker
709
- #: core/core.php:2832
710
  msgid ""
711
  "You have an old version of CURL. Redirect detection may not work properly."
712
  msgstr ""
@@ -714,58 +736,58 @@ msgstr ""
714
  "funktioniert eventuell nicht."
715
 
716
  # @ broken-link-checker
717
- #: core/core.php:2844 core/core.php:2860 core/core.php:2865
718
  msgid "Not installed"
719
  msgstr "Nicht installiert"
720
 
721
  # @ broken-link-checker
722
- #: core/core.php:2847
723
  msgid "CURL version"
724
  msgstr "CURL Version"
725
 
726
  # @ broken-link-checker
727
- #: core/core.php:2853
728
  msgid "Installed"
729
  msgstr "Installiert"
730
 
731
  # @ broken-link-checker
732
- #: core/core.php:2866
733
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
734
  msgstr ""
735
  "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin "
736
  "funktioniert!"
737
 
738
  # @ broken-link-checker
739
- #: core/core.php:2877
740
  msgid "On"
741
  msgstr "An"
742
 
743
  # @ broken-link-checker
744
- #: core/core.php:2878
745
  msgid "Redirects may be detected as broken links when safe_mode is on."
746
  msgstr ""
747
  "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode "
748
  "aktiviert ist."
749
 
750
  # @ broken-link-checker
751
- #: core/core.php:2883 core/core.php:2897
752
  msgid "Off"
753
  msgstr "Aus"
754
 
755
  # @ broken-link-checker
756
- #: core/core.php:2891
757
  msgid "On ( %s )"
758
  msgstr "An (%s)"
759
 
760
  # @ broken-link-checker
761
- #: core/core.php:2892
762
  msgid "Redirects may be detected as broken links when open_basedir is on."
763
  msgstr ""
764
  "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls "
765
  "open_basedir aktiviert ist."
766
 
767
  # @ broken-link-checker
768
- #: core/core.php:2921
769
  msgid ""
770
  "If this value is zero even after several page reloads you have probably "
771
  "encountered a bug."
@@ -774,12 +796,12 @@ msgstr ""
774
  "ein Fehler aufgetreten."
775
 
776
  # @ broken-link-checker
777
- #: core/core.php:3044 core/core.php:3159
778
  msgid "[%s] Broken links detected"
779
  msgstr "[%s] Fehlerhafte Links entdeckt"
780
 
781
  # @ broken-link-checker
782
- #: core/core.php:3049
783
  msgid "Broken Link Checker has detected %d new broken link on your site."
784
  msgid_plural ""
785
  "Broken Link Checker has detected %d new broken links on your site."
@@ -789,39 +811,39 @@ msgstr[1] ""
789
  "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
790
 
791
  # @ broken-link-checker
792
- #: core/core.php:3080
793
  msgid "Here's a list of the first %d broken links:"
794
  msgid_plural "Here's a list of the first %d broken links:"
795
  msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
796
  msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
797
 
798
  # @ broken-link-checker
799
- #: core/core.php:3089
800
  msgid "Here's a list of the new broken links: "
801
  msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
802
 
803
  # @ broken-link-checker
804
- #: core/core.php:3098
805
  msgid "Link text : %s"
806
  msgstr "Linktext: %s"
807
 
808
  # @ broken-link-checker
809
- #: core/core.php:3099
810
  msgid "Link URL : <a href=\"%s\">%s</a>"
811
  msgstr "Link URL: <a href=\"%s\">%s</a>"
812
 
813
  # @ broken-link-checker
814
- #: core/core.php:3100
815
  msgid "Source : %s"
816
  msgstr "Quelle: %s"
817
 
818
  # @ brokenk-link-checker
819
- #: core/core.php:3114
820
  msgid "You can see all broken links here:"
821
  msgstr "Hier sehen Sie alle fehlerhaften Links:"
822
 
823
  # @ broken-link-checker
824
- #: core/core.php:3164
825
  msgid "Broken Link Checker has detected %d new broken link in your posts."
826
  msgid_plural ""
827
  "Broken Link Checker has detected %d new broken links in your posts."
@@ -830,17 +852,17 @@ msgstr[0] ""
830
  msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
831
 
832
  # @ default
833
- #: core/init.php:242
834
  msgid "Once Weekly"
835
  msgstr "Einmal wöchentlich"
836
 
837
  # @ default
838
- #: core/init.php:248
839
  msgid "Twice a Month"
840
  msgstr "Zweimal im Monat"
841
 
842
  # @ broken-link-checker
843
- #: core/init.php:324
844
  msgid ""
845
  "Broken Link Checker installation failed. Try deactivating and then "
846
  "reactivating the plugin."
@@ -848,55 +870,63 @@ msgstr ""
848
  "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin "
849
  "und aktivieren es anschliessend wieder."
850
 
 
 
 
 
 
 
 
 
851
  # @ broken-link-checker
852
  #: includes/admin/db-upgrade.php:95
853
  msgid "Failed to delete old DB tables. Database error : %s"
854
  msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
855
 
856
  # @ broken-link-checker
857
- #: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:517
858
  msgid "Wait..."
859
  msgstr "Warte ..."
860
 
861
  # @ broken-link-checker
862
- #: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:658
863
  msgid "Not broken"
864
  msgstr "Nicht fehlerhaft"
865
 
866
- #: includes/admin/links-page-js.php:235
867
  msgctxt "link text"
868
  msgid "(None)"
869
  msgstr "(Keine)"
870
 
871
- #: includes/admin/links-page-js.php:236
872
  msgctxt "link text"
873
  msgid "(Multiple links)"
874
  msgstr "(Mehrere Links)"
875
 
876
  # @ broken-link-checker
877
- #: includes/admin/links-page-js.php:294
878
  msgctxt "link suggestions"
879
  msgid "Searching..."
880
  msgstr "Suche ..."
881
 
882
  # @ broken-link-checker
883
- #: includes/admin/links-page-js.php:295
884
  msgctxt "link suggestions"
885
  msgid "No suggestions available."
886
  msgstr "Kein Vorschlag verfügbar."
887
 
888
- #: includes/admin/links-page-js.php:296
889
  msgctxt "link suggestions"
890
  msgid "Archived page from %s (via the Wayback Machine)"
891
  msgstr "Archivierte Seite von %s (via Wayback Machine)"
892
 
893
  # @ broken-link-checker
894
- #: includes/admin/links-page-js.php:379
895
  msgid "%d instances of the link were successfully modified."
896
  msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
897
 
898
  # @ broken-link-checker
899
- #: includes/admin/links-page-js.php:385
900
  msgid ""
901
  "However, %d instances couldn't be edited and still point to the old URL."
902
  msgstr ""
@@ -904,52 +934,52 @@ msgstr ""
904
  "noch auf die alte URL."
905
 
906
  # @ broken-link-checker
907
- #: includes/admin/links-page-js.php:391
908
  msgid "The link could not be modified."
909
  msgstr "Der Link konnte nicht geändert werden."
910
 
911
  # @ broken-link-checker
912
- #: includes/admin/links-page-js.php:394
913
  msgid "The following error(s) occurred :"
914
  msgstr "Folgende Fehler sind aufgetreten:"
915
 
916
- #: includes/admin/links-page-js.php:480
917
  msgid "Error: Link URL must not be empty."
918
  msgstr "Fehler: Die Link URL darf nicht leer sein."
919
 
920
  # @ broken-link-checker
921
- #: includes/admin/links-page-js.php:555
922
  msgid "%d instances of the link were successfully unlinked."
923
  msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
924
 
925
  # @ broken-link-checker
926
- #: includes/admin/links-page-js.php:561
927
  msgid "However, %d instances couldn't be removed."
928
  msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
929
 
930
  # @ broken-link-checker
931
- #: includes/admin/links-page-js.php:566
932
  msgid "The plugin failed to remove the link."
933
  msgstr "Das Plugin konnte den Link nicht entfernen."
934
 
935
  # @ broken-link-checker
936
- #: includes/admin/links-page-js.php:569
937
  msgid "The following error(s) occured :"
938
  msgstr "Folgende Fehler sind aufgetreten:"
939
 
940
  # @ broken-link-checker
941
- #: includes/admin/links-page-js.php:577 includes/admin/table-printer.php:276
942
- #: includes/admin/table-printer.php:652
943
  msgid "Unlink"
944
  msgstr "Link aufheben"
945
 
946
  # @ broken-link-checker
947
- #: includes/admin/links-page-js.php:621
948
  msgid "Enter a name for the new custom filter"
949
  msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
950
 
951
  # @ broken-link-checker
952
- #: includes/admin/links-page-js.php:632
953
  msgid ""
954
  "You are about to delete the current filter.\n"
955
  "'Cancel' to stop, 'OK' to delete"
@@ -958,7 +988,7 @@ msgstr ""
958
  " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
959
 
960
  # @ broken-link-checker
961
- #: includes/admin/links-page-js.php:652
962
  msgid ""
963
  "Are you sure you want to delete all posts, bookmarks or other items that "
964
  "contain any of the selected links? This action can't be undone.\n"
@@ -970,7 +1000,7 @@ msgstr ""
970
  " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
971
 
972
  # @ broken-link-checker
973
- #: includes/admin/links-page-js.php:662
974
  msgid ""
975
  "Are you sure you want to remove the selected links? This action can't be "
976
  "undone.\n"
@@ -980,11 +1010,11 @@ msgstr ""
980
  "Aktion kann nicht rückgängig gemacht werden.\n"
981
  " 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
982
 
983
- #: includes/admin/links-page-js.php:771
984
  msgid "Enter a search string first."
985
  msgstr "Geben Sie zuerst einen Suchbegriff ein."
986
 
987
- #: includes/admin/links-page-js.php:778
988
  msgid "Select one or more links to edit."
989
  msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
990
 
@@ -1014,12 +1044,12 @@ msgid "Link text"
1014
  msgstr "Linktext"
1015
 
1016
  # @ broken-link-checker
1017
- #: includes/admin/search-form.php:45 includes/admin/table-printer.php:205
1018
  msgid "URL"
1019
  msgstr "URL"
1020
 
1021
  # @ broken-link-checker
1022
- #: includes/admin/search-form.php:48 includes/admin/table-printer.php:522
1023
  msgid "HTTP code"
1024
  msgstr "HTTP Code"
1025
 
@@ -1049,8 +1079,8 @@ msgid "Search Links"
1049
  msgstr "Suche Links"
1050
 
1051
  # @ broken-link-checker
1052
- #: includes/admin/search-form.php:113 includes/admin/table-printer.php:352
1053
- #: includes/admin/table-printer.php:682 includes/admin/table-printer.php:807
1054
  msgid "Cancel"
1055
  msgstr "Abbrechen"
1056
 
@@ -1075,323 +1105,323 @@ msgid "Return to WordPress Dashboard"
1075
  msgstr "Zurück zum Wordpress Dashboard"
1076
 
1077
  # @ broken-link-checker
1078
- #: includes/admin/table-printer.php:182
1079
  msgid "Compact View"
1080
  msgstr "Kompaktansicht"
1081
 
1082
  # @ broken-link-checker
1083
- #: includes/admin/table-printer.php:183
1084
  msgid "Detailed View"
1085
  msgstr "Detailansicht"
1086
 
1087
  # @ broken-link-checker
1088
- #: includes/admin/table-printer.php:212
1089
  msgid "Source"
1090
  msgstr "Quelle"
1091
 
1092
  # @ broken-link-checker
1093
- #: includes/admin/table-printer.php:218
1094
  msgid "Link Text"
1095
  msgstr "Linktext"
1096
 
1097
  # @ broken-link-checker
1098
- #: includes/admin/table-printer.php:223
1099
  msgid "Redirect URL"
1100
  msgstr "URL umleiten"
1101
 
1102
  # @ broken-link-checker
1103
- #: includes/admin/table-printer.php:271
1104
  msgid "Bulk Actions"
1105
  msgstr "Massenänderung"
1106
 
1107
  # @ broken-link-checker
1108
- #: includes/admin/table-printer.php:272 includes/admin/table-printer.php:649
1109
  msgid "Edit URL"
1110
  msgstr "Bearbeite URL"
1111
 
1112
  # @ broken-link-checker
1113
- #: includes/admin/table-printer.php:273
1114
  msgid "Recheck"
1115
  msgstr "Erneut überprüfen"
1116
 
1117
  # @ broken-link-checker
1118
- #: includes/admin/table-printer.php:274
1119
  msgid "Fix redirects"
1120
  msgstr "Feste Umleitungen"
1121
 
1122
  # @ broken-link-checker
1123
- #: includes/admin/table-printer.php:275
1124
  msgid "Mark as not broken"
1125
  msgstr "Als nicht fehlerhaft markieren"
1126
 
1127
  # @ broken-link-checker
1128
- #: includes/admin/table-printer.php:279
1129
  msgid "Move sources to Trash"
1130
  msgstr "Verschiebe Quelle in den Papierkorb"
1131
 
1132
  # @ broken-link-checker
1133
- #: includes/admin/table-printer.php:281
1134
  msgid "Delete sources"
1135
  msgstr "Quellen löschen"
1136
 
1137
  # @ default
1138
- #: includes/admin/table-printer.php:296
1139
  msgid "&laquo;"
1140
  msgstr "&laquo;"
1141
 
1142
  # @ default
1143
- #: includes/admin/table-printer.php:297
1144
  msgid "&raquo;"
1145
  msgstr "&raquo;"
1146
 
1147
  # @ broken-link-checker
1148
- #: includes/admin/table-printer.php:305
1149
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1150
  msgstr "Anzeigen %s&#8211;%s von <span class=\"current-link-count\">%s</span>"
1151
 
1152
  # @ broken-link-checker
1153
- #: includes/admin/table-printer.php:328
1154
  msgid "Bulk Edit URLs"
1155
  msgstr "Mehrere URLs bearbeiten"
1156
 
1157
- #: includes/admin/table-printer.php:330
1158
  msgid "Find"
1159
  msgstr "Finden"
1160
 
1161
- #: includes/admin/table-printer.php:334
1162
  msgid "Replace with"
1163
  msgstr "Ersetzen mit"
1164
 
1165
  # @ broken-link-checker
1166
- #: includes/admin/table-printer.php:342
1167
  msgid "Case sensitive"
1168
  msgstr "Gross- und Kleinschreibung"
1169
 
1170
- #: includes/admin/table-printer.php:346
1171
  msgid "Regular expression"
1172
  msgstr "Regulärer Ausdruck"
1173
 
1174
  # @ broken-link-checker
1175
- #: includes/admin/table-printer.php:354 includes/admin/table-printer.php:808
1176
  msgid "Update"
1177
  msgstr "Aktualisieren"
1178
 
1179
  # @ broken-link-checker
1180
- #: includes/admin/table-printer.php:507
1181
  msgid "Post published on"
1182
  msgstr "Beitrag publiziert am"
1183
 
1184
  # @ broken-link-checker
1185
- #: includes/admin/table-printer.php:512
1186
  msgid "Link last checked"
1187
  msgstr "Link zuletzt geprüft"
1188
 
1189
  # @ broken-link-checker
1190
- #: includes/admin/table-printer.php:516
1191
  msgid "Never"
1192
  msgstr "Nie"
1193
 
1194
  # @ broken-link-checker
1195
- #: includes/admin/table-printer.php:527
1196
  msgid "Response time"
1197
  msgstr "Reaktionszeit"
1198
 
1199
  # @ broken-link-checker
1200
- #: includes/admin/table-printer.php:529
1201
  msgid "%2.3f seconds"
1202
  msgstr "%2.3f Sekunden"
1203
 
1204
  # @ broken-link-checker
1205
- #: includes/admin/table-printer.php:532
1206
  msgid "Final URL"
1207
  msgstr "Endgültige URL"
1208
 
1209
  # @ broken-link-checker
1210
- #: includes/admin/table-printer.php:537
1211
  msgid "Redirect count"
1212
  msgstr "Weiterleitung Anzahl"
1213
 
1214
  # @ broken-link-checker
1215
- #: includes/admin/table-printer.php:542
1216
  msgid "Instance count"
1217
  msgstr "Instanz Anzahl"
1218
 
1219
  # @ broken-link-checker
1220
- #: includes/admin/table-printer.php:551
1221
  msgid "This link has failed %d time."
1222
  msgid_plural "This link has failed %d times."
1223
  msgstr[0] "Dieser Link schlug %d mal fehl."
1224
  msgstr[1] "Dieser Link schlug %d mal fehl."
1225
 
1226
  # @ broken-link-checker
1227
- #: includes/admin/table-printer.php:559
1228
  msgid "This link has been broken for %s."
1229
  msgstr "Dieser Links ist fehlerhaft seit %s."
1230
 
1231
  # @ broken-link-checker
1232
- #: includes/admin/table-printer.php:570
1233
  msgid "Log"
1234
  msgstr "Log"
1235
 
1236
  # @ broken-link-checker
1237
- #: includes/admin/table-printer.php:595
1238
  msgid "Show more info about this link"
1239
  msgstr "Mehr Informationen über diesen Link anzeigen"
1240
 
1241
  # @ broken-link-checker
1242
- #: includes/admin/table-printer.php:613
1243
  msgctxt "checked how long ago"
1244
  msgid "Checked"
1245
  msgstr "Geprüft"
1246
 
1247
  # @ broken-link-checker
1248
- #: includes/admin/table-printer.php:629
1249
  msgid "Broken for"
1250
  msgstr "Fehlerhaft für"
1251
 
1252
  # @ default
1253
- #: includes/admin/table-printer.php:649
1254
  msgid "Edit this link"
1255
  msgstr "Diesen Link bearbeiten"
1256
 
1257
  # @ broken-link-checker
1258
- #: includes/admin/table-printer.php:651
1259
  msgid "Remove this link from all posts"
1260
  msgstr "Löschen Sie diesen Link von allen Beiträgen"
1261
 
1262
  # @ broken-link-checker
1263
- #: includes/admin/table-printer.php:657
1264
  msgid "Remove this link from the list of broken links and mark it as valid"
1265
  msgstr ""
1266
  "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als "
1267
  "gültig"
1268
 
1269
- #: includes/admin/table-printer.php:665
1270
  msgid "Hide this link and do not report it again unless its status changes"
1271
  msgstr ""
1272
  "Verstecken Sie diesen Link und melden ihn nicht wieder, auch wenn sein "
1273
  "Status ändert"
1274
 
1275
- #: includes/admin/table-printer.php:666
1276
  msgid "Dismiss"
1277
  msgstr "Ausblenden"
1278
 
1279
- #: includes/admin/table-printer.php:671
1280
  msgid "Undismiss this link"
1281
  msgstr "Link wieder einblenden"
1282
 
1283
- #: includes/admin/table-printer.php:672
1284
  msgid "Undismiss"
1285
  msgstr "Einblenden"
1286
 
1287
  # @ broken-link-checker
1288
- #: includes/admin/table-printer.php:683
1289
  msgid "Update URL"
1290
  msgstr "Aktualisiere URL"
1291
 
1292
  # @ broken-link-checker
1293
- #: includes/admin/table-printer.php:710
1294
  msgid "[An orphaned link! This is a bug.]"
1295
  msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
1296
 
1297
  # @ broken-link-checker
1298
- #: includes/admin/table-printer.php:787
1299
  msgctxt "inline editor title"
1300
  msgid "Edit Link"
1301
  msgstr "Link bearbeiten"
1302
 
1303
  # @ broken-link-checker
1304
- #: includes/admin/table-printer.php:790
1305
  msgctxt "inline link editor"
1306
  msgid "Text"
1307
  msgstr "Text"
1308
 
1309
  # @ broken-link-checker
1310
- #: includes/admin/table-printer.php:795
1311
  msgctxt "inline link editor"
1312
  msgid "URL"
1313
  msgstr "URL"
1314
 
1315
- #: includes/admin/table-printer.php:800
1316
  msgctxt "inline link editor"
1317
  msgid "Suggestions"
1318
  msgstr "Vorschläge"
1319
 
1320
- #: includes/admin/table-printer.php:820
1321
  msgid "Use this URL"
1322
  msgstr "URL verwenden"
1323
 
1324
  # @ default
1325
- #: includes/any-post.php:397 modules/containers/blogroll.php:46
1326
  #: modules/containers/comment.php:153 modules/containers/custom_field.php:207
1327
  msgid "Edit"
1328
  msgstr "Bearbeiten"
1329
 
1330
  # @ default
1331
- #: includes/any-post.php:405 modules/containers/custom_field.php:213
1332
  msgid "Move this item to the Trash"
1333
  msgstr "Element in den Papierkorb verschieben"
1334
 
1335
  # @ default
1336
- #: includes/any-post.php:407 modules/containers/custom_field.php:215
1337
  msgid "Trash"
1338
  msgstr "Papierkorb"
1339
 
1340
  # @ default
1341
- #: includes/any-post.php:412 modules/containers/custom_field.php:220
1342
  msgid "Delete this item permanently"
1343
  msgstr "Element endgültig löschen"
1344
 
1345
  # @ default
1346
- #: includes/any-post.php:414 modules/containers/blogroll.php:47
1347
  #: modules/containers/custom_field.php:222
1348
  msgid "Delete"
1349
  msgstr "Löschen"
1350
 
1351
  # @ default
1352
- #: includes/any-post.php:427
1353
  msgid "Preview &#8220;%s&#8221;"
1354
  msgstr "Vorschau &#8220;%s&#8221;"
1355
 
1356
  # @ default
1357
- #: includes/any-post.php:428
1358
  msgid "Preview"
1359
  msgstr "Vorschau"
1360
 
1361
  # @ default
1362
- #: includes/any-post.php:435
1363
  msgid "View &#8220;%s&#8221;"
1364
  msgstr "Ansehen &#8220;%s&#8221;"
1365
 
1366
  # @ default
1367
- #: includes/any-post.php:436 modules/containers/comment.php:166
1368
  #: modules/containers/custom_field.php:227
1369
  msgid "View"
1370
  msgstr "Ansehen"
1371
 
1372
  # @ default
1373
- #: includes/any-post.php:455 modules/containers/custom_field.php:207
1374
  msgid "Edit this item"
1375
  msgstr "Bearbeiten Sie dieses Element"
1376
 
1377
  # @ broken-link-checker
1378
- #: includes/any-post.php:519 modules/containers/blogroll.php:83
1379
  #: modules/containers/comment.php:43
1380
  msgid "Nothing to update"
1381
  msgstr "Nichts zu aktualisieren"
1382
 
1383
  # @ broken-link-checker
1384
- #: includes/any-post.php:529
1385
  msgid "Updating post %d failed"
1386
  msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
1387
 
1388
  # @ broken-link-checker
1389
- #: includes/any-post.php:566 modules/containers/custom_field.php:294
1390
  msgid "Failed to delete post \"%s\" (%d)"
1391
  msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
1392
 
1393
  # @ broken-link-checker
1394
- #: includes/any-post.php:585 modules/containers/custom_field.php:313
1395
  msgid ""
1396
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
1397
  "disabled"
@@ -1400,47 +1430,47 @@ msgstr ""
1400
  "diese Funktion deaktiviert ist"
1401
 
1402
  # @ broken-link-checker
1403
- #: includes/any-post.php:605 modules/containers/custom_field.php:332
1404
  msgid "Failed to move post \"%s\" (%d) to the trash"
1405
  msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
1406
 
1407
  # @ broken-link-checker
1408
- #: includes/any-post.php:713
1409
  msgid "%d post deleted."
1410
  msgid_plural "%d posts deleted."
1411
  msgstr[0] "%d Artikel gelöscht."
1412
  msgstr[1] "%d Artikel gelöscht."
1413
 
1414
  # @ broken-link-checker
1415
- #: includes/any-post.php:715
1416
  msgid "%d page deleted."
1417
  msgid_plural "%d pages deleted."
1418
  msgstr[0] "%d Seite gelöscht."
1419
  msgstr[1] "%d Seiten gelöscht."
1420
 
1421
  # @ broken-link-checker
1422
- #: includes/any-post.php:717
1423
  msgid "%d \"%s\" deleted."
1424
  msgid_plural "%d \"%s\" deleted."
1425
  msgstr[0] "%d \"%s\" gelöscht."
1426
  msgstr[1] "%d \"%s\" gelöscht."
1427
 
1428
  # @ broken-link-checker
1429
- #: includes/any-post.php:736
1430
  msgid "%d post moved to the Trash."
1431
  msgid_plural "%d posts moved to the Trash."
1432
  msgstr[0] "%d Artikel in den Papierkorb verschoben."
1433
  msgstr[1] "%d Artikel in den Papierkorb verschoben."
1434
 
1435
  # @ broken-link-checker
1436
- #: includes/any-post.php:738
1437
  msgid "%d page moved to the Trash."
1438
  msgid_plural "%d pages moved to the Trash."
1439
  msgstr[0] "%d Seite in den Papierkorb verschoben."
1440
  msgstr[1] "%d Seiten in den Papierkorb verschoben."
1441
 
1442
  # @ broken-link-checker
1443
- #: includes/any-post.php:740
1444
  msgid "%d \"%s\" moved to the Trash."
1445
  msgid_plural "%d \"%s\" moved to the Trash."
1446
  msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
@@ -1664,32 +1694,32 @@ msgid "No links found for your query"
1664
  msgstr "Keine Links für Deine Anfrage gefunden"
1665
 
1666
  # @ broken-link-checker
1667
- #: includes/links.php:218
1668
  msgid "The plugin script was terminated while trying to check the link."
1669
  msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
1670
 
1671
  # @ broken-link-checker
1672
- #: includes/links.php:264
1673
  msgid "The plugin doesn't know how to check this type of link."
1674
  msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
1675
 
1676
  # @ broken-link-checker
1677
- #: includes/links.php:357
1678
  msgid "Link is valid."
1679
  msgstr "Link ist valide."
1680
 
1681
  # @ broken-link-checker
1682
- #: includes/links.php:359
1683
  msgid "Link is broken."
1684
  msgstr "Link ist fehlerhaft."
1685
 
1686
  # @ broken-link-checker
1687
- #: includes/links.php:572 includes/links.php:674 includes/links.php:701
1688
  msgid "Link is not valid"
1689
  msgstr "Link ist nicht gültig"
1690
 
1691
  # @ broken-link-checker
1692
- #: includes/links.php:589
1693
  msgid ""
1694
  "This link can not be edited because it is not used anywhere on this site."
1695
  msgstr ""
@@ -1697,46 +1727,46 @@ msgstr ""
1697
  "Website verwendet wird."
1698
 
1699
  # @ broken-link-checker
1700
- #: includes/links.php:615
1701
  msgid "Failed to create a DB entry for the new URL."
1702
  msgstr ""
1703
  "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
1704
 
1705
  # @ broken-link-checker
1706
- #: includes/links.php:681
1707
  msgid "This link is not a redirect"
1708
  msgstr "Dieser Link ist keine Umleitung"
1709
 
1710
  # @ broken-link-checker
1711
- #: includes/links.php:728 includes/links.php:765
1712
  msgid "Couldn't delete the link's database record"
1713
  msgstr "Links können nicht aus der Datenbank gelöscht werden"
1714
 
1715
  # @ broken-link-checker
1716
- #: includes/links.php:839
1717
  msgctxt "link status"
1718
  msgid "Unknown"
1719
  msgstr "Unbekannt"
1720
 
1721
  # @ link status
1722
  # @ broken-link-checker
1723
- #: includes/links.php:853 modules/checkers/http.php:263
1724
  #: modules/extras/mediafire.php:101
1725
  msgid "Unknown Error"
1726
  msgstr "Unbekannter Fehler"
1727
 
1728
  # @ broken-link-checker
1729
- #: includes/links.php:877
1730
  msgid "Not checked"
1731
  msgstr "Nicht überprüft"
1732
 
1733
  # @ broken-link-checker
1734
- #: includes/links.php:880
1735
  msgid "False positive"
1736
  msgstr "Falsch positiv"
1737
 
1738
  # @ broken-link-checker
1739
- #: includes/links.php:883 modules/extras/fileserve.php:121
1740
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1741
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1742
  msgctxt "link status"
@@ -1824,38 +1854,38 @@ msgstr[0] "%d Monat vergangen"
1824
  msgstr[1] "%d Monate vergangen"
1825
 
1826
  # @ broken-link-checker
1827
- #: modules/checkers/http.php:242
1828
  msgid "Server Not Found"
1829
  msgstr "Server nicht gefunden"
1830
 
1831
  # @ broken-link-checker
1832
- #: modules/checkers/http.php:257
1833
  msgid "Connection Failed"
1834
  msgstr "Verbindung fehlgeschlagen"
1835
 
1836
  # @ broken-link-checker
1837
- #: modules/checkers/http.php:292 modules/checkers/http.php:362
1838
  msgid "HTTP code : %d"
1839
  msgstr "HTTP Code: %d"
1840
 
1841
  # @ broken-link-checker
1842
- #: modules/checkers/http.php:294 modules/checkers/http.php:364
1843
  msgid "(No response)"
1844
  msgstr "(Keine Antwort)"
1845
 
1846
  # @ broken-link-checker
1847
- #: modules/checkers/http.php:300
1848
  msgid "Most likely the connection timed out or the domain doesn't exist."
1849
  msgstr ""
1850
  "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
1851
 
1852
  # @ broken-link-checker
1853
- #: modules/checkers/http.php:371
1854
  msgid "Request timed out."
1855
  msgstr "Erfordert Zeitlimit."
1856
 
1857
  # @ broken-link-checker
1858
- #: modules/checkers/http.php:389
1859
  msgid "Using Snoopy"
1860
  msgstr "Benutzt Snoopy"
1861
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker | V1.9.3\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2014-03-25 12:29:11+00:00\n"
6
+ "PO-Revision-Date: 2014-04-06 15:32+0100\n"
7
  "Last-Translator: Ivan Graf <contact@bildergallery.com>\n"
8
  "Language-Team: \n"
9
  "Language: de_CH\n"
16
  "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Textdomain-Support: yes\n"
18
  "X-Poedit-Basepath: .\n"
19
+ "X-Generator: Poedit 1.6.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ broken-link-checker
23
+ #: core/core.php:153 includes/admin/links-page-js.php:44
24
  msgid "Loading..."
25
  msgstr "Wird geladen ..."
26
 
69
  msgstr "Einstellungen"
70
 
71
  # @ broken-link-checker
72
+ #: core/core.php:572
73
  msgid "Settings saved."
74
  msgstr "Einstellungen gespeichert."
75
 
76
+ #: core/core.php:578
77
  msgid "Thank you for your donation!"
78
  msgstr "Besten Dank für Ihre Spende!"
79
 
80
  # @ broken-link-checker
81
+ #: core/core.php:586
82
  msgid "Complete site recheck started."
83
  msgstr "Komplette Überprüfung der Webseite noch einmal gestartet."
84
 
85
  # @ broken-link-checker
86
+ #: core/core.php:595
87
  msgid "Details"
88
  msgstr "Details"
89
 
90
  # @ broken-link-checker
91
+ #: core/core.php:609
92
  msgid "General"
93
  msgstr "Allgemein"
94
 
95
  # @ broken-link-checker
96
+ #: core/core.php:610
97
  msgid "Look For Links In"
98
  msgstr "Suchen Sie nach Links in"
99
 
100
  # @ broken-link-checker
101
+ #: core/core.php:611
102
  msgid "Which Links To Check"
103
  msgstr "Welche Links überprüfen"
104
 
105
  # @ broken-link-checker
106
+ #: core/core.php:612
107
  msgid "Protocols & APIs"
108
  msgstr "Protokoll & Schnittstellen"
109
 
110
  # @ broken-link-checker
111
+ #: core/core.php:613
112
  msgid "Advanced"
113
  msgstr "Erweitert"
114
 
115
  # @ broken-link-checker
116
+ #: core/core.php:628
117
  msgid "Broken Link Checker Options"
118
  msgstr "Broken Link Checker Optionen"
119
 
120
  # @ broken-link-checker
121
+ #: core/core.php:670 includes/admin/table-printer.php:203
122
  msgid "Status"
123
  msgstr "Status"
124
 
125
  # @ broken-link-checker
126
+ #: core/core.php:672 includes/admin/options-page-js.php:56
127
  msgid "Show debug info"
128
  msgstr "Debug Infos anzeigen"
129
 
130
  # @ broken-link-checker
131
+ #: core/core.php:700
132
  msgid "Check each link"
133
  msgstr "Überprüfe jeden Link"
134
 
135
  # @ broken-link-checker
136
+ #: core/core.php:705
137
  msgid "Every %s hours"
138
  msgstr "Alle %s Stunden"
139
 
140
  # @ broken-link-checker
141
+ #: core/core.php:714
142
  msgid ""
143
  "Existing links will be checked this often. New links will usually be checked "
144
  "ASAP."
147
  "Links werden sofort geprüft."
148
 
149
  # @ broken-link-checker
150
+ #: core/core.php:721
151
  msgid "E-mail notifications"
152
  msgstr "E-Mail Benachrichtigungen"
153
 
154
  # @ broken-link-checker
155
+ #: core/core.php:727
156
  msgid "Send me e-mail notifications about newly detected broken links"
157
  msgstr ""
158
  "Dem Administrator eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte "
159
  "Links erkannt werden"
160
 
161
  # @ broken-link-checker
162
+ #: core/core.php:735
163
  msgid "Send authors e-mail notifications about broken links in their posts"
164
  msgstr ""
165
  "Den Autoren eine E-Mail Benachrichtigung senden, wenn neue fehlerhafte Links "
166
  "erkannt werden"
167
 
168
+ #: core/core.php:742
169
  msgid "Notification e-mail address"
170
  msgstr "Benachrichtigungs-E-Mail-Adresse"
171
 
172
+ #: core/core.php:754
173
  msgid ""
174
  "Leave empty to use the e-mail address specified in Settings &rarr; General."
175
  msgstr ""
177
  "verwenden."
178
 
179
  # @ broken-link-checker
180
+ #: core/core.php:761
181
  msgid "Link tweaks"
182
  msgstr "Link Einstellungen"
183
 
184
  # @ broken-link-checker
185
+ #: core/core.php:767
186
  msgid "Apply custom formatting to broken links"
187
  msgstr "Benutzerdefinierte Formatierung auf fehlerhafte Links übernehmen"
188
 
189
  # @ broken-link-checker
190
+ #: core/core.php:771 core/core.php:802
191
  msgid "Edit CSS"
192
  msgstr "Bearbeite CSS"
193
 
194
+ #: core/core.php:787
195
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
196
+ msgstr "Beispiel: Lorem ipsum <a %s>fehlerhafter Link</a>, dolor sit amet."
197
 
198
+ #: core/core.php:790 core/core.php:821
199
  msgid "Click \"Save Changes\" to update example output."
200
  msgstr "Drücken Sie \"Änderung übernehmen\", um das Beispiel zu aktualisieren."
201
 
202
  # @ broken-link-checker
203
+ #: core/core.php:798
204
  msgid "Apply custom formatting to removed links"
205
  msgstr "Benutzerdefinierte Formatierung auf entfernte Links übernehmen"
206
 
207
+ #: core/core.php:818
208
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
209
  msgstr "Beispiel: Lorem ipsum <span %s>entfernter Link</span>, dolor sit amet."
210
 
211
  # @ broken-link-checker
212
+ #: core/core.php:831
213
  msgid "Stop search engines from following broken links"
214
  msgstr "Suchmaschinen von folgenden fehlerhaften Links stoppen"
215
 
216
+ #: core/core.php:839
217
  msgctxt "settings page"
218
  msgid "Suggestions"
219
  msgstr "Vorschläge"
220
 
221
  # @ broken-link-checker
222
+ #: core/core.php:845
223
  msgid "Suggest alternatives to broken links"
224
  msgstr "Alternativen zu fehlerhaften Links vorschlagen"
225
 
226
  # @ broken-link-checker
227
+ #: core/core.php:861
228
  msgid "Look for links in"
229
  msgstr "Suchen Sie nach Links in"
230
 
231
  # @ broken-link-checker
232
+ #: core/core.php:872
233
  msgid "Post statuses"
234
  msgstr "Beitrag Status"
235
 
236
  # @ broken-link-checker
237
+ #: core/core.php:905
238
  msgid "Link types"
239
  msgstr "Link Typen"
240
 
241
  # @ broken-link-checker
242
+ #: core/core.php:911
243
  msgid "Error : All link parsers missing!"
244
  msgstr "Fehler: Alle Link-Parser fehlen!"
245
 
246
  # @ broken-link-checker
247
+ #: core/core.php:918
248
  msgid "Exclusion list"
249
  msgstr "Ausschlussliste"
250
 
251
  # @ broken-link-checker
252
+ #: core/core.php:919
253
  msgid ""
254
  "Don't check links where the URL contains any of these words (one per line) :"
255
  msgstr ""
256
  "URLs, die folgende Wörter beinhalten nicht überprüfen (ein Wort pro Zeile):"
257
 
258
  # @ broken-link-checker
259
+ #: core/core.php:937
260
  msgid "Check links using"
261
  msgstr "Überprüfe Links"
262
 
263
  # @ broken-link-checker
264
+ #: core/core.php:956 includes/links.php:867
265
  msgid "Timeout"
266
  msgstr "Zeitüberschreitung"
267
 
268
  # @ broken-link-checker
269
  # @ default
270
+ #: core/core.php:962 core/core.php:1031 core/core.php:3019
271
  msgid "%s seconds"
272
  msgstr "%s Sekunden"
273
 
274
  # @ broken-link-checker
275
+ #: core/core.php:971
276
  msgid "Links that take longer than this to load will be marked as broken."
277
  msgstr ""
278
  "Links die länger zum laden brauchen als hier eingetragen, gelten als "
279
  "fehlerhaft."
280
 
281
  # @ broken-link-checker
282
+ #: core/core.php:978
283
  msgid "Link monitor"
284
  msgstr "Link Monitor"
285
 
286
  # @ broken-link-checker
287
+ #: core/core.php:986
288
  msgid "Run continuously while the Dashboard is open"
289
  msgstr "Ununterbrochen arbeiten, während das Dashboard geöffnet ist"
290
 
291
  # @ broken-link-checker
292
+ #: core/core.php:994
293
  msgid "Run hourly in the background"
294
  msgstr "Stündlich im Hintergrund arbeiten"
295
 
296
+ #: core/core.php:1002
297
  msgid "Show the dashboard widget for"
298
  msgstr "Dashboard-Widget anzeigen für"
299
 
300
+ #: core/core.php:1007
301
  msgctxt "dashboard widget visibility"
302
  msgid "Administrator"
303
  msgstr "Administrator"
304
 
305
+ #: core/core.php:1008
306
  msgctxt "dashboard widget visibility"
307
  msgid "Editor and above"
308
  msgstr "Redakteur und höher"
309
 
310
+ #: core/core.php:1009
311
  msgctxt "dashboard widget visibility"
312
  msgid "Nobody (disables the widget)"
313
  msgstr "Niemand (deaktiviert das Widget)"
314
 
315
  # @ broken-link-checker
316
+ #: core/core.php:1025
317
  msgid "Max. execution time"
318
  msgstr "Max. Ausführungszeit"
319
 
320
  # @ broken-link-checker
321
+ #: core/core.php:1042
322
  msgid ""
323
  "The plugin works by periodically launching a background job that parses your "
324
  "posts for links, checks the discovered URLs, and performs other time-"
331
  "Instanzen laufen sollen, bevor sie gestoppt werden."
332
 
333
  # @ broken-link-checker
334
+ #: core/core.php:1051
335
  msgid "Server load limit"
336
  msgstr "Server Belastungsgrenze"
337
 
338
+ #: core/core.php:1066
339
  msgid "Current load : %s"
340
  msgstr "Aktuelle Belastung: %s"
341
 
342
  # @ broken-link-checker
343
+ #: core/core.php:1071
344
  msgid ""
345
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
346
  "a> rises above this number. Leave this field blank to disable load limiting."
350
  "Feld leer, um das Ladelimit zu deaktivieren."
351
 
352
  # @ broken-link-checker
353
+ #: core/core.php:1080
354
  msgid "Not available"
355
  msgstr "Nicht verfügbar"
356
 
357
  # @ broken-link-checker
358
+ #: core/core.php:1082
359
  msgid ""
360
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
361
  "code> is present and accessible."
363
  "Das Ladelimit funktioniert nur auf Linux Systemen wo <code>/proc/loadavg</"
364
  "code> vorhanden und zugänglich ist."
365
 
366
+ #: core/core.php:1090
367
+ msgid "Logging"
368
+ msgstr "Protokollierung"
369
+
370
+ #: core/core.php:1096
371
+ msgid "Enable logging"
372
+ msgstr "Protokollierung aktivieren"
373
+
374
+ #: core/core.php:1103
375
+ msgid "Log file location"
376
+ msgstr "Speicherort Protokolldatei"
377
+
378
+ #: core/core.php:1112
379
+ msgctxt "log file location"
380
+ msgid "Default"
381
+ msgstr "Standard"
382
+
383
+ # @ broken-link-checker
384
+ #: core/core.php:1126
385
+ msgctxt "log file location"
386
+ msgid "Custom"
387
+ msgstr "Benutzerdefiniert"
388
+
389
  # @ broken-link-checker
390
+ #: core/core.php:1138
391
  msgid "Forced recheck"
392
  msgstr "Erneute Überprüfung erzwingen"
393
 
394
  # @ broken-link-checker
395
+ #: core/core.php:1141
396
  msgid "Re-check all pages"
397
  msgstr "Überprüfe alle Seiten noch einmal"
398
 
399
  # @ broken-link-checker
400
+ #: core/core.php:1145
401
  msgid ""
402
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
403
  "database and recheck the entire site from scratch."
406
  "Datenbank des Plugins zu leeren und die gesamte Website neu aufzubauen."
407
 
408
  # @ default
409
+ #: core/core.php:1156
410
  msgid "Save Changes"
411
  msgstr "Änderungen speichern"
412
 
413
  # @ broken-link-checker
414
+ #: core/core.php:1207
415
  msgid "Configure"
416
  msgstr "Konfigurieren"
417
 
418
+ #: core/core.php:1289
419
  msgid ""
420
  "Enter the names of custom fields you want to check (one per line). If a "
421
  "field contains HTML code, prefix its name with <code>html:</code>. For "
427
  "code>."
428
 
429
  # @ broken-link-checker
430
+ #: core/core.php:1420 core/core.php:1503 core/core.php:1535
431
  msgid "Database error : %s"
432
  msgstr "Datenbank Fehler: %s"
433
 
434
  # @ broken-link-checker
435
+ #: core/core.php:1485
436
  msgid "You must enter a filter name!"
437
  msgstr "Sie müssen einen Filter Namen eingeben!"
438
 
439
  # @ broken-link-checker
440
+ #: core/core.php:1489
441
  msgid "Invalid search query."
442
  msgstr "Ungültige Suchanfrage."
443
 
444
  # @ broken-link-checker
445
+ #: core/core.php:1498
446
  msgid "Filter \"%s\" created"
447
  msgstr "Filter \"%s\" erstellt"
448
 
449
  # @ broken-link-checker
450
+ #: core/core.php:1525
451
  msgid "Filter ID not specified."
452
  msgstr "Link ID nicht spezifiziert."
453
 
454
  # @ broken-link-checker
455
+ #: core/core.php:1532
456
  msgid "Filter deleted"
457
  msgstr "Filter gelöscht"
458
 
459
  # @ broken-link-checker
460
+ #: core/core.php:1579
461
  msgid "Replaced %d redirect with a direct link"
462
  msgid_plural "Replaced %d redirects with direct links"
463
  msgstr[0] "Ersetze %d Umleitung mit einem direkten Link"
464
  msgstr[1] "Ersetze %d Umleitungen mit direkten Links"
465
 
466
  # @ broken-link-checker
467
+ #: core/core.php:1590
468
  msgid "Failed to fix %d redirect"
469
  msgid_plural "Failed to fix %d redirects"
470
  msgstr[0] "Löschen der festen Umleitung %d schlug fehl"
471
  msgstr[1] "Löschen der festen Umleitungen %d schlug fehl"
472
 
473
  # @ broken-link-checker
474
+ #: core/core.php:1601
475
  msgid "None of the selected links are redirects!"
476
  msgstr "Keiner der ausgewählten Links sind Umleitungen!"
477
 
478
  # @ broken-link-checker
479
+ #: core/core.php:1679
480
  msgid "%d link updated."
481
  msgid_plural "%d links updated."
482
  msgstr[0] "Link %d aktualisiert."
483
  msgstr[1] "Links %d aktualisiert."
484
 
485
  # @ broken-link-checker
486
+ #: core/core.php:1690
487
  msgid "Failed to update %d link."
488
  msgid_plural "Failed to update %d links."
489
  msgstr[0] "Link %d konnte nicht aktualisiert werden."
490
  msgstr[1] "Links %d konnten nicht aktualisiert werden."
491
 
492
  # @ broken-link-checker
493
+ #: core/core.php:1779
494
  msgid "%d link removed"
495
  msgid_plural "%d links removed"
496
  msgstr[0] "%d Link entfernt"
497
  msgstr[1] "%d Links entfernt"
498
 
499
  # @ broken-link-checker
500
+ #: core/core.php:1790
501
  msgid "Failed to remove %d link"
502
  msgid_plural "Failed to remove %d links"
503
  msgstr[0] "Link %d konnte nicht entfernt werden"
504
  msgstr[1] "Links %d konnten nicht entfernt werden"
505
 
506
  # @ default
507
+ #: core/core.php:1899
508
  msgid ""
509
  "%d item was skipped because it can't be moved to the Trash. You need to "
510
  "delete it manually."
519
  "verschoben werden können. Löschen Sie diese manuell."
520
 
521
  # @ broken-link-checker
522
+ #: core/core.php:1921
523
  msgid "Didn't find anything to delete!"
524
  msgstr "Nichts gefunden um zu löschen!"
525
 
526
  # @ broken-link-checker
527
+ #: core/core.php:1949
528
  msgid "%d link scheduled for rechecking"
529
  msgid_plural "%d links scheduled for rechecking"
530
  msgstr[0] "%d Link zur erneuten Überprüfung geplant"
531
  msgstr[1] "%d Links zur erneuten Überprüfung geplant"
532
 
533
  # @ broken-link-checker
534
+ #: core/core.php:1995 core/core.php:2637
535
  msgid "This link was manually marked as working by the user."
536
  msgstr ""
537
  "Dieser Link wurde vom Benutzer manuell als funktionierender Link markiert."
538
 
539
  # @ broken-link-checker
540
+ #: core/core.php:2002
541
  msgid "Couldn't modify link %d"
542
  msgstr "Link %d konnte nicht geändert werden"
543
 
544
  # @ broken-link-checker
545
+ #: core/core.php:2012
546
  msgid "%d link marked as not broken"
547
  msgid_plural "%d links marked as not broken"
548
  msgstr[0] "%d Link als nicht fehlerhaft markiert"
549
  msgstr[1] "%d Links als nicht fehlerhaft markiert"
550
 
551
  # @ broken-link-checker
552
+ #: core/core.php:2052
553
  msgid "Table columns"
554
  msgstr "Tabellenspalten"
555
 
556
  # @ default
557
+ #: core/core.php:2071
558
  msgid "Show on screen"
559
  msgstr "Auf dem Bildschirm anzeigen"
560
 
561
  # @ broken-link-checker
562
+ #: core/core.php:2078
563
  msgid "links"
564
  msgstr "Links"
565
 
566
  # @ default
567
  # @ broken-link-checker
568
+ #: core/core.php:2079 includes/admin/table-printer.php:171
569
  msgid "Apply"
570
  msgstr "Anwenden"
571
 
572
  # @ broken-link-checker
573
+ #: core/core.php:2083
574
  msgid "Misc"
575
  msgstr "Sonstige"
576
 
577
  # @ broken-link-checker
578
+ #: core/core.php:2098
579
  msgid "Highlight links broken for at least %s days"
580
  msgstr "Markiere fehlerhafte Links für mindestens %s Tage"
581
 
582
  # @ broken-link-checker
583
+ #: core/core.php:2107
584
  msgid "Color-code status codes"
585
  msgstr "Farb-Code Status Codes"
586
 
587
  # @ broken-link-checker
588
+ #: core/core.php:2124 core/core.php:2622 core/core.php:2662 core/core.php:2695
589
+ #: core/core.php:2782
590
  msgid "You're not allowed to do that!"
591
  msgstr "Sie haben nicht die Erlaubnis das zu tun!"
592
 
593
  # @ broken-link-checker
594
+ #: core/core.php:2492
595
  msgid "View broken links"
596
  msgstr "Fehlerhafte Links anschauen"
597
 
598
  # @ broken-link-checker
599
+ #: core/core.php:2493
600
  msgid "Found %d broken link"
601
  msgid_plural "Found %d broken links"
602
  msgstr[0] "%d fehlerhafte Links gefunden"
603
  msgstr[1] "%d fehlerhafte Links gefunden"
604
 
605
  # @ broken-link-checker
606
+ #: core/core.php:2499
607
  msgid "No broken links found."
608
  msgstr "Keine fehlerhaften Links gefunden."
609
 
610
  # @ broken-link-checker
611
+ #: core/core.php:2506
612
  msgid "%d URL in the work queue"
613
  msgid_plural "%d URLs in the work queue"
614
  msgstr[0] "%d URL in der Warteschlange"
615
  msgstr[1] "%d URLs in der Warteschlange"
616
 
617
  # @ broken-link-checker
618
+ #: core/core.php:2509
619
  msgid "No URLs in the work queue."
620
  msgstr "Keine URLs in der Warteschlange."
621
 
622
  # @ broken-link-checker
623
+ #: core/core.php:2515
624
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
625
  msgid "%d unique URL"
626
  msgid_plural "%d unique URLs"
628
  msgstr[1] "%d eindeutige URLs"
629
 
630
  # @ broken-link-checker
631
+ #: core/core.php:2519
632
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
633
  msgid "%d link"
634
  msgid_plural "%d links"
636
  msgstr[1] "%d Links"
637
 
638
  # @ broken-link-checker
639
+ #: core/core.php:2525
640
  msgid "Detected %1$s in %2$s and still searching..."
641
  msgstr "Endeckt %1$s in %2$s und suche immer noch ..."
642
 
643
  # @ broken-link-checker
644
+ #: core/core.php:2531
645
  msgid "Detected %1$s in %2$s."
646
  msgstr "Endeckt %1$s in %2$s."
647
 
648
  # @ broken-link-checker
649
+ #: core/core.php:2538
650
  msgid "Searching your blog for links..."
651
  msgstr "Durchsucht Ihr Blog nach Links ..."
652
 
653
  # @ broken-link-checker
654
+ #: core/core.php:2540
655
  msgid "No links detected."
656
  msgstr "Keine Links gefunden."
657
 
658
  # @ broken-link-checker
659
+ #: core/core.php:2566
660
  msgctxt "current load"
661
  msgid "Unknown"
662
  msgstr "Unbekannt"
663
 
664
  # @ broken-link-checker
665
+ #: core/core.php:2630 core/core.php:2670 core/core.php:2710 core/core.php:2792
666
  msgid "Oops, I can't find the link %d"
667
  msgstr "Hoppla, der Link %d konnte nicht gefunden werden!"
668
 
669
  # @ broken-link-checker
670
+ #: core/core.php:2643 core/core.php:2680
671
  msgid "Oops, couldn't modify the link!"
672
  msgstr "Hoppla, der Link konnte nicht geändert werden!"
673
 
674
  # @ broken-link-checker
675
+ #: core/core.php:2646 core/core.php:2683 core/core.php:2818
676
  msgid "Error : link_id not specified"
677
  msgstr "Fehler: Link ID nicht spezifiziert"
678
 
679
  # @ broken-link-checker
680
+ #: core/core.php:2701
681
  msgid "Error : link_id or new_url not specified"
682
  msgstr "Fehler: Link ID oder neue URL sind nicht spezifiziert"
683
 
684
  # @ broken-link-checker
685
+ #: core/core.php:2719
686
  msgid "Oops, the new URL is invalid!"
687
  msgstr "Hoppla, die neue URL funktioniert nicht!"
688
 
689
  # @ broken-link-checker
690
+ #: core/core.php:2734
691
  msgid "An unexpected error occurred!"
692
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
693
 
694
  # @ broken-link-checker
695
+ #: core/core.php:2801
696
  msgid "An unexpected error occured!"
697
  msgstr "Ein unerwarteter Fehler ist aufgetreten!"
698
 
699
  # @ broken-link-checker
700
+ #: core/core.php:2827
701
  msgid "You don't have sufficient privileges to access this information!"
702
  msgstr "Sie haben nicht genug Rechte, um diese Information zu sehen!"
703
 
704
  # @ broken-link-checker
705
+ #: core/core.php:2840
706
  msgid "Error : link ID not specified"
707
  msgstr "Fehler: Link ID nicht spezifiziert"
708
 
709
  # @ broken-link-checker
710
+ #: core/core.php:2854
711
  msgid "Failed to load link details (%s)"
712
  msgstr "Laden der Link Details (%s) schlug fehl"
713
 
714
  # @ broken-link-checker
 
715
  #. Plugin Name of the plugin/theme
716
+ #: core/core.php:2908
717
  msgid "Broken Link Checker"
718
  msgstr "Broken Link Checker"
719
 
720
  # @ broken-link-checker
721
+ #: core/core.php:2928
722
  msgid "PHP version"
723
  msgstr "PHP Version"
724
 
725
  # @ broken-link-checker
726
+ #: core/core.php:2934
727
  msgid "MySQL version"
728
  msgstr "MySQL Version"
729
 
730
  # @ broken-link-checker
731
+ #: core/core.php:2947
732
  msgid ""
733
  "You have an old version of CURL. Redirect detection may not work properly."
734
  msgstr ""
736
  "funktioniert eventuell nicht."
737
 
738
  # @ broken-link-checker
739
+ #: core/core.php:2959 core/core.php:2975 core/core.php:2980
740
  msgid "Not installed"
741
  msgstr "Nicht installiert"
742
 
743
  # @ broken-link-checker
744
+ #: core/core.php:2962
745
  msgid "CURL version"
746
  msgstr "CURL Version"
747
 
748
  # @ broken-link-checker
749
+ #: core/core.php:2968
750
  msgid "Installed"
751
  msgstr "Installiert"
752
 
753
  # @ broken-link-checker
754
+ #: core/core.php:2981
755
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
756
  msgstr ""
757
  "Es muss entweder CURL oder Snoppy installiert sein, damit das Plugin "
758
  "funktioniert!"
759
 
760
  # @ broken-link-checker
761
+ #: core/core.php:2992
762
  msgid "On"
763
  msgstr "An"
764
 
765
  # @ broken-link-checker
766
+ #: core/core.php:2993
767
  msgid "Redirects may be detected as broken links when safe_mode is on."
768
  msgstr ""
769
  "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls safe_mode "
770
  "aktiviert ist."
771
 
772
  # @ broken-link-checker
773
+ #: core/core.php:2998 core/core.php:3012
774
  msgid "Off"
775
  msgstr "Aus"
776
 
777
  # @ broken-link-checker
778
+ #: core/core.php:3006
779
  msgid "On ( %s )"
780
  msgstr "An (%s)"
781
 
782
  # @ broken-link-checker
783
+ #: core/core.php:3007
784
  msgid "Redirects may be detected as broken links when open_basedir is on."
785
  msgstr ""
786
  "Umleitungen werden eventuell als fehlerhafte Links erkannt, falls "
787
  "open_basedir aktiviert ist."
788
 
789
  # @ broken-link-checker
790
+ #: core/core.php:3036
791
  msgid ""
792
  "If this value is zero even after several page reloads you have probably "
793
  "encountered a bug."
796
  "ein Fehler aufgetreten."
797
 
798
  # @ broken-link-checker
799
+ #: core/core.php:3159 core/core.php:3278
800
  msgid "[%s] Broken links detected"
801
  msgstr "[%s] Fehlerhafte Links entdeckt"
802
 
803
  # @ broken-link-checker
804
+ #: core/core.php:3164
805
  msgid "Broken Link Checker has detected %d new broken link on your site."
806
  msgid_plural ""
807
  "Broken Link Checker has detected %d new broken links on your site."
811
  "Broken Link Checker hat %d fehlerhafte Links auf Ihrer Webseite entdeckt."
812
 
813
  # @ broken-link-checker
814
+ #: core/core.php:3195
815
  msgid "Here's a list of the first %d broken links:"
816
  msgid_plural "Here's a list of the first %d broken links:"
817
  msgstr[0] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
818
  msgstr[1] "Hier ist eine Liste der ersten %d fehlerhaften Links:"
819
 
820
  # @ broken-link-checker
821
+ #: core/core.php:3204
822
  msgid "Here's a list of the new broken links: "
823
  msgstr "Hier ist eine Liste von neuen fehlerhaften Links:"
824
 
825
  # @ broken-link-checker
826
+ #: core/core.php:3213
827
  msgid "Link text : %s"
828
  msgstr "Linktext: %s"
829
 
830
  # @ broken-link-checker
831
+ #: core/core.php:3214
832
  msgid "Link URL : <a href=\"%s\">%s</a>"
833
  msgstr "Link URL: <a href=\"%s\">%s</a>"
834
 
835
  # @ broken-link-checker
836
+ #: core/core.php:3215
837
  msgid "Source : %s"
838
  msgstr "Quelle: %s"
839
 
840
  # @ brokenk-link-checker
841
+ #: core/core.php:3229
842
  msgid "You can see all broken links here:"
843
  msgstr "Hier sehen Sie alle fehlerhaften Links:"
844
 
845
  # @ broken-link-checker
846
+ #: core/core.php:3283
847
  msgid "Broken Link Checker has detected %d new broken link in your posts."
848
  msgid_plural ""
849
  "Broken Link Checker has detected %d new broken links in your posts."
852
  msgstr[1] "Broken Link Checker hat %d fehlerhafte Links in Beiträgen entdeckt."
853
 
854
  # @ default
855
+ #: core/init.php:249
856
  msgid "Once Weekly"
857
  msgstr "Einmal wöchentlich"
858
 
859
  # @ default
860
+ #: core/init.php:255
861
  msgid "Twice a Month"
862
  msgstr "Zweimal im Monat"
863
 
864
  # @ broken-link-checker
865
+ #: core/init.php:331
866
  msgid ""
867
  "Broken Link Checker installation failed. Try deactivating and then "
868
  "reactivating the plugin."
870
  "Broken Link Checker Installation fehlgeschlagen. Deaktivieren Sie das Plugin "
871
  "und aktivieren es anschliessend wieder."
872
 
873
+ #: core/init.php:335
874
+ msgid ""
875
+ "Please activate the plugin separately on each site. Network activation is "
876
+ "not supported."
877
+ msgstr ""
878
+ "Bitte aktivieren Sie das Plugin auf jeder Seite. Netzwerkaktivierung wird "
879
+ "nicht unterstützt."
880
+
881
  # @ broken-link-checker
882
  #: includes/admin/db-upgrade.php:95
883
  msgid "Failed to delete old DB tables. Database error : %s"
884
  msgstr "Konnte alte Datenbantabellen nicht löschen. Datenbank Fehler: %s"
885
 
886
  # @ broken-link-checker
887
+ #: includes/admin/links-page-js.php:62 includes/admin/links-page-js.php:525
888
  msgid "Wait..."
889
  msgstr "Warte ..."
890
 
891
  # @ broken-link-checker
892
+ #: includes/admin/links-page-js.php:107 includes/admin/table-printer.php:663
893
  msgid "Not broken"
894
  msgstr "Nicht fehlerhaft"
895
 
896
+ #: includes/admin/links-page-js.php:243
897
  msgctxt "link text"
898
  msgid "(None)"
899
  msgstr "(Keine)"
900
 
901
+ #: includes/admin/links-page-js.php:244
902
  msgctxt "link text"
903
  msgid "(Multiple links)"
904
  msgstr "(Mehrere Links)"
905
 
906
  # @ broken-link-checker
907
+ #: includes/admin/links-page-js.php:302
908
  msgctxt "link suggestions"
909
  msgid "Searching..."
910
  msgstr "Suche ..."
911
 
912
  # @ broken-link-checker
913
+ #: includes/admin/links-page-js.php:303
914
  msgctxt "link suggestions"
915
  msgid "No suggestions available."
916
  msgstr "Kein Vorschlag verfügbar."
917
 
918
+ #: includes/admin/links-page-js.php:304
919
  msgctxt "link suggestions"
920
  msgid "Archived page from %s (via the Wayback Machine)"
921
  msgstr "Archivierte Seite von %s (via Wayback Machine)"
922
 
923
  # @ broken-link-checker
924
+ #: includes/admin/links-page-js.php:387
925
  msgid "%d instances of the link were successfully modified."
926
  msgstr "%d Instanzen von diesem Link wurden erfolgreich geändert."
927
 
928
  # @ broken-link-checker
929
+ #: includes/admin/links-page-js.php:393
930
  msgid ""
931
  "However, %d instances couldn't be edited and still point to the old URL."
932
  msgstr ""
934
  "noch auf die alte URL."
935
 
936
  # @ broken-link-checker
937
+ #: includes/admin/links-page-js.php:399
938
  msgid "The link could not be modified."
939
  msgstr "Der Link konnte nicht geändert werden."
940
 
941
  # @ broken-link-checker
942
+ #: includes/admin/links-page-js.php:402
943
  msgid "The following error(s) occurred :"
944
  msgstr "Folgende Fehler sind aufgetreten:"
945
 
946
+ #: includes/admin/links-page-js.php:488
947
  msgid "Error: Link URL must not be empty."
948
  msgstr "Fehler: Die Link URL darf nicht leer sein."
949
 
950
  # @ broken-link-checker
951
+ #: includes/admin/links-page-js.php:563
952
  msgid "%d instances of the link were successfully unlinked."
953
  msgstr "%d Instanzen von diesem Link wurden erfolgreich gelöscht."
954
 
955
  # @ broken-link-checker
956
+ #: includes/admin/links-page-js.php:569
957
  msgid "However, %d instances couldn't be removed."
958
  msgstr "Allerdings, %d Instanzen konnten nicht entfernt werden."
959
 
960
  # @ broken-link-checker
961
+ #: includes/admin/links-page-js.php:574
962
  msgid "The plugin failed to remove the link."
963
  msgstr "Das Plugin konnte den Link nicht entfernen."
964
 
965
  # @ broken-link-checker
966
+ #: includes/admin/links-page-js.php:577
967
  msgid "The following error(s) occured :"
968
  msgstr "Folgende Fehler sind aufgetreten:"
969
 
970
  # @ broken-link-checker
971
+ #: includes/admin/links-page-js.php:585 includes/admin/table-printer.php:281
972
+ #: includes/admin/table-printer.php:657
973
  msgid "Unlink"
974
  msgstr "Link aufheben"
975
 
976
  # @ broken-link-checker
977
+ #: includes/admin/links-page-js.php:629
978
  msgid "Enter a name for the new custom filter"
979
  msgstr "Gib einen Namen für den neuen benutzerdefinierten Filter ein"
980
 
981
  # @ broken-link-checker
982
+ #: includes/admin/links-page-js.php:641
983
  msgid ""
984
  "You are about to delete the current filter.\n"
985
  "'Cancel' to stop, 'OK' to delete"
988
  " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
989
 
990
  # @ broken-link-checker
991
+ #: includes/admin/links-page-js.php:665
992
  msgid ""
993
  "Are you sure you want to delete all posts, bookmarks or other items that "
994
  "contain any of the selected links? This action can't be undone.\n"
1000
  " 'Abbrechen' um abzubrechen, 'OK' um zu löschen."
1001
 
1002
  # @ broken-link-checker
1003
+ #: includes/admin/links-page-js.php:679
1004
  msgid ""
1005
  "Are you sure you want to remove the selected links? This action can't be "
1006
  "undone.\n"
1010
  "Aktion kann nicht rückgängig gemacht werden.\n"
1011
  " 'Abbrechen' um abzubrechen, 'OK' um zu entfernen."
1012
 
1013
+ #: includes/admin/links-page-js.php:791
1014
  msgid "Enter a search string first."
1015
  msgstr "Geben Sie zuerst einen Suchbegriff ein."
1016
 
1017
+ #: includes/admin/links-page-js.php:798
1018
  msgid "Select one or more links to edit."
1019
  msgstr "Wählen Sie einen oder mehrere Links zum bearbeiten."
1020
 
1044
  msgstr "Linktext"
1045
 
1046
  # @ broken-link-checker
1047
+ #: includes/admin/search-form.php:45 includes/admin/table-printer.php:208
1048
  msgid "URL"
1049
  msgstr "URL"
1050
 
1051
  # @ broken-link-checker
1052
+ #: includes/admin/search-form.php:48 includes/admin/table-printer.php:527
1053
  msgid "HTTP code"
1054
  msgstr "HTTP Code"
1055
 
1079
  msgstr "Suche Links"
1080
 
1081
  # @ broken-link-checker
1082
+ #: includes/admin/search-form.php:113 includes/admin/table-printer.php:357
1083
+ #: includes/admin/table-printer.php:687 includes/admin/table-printer.php:812
1084
  msgid "Cancel"
1085
  msgstr "Abbrechen"
1086
 
1105
  msgstr "Zurück zum Wordpress Dashboard"
1106
 
1107
  # @ broken-link-checker
1108
+ #: includes/admin/table-printer.php:185
1109
  msgid "Compact View"
1110
  msgstr "Kompaktansicht"
1111
 
1112
  # @ broken-link-checker
1113
+ #: includes/admin/table-printer.php:186
1114
  msgid "Detailed View"
1115
  msgstr "Detailansicht"
1116
 
1117
  # @ broken-link-checker
1118
+ #: includes/admin/table-printer.php:215
1119
  msgid "Source"
1120
  msgstr "Quelle"
1121
 
1122
  # @ broken-link-checker
1123
+ #: includes/admin/table-printer.php:221
1124
  msgid "Link Text"
1125
  msgstr "Linktext"
1126
 
1127
  # @ broken-link-checker
1128
+ #: includes/admin/table-printer.php:228
1129
  msgid "Redirect URL"
1130
  msgstr "URL umleiten"
1131
 
1132
  # @ broken-link-checker
1133
+ #: includes/admin/table-printer.php:276
1134
  msgid "Bulk Actions"
1135
  msgstr "Massenänderung"
1136
 
1137
  # @ broken-link-checker
1138
+ #: includes/admin/table-printer.php:277 includes/admin/table-printer.php:654
1139
  msgid "Edit URL"
1140
  msgstr "Bearbeite URL"
1141
 
1142
  # @ broken-link-checker
1143
+ #: includes/admin/table-printer.php:278
1144
  msgid "Recheck"
1145
  msgstr "Erneut überprüfen"
1146
 
1147
  # @ broken-link-checker
1148
+ #: includes/admin/table-printer.php:279
1149
  msgid "Fix redirects"
1150
  msgstr "Feste Umleitungen"
1151
 
1152
  # @ broken-link-checker
1153
+ #: includes/admin/table-printer.php:280
1154
  msgid "Mark as not broken"
1155
  msgstr "Als nicht fehlerhaft markieren"
1156
 
1157
  # @ broken-link-checker
1158
+ #: includes/admin/table-printer.php:284
1159
  msgid "Move sources to Trash"
1160
  msgstr "Verschiebe Quelle in den Papierkorb"
1161
 
1162
  # @ broken-link-checker
1163
+ #: includes/admin/table-printer.php:286
1164
  msgid "Delete sources"
1165
  msgstr "Quellen löschen"
1166
 
1167
  # @ default
1168
+ #: includes/admin/table-printer.php:301
1169
  msgid "&laquo;"
1170
  msgstr "&laquo;"
1171
 
1172
  # @ default
1173
+ #: includes/admin/table-printer.php:302
1174
  msgid "&raquo;"
1175
  msgstr "&raquo;"
1176
 
1177
  # @ broken-link-checker
1178
+ #: includes/admin/table-printer.php:310
1179
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1180
  msgstr "Anzeigen %s&#8211;%s von <span class=\"current-link-count\">%s</span>"
1181
 
1182
  # @ broken-link-checker
1183
+ #: includes/admin/table-printer.php:333
1184
  msgid "Bulk Edit URLs"
1185
  msgstr "Mehrere URLs bearbeiten"
1186
 
1187
+ #: includes/admin/table-printer.php:335
1188
  msgid "Find"
1189
  msgstr "Finden"
1190
 
1191
+ #: includes/admin/table-printer.php:339
1192
  msgid "Replace with"
1193
  msgstr "Ersetzen mit"
1194
 
1195
  # @ broken-link-checker
1196
+ #: includes/admin/table-printer.php:347
1197
  msgid "Case sensitive"
1198
  msgstr "Gross- und Kleinschreibung"
1199
 
1200
+ #: includes/admin/table-printer.php:351
1201
  msgid "Regular expression"
1202
  msgstr "Regulärer Ausdruck"
1203
 
1204
  # @ broken-link-checker
1205
+ #: includes/admin/table-printer.php:359 includes/admin/table-printer.php:813
1206
  msgid "Update"
1207
  msgstr "Aktualisieren"
1208
 
1209
  # @ broken-link-checker
1210
+ #: includes/admin/table-printer.php:512
1211
  msgid "Post published on"
1212
  msgstr "Beitrag publiziert am"
1213
 
1214
  # @ broken-link-checker
1215
+ #: includes/admin/table-printer.php:517
1216
  msgid "Link last checked"
1217
  msgstr "Link zuletzt geprüft"
1218
 
1219
  # @ broken-link-checker
1220
+ #: includes/admin/table-printer.php:521
1221
  msgid "Never"
1222
  msgstr "Nie"
1223
 
1224
  # @ broken-link-checker
1225
+ #: includes/admin/table-printer.php:532
1226
  msgid "Response time"
1227
  msgstr "Reaktionszeit"
1228
 
1229
  # @ broken-link-checker
1230
+ #: includes/admin/table-printer.php:534
1231
  msgid "%2.3f seconds"
1232
  msgstr "%2.3f Sekunden"
1233
 
1234
  # @ broken-link-checker
1235
+ #: includes/admin/table-printer.php:537
1236
  msgid "Final URL"
1237
  msgstr "Endgültige URL"
1238
 
1239
  # @ broken-link-checker
1240
+ #: includes/admin/table-printer.php:542
1241
  msgid "Redirect count"
1242
  msgstr "Weiterleitung Anzahl"
1243
 
1244
  # @ broken-link-checker
1245
+ #: includes/admin/table-printer.php:547
1246
  msgid "Instance count"
1247
  msgstr "Instanz Anzahl"
1248
 
1249
  # @ broken-link-checker
1250
+ #: includes/admin/table-printer.php:556
1251
  msgid "This link has failed %d time."
1252
  msgid_plural "This link has failed %d times."
1253
  msgstr[0] "Dieser Link schlug %d mal fehl."
1254
  msgstr[1] "Dieser Link schlug %d mal fehl."
1255
 
1256
  # @ broken-link-checker
1257
+ #: includes/admin/table-printer.php:564
1258
  msgid "This link has been broken for %s."
1259
  msgstr "Dieser Links ist fehlerhaft seit %s."
1260
 
1261
  # @ broken-link-checker
1262
+ #: includes/admin/table-printer.php:575
1263
  msgid "Log"
1264
  msgstr "Log"
1265
 
1266
  # @ broken-link-checker
1267
+ #: includes/admin/table-printer.php:600
1268
  msgid "Show more info about this link"
1269
  msgstr "Mehr Informationen über diesen Link anzeigen"
1270
 
1271
  # @ broken-link-checker
1272
+ #: includes/admin/table-printer.php:618
1273
  msgctxt "checked how long ago"
1274
  msgid "Checked"
1275
  msgstr "Geprüft"
1276
 
1277
  # @ broken-link-checker
1278
+ #: includes/admin/table-printer.php:634
1279
  msgid "Broken for"
1280
  msgstr "Fehlerhaft für"
1281
 
1282
  # @ default
1283
+ #: includes/admin/table-printer.php:654
1284
  msgid "Edit this link"
1285
  msgstr "Diesen Link bearbeiten"
1286
 
1287
  # @ broken-link-checker
1288
+ #: includes/admin/table-printer.php:656
1289
  msgid "Remove this link from all posts"
1290
  msgstr "Löschen Sie diesen Link von allen Beiträgen"
1291
 
1292
  # @ broken-link-checker
1293
+ #: includes/admin/table-printer.php:662
1294
  msgid "Remove this link from the list of broken links and mark it as valid"
1295
  msgstr ""
1296
  "Löschen Sie diesen Link von der fehlerhaften Linkliste und markieren ihn als "
1297
  "gültig"
1298
 
1299
+ #: includes/admin/table-printer.php:670
1300
  msgid "Hide this link and do not report it again unless its status changes"
1301
  msgstr ""
1302
  "Verstecken Sie diesen Link und melden ihn nicht wieder, auch wenn sein "
1303
  "Status ändert"
1304
 
1305
+ #: includes/admin/table-printer.php:671
1306
  msgid "Dismiss"
1307
  msgstr "Ausblenden"
1308
 
1309
+ #: includes/admin/table-printer.php:676
1310
  msgid "Undismiss this link"
1311
  msgstr "Link wieder einblenden"
1312
 
1313
+ #: includes/admin/table-printer.php:677
1314
  msgid "Undismiss"
1315
  msgstr "Einblenden"
1316
 
1317
  # @ broken-link-checker
1318
+ #: includes/admin/table-printer.php:688
1319
  msgid "Update URL"
1320
  msgstr "Aktualisiere URL"
1321
 
1322
  # @ broken-link-checker
1323
+ #: includes/admin/table-printer.php:715
1324
  msgid "[An orphaned link! This is a bug.]"
1325
  msgstr "[Ein verwaister Link! Dies ist ein Bug.]"
1326
 
1327
  # @ broken-link-checker
1328
+ #: includes/admin/table-printer.php:792
1329
  msgctxt "inline editor title"
1330
  msgid "Edit Link"
1331
  msgstr "Link bearbeiten"
1332
 
1333
  # @ broken-link-checker
1334
+ #: includes/admin/table-printer.php:795
1335
  msgctxt "inline link editor"
1336
  msgid "Text"
1337
  msgstr "Text"
1338
 
1339
  # @ broken-link-checker
1340
+ #: includes/admin/table-printer.php:800
1341
  msgctxt "inline link editor"
1342
  msgid "URL"
1343
  msgstr "URL"
1344
 
1345
+ #: includes/admin/table-printer.php:805
1346
  msgctxt "inline link editor"
1347
  msgid "Suggestions"
1348
  msgstr "Vorschläge"
1349
 
1350
+ #: includes/admin/table-printer.php:825
1351
  msgid "Use this URL"
1352
  msgstr "URL verwenden"
1353
 
1354
  # @ default
1355
+ #: includes/any-post.php:398 modules/containers/blogroll.php:46
1356
  #: modules/containers/comment.php:153 modules/containers/custom_field.php:207
1357
  msgid "Edit"
1358
  msgstr "Bearbeiten"
1359
 
1360
  # @ default
1361
+ #: includes/any-post.php:406 modules/containers/custom_field.php:213
1362
  msgid "Move this item to the Trash"
1363
  msgstr "Element in den Papierkorb verschieben"
1364
 
1365
  # @ default
1366
+ #: includes/any-post.php:408 modules/containers/custom_field.php:215
1367
  msgid "Trash"
1368
  msgstr "Papierkorb"
1369
 
1370
  # @ default
1371
+ #: includes/any-post.php:413 modules/containers/custom_field.php:220
1372
  msgid "Delete this item permanently"
1373
  msgstr "Element endgültig löschen"
1374
 
1375
  # @ default
1376
+ #: includes/any-post.php:415 modules/containers/blogroll.php:47
1377
  #: modules/containers/custom_field.php:222
1378
  msgid "Delete"
1379
  msgstr "Löschen"
1380
 
1381
  # @ default
1382
+ #: includes/any-post.php:428
1383
  msgid "Preview &#8220;%s&#8221;"
1384
  msgstr "Vorschau &#8220;%s&#8221;"
1385
 
1386
  # @ default
1387
+ #: includes/any-post.php:429
1388
  msgid "Preview"
1389
  msgstr "Vorschau"
1390
 
1391
  # @ default
1392
+ #: includes/any-post.php:436
1393
  msgid "View &#8220;%s&#8221;"
1394
  msgstr "Ansehen &#8220;%s&#8221;"
1395
 
1396
  # @ default
1397
+ #: includes/any-post.php:437 modules/containers/comment.php:166
1398
  #: modules/containers/custom_field.php:227
1399
  msgid "View"
1400
  msgstr "Ansehen"
1401
 
1402
  # @ default
1403
+ #: includes/any-post.php:456 modules/containers/custom_field.php:207
1404
  msgid "Edit this item"
1405
  msgstr "Bearbeiten Sie dieses Element"
1406
 
1407
  # @ broken-link-checker
1408
+ #: includes/any-post.php:520 modules/containers/blogroll.php:83
1409
  #: modules/containers/comment.php:43
1410
  msgid "Nothing to update"
1411
  msgstr "Nichts zu aktualisieren"
1412
 
1413
  # @ broken-link-checker
1414
+ #: includes/any-post.php:530
1415
  msgid "Updating post %d failed"
1416
  msgstr "Beitrag Aktualisierung %d fehlgeschlagen"
1417
 
1418
  # @ broken-link-checker
1419
+ #: includes/any-post.php:567 modules/containers/custom_field.php:294
1420
  msgid "Failed to delete post \"%s\" (%d)"
1421
  msgstr "Löschen des Beitrages \"%s\" (%d) schlug fehl"
1422
 
1423
  # @ broken-link-checker
1424
+ #: includes/any-post.php:586 modules/containers/custom_field.php:313
1425
  msgid ""
1426
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
1427
  "disabled"
1430
  "diese Funktion deaktiviert ist"
1431
 
1432
  # @ broken-link-checker
1433
+ #: includes/any-post.php:606 modules/containers/custom_field.php:332
1434
  msgid "Failed to move post \"%s\" (%d) to the trash"
1435
  msgstr "Verschieben des Beitrages \"%s\" (%d) in den Papierkorb schlug fehl"
1436
 
1437
  # @ broken-link-checker
1438
+ #: includes/any-post.php:714
1439
  msgid "%d post deleted."
1440
  msgid_plural "%d posts deleted."
1441
  msgstr[0] "%d Artikel gelöscht."
1442
  msgstr[1] "%d Artikel gelöscht."
1443
 
1444
  # @ broken-link-checker
1445
+ #: includes/any-post.php:716
1446
  msgid "%d page deleted."
1447
  msgid_plural "%d pages deleted."
1448
  msgstr[0] "%d Seite gelöscht."
1449
  msgstr[1] "%d Seiten gelöscht."
1450
 
1451
  # @ broken-link-checker
1452
+ #: includes/any-post.php:718
1453
  msgid "%d \"%s\" deleted."
1454
  msgid_plural "%d \"%s\" deleted."
1455
  msgstr[0] "%d \"%s\" gelöscht."
1456
  msgstr[1] "%d \"%s\" gelöscht."
1457
 
1458
  # @ broken-link-checker
1459
+ #: includes/any-post.php:737
1460
  msgid "%d post moved to the Trash."
1461
  msgid_plural "%d posts moved to the Trash."
1462
  msgstr[0] "%d Artikel in den Papierkorb verschoben."
1463
  msgstr[1] "%d Artikel in den Papierkorb verschoben."
1464
 
1465
  # @ broken-link-checker
1466
+ #: includes/any-post.php:739
1467
  msgid "%d page moved to the Trash."
1468
  msgid_plural "%d pages moved to the Trash."
1469
  msgstr[0] "%d Seite in den Papierkorb verschoben."
1470
  msgstr[1] "%d Seiten in den Papierkorb verschoben."
1471
 
1472
  # @ broken-link-checker
1473
+ #: includes/any-post.php:741
1474
  msgid "%d \"%s\" moved to the Trash."
1475
  msgid_plural "%d \"%s\" moved to the Trash."
1476
  msgstr[0] "%d \"%s\" in den Papierkorb verschoben."
1694
  msgstr "Keine Links für Deine Anfrage gefunden"
1695
 
1696
  # @ broken-link-checker
1697
+ #: includes/links.php:222
1698
  msgid "The plugin script was terminated while trying to check the link."
1699
  msgstr "Das Plugin-Skript wurde beim Versuch den Link zu überprüfen beendet."
1700
 
1701
  # @ broken-link-checker
1702
+ #: includes/links.php:268
1703
  msgid "The plugin doesn't know how to check this type of link."
1704
  msgstr "Das Plugin weiss nicht genau, wie er diesen Link Typ überprüfen soll."
1705
 
1706
  # @ broken-link-checker
1707
+ #: includes/links.php:361
1708
  msgid "Link is valid."
1709
  msgstr "Link ist valide."
1710
 
1711
  # @ broken-link-checker
1712
+ #: includes/links.php:363
1713
  msgid "Link is broken."
1714
  msgstr "Link ist fehlerhaft."
1715
 
1716
  # @ broken-link-checker
1717
+ #: includes/links.php:582 includes/links.php:684 includes/links.php:711
1718
  msgid "Link is not valid"
1719
  msgstr "Link ist nicht gültig"
1720
 
1721
  # @ broken-link-checker
1722
+ #: includes/links.php:599
1723
  msgid ""
1724
  "This link can not be edited because it is not used anywhere on this site."
1725
  msgstr ""
1727
  "Website verwendet wird."
1728
 
1729
  # @ broken-link-checker
1730
+ #: includes/links.php:625
1731
  msgid "Failed to create a DB entry for the new URL."
1732
  msgstr ""
1733
  "Das Erstellen eines Datenbankeintrages für die neue URL ist fehlgeschlagen."
1734
 
1735
  # @ broken-link-checker
1736
+ #: includes/links.php:691
1737
  msgid "This link is not a redirect"
1738
  msgstr "Dieser Link ist keine Umleitung"
1739
 
1740
  # @ broken-link-checker
1741
+ #: includes/links.php:738 includes/links.php:775
1742
  msgid "Couldn't delete the link's database record"
1743
  msgstr "Links können nicht aus der Datenbank gelöscht werden"
1744
 
1745
  # @ broken-link-checker
1746
+ #: includes/links.php:849
1747
  msgctxt "link status"
1748
  msgid "Unknown"
1749
  msgstr "Unbekannt"
1750
 
1751
  # @ link status
1752
  # @ broken-link-checker
1753
+ #: includes/links.php:863 modules/checkers/http.php:289
1754
  #: modules/extras/mediafire.php:101
1755
  msgid "Unknown Error"
1756
  msgstr "Unbekannter Fehler"
1757
 
1758
  # @ broken-link-checker
1759
+ #: includes/links.php:887
1760
  msgid "Not checked"
1761
  msgstr "Nicht überprüft"
1762
 
1763
  # @ broken-link-checker
1764
+ #: includes/links.php:890
1765
  msgid "False positive"
1766
  msgstr "Falsch positiv"
1767
 
1768
  # @ broken-link-checker
1769
+ #: includes/links.php:893 modules/extras/fileserve.php:121
1770
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1771
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1772
  msgctxt "link status"
1854
  msgstr[1] "%d Monate vergangen"
1855
 
1856
  # @ broken-link-checker
1857
+ #: modules/checkers/http.php:268
1858
  msgid "Server Not Found"
1859
  msgstr "Server nicht gefunden"
1860
 
1861
  # @ broken-link-checker
1862
+ #: modules/checkers/http.php:283
1863
  msgid "Connection Failed"
1864
  msgstr "Verbindung fehlgeschlagen"
1865
 
1866
  # @ broken-link-checker
1867
+ #: modules/checkers/http.php:318 modules/checkers/http.php:388
1868
  msgid "HTTP code : %d"
1869
  msgstr "HTTP Code: %d"
1870
 
1871
  # @ broken-link-checker
1872
+ #: modules/checkers/http.php:320 modules/checkers/http.php:390
1873
  msgid "(No response)"
1874
  msgstr "(Keine Antwort)"
1875
 
1876
  # @ broken-link-checker
1877
+ #: modules/checkers/http.php:326
1878
  msgid "Most likely the connection timed out or the domain doesn't exist."
1879
  msgstr ""
1880
  "Vermutlich hat die Verbindung ein Timeout oder die Domain existiert nicht."
1881
 
1882
  # @ broken-link-checker
1883
+ #: modules/checkers/http.php:397
1884
  msgid "Request timed out."
1885
  msgstr "Erfordert Zeitlimit."
1886
 
1887
  # @ broken-link-checker
1888
+ #: modules/checkers/http.php:415
1889
  msgid "Using Snoopy"
1890
  msgstr "Benutzt Snoopy"
1891
 
languages/broken-link-checker-fr_FR.mo CHANGED
Binary file
languages/broken-link-checker-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: broken-link-checker v1.9.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
- "POT-Creation-Date: 2013-11-03 22:20+0100\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, "
@@ -20,7 +20,7 @@ msgstr ""
20
  "X-Generator: Poedit 1.5.7\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
- #: core/core.php:153 includes/admin/links-page-js.php:37
24
  msgid "Loading..."
25
  msgstr "Chargement..."
26
 
@@ -48,7 +48,7 @@ msgstr "Liens cass&eacute;s"
48
 
49
  #: core/core.php:317
50
  msgid "View Broken Links"
51
- msgstr "Voir Liens cass&eacute;s"
52
 
53
  #: core/core.php:332
54
  msgid "Feedback"
@@ -62,64 +62,64 @@ msgstr "Aller aux liens cassés"
62
  msgid "Settings"
63
  msgstr "R&eacute;glages"
64
 
65
- #: core/core.php:538
66
  msgid "Settings saved."
67
  msgstr "R&eacute;glages enregistr&eacute;s"
68
 
69
- #: core/core.php:544
70
  msgid "Thank you for your donation!"
71
  msgstr "Merci pour votre don!"
72
 
73
- #: core/core.php:552
74
  msgid "Complete site recheck started."
75
  msgstr "La v&eacute;rification compl&egrave;te a commenc&eacute;."
76
 
77
- #: core/core.php:561
78
  msgid "Details"
79
  msgstr "D&eacute;tails"
80
 
81
- #: core/core.php:575
82
  msgid "General"
83
  msgstr "G&eacute;n&eacute;ral"
84
 
85
- #: core/core.php:576
86
  msgid "Look For Links In"
87
  msgstr "Rechercher des liens dans"
88
 
89
- #: core/core.php:577
90
  msgid "Which Links To Check"
91
  msgstr "Quels liens v&eacute;rifier"
92
 
93
- #: core/core.php:578
94
  msgid "Protocols & APIs"
95
  msgstr "Protocoles & APIs"
96
 
97
- #: core/core.php:579
98
  msgid "Advanced"
99
  msgstr "Options avanc&eacute;es"
100
 
101
- #: core/core.php:594
102
  msgid "Broken Link Checker Options"
103
- msgstr "Options de <strong>Broken Link Checker</strong>"
104
 
105
- #: core/core.php:636 includes/admin/table-printer.php:200
106
  msgid "Status"
107
  msgstr "&Eacute;tat&nbsp;:"
108
 
109
- #: core/core.php:638 includes/admin/options-page-js.php:56
110
  msgid "Show debug info"
111
  msgstr "Afficher les informations de débogage"
112
 
113
- #: core/core.php:666
114
  msgid "Check each link"
115
- msgstr "V&eacute;rifier chaque lien&nbsp;:"
116
 
117
- #: core/core.php:671
118
  #, php-format
119
  msgid "Every %s hours"
120
  msgstr "Toutes les %s heures"
121
 
122
- #: core/core.php:680
123
  msgid ""
124
  "Existing links will be checked this often. New links will usually be checked "
125
  "ASAP."
@@ -128,183 +128,183 @@ msgstr ""
128
  "r&eacute;glage. Les nouveaux liens sont habituellement v&eacute;rifi&eacute;"
129
  "s d&egrave;s que possible."
130
 
131
- #: core/core.php:687
132
  msgid "E-mail notifications"
133
- msgstr "Message de notification"
134
 
135
- #: core/core.php:693
136
  msgid "Send me e-mail notifications about newly detected broken links"
137
  msgstr ""
138
  "M'envoyer un courriel de notification avec les nouveaux liens cass&eacute;s"
139
 
140
- #: core/core.php:701
141
  msgid "Send authors e-mail notifications about broken links in their posts"
142
  msgstr ""
143
  "Envoyer un courriel de notification aux auteurs des articles qui ont des "
144
  "liens cass&eacute;s"
145
 
146
- #: core/core.php:708
147
  msgid "Notification e-mail address"
148
  msgstr "Adresse e-mail pour la notification"
149
 
150
- #: core/core.php:720
151
  msgid ""
152
  "Leave empty to use the e-mail address specified in Settings &rarr; General."
153
  msgstr ""
154
  "Laissez vide pour utiliser l'adresse e-mail spécifiée dans les paramètres "
155
  "généraux."
156
 
157
- #: core/core.php:727
158
  msgid "Link tweaks"
159
  msgstr "Mettre en forme les liens"
160
 
161
- #: core/core.php:733
162
  msgid "Apply custom formatting to broken links"
163
  msgstr "Appliquer un affichage sp&eacute;cifique aux liens cass&eacute;s"
164
 
165
- #: core/core.php:737 core/core.php:768
166
  msgid "Edit CSS"
167
  msgstr "&Eacute;diter CSS"
168
 
169
- #: core/core.php:753
170
  #, php-format
171
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
172
  msgstr "Exemple : Lorem ipsum <a %s>lien cass&eacute;</a>, dolor sit amet."
173
 
174
- #: core/core.php:756 core/core.php:787
175
  msgid "Click \"Save Changes\" to update example output."
176
  msgstr ""
177
  "Appuyer sur \"Enregistrer les modifications\" pour mettre à jour l'exemple."
178
 
179
- #: core/core.php:764
180
  msgid "Apply custom formatting to removed links"
181
  msgstr "Appliquer un affichage sp&eacute;cifique aux liens supprim&eacute;s"
182
 
183
- #: core/core.php:784
184
  #, php-format
185
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
186
  msgstr ""
187
  "Exemple : Lorem ipsum <span %s>lien supprim&eacute;</span>, dolor sit amet."
188
 
189
- #: core/core.php:797
190
  msgid "Stop search engines from following broken links"
191
  msgstr ""
192
- "Arr&ecirc;tter la v&eacute;rification pour les liens cass&eacute;s suivants"
193
 
194
- #: core/core.php:805
195
  msgctxt "settings page"
196
  msgid "Suggestions"
197
  msgstr "Suggestions"
198
 
199
- #: core/core.php:811
200
  msgid "Suggest alternatives to broken links"
201
  msgstr "Proposer des alternatives aux liens cassés"
202
 
203
- #: core/core.php:827
204
  msgid "Look for links in"
205
  msgstr "Rechercher des liens dans"
206
 
207
- #: core/core.php:838
208
  msgid "Post statuses"
209
  msgstr "&Eacute;tats de l'article"
210
 
211
- #: core/core.php:871
212
  msgid "Link types"
213
  msgstr "Type du lien"
214
 
215
- #: core/core.php:877
216
  msgid "Error : All link parsers missing!"
217
  msgstr "Erreur: Tous les analyseurs de liens sont absents!"
218
 
219
- #: core/core.php:884
220
  msgid "Exclusion list"
221
- msgstr "Liste des exclusions&nbsp;:"
222
 
223
- #: core/core.php:885
224
  msgid ""
225
  "Don't check links where the URL contains any of these words (one per line) :"
226
  msgstr ""
227
  "Ne pas v&eacute;rifier les liens dont l'URL contient n'importe lequel de ces "
228
  "mots (un par ligne)&nbsp;:"
229
 
230
- #: core/core.php:903
231
  msgid "Check links using"
232
  msgstr "V&eacute;rifier les liens en utilisant"
233
 
234
- #: core/core.php:922 includes/links.php:857
235
  msgid "Timeout"
236
- msgstr "Timeout&nbsp;:"
237
 
238
- #: core/core.php:928 core/core.php:997 core/core.php:2904
239
  #, php-format
240
  msgid "%s seconds"
241
  msgstr "%s secondes"
242
 
243
- #: core/core.php:937
244
  msgid "Links that take longer than this to load will be marked as broken."
245
  msgstr ""
246
  "Les liens qui prennent plus de temps que cela à se charger seront "
247
  "marqu&eacute;s comme cass&eacute;s."
248
 
249
- #: core/core.php:944
250
  msgid "Link monitor"
251
  msgstr "Surveillance des liens"
252
 
253
- #: core/core.php:952
254
  msgid "Run continuously while the Dashboard is open"
255
  msgstr ""
256
  "V&eacute;rifier en continu tant que le tableau de bord est utlis&eacute;"
257
 
258
- #: core/core.php:960
259
  msgid "Run hourly in the background"
260
  msgstr "V&eacute;rifier toutes les heures en tache de fond"
261
 
262
- #: core/core.php:968
263
  msgid "Show the dashboard widget for"
264
  msgstr "Afficher le widget sur le tableau de bord pour"
265
 
266
- #: core/core.php:973
267
  msgctxt "dashboard widget visibility"
268
  msgid "Administrator"
269
  msgstr "Administrateur"
270
 
271
- #: core/core.php:974
272
  msgctxt "dashboard widget visibility"
273
  msgid "Editor and above"
274
  msgstr "Editeur et plus"
275
 
276
- #: core/core.php:975
277
  msgctxt "dashboard widget visibility"
278
  msgid "Nobody (disables the widget)"
279
  msgstr "Personne (désactivé le widget)"
280
 
281
- #: core/core.php:991
282
  msgid "Max. execution time"
283
  msgstr "Temps d'ex&eacute;cution maximal&nbsp;:"
284
 
285
- #: core/core.php:1008
286
  msgid ""
287
  "The plugin works by periodically launching a background job that parses your "
288
  "posts for links, checks the discovered URLs, and performs other time-"
289
  "consuming tasks. Here you can set for how long, at most, the link monitor "
290
  "may run each time before stopping."
291
  msgstr ""
292
- "Cette extension fonctionne en cr&eacute;ant un processus en fond de t&acirc;"
293
- "che p&eacute;riodiquement qui parcourt les articles en cherchant les liens, "
294
  "v&eacute;rifie les URL d&eacute;couvertes, et effectue d'autres t&acirc;ches "
295
  "consommatrices de temps. Vous pouvez sp&eacute;cifier ici le temps maximal "
296
  "o&ugrave; le processus peut s'ex&eacute;cuter avant de s'arr&ecirc;ter."
297
 
298
- #: core/core.php:1017
299
  msgid "Server load limit"
300
- msgstr "Taux de charge du serveur"
301
 
302
- #: core/core.php:1032
303
  #, php-format
304
  msgid "Current load : %s"
305
  msgstr "Charge courante : %s"
306
 
307
- #: core/core.php:1038
308
  #, php-format
309
  msgid ""
310
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
@@ -314,11 +314,11 @@ msgstr ""
314
  "moyenne du serveur </a> d&eacute;passe ce taux. Laisser vide pour ne pas "
315
  "positionner de limite de charge."
316
 
317
- #: core/core.php:1046
318
  msgid "Not available"
319
  msgstr "Pas disponible"
320
 
321
- #: core/core.php:1048
322
  msgid ""
323
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
324
  "code> is present and accessible."
@@ -327,15 +327,37 @@ msgstr ""
327
  "type Linux o&ugrave; <code>/proc/loadavg</code> est pr&eacute;sent et "
328
  "autoris&eacute;."
329
 
330
- #: core/core.php:1056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
331
  msgid "Forced recheck"
332
  msgstr "Forcer une rev&eacute;rification"
333
 
334
- #: core/core.php:1059
335
  msgid "Re-check all pages"
336
  msgstr "Rev&eacute;rifier toutes les pages"
337
 
338
- #: core/core.php:1063
339
  msgid ""
340
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
341
  "database and recheck the entire site from scratch."
@@ -343,15 +365,15 @@ msgstr ""
343
  "L'option nucl&eacute;aire. Appuyer sur ce bouton pour que le plugin vide sa "
344
  "base de liens et rev&eacute;rifie tout le site depuis le d&eacute;but."
345
 
346
- #: core/core.php:1074
347
  msgid "Save Changes"
348
  msgstr "Enregistrer les modifications"
349
 
350
- #: core/core.php:1125
351
  msgid "Configure"
352
  msgstr "Configurer"
353
 
354
- #: core/core.php:1208
355
  msgid ""
356
  "Enter the names of custom fields you want to check (one per line). If a "
357
  "field contains HTML code, prefix its name with <code>html:</code>. For "
@@ -361,79 +383,79 @@ msgstr ""
361
  "ligne). Si un champ contient du code HTML, préfixez son nom par <code>html:</"
362
  "code>. Par exemple <code>html:nom_du_champ</code>."
363
 
364
- #: core/core.php:1338 core/core.php:1421 core/core.php:1453
365
  #, php-format
366
  msgid "Database error : %s"
367
  msgstr "Erreur de base de donn&eacute;es&nbsp;: %s"
368
 
369
- #: core/core.php:1403
370
  msgid "You must enter a filter name!"
371
  msgstr "Vous devez donner un nom au filtre!"
372
 
373
- #: core/core.php:1407
374
  msgid "Invalid search query."
375
  msgstr "Requ&ecirc;te incorrecte."
376
 
377
- #: core/core.php:1416
378
  #, php-format
379
  msgid "Filter \"%s\" created"
380
  msgstr "Filtre \"%s\" cr&eacute;&eacute;"
381
 
382
- #: core/core.php:1443
383
  msgid "Filter ID not specified."
384
  msgstr "ID du flitre non sp&eacute;cifi&eacute;."
385
 
386
- #: core/core.php:1450
387
  msgid "Filter deleted"
388
  msgstr "Filtre supprim&eacute;"
389
 
390
- #: core/core.php:1498
391
  #, php-format
392
  msgid "Replaced %d redirect with a direct link"
393
  msgid_plural "Replaced %d redirects with direct links"
394
  msgstr[0] "Remplacement de la redirection %d par un lien direct"
395
  msgstr[1] "Remplacement des redirections %d par des liens directs"
396
 
397
- #: core/core.php:1509
398
  #, php-format
399
  msgid "Failed to fix %d redirect"
400
  msgid_plural "Failed to fix %d redirects"
401
  msgstr[0] "Impossible de r&eacute;parer la redirection %d"
402
  msgstr[1] "Impossible de r&eacute;parer les redirections %d"
403
 
404
- #: core/core.php:1519
405
  msgid "None of the selected links are redirects!"
406
  msgstr "Aucun des liens s&eacute;lectionn&eacute; ne sont des redirections!"
407
 
408
- #: core/core.php:1598
409
  #, php-format
410
  msgid "%d link updated."
411
  msgid_plural "%d links updated."
412
  msgstr[0] "Le lien %d a &eacute;t&eacute; mis &agrave; jour."
413
  msgstr[1] "Les liens %d ont &eacute;t&eacute; mis &agrave; jour."
414
 
415
- #: core/core.php:1609
416
  #, php-format
417
  msgid "Failed to update %d link."
418
  msgid_plural "Failed to update %d links."
419
  msgstr[0] "Impossible de mettre &agrave; jour le lien %d."
420
  msgstr[1] "Impossible de mettre &agrave; jour les liens %d."
421
 
422
- #: core/core.php:1698
423
  #, php-format
424
  msgid "%d link removed"
425
  msgid_plural "%d links removed"
426
  msgstr[0] "Le lien %d a &eacute;t&eacute; supprim&eacute;"
427
  msgstr[1] "Les liens %d ont &eacute;t&eacute; supprim&eacute;s"
428
 
429
- #: core/core.php:1709
430
  #, php-format
431
  msgid "Failed to remove %d link"
432
  msgid_plural "Failed to remove %d links"
433
  msgstr[0] "Impossible de supprimer le lien %d"
434
  msgstr[1] "Impossible de supprimer les liens %d"
435
 
436
- #: core/core.php:1818
437
  #, php-format
438
  msgid ""
439
  "%d item was skipped because it can't be moved to the Trash. You need to "
@@ -448,27 +470,27 @@ msgstr[1] ""
448
  "%d liens ont &eacute;t&eacute; ignor&eacute;s parcequ'ils ne peuvent pas "
449
  "&ecirc;tre mis dans la poubelle. Vous devez les supprimer manuellement."
450
 
451
- #: core/core.php:1839
452
  msgid "Didn't find anything to delete!"
453
  msgstr "Aucune suppression à faire!"
454
 
455
- #: core/core.php:1868
456
  #, php-format
457
  msgid "%d link scheduled for rechecking"
458
  msgid_plural "%d links scheduled for rechecking"
459
  msgstr[0] "%d lien est programm&eacute; pour un nouveau contr&ocirc;le."
460
  msgstr[1] "%d liens sont programm&eacute;s pour un nouveau contr&ocirc;le."
461
 
462
- #: core/core.php:1913 core/core.php:2522
463
  msgid "This link was manually marked as working by the user."
464
  msgstr "Ce lien a été manuellement marqué comme valide par l'utilisateur."
465
 
466
- #: core/core.php:1920
467
  #, php-format
468
  msgid "Couldn't modify link %d"
469
  msgstr "Impossible de modifier le lien %d"
470
 
471
- #: core/core.php:1931
472
  #, php-format
473
  msgid "%d link marked as not broken"
474
  msgid_plural "%d links marked as not broken"
@@ -477,196 +499,196 @@ msgstr[0] ""
477
  msgstr[1] ""
478
  "Les liens %d ont &eacute;t&eacute; marqu&eacute;s comme non cass&eacute;."
479
 
480
- #: core/core.php:1970
481
  msgid "Table columns"
482
  msgstr "Colonnes du tableau"
483
 
484
- #: core/core.php:1989
485
  msgid "Show on screen"
486
  msgstr "Voir &agrave; l'&eacute;cran"
487
 
488
- #: core/core.php:1996
489
  msgid "links"
490
  msgstr "liens"
491
 
492
- #: core/core.php:1997 includes/admin/table-printer.php:168
493
  msgid "Apply"
494
  msgstr "Appliquer"
495
 
496
- #: core/core.php:2001
497
  msgid "Misc"
498
  msgstr "Divers"
499
 
500
- #: core/core.php:2016
501
  #, php-format
502
  msgid "Highlight links broken for at least %s days"
503
  msgstr ""
504
  "Mettre en surbrillance les liens qui sont cass&eacute;s depuis au moins %s "
505
  "jours"
506
 
507
- #: core/core.php:2025
508
  msgid "Color-code status codes"
509
  msgstr "Code de couleur pour les &eacute;tats"
510
 
511
- #: core/core.php:2042 core/core.php:2507 core/core.php:2547 core/core.php:2580
512
- #: core/core.php:2667
513
  msgid "You're not allowed to do that!"
514
  msgstr "Vous n'êtes pas autorisé à faire cela !"
515
 
516
- #: core/core.php:2377
517
  msgid "View broken links"
518
  msgstr "Voir les liens cass&eacute;s"
519
 
520
- #: core/core.php:2378
521
  #, php-format
522
  msgid "Found %d broken link"
523
  msgid_plural "Found %d broken links"
524
  msgstr[0] "%d lien cass&eacute; trouv&eacute;"
525
  msgstr[1] "%d liens cass&eacute;s trouv&eacute;s"
526
 
527
- #: core/core.php:2384
528
  msgid "No broken links found."
529
  msgstr "Aucun lien cass&eacute; trouv&eacute;"
530
 
531
- #: core/core.php:2391
532
  #, php-format
533
  msgid "%d URL in the work queue"
534
  msgid_plural "%d URLs in the work queue"
535
  msgstr[0] "%d URL dans la file d'attente"
536
  msgstr[1] "%d URLs dans la file d'attente"
537
 
538
- #: core/core.php:2394
539
  msgid "No URLs in the work queue."
540
  msgstr "Aucune URL dans la file d'attente."
541
 
542
- #: core/core.php:2410
543
  #, php-format
544
  msgid "Detected %1$s in %2$s and still searching..."
545
  msgstr "Trouver %1$s dans %2$s et continue la recherche..."
546
 
547
- #: core/core.php:2416
548
  #, php-format
549
  msgid "Detected %1$s in %2$s."
550
  msgstr "Trouver %1$s dans %2$s."
551
 
552
- #: core/core.php:2423
553
  msgid "Searching your blog for links..."
554
  msgstr "Recherche des liens de votre blog..."
555
 
556
- #: core/core.php:2425
557
  msgid "No links detected."
558
  msgstr "Aucun lien détecté."
559
 
560
- #: core/core.php:2451
561
  msgctxt "current load"
562
  msgid "Unknown"
563
  msgstr "Inconnu"
564
 
565
- #: core/core.php:2515 core/core.php:2555 core/core.php:2595 core/core.php:2677
566
  #, php-format
567
  msgid "Oops, I can't find the link %d"
568
  msgstr "Oups, je ne trouve pas le lien %d"
569
 
570
- #: core/core.php:2528 core/core.php:2565
571
  msgid "Oops, couldn't modify the link!"
572
  msgstr "Oups, ne peut pas modifier ce lien !"
573
 
574
- #: core/core.php:2531 core/core.php:2568 core/core.php:2703
575
  msgid "Error : link_id not specified"
576
  msgstr "Erreur : link_id non spécifié"
577
 
578
- #: core/core.php:2586
579
  msgid "Error : link_id or new_url not specified"
580
  msgstr "Erreur : link_id ou new_url non spécifié !"
581
 
582
- #: core/core.php:2604
583
  msgid "Oops, the new URL is invalid!"
584
  msgstr "Oups, la nouvelle URL est invalide !"
585
 
586
- #: core/core.php:2619
587
  msgid "An unexpected error occurred!"
588
  msgstr "Une erreur inattendue a eu lieu !"
589
 
590
- #: core/core.php:2686
591
  msgid "An unexpected error occured!"
592
  msgstr "Une erreur inattendue a eu lieu !"
593
 
594
- #: core/core.php:2712
595
  msgid "You don't have sufficient privileges to access this information!"
596
  msgstr "Vous n'avez pas assez de droit pour obtenir cette information !"
597
 
598
- #: core/core.php:2725
599
  msgid "Error : link ID not specified"
600
  msgstr "Erreur : link ID non spécifié"
601
 
602
- #: core/core.php:2739
603
  #, php-format
604
  msgid "Failed to load link details (%s)"
605
- msgstr "Echec pour charger les détails (%s)"
606
 
607
- #: core/core.php:2793
608
  msgid "Broken Link Checker"
609
  msgstr "Broken Link Checker"
610
 
611
- #: core/core.php:2813
612
  msgid "PHP version"
613
  msgstr "Version PHP"
614
 
615
- #: core/core.php:2819
616
  msgid "MySQL version"
617
  msgstr "Version MySQL"
618
 
619
- #: core/core.php:2832
620
  msgid ""
621
  "You have an old version of CURL. Redirect detection may not work properly."
622
  msgstr ""
623
- "Vous avez une vieille version de cURL. Les détections des redirections "
624
  "pourraient ne pas fonctionner correctement."
625
 
626
- #: core/core.php:2844 core/core.php:2860 core/core.php:2865
627
  msgid "Not installed"
628
  msgstr "Pas installé"
629
 
630
- #: core/core.php:2847
631
  msgid "CURL version"
632
- msgstr "Version cURL"
633
 
634
- #: core/core.php:2853
635
  msgid "Installed"
636
  msgstr "Installé"
637
 
638
- #: core/core.php:2866
639
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
640
  msgstr ""
641
- "Vous devez avoir soit cURL, soit Snoopy d'installé pour que l'extension "
642
  "fonctionne !"
643
 
644
- #: core/core.php:2877
645
  msgid "On"
646
  msgstr "Activé"
647
 
648
- #: core/core.php:2878
649
  msgid "Redirects may be detected as broken links when safe_mode is on."
650
  msgstr ""
651
  "Les redirections peuvent être détectées comme des liens cassés quand le "
652
  "safe_mode est activé."
653
 
654
- #: core/core.php:2883 core/core.php:2897
655
  msgid "Off"
656
  msgstr "Désactivé"
657
 
658
- #: core/core.php:2891
659
  #, php-format
660
  msgid "On ( %s )"
661
  msgstr "Activé ( %s )"
662
 
663
- #: core/core.php:2892
664
  msgid "Redirects may be detected as broken links when open_basedir is on."
665
  msgstr ""
666
  "Les redirections peuvent être détectées comme des liens cassés quand "
667
  "open_basedir est activé."
668
 
669
- #: core/core.php:2921
670
  msgid ""
671
  "If this value is zero even after several page reloads you have probably "
672
  "encountered a bug."
@@ -674,12 +696,12 @@ msgstr ""
674
  "Si cette valeur est &agrave; z&eacute;ro m&ecirc;me apr&egrave;s plusieurs "
675
  "rechargement vous avez probablement rencontr&eacute; un bogue."
676
 
677
- #: core/core.php:3044 core/core.php:3159
678
  #, php-format
679
  msgid "[%s] Broken links detected"
680
  msgstr "[%s] liens cass&eacute;s trouv&eacute;s"
681
 
682
- #: core/core.php:3050
683
  #, php-format
684
  msgid "Broken Link Checker has detected %d new broken link on your site."
685
  msgid_plural ""
@@ -691,37 +713,37 @@ msgstr[1] ""
691
  "Broken Link Checker a trouv&eacute; %d nouveaux liens cass&eacute;s dans "
692
  "votre site."
693
 
694
- #: core/core.php:3081
695
  #, php-format
696
  msgid "Here's a list of the first %d broken links:"
697
  msgid_plural "Here's a list of the first %d broken links:"
698
  msgstr[0] "Ici se trouve une liste du %d nouveau lien cass&eacute;:"
699
  msgstr[1] "Ici se trouve une liste des %d nouveaux liens cass&eacute;s:"
700
 
701
- #: core/core.php:3089
702
  msgid "Here's a list of the new broken links: "
703
  msgstr "Ici se trouve une liste des nouveaux liens cass&eacute;s:"
704
 
705
- #: core/core.php:3098
706
  #, php-format
707
  msgid "Link text : %s"
708
  msgstr "Texte du lien : %s"
709
 
710
- #: core/core.php:3099
711
  #, php-format
712
  msgid "Link URL : <a href=\"%s\">%s</a>"
713
- msgstr "URL : <a href=\"%s\">%s</a>"
714
 
715
- #: core/core.php:3100
716
  #, php-format
717
  msgid "Source : %s"
718
  msgstr "Source : %s"
719
 
720
- #: core/core.php:3114
721
  msgid "You can see all broken links here:"
722
  msgstr "Vous pouvez voir tous les liens cass&eacute;s ici:"
723
 
724
- #: core/core.php:3165
725
  #, php-format
726
  msgid "Broken Link Checker has detected %d new broken link in your posts."
727
  msgid_plural ""
@@ -733,15 +755,15 @@ msgstr[1] ""
733
  "Broken Link Checker a trouv&eacute; %d nouveaux liens cass&eacute;s dans vos "
734
  "articles."
735
 
736
- #: core/init.php:242
737
  msgid "Once Weekly"
738
  msgstr "Une fois par semaine"
739
 
740
- #: core/init.php:248
741
  msgid "Twice a Month"
742
  msgstr "Deux fois par mois"
743
 
744
- #: core/init.php:324
745
  msgid ""
746
  "Broken Link Checker installation failed. Try deactivating and then "
747
  "reactivating the plugin."
@@ -749,67 +771,75 @@ msgstr ""
749
  "L'installation de Broken Link Checher a &eacute;chou&eacute;.Essayer de "
750
  "d&eacute;sactiver puis de r&eacute;activer le plugin."
751
 
752
- #: includes/any-post.php:397 modules/containers/blogroll.php:46
 
 
 
 
 
 
 
 
753
  #: modules/containers/comment.php:153 modules/containers/custom_field.php:207
754
  msgid "Edit"
755
- msgstr "&Eacute;diter"
756
 
757
- #: includes/any-post.php:405 modules/containers/custom_field.php:213
758
  msgid "Move this item to the Trash"
759
  msgstr "D&eacute;placer cet objet dans la poubelle"
760
 
761
- #: includes/any-post.php:407 modules/containers/custom_field.php:215
762
  msgid "Trash"
763
  msgstr "Poubelle"
764
 
765
- #: includes/any-post.php:412 modules/containers/custom_field.php:220
766
  msgid "Delete this item permanently"
767
  msgstr "Supprimer cet objet de mani&egrave;re permanente"
768
 
769
- #: includes/any-post.php:414 modules/containers/blogroll.php:47
770
  #: modules/containers/custom_field.php:222
771
  msgid "Delete"
772
  msgstr "Supprimer"
773
 
774
- #: includes/any-post.php:427
775
  #, php-format
776
  msgid "Preview &#8220;%s&#8221;"
777
  msgstr "Pr&eacute;visualisation &#8220;%s&#8221;"
778
 
779
- #: includes/any-post.php:428
780
  msgid "Preview"
781
  msgstr "Pr&eacute;visualisation"
782
 
783
- #: includes/any-post.php:435
784
  #, php-format
785
  msgid "View &#8220;%s&#8221;"
786
  msgstr "Voir &#8220;%s&#8221;"
787
 
788
- #: includes/any-post.php:436 modules/containers/comment.php:166
789
  #: modules/containers/custom_field.php:227
790
  msgid "View"
791
  msgstr "Afficher"
792
 
793
- #: includes/any-post.php:455 modules/containers/custom_field.php:207
794
  msgid "Edit this item"
795
  msgstr "Modifier cet objet"
796
 
797
- #: includes/any-post.php:519 modules/containers/blogroll.php:83
798
  #: modules/containers/comment.php:43
799
  msgid "Nothing to update"
800
  msgstr "Rien &agrave; mettre &agrave; jour"
801
 
802
- #: includes/any-post.php:529
803
  #, php-format
804
  msgid "Updating post %d failed"
805
  msgstr "La mise &agrave jour de l'article %d a &eacute;chou&eacute;"
806
 
807
- #: includes/any-post.php:566 modules/containers/custom_field.php:294
808
  #, php-format
809
  msgid "Failed to delete post \"%s\" (%d)"
810
  msgstr "&Eacute;chec de la suppression de l'article \"%s\" (%d)"
811
 
812
- #: includes/any-post.php:585 modules/containers/custom_field.php:313
813
  #, php-format
814
  msgid ""
815
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
@@ -818,47 +848,47 @@ msgstr ""
818
  "Impossible de mettre l'article \"%s\" (%d) &agrave; la poubelle car la "
819
  "fonction 'poubelle' n'est pas active"
820
 
821
- #: includes/any-post.php:605 modules/containers/custom_field.php:332
822
  #, php-format
823
  msgid "Failed to move post \"%s\" (%d) to the trash"
824
  msgstr "Echec du d&eacute;placement de l'article \"%s\" (%d) dans la poubelle"
825
 
826
- #: includes/any-post.php:713
827
  #, php-format
828
  msgid "%d post deleted."
829
  msgid_plural "%d posts deleted."
830
  msgstr[0] "%d article supprim&eacute;."
831
  msgstr[1] "%d articles supprim&eacute;s."
832
 
833
- #: includes/any-post.php:715
834
  #, php-format
835
  msgid "%d page deleted."
836
  msgid_plural "%d pages deleted."
837
  msgstr[0] "%d page supprim&eacute;e."
838
  msgstr[1] "%d pages supprim&eacute;es."
839
 
840
- #: includes/any-post.php:717
841
  #, php-format
842
  msgid "%d \"%s\" deleted."
843
  msgid_plural "%d \"%s\" deleted."
844
  msgstr[0] "%d \"%s\" supprim&eacute;."
845
  msgstr[1] "%d \"%s\" supprim&eacute;s."
846
 
847
- #: includes/any-post.php:736
848
  #, php-format
849
  msgid "%d post moved to the Trash."
850
  msgid_plural "%d posts moved to the Trash."
851
  msgstr[0] "%d article deplac&eacute; dans la poubelle."
852
  msgstr[1] "%d articles deplac&eacute;s dans la poubelle."
853
 
854
- #: includes/any-post.php:738
855
  #, php-format
856
  msgid "%d page moved to the Trash."
857
  msgid_plural "%d pages moved to the Trash."
858
  msgstr[0] "%d page d&eacute;plac&eacute;e dans la poubelle."
859
  msgstr[1] "%d pages d&eacute;plac&eacute;es dans la poubelle."
860
 
861
- #: includes/any-post.php:740
862
  #, php-format
863
  msgid "%d \"%s\" moved to the Trash."
864
  msgid_plural "%d \"%s\" moved to the Trash."
@@ -1053,70 +1083,70 @@ msgstr "R&eacute;sultats de la recherche"
1053
  msgid "No links found for your query"
1054
  msgstr "Pas de lien trouv&eacute; dans votre requ&ecirc;te"
1055
 
1056
- #: includes/links.php:218
1057
  msgid "The plugin script was terminated while trying to check the link."
1058
  msgstr ""
1059
  "Le code du plugin a &eacute;t&eacute interrompu pendant la v&eacute;"
1060
  "rification du lien."
1061
 
1062
- #: includes/links.php:264
1063
  msgid "The plugin doesn't know how to check this type of link."
1064
  msgstr "Le plugin ne sait pas comment v&eacute;rifier ce type de lien."
1065
 
1066
- #: includes/links.php:357
1067
  msgid "Link is valid."
1068
  msgstr "Le lien est valide."
1069
 
1070
- #: includes/links.php:359
1071
  msgid "Link is broken."
1072
  msgstr "Le lien est cassé."
1073
 
1074
- #: includes/links.php:572 includes/links.php:674 includes/links.php:701
1075
  msgid "Link is not valid"
1076
  msgstr "Lien non valide"
1077
 
1078
- #: includes/links.php:589
1079
  msgid ""
1080
  "This link can not be edited because it is not used anywhere on this site."
1081
  msgstr ""
1082
  "Ce lien ne peut pas &ecirc;tre modif&eacute; car il n'est plus utlis&eacute; "
1083
  "dans tous le site."
1084
 
1085
- #: includes/links.php:615
1086
  msgid "Failed to create a DB entry for the new URL."
1087
  msgstr ""
1088
  "Impossible de cr&eacute;er un enregistrement dans la base de donn&eacute;es "
1089
  "pour la nouvelle URL."
1090
 
1091
- #: includes/links.php:681
1092
  msgid "This link is not a redirect"
1093
  msgstr "Ce lien n'est pas une redirection"
1094
 
1095
- #: includes/links.php:728 includes/links.php:765
1096
  msgid "Couldn't delete the link's database record"
1097
  msgstr ""
1098
  "Impossible de supprimer l'enregistrement pour la lien dans la base de "
1099
  "donn&eacute;es"
1100
 
1101
- #: includes/links.php:839
1102
  msgctxt "link status"
1103
  msgid "Unknown"
1104
  msgstr "Erreur inconnue"
1105
 
1106
- #: includes/links.php:853 modules/checkers/http.php:263
1107
  #: modules/extras/mediafire.php:101
1108
  msgid "Unknown Error"
1109
  msgstr "Erreur inconnue"
1110
 
1111
- #: includes/links.php:877
1112
  msgid "Not checked"
1113
  msgstr "Pas v&eacute;rifi&eacute;"
1114
 
1115
- #: includes/links.php:880
1116
  msgid "False positive"
1117
  msgstr "Faux positif"
1118
 
1119
- #: includes/links.php:883 modules/extras/fileserve.php:121
1120
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1121
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1122
  msgctxt "link status"
@@ -1210,48 +1240,48 @@ msgstr ""
1210
  "Impossible de supprimer les vieilles tables dans la base de donn&eacute;es. "
1211
  "Erreur : %s"
1212
 
1213
- #: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:517
1214
  msgid "Wait..."
1215
  msgstr "Attendez..."
1216
 
1217
- #: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:658
1218
  msgid "Not broken"
1219
  msgstr "Pas cass&eacute;"
1220
 
1221
- #: includes/admin/links-page-js.php:235
1222
  msgctxt "link text"
1223
  msgid "(None)"
1224
  msgstr "(Aucun)"
1225
 
1226
- #: includes/admin/links-page-js.php:236
1227
  msgctxt "link text"
1228
  msgid "(Multiple links)"
1229
  msgstr "(Liens multiples)"
1230
 
1231
- #: includes/admin/links-page-js.php:294
1232
  msgctxt "link suggestions"
1233
  msgid "Searching..."
1234
  msgstr "Rechercher..."
1235
 
1236
- #: includes/admin/links-page-js.php:295
1237
  msgctxt "link suggestions"
1238
  msgid "No suggestions available."
1239
  msgstr "Pas de suggestions disponibles."
1240
 
1241
- #: includes/admin/links-page-js.php:296
1242
  #, php-format
1243
  msgctxt "link suggestions"
1244
  msgid "Archived page from %s (via the Wayback Machine)"
1245
  msgstr "Page d'archive de %s (par Wayback Machine)"
1246
 
1247
- #: includes/admin/links-page-js.php:379
1248
  #, php-format
1249
  msgid "%d instances of the link were successfully modified."
1250
  msgstr ""
1251
  "%d occurences du lien ont &eacute;t&eacute; modifi&eacute;es avec "
1252
  "succ&egrave;."
1253
 
1254
- #: includes/admin/links-page-js.php:385
1255
  #, php-format
1256
  msgid ""
1257
  "However, %d instances couldn't be edited and still point to the old URL."
@@ -1259,48 +1289,48 @@ msgstr ""
1259
  "Cependant, %d occurences n'ont pas &eacute;t&eacute; mises &agrave; jour et "
1260
  "pointent vers l'ancienne URL."
1261
 
1262
- #: includes/admin/links-page-js.php:391
1263
  msgid "The link could not be modified."
1264
  msgstr "Le lien ne peut pas &ecirc;tre modifi&eacute;."
1265
 
1266
- #: includes/admin/links-page-js.php:394
1267
  msgid "The following error(s) occurred :"
1268
  msgstr "L'erreur suivante est survenue :"
1269
 
1270
- #: includes/admin/links-page-js.php:480
1271
  msgid "Error: Link URL must not be empty."
1272
  msgstr "Erreur: l'URL du lien ne doit pas être vide."
1273
 
1274
- #: includes/admin/links-page-js.php:555
1275
  #, php-format
1276
  msgid "%d instances of the link were successfully unlinked."
1277
  msgstr ""
1278
  "%d occurences du lien ont &eacute;t&eacute; d&eacute;faites avec succ&egrave;"
1279
  "s"
1280
 
1281
- #: includes/admin/links-page-js.php:561
1282
  #, php-format
1283
  msgid "However, %d instances couldn't be removed."
1284
  msgstr "Cependant, %d occurences ne peuvent pas &ecirc;tre supprim&eacute;es."
1285
 
1286
- #: includes/admin/links-page-js.php:566
1287
  msgid "The plugin failed to remove the link."
1288
  msgstr "L'extension n'a pas pu supprimer ce lien."
1289
 
1290
- #: includes/admin/links-page-js.php:569
1291
  msgid "The following error(s) occured :"
1292
  msgstr "L'erreur suivante est survenue :"
1293
 
1294
- #: includes/admin/links-page-js.php:577 includes/admin/table-printer.php:276
1295
- #: includes/admin/table-printer.php:652
1296
  msgid "Unlink"
1297
  msgstr "D&eacute;lier"
1298
 
1299
- #: includes/admin/links-page-js.php:621
1300
  msgid "Enter a name for the new custom filter"
1301
  msgstr "Donner un nom pour le nouveau filtre de recherche"
1302
 
1303
- #: includes/admin/links-page-js.php:632
1304
  msgid ""
1305
  "You are about to delete the current filter.\n"
1306
  "'Cancel' to stop, 'OK' to delete"
@@ -1308,7 +1338,7 @@ msgstr ""
1308
  "Vous &ecirc;tes sur le point de supprimer le filtre courant.\n"
1309
  "'Annuler' pour le conserver, 'OK' pour le supprimer."
1310
 
1311
- #: includes/admin/links-page-js.php:652
1312
  msgid ""
1313
  "Are you sure you want to delete all posts, bookmarks or other items that "
1314
  "contain any of the selected links? This action can't be undone.\n"
@@ -1319,7 +1349,7 @@ msgstr ""
1319
  "lectionn&eacute;s? Cette action ne pourra pas &ecirc;tre annul&eacute;e.\n"
1320
  "'Annuler' pour le conserver, 'OK' pour le supprimer."
1321
 
1322
- #: includes/admin/links-page-js.php:662
1323
  msgid ""
1324
  "Are you sure you want to remove the selected links? This action can't be "
1325
  "undone.\n"
@@ -1329,11 +1359,11 @@ msgstr ""
1329
  "lectionn&eacute;s? Cette action ne pourra pas &ecirc;tes annul&eacute;e.\n"
1330
  "'Annuler' pour les conserver, 'OK' pour les supprimer."
1331
 
1332
- #: includes/admin/links-page-js.php:771
1333
  msgid "Enter a search string first."
1334
  msgstr "Donner d'abord une cha&icirc;ne de recherche."
1335
 
1336
- #: includes/admin/links-page-js.php:778
1337
  msgid "Select one or more links to edit."
1338
  msgstr "S&eacute;lectionner un ou plusieurs liens &agrave; &eacute;diter"
1339
 
@@ -1353,11 +1383,11 @@ msgstr "Supprimer ce filtre"
1353
  msgid "Link text"
1354
  msgstr "Texte du lien"
1355
 
1356
- #: includes/admin/search-form.php:45 includes/admin/table-printer.php:205
1357
  msgid "URL"
1358
  msgstr "URL"
1359
 
1360
- #: includes/admin/search-form.php:48 includes/admin/table-printer.php:522
1361
  msgid "HTTP code"
1362
  msgstr "Code HTTP"
1363
 
@@ -1381,8 +1411,8 @@ msgstr "Liens utilis&eacute;s dans"
1381
  msgid "Search Links"
1382
  msgstr "Liens de recherche"
1383
 
1384
- #: includes/admin/search-form.php:113 includes/admin/table-printer.php:352
1385
- #: includes/admin/table-printer.php:682 includes/admin/table-printer.php:807
1386
  msgid "Cancel"
1387
  msgstr "Annuler"
1388
 
@@ -1406,242 +1436,242 @@ msgstr ""
1406
  msgid "Return to WordPress Dashboard"
1407
  msgstr "Revenir au tableau de bord WordPress"
1408
 
1409
- #: includes/admin/table-printer.php:182
1410
  msgid "Compact View"
1411
  msgstr "Vue comptacte"
1412
 
1413
- #: includes/admin/table-printer.php:183
1414
  msgid "Detailed View"
1415
  msgstr "D&eacute;tails"
1416
 
1417
- #: includes/admin/table-printer.php:212
1418
  msgid "Source"
1419
  msgstr "Source"
1420
 
1421
- #: includes/admin/table-printer.php:218
1422
  msgid "Link Text"
1423
  msgstr "Texte du lien"
1424
 
1425
- #: includes/admin/table-printer.php:223
1426
  msgid "Redirect URL"
1427
  msgstr "Redirections"
1428
 
1429
- #: includes/admin/table-printer.php:271
1430
  msgid "Bulk Actions"
1431
  msgstr "Actions en masse"
1432
 
1433
- #: includes/admin/table-printer.php:272 includes/admin/table-printer.php:649
1434
  msgid "Edit URL"
1435
  msgstr "&Eacute;diter l'URL"
1436
 
1437
- #: includes/admin/table-printer.php:273
1438
  msgid "Recheck"
1439
  msgstr "Rev&eacute;rifier"
1440
 
1441
- #: includes/admin/table-printer.php:274
1442
  msgid "Fix redirects"
1443
  msgstr "R&eacute;parer les redirections"
1444
 
1445
- #: includes/admin/table-printer.php:275
1446
  msgid "Mark as not broken"
1447
  msgstr "Marquer comme non cass&eacute;."
1448
 
1449
- #: includes/admin/table-printer.php:279
1450
  msgid "Move sources to Trash"
1451
  msgstr "D&eacute;placer les sources dans la poubelle"
1452
 
1453
- #: includes/admin/table-printer.php:281
1454
  msgid "Delete sources"
1455
  msgstr "Supprimer ces sources"
1456
 
1457
- #: includes/admin/table-printer.php:296
1458
  msgid "&laquo;"
1459
  msgstr "&laquo;"
1460
 
1461
- #: includes/admin/table-printer.php:297
1462
  msgid "&raquo;"
1463
  msgstr "&raquo;"
1464
 
1465
- #: includes/admin/table-printer.php:305
1466
  #, php-format
1467
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1468
  msgstr "Affichage %s&#8211;%s sur <span class=\"current-link-count\">%s</span>"
1469
 
1470
- #: includes/admin/table-printer.php:328
1471
  msgid "Bulk Edit URLs"
1472
  msgstr "Modifier les URL en masse"
1473
 
1474
- #: includes/admin/table-printer.php:330
1475
  msgid "Find"
1476
  msgstr "Trouver"
1477
 
1478
- #: includes/admin/table-printer.php:334
1479
  msgid "Replace with"
1480
  msgstr "Remplacer par"
1481
 
1482
- #: includes/admin/table-printer.php:342
1483
  msgid "Case sensitive"
1484
  msgstr "Respecter la case"
1485
 
1486
- #: includes/admin/table-printer.php:346
1487
  msgid "Regular expression"
1488
  msgstr "Expression r&eacute;guli&egrave;re"
1489
 
1490
- #: includes/admin/table-printer.php:354 includes/admin/table-printer.php:808
1491
  msgid "Update"
1492
  msgstr "Modifier"
1493
 
1494
- #: includes/admin/table-printer.php:507
1495
  msgid "Post published on"
1496
  msgstr "Article publi&eacute; le"
1497
 
1498
- #: includes/admin/table-printer.php:512
1499
  msgid "Link last checked"
1500
  msgstr "Derni&egrave;re v&eacute;rification"
1501
 
1502
- #: includes/admin/table-printer.php:516
1503
  msgid "Never"
1504
  msgstr "Jamais"
1505
 
1506
- #: includes/admin/table-printer.php:527
1507
  msgid "Response time"
1508
  msgstr "Temps de r&eacute;ponse"
1509
 
1510
- #: includes/admin/table-printer.php:529
1511
  #, php-format
1512
  msgid "%2.3f seconds"
1513
  msgstr "%2.3f secondes"
1514
 
1515
- #: includes/admin/table-printer.php:532
1516
  msgid "Final URL"
1517
  msgstr "URL finale"
1518
 
1519
- #: includes/admin/table-printer.php:537
1520
  msgid "Redirect count"
1521
  msgstr "Nombre de redirections"
1522
 
1523
- #: includes/admin/table-printer.php:542
1524
  msgid "Instance count"
1525
  msgstr "Nombre d'instances"
1526
 
1527
- #: includes/admin/table-printer.php:551
1528
  #, php-format
1529
  msgid "This link has failed %d time."
1530
  msgid_plural "This link has failed %d times."
1531
  msgstr[0] "Ce lien a &eacute;chou&eacute; %d fois."
1532
  msgstr[1] "Ces liens ont &eacute;chou&eacute;s %d fois."
1533
 
1534
- #: includes/admin/table-printer.php:559
1535
  #, php-format
1536
  msgid "This link has been broken for %s."
1537
  msgstr "Le lien est cass&eacute; depuis %s."
1538
 
1539
- #: includes/admin/table-printer.php:570
1540
  msgid "Log"
1541
  msgstr "Journal"
1542
 
1543
- #: includes/admin/table-printer.php:595
1544
  msgid "Show more info about this link"
1545
  msgstr "Afficher plus d'informations concernant ce lien"
1546
 
1547
- #: includes/admin/table-printer.php:613
1548
  msgctxt "checked how long ago"
1549
  msgid "Checked"
1550
  msgstr "V&eacute;rifi&eacute;"
1551
 
1552
- #: includes/admin/table-printer.php:629
1553
  msgid "Broken for"
1554
  msgstr "Cass&eacute;"
1555
 
1556
- #: includes/admin/table-printer.php:649
1557
  msgid "Edit this link"
1558
  msgstr "Modifier ce lien"
1559
 
1560
- #: includes/admin/table-printer.php:651
1561
  msgid "Remove this link from all posts"
1562
  msgstr "Supprimer ce lien de tous les articles"
1563
 
1564
- #: includes/admin/table-printer.php:657
1565
  msgid "Remove this link from the list of broken links and mark it as valid"
1566
  msgstr ""
1567
  "Supprimer ce lien de la liste des liens cass&eacute;s et le marquer comme "
1568
  "&eacute;tant valide"
1569
 
1570
- #: includes/admin/table-printer.php:665
1571
  msgid "Hide this link and do not report it again unless its status changes"
1572
  msgstr ""
1573
  "Cacher ce lien et ne plus le mentionner tant que son status ne change pas"
1574
 
1575
- #: includes/admin/table-printer.php:666
1576
  msgid "Dismiss"
1577
  msgstr "Suspendre"
1578
 
1579
- #: includes/admin/table-printer.php:671
1580
  msgid "Undismiss this link"
1581
  msgstr "Reprendre ce lien"
1582
 
1583
- #: includes/admin/table-printer.php:672
1584
  msgid "Undismiss"
1585
  msgstr "Reprendre"
1586
 
1587
- #: includes/admin/table-printer.php:683
1588
  msgid "Update URL"
1589
  msgstr "Modifier l'URL"
1590
 
1591
- #: includes/admin/table-printer.php:710
1592
  msgid "[An orphaned link! This is a bug.]"
1593
  msgstr "[Lien orphelin ! C'est un bogue.]"
1594
 
1595
- #: includes/admin/table-printer.php:787
1596
  msgctxt "inline editor title"
1597
  msgid "Edit Link"
1598
  msgstr "Modifier le lien"
1599
 
1600
- #: includes/admin/table-printer.php:790
1601
  msgctxt "inline link editor"
1602
  msgid "Text"
1603
  msgstr "Texte"
1604
 
1605
- #: includes/admin/table-printer.php:795
1606
  msgctxt "inline link editor"
1607
  msgid "URL"
1608
  msgstr "URL"
1609
 
1610
- #: includes/admin/table-printer.php:800
1611
  msgctxt "inline link editor"
1612
  msgid "Suggestions"
1613
  msgstr "Suggestions"
1614
 
1615
- #: includes/admin/table-printer.php:820
1616
  msgid "Use this URL"
1617
  msgstr "Utiliser cette URL"
1618
 
1619
- #: modules/checkers/http.php:242
1620
  msgid "Server Not Found"
1621
  msgstr "Serveur non trouv&eacute;"
1622
 
1623
- #: modules/checkers/http.php:257
1624
  msgid "Connection Failed"
1625
  msgstr "&Eacute;chec de la connection"
1626
 
1627
- #: modules/checkers/http.php:292 modules/checkers/http.php:362
1628
  #, php-format
1629
  msgid "HTTP code : %d"
1630
  msgstr "Code HTTP: %d"
1631
 
1632
- #: modules/checkers/http.php:294 modules/checkers/http.php:364
1633
  msgid "(No response)"
1634
  msgstr "(pas de r&eacute;ponse)"
1635
 
1636
- #: modules/checkers/http.php:300
1637
  msgid "Most likely the connection timed out or the domain doesn't exist."
1638
  msgstr "Généralement, la connexion a expiré ou le domaine n'existe pas."
1639
 
1640
- #: modules/checkers/http.php:371
1641
  msgid "Request timed out."
1642
  msgstr "Timeout de la requête."
1643
 
1644
- #: modules/checkers/http.php:389
1645
  msgid "Using Snoopy"
1646
  msgstr "Utilise Snoopy"
1647
 
@@ -1700,7 +1730,7 @@ msgstr "Modifier le commentaire"
1700
 
1701
  #: modules/containers/comment.php:155
1702
  msgid "_wpnonce="
1703
- msgstr ""
1704
 
1705
  #: modules/containers/comment.php:160
1706
  msgid "Delete Permanently"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: broken-link-checker v1.9.3\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2014-05-02 00:01+0100\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, "
20
  "X-Generator: Poedit 1.5.7\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
+ #: core/core.php:153 includes/admin/links-page-js.php:44
24
  msgid "Loading..."
25
  msgstr "Chargement..."
26
 
48
 
49
  #: core/core.php:317
50
  msgid "View Broken Links"
51
+ msgstr "Voir les liens cass&eacute;s"
52
 
53
  #: core/core.php:332
54
  msgid "Feedback"
62
  msgid "Settings"
63
  msgstr "R&eacute;glages"
64
 
65
+ #: core/core.php:572
66
  msgid "Settings saved."
67
  msgstr "R&eacute;glages enregistr&eacute;s"
68
 
69
+ #: core/core.php:578
70
  msgid "Thank you for your donation!"
71
  msgstr "Merci pour votre don!"
72
 
73
+ #: core/core.php:586
74
  msgid "Complete site recheck started."
75
  msgstr "La v&eacute;rification compl&egrave;te a commenc&eacute;."
76
 
77
+ #: core/core.php:595
78
  msgid "Details"
79
  msgstr "D&eacute;tails"
80
 
81
+ #: core/core.php:609
82
  msgid "General"
83
  msgstr "G&eacute;n&eacute;ral"
84
 
85
+ #: core/core.php:610
86
  msgid "Look For Links In"
87
  msgstr "Rechercher des liens dans"
88
 
89
+ #: core/core.php:611
90
  msgid "Which Links To Check"
91
  msgstr "Quels liens v&eacute;rifier"
92
 
93
+ #: core/core.php:612
94
  msgid "Protocols & APIs"
95
  msgstr "Protocoles & APIs"
96
 
97
+ #: core/core.php:613
98
  msgid "Advanced"
99
  msgstr "Options avanc&eacute;es"
100
 
101
+ #: core/core.php:628
102
  msgid "Broken Link Checker Options"
103
+ msgstr "Options de Broken Link Checker"
104
 
105
+ #: core/core.php:670 includes/admin/table-printer.php:203
106
  msgid "Status"
107
  msgstr "&Eacute;tat&nbsp;:"
108
 
109
+ #: core/core.php:672 includes/admin/options-page-js.php:56
110
  msgid "Show debug info"
111
  msgstr "Afficher les informations de débogage"
112
 
113
+ #: core/core.php:700
114
  msgid "Check each link"
115
+ msgstr "V&eacute;rifier chaque lien"
116
 
117
+ #: core/core.php:705
118
  #, php-format
119
  msgid "Every %s hours"
120
  msgstr "Toutes les %s heures"
121
 
122
+ #: core/core.php:714
123
  msgid ""
124
  "Existing links will be checked this often. New links will usually be checked "
125
  "ASAP."
128
  "r&eacute;glage. Les nouveaux liens sont habituellement v&eacute;rifi&eacute;"
129
  "s d&egrave;s que possible."
130
 
131
+ #: core/core.php:721
132
  msgid "E-mail notifications"
133
+ msgstr "E-mail de notification"
134
 
135
+ #: core/core.php:727
136
  msgid "Send me e-mail notifications about newly detected broken links"
137
  msgstr ""
138
  "M'envoyer un courriel de notification avec les nouveaux liens cass&eacute;s"
139
 
140
+ #: core/core.php:735
141
  msgid "Send authors e-mail notifications about broken links in their posts"
142
  msgstr ""
143
  "Envoyer un courriel de notification aux auteurs des articles qui ont des "
144
  "liens cass&eacute;s"
145
 
146
+ #: core/core.php:742
147
  msgid "Notification e-mail address"
148
  msgstr "Adresse e-mail pour la notification"
149
 
150
+ #: core/core.php:754
151
  msgid ""
152
  "Leave empty to use the e-mail address specified in Settings &rarr; General."
153
  msgstr ""
154
  "Laissez vide pour utiliser l'adresse e-mail spécifiée dans les paramètres "
155
  "généraux."
156
 
157
+ #: core/core.php:761
158
  msgid "Link tweaks"
159
  msgstr "Mettre en forme les liens"
160
 
161
+ #: core/core.php:767
162
  msgid "Apply custom formatting to broken links"
163
  msgstr "Appliquer un affichage sp&eacute;cifique aux liens cass&eacute;s"
164
 
165
+ #: core/core.php:771 core/core.php:802
166
  msgid "Edit CSS"
167
  msgstr "&Eacute;diter CSS"
168
 
169
+ #: core/core.php:787
170
  #, php-format
171
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
172
  msgstr "Exemple : Lorem ipsum <a %s>lien cass&eacute;</a>, dolor sit amet."
173
 
174
+ #: core/core.php:790 core/core.php:821
175
  msgid "Click \"Save Changes\" to update example output."
176
  msgstr ""
177
  "Appuyer sur \"Enregistrer les modifications\" pour mettre à jour l'exemple."
178
 
179
+ #: core/core.php:798
180
  msgid "Apply custom formatting to removed links"
181
  msgstr "Appliquer un affichage sp&eacute;cifique aux liens supprim&eacute;s"
182
 
183
+ #: core/core.php:818
184
  #, php-format
185
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
186
  msgstr ""
187
  "Exemple : Lorem ipsum <span %s>lien supprim&eacute;</span>, dolor sit amet."
188
 
189
+ #: core/core.php:831
190
  msgid "Stop search engines from following broken links"
191
  msgstr ""
192
+ "Arr&ecirc;tter le suivi des liens cass&eacute;s par les moteurs de recherche"
193
 
194
+ #: core/core.php:839
195
  msgctxt "settings page"
196
  msgid "Suggestions"
197
  msgstr "Suggestions"
198
 
199
+ #: core/core.php:845
200
  msgid "Suggest alternatives to broken links"
201
  msgstr "Proposer des alternatives aux liens cassés"
202
 
203
+ #: core/core.php:861
204
  msgid "Look for links in"
205
  msgstr "Rechercher des liens dans"
206
 
207
+ #: core/core.php:872
208
  msgid "Post statuses"
209
  msgstr "&Eacute;tats de l'article"
210
 
211
+ #: core/core.php:905
212
  msgid "Link types"
213
  msgstr "Type du lien"
214
 
215
+ #: core/core.php:911
216
  msgid "Error : All link parsers missing!"
217
  msgstr "Erreur: Tous les analyseurs de liens sont absents!"
218
 
219
+ #: core/core.php:918
220
  msgid "Exclusion list"
221
+ msgstr "Liste des exclusions"
222
 
223
+ #: core/core.php:919
224
  msgid ""
225
  "Don't check links where the URL contains any of these words (one per line) :"
226
  msgstr ""
227
  "Ne pas v&eacute;rifier les liens dont l'URL contient n'importe lequel de ces "
228
  "mots (un par ligne)&nbsp;:"
229
 
230
+ #: core/core.php:937
231
  msgid "Check links using"
232
  msgstr "V&eacute;rifier les liens en utilisant"
233
 
234
+ #: core/core.php:956 includes/links.php:867
235
  msgid "Timeout"
236
+ msgstr "Timeout"
237
 
238
+ #: core/core.php:962 core/core.php:1031 core/core.php:3019
239
  #, php-format
240
  msgid "%s seconds"
241
  msgstr "%s secondes"
242
 
243
+ #: core/core.php:971
244
  msgid "Links that take longer than this to load will be marked as broken."
245
  msgstr ""
246
  "Les liens qui prennent plus de temps que cela à se charger seront "
247
  "marqu&eacute;s comme cass&eacute;s."
248
 
249
+ #: core/core.php:978
250
  msgid "Link monitor"
251
  msgstr "Surveillance des liens"
252
 
253
+ #: core/core.php:986
254
  msgid "Run continuously while the Dashboard is open"
255
  msgstr ""
256
  "V&eacute;rifier en continu tant que le tableau de bord est utlis&eacute;"
257
 
258
+ #: core/core.php:994
259
  msgid "Run hourly in the background"
260
  msgstr "V&eacute;rifier toutes les heures en tache de fond"
261
 
262
+ #: core/core.php:1002
263
  msgid "Show the dashboard widget for"
264
  msgstr "Afficher le widget sur le tableau de bord pour"
265
 
266
+ #: core/core.php:1007
267
  msgctxt "dashboard widget visibility"
268
  msgid "Administrator"
269
  msgstr "Administrateur"
270
 
271
+ #: core/core.php:1008
272
  msgctxt "dashboard widget visibility"
273
  msgid "Editor and above"
274
  msgstr "Editeur et plus"
275
 
276
+ #: core/core.php:1009
277
  msgctxt "dashboard widget visibility"
278
  msgid "Nobody (disables the widget)"
279
  msgstr "Personne (désactivé le widget)"
280
 
281
+ #: core/core.php:1025
282
  msgid "Max. execution time"
283
  msgstr "Temps d'ex&eacute;cution maximal&nbsp;:"
284
 
285
+ #: core/core.php:1042
286
  msgid ""
287
  "The plugin works by periodically launching a background job that parses your "
288
  "posts for links, checks the discovered URLs, and performs other time-"
289
  "consuming tasks. Here you can set for how long, at most, the link monitor "
290
  "may run each time before stopping."
291
  msgstr ""
292
+ "Cette extension fonctionne en cr&eacute;ant un processus en arrière plan "
293
+ "p&eacute;riodiquement qui parcourt les articles en cherchant les liens, "
294
  "v&eacute;rifie les URL d&eacute;couvertes, et effectue d'autres t&acirc;ches "
295
  "consommatrices de temps. Vous pouvez sp&eacute;cifier ici le temps maximal "
296
  "o&ugrave; le processus peut s'ex&eacute;cuter avant de s'arr&ecirc;ter."
297
 
298
+ #: core/core.php:1051
299
  msgid "Server load limit"
300
+ msgstr "Taux de charge limite du serveur"
301
 
302
+ #: core/core.php:1066
303
  #, php-format
304
  msgid "Current load : %s"
305
  msgstr "Charge courante : %s"
306
 
307
+ #: core/core.php:1072
308
  #, php-format
309
  msgid ""
310
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
314
  "moyenne du serveur </a> d&eacute;passe ce taux. Laisser vide pour ne pas "
315
  "positionner de limite de charge."
316
 
317
+ #: core/core.php:1080
318
  msgid "Not available"
319
  msgstr "Pas disponible"
320
 
321
+ #: core/core.php:1082
322
  msgid ""
323
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
324
  "code> is present and accessible."
327
  "type Linux o&ugrave; <code>/proc/loadavg</code> est pr&eacute;sent et "
328
  "autoris&eacute;."
329
 
330
+ #: core/core.php:1090
331
+ msgid "Logging"
332
+ msgstr "Traces"
333
+
334
+ #: core/core.php:1096
335
+ msgid "Enable logging"
336
+ msgstr "Activer les traces"
337
+
338
+ #: core/core.php:1103
339
+ msgid "Log file location"
340
+ msgstr "Emplacement des traces"
341
+
342
+ #: core/core.php:1112
343
+ msgctxt "log file location"
344
+ msgid "Default"
345
+ msgstr "Défaut"
346
+
347
+ #: core/core.php:1126
348
+ msgctxt "log file location"
349
+ msgid "Custom"
350
+ msgstr "Personnalis&eacute;"
351
+
352
+ #: core/core.php:1138
353
  msgid "Forced recheck"
354
  msgstr "Forcer une rev&eacute;rification"
355
 
356
+ #: core/core.php:1141
357
  msgid "Re-check all pages"
358
  msgstr "Rev&eacute;rifier toutes les pages"
359
 
360
+ #: core/core.php:1145
361
  msgid ""
362
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
363
  "database and recheck the entire site from scratch."
365
  "L'option nucl&eacute;aire. Appuyer sur ce bouton pour que le plugin vide sa "
366
  "base de liens et rev&eacute;rifie tout le site depuis le d&eacute;but."
367
 
368
+ #: core/core.php:1156
369
  msgid "Save Changes"
370
  msgstr "Enregistrer les modifications"
371
 
372
+ #: core/core.php:1207
373
  msgid "Configure"
374
  msgstr "Configurer"
375
 
376
+ #: core/core.php:1290
377
  msgid ""
378
  "Enter the names of custom fields you want to check (one per line). If a "
379
  "field contains HTML code, prefix its name with <code>html:</code>. For "
383
  "ligne). Si un champ contient du code HTML, préfixez son nom par <code>html:</"
384
  "code>. Par exemple <code>html:nom_du_champ</code>."
385
 
386
+ #: core/core.php:1420 core/core.php:1503 core/core.php:1535
387
  #, php-format
388
  msgid "Database error : %s"
389
  msgstr "Erreur de base de donn&eacute;es&nbsp;: %s"
390
 
391
+ #: core/core.php:1485
392
  msgid "You must enter a filter name!"
393
  msgstr "Vous devez donner un nom au filtre!"
394
 
395
+ #: core/core.php:1489
396
  msgid "Invalid search query."
397
  msgstr "Requ&ecirc;te incorrecte."
398
 
399
+ #: core/core.php:1498
400
  #, php-format
401
  msgid "Filter \"%s\" created"
402
  msgstr "Filtre \"%s\" cr&eacute;&eacute;"
403
 
404
+ #: core/core.php:1525
405
  msgid "Filter ID not specified."
406
  msgstr "ID du flitre non sp&eacute;cifi&eacute;."
407
 
408
+ #: core/core.php:1532
409
  msgid "Filter deleted"
410
  msgstr "Filtre supprim&eacute;"
411
 
412
+ #: core/core.php:1580
413
  #, php-format
414
  msgid "Replaced %d redirect with a direct link"
415
  msgid_plural "Replaced %d redirects with direct links"
416
  msgstr[0] "Remplacement de la redirection %d par un lien direct"
417
  msgstr[1] "Remplacement des redirections %d par des liens directs"
418
 
419
+ #: core/core.php:1591
420
  #, php-format
421
  msgid "Failed to fix %d redirect"
422
  msgid_plural "Failed to fix %d redirects"
423
  msgstr[0] "Impossible de r&eacute;parer la redirection %d"
424
  msgstr[1] "Impossible de r&eacute;parer les redirections %d"
425
 
426
+ #: core/core.php:1601
427
  msgid "None of the selected links are redirects!"
428
  msgstr "Aucun des liens s&eacute;lectionn&eacute; ne sont des redirections!"
429
 
430
+ #: core/core.php:1680
431
  #, php-format
432
  msgid "%d link updated."
433
  msgid_plural "%d links updated."
434
  msgstr[0] "Le lien %d a &eacute;t&eacute; mis &agrave; jour."
435
  msgstr[1] "Les liens %d ont &eacute;t&eacute; mis &agrave; jour."
436
 
437
+ #: core/core.php:1691
438
  #, php-format
439
  msgid "Failed to update %d link."
440
  msgid_plural "Failed to update %d links."
441
  msgstr[0] "Impossible de mettre &agrave; jour le lien %d."
442
  msgstr[1] "Impossible de mettre &agrave; jour les liens %d."
443
 
444
+ #: core/core.php:1780
445
  #, php-format
446
  msgid "%d link removed"
447
  msgid_plural "%d links removed"
448
  msgstr[0] "Le lien %d a &eacute;t&eacute; supprim&eacute;"
449
  msgstr[1] "Les liens %d ont &eacute;t&eacute; supprim&eacute;s"
450
 
451
+ #: core/core.php:1791
452
  #, php-format
453
  msgid "Failed to remove %d link"
454
  msgid_plural "Failed to remove %d links"
455
  msgstr[0] "Impossible de supprimer le lien %d"
456
  msgstr[1] "Impossible de supprimer les liens %d"
457
 
458
+ #: core/core.php:1900
459
  #, php-format
460
  msgid ""
461
  "%d item was skipped because it can't be moved to the Trash. You need to "
470
  "%d liens ont &eacute;t&eacute; ignor&eacute;s parcequ'ils ne peuvent pas "
471
  "&ecirc;tre mis dans la poubelle. Vous devez les supprimer manuellement."
472
 
473
+ #: core/core.php:1921
474
  msgid "Didn't find anything to delete!"
475
  msgstr "Aucune suppression à faire!"
476
 
477
+ #: core/core.php:1950
478
  #, php-format
479
  msgid "%d link scheduled for rechecking"
480
  msgid_plural "%d links scheduled for rechecking"
481
  msgstr[0] "%d lien est programm&eacute; pour un nouveau contr&ocirc;le."
482
  msgstr[1] "%d liens sont programm&eacute;s pour un nouveau contr&ocirc;le."
483
 
484
+ #: core/core.php:1995 core/core.php:2637
485
  msgid "This link was manually marked as working by the user."
486
  msgstr "Ce lien a été manuellement marqué comme valide par l'utilisateur."
487
 
488
+ #: core/core.php:2002
489
  #, php-format
490
  msgid "Couldn't modify link %d"
491
  msgstr "Impossible de modifier le lien %d"
492
 
493
+ #: core/core.php:2013
494
  #, php-format
495
  msgid "%d link marked as not broken"
496
  msgid_plural "%d links marked as not broken"
499
  msgstr[1] ""
500
  "Les liens %d ont &eacute;t&eacute; marqu&eacute;s comme non cass&eacute;."
501
 
502
+ #: core/core.php:2052
503
  msgid "Table columns"
504
  msgstr "Colonnes du tableau"
505
 
506
+ #: core/core.php:2071
507
  msgid "Show on screen"
508
  msgstr "Voir &agrave; l'&eacute;cran"
509
 
510
+ #: core/core.php:2078
511
  msgid "links"
512
  msgstr "liens"
513
 
514
+ #: core/core.php:2079 includes/admin/table-printer.php:171
515
  msgid "Apply"
516
  msgstr "Appliquer"
517
 
518
+ #: core/core.php:2083
519
  msgid "Misc"
520
  msgstr "Divers"
521
 
522
+ #: core/core.php:2098
523
  #, php-format
524
  msgid "Highlight links broken for at least %s days"
525
  msgstr ""
526
  "Mettre en surbrillance les liens qui sont cass&eacute;s depuis au moins %s "
527
  "jours"
528
 
529
+ #: core/core.php:2107
530
  msgid "Color-code status codes"
531
  msgstr "Code de couleur pour les &eacute;tats"
532
 
533
+ #: core/core.php:2124 core/core.php:2622 core/core.php:2662 core/core.php:2695
534
+ #: core/core.php:2782
535
  msgid "You're not allowed to do that!"
536
  msgstr "Vous n'êtes pas autorisé à faire cela !"
537
 
538
+ #: core/core.php:2492
539
  msgid "View broken links"
540
  msgstr "Voir les liens cass&eacute;s"
541
 
542
+ #: core/core.php:2493
543
  #, php-format
544
  msgid "Found %d broken link"
545
  msgid_plural "Found %d broken links"
546
  msgstr[0] "%d lien cass&eacute; trouv&eacute;"
547
  msgstr[1] "%d liens cass&eacute;s trouv&eacute;s"
548
 
549
+ #: core/core.php:2499
550
  msgid "No broken links found."
551
  msgstr "Aucun lien cass&eacute; trouv&eacute;"
552
 
553
+ #: core/core.php:2506
554
  #, php-format
555
  msgid "%d URL in the work queue"
556
  msgid_plural "%d URLs in the work queue"
557
  msgstr[0] "%d URL dans la file d'attente"
558
  msgstr[1] "%d URLs dans la file d'attente"
559
 
560
+ #: core/core.php:2509
561
  msgid "No URLs in the work queue."
562
  msgstr "Aucune URL dans la file d'attente."
563
 
564
+ #: core/core.php:2525
565
  #, php-format
566
  msgid "Detected %1$s in %2$s and still searching..."
567
  msgstr "Trouver %1$s dans %2$s et continue la recherche..."
568
 
569
+ #: core/core.php:2531
570
  #, php-format
571
  msgid "Detected %1$s in %2$s."
572
  msgstr "Trouver %1$s dans %2$s."
573
 
574
+ #: core/core.php:2538
575
  msgid "Searching your blog for links..."
576
  msgstr "Recherche des liens de votre blog..."
577
 
578
+ #: core/core.php:2540
579
  msgid "No links detected."
580
  msgstr "Aucun lien détecté."
581
 
582
+ #: core/core.php:2566
583
  msgctxt "current load"
584
  msgid "Unknown"
585
  msgstr "Inconnu"
586
 
587
+ #: core/core.php:2630 core/core.php:2670 core/core.php:2710 core/core.php:2792
588
  #, php-format
589
  msgid "Oops, I can't find the link %d"
590
  msgstr "Oups, je ne trouve pas le lien %d"
591
 
592
+ #: core/core.php:2643 core/core.php:2680
593
  msgid "Oops, couldn't modify the link!"
594
  msgstr "Oups, ne peut pas modifier ce lien !"
595
 
596
+ #: core/core.php:2646 core/core.php:2683 core/core.php:2818
597
  msgid "Error : link_id not specified"
598
  msgstr "Erreur : link_id non spécifié"
599
 
600
+ #: core/core.php:2701
601
  msgid "Error : link_id or new_url not specified"
602
  msgstr "Erreur : link_id ou new_url non spécifié !"
603
 
604
+ #: core/core.php:2719
605
  msgid "Oops, the new URL is invalid!"
606
  msgstr "Oups, la nouvelle URL est invalide !"
607
 
608
+ #: core/core.php:2734
609
  msgid "An unexpected error occurred!"
610
  msgstr "Une erreur inattendue a eu lieu !"
611
 
612
+ #: core/core.php:2801
613
  msgid "An unexpected error occured!"
614
  msgstr "Une erreur inattendue a eu lieu !"
615
 
616
+ #: core/core.php:2827
617
  msgid "You don't have sufficient privileges to access this information!"
618
  msgstr "Vous n'avez pas assez de droit pour obtenir cette information !"
619
 
620
+ #: core/core.php:2840
621
  msgid "Error : link ID not specified"
622
  msgstr "Erreur : link ID non spécifié"
623
 
624
+ #: core/core.php:2854
625
  #, php-format
626
  msgid "Failed to load link details (%s)"
627
+ msgstr "Echec pour charger les détails du lien (%s)"
628
 
629
+ #: core/core.php:2908
630
  msgid "Broken Link Checker"
631
  msgstr "Broken Link Checker"
632
 
633
+ #: core/core.php:2928
634
  msgid "PHP version"
635
  msgstr "Version PHP"
636
 
637
+ #: core/core.php:2934
638
  msgid "MySQL version"
639
  msgstr "Version MySQL"
640
 
641
+ #: core/core.php:2947
642
  msgid ""
643
  "You have an old version of CURL. Redirect detection may not work properly."
644
  msgstr ""
645
+ "Vous avez une vieille version de CURL. Les détections des redirections "
646
  "pourraient ne pas fonctionner correctement."
647
 
648
+ #: core/core.php:2959 core/core.php:2975 core/core.php:2980
649
  msgid "Not installed"
650
  msgstr "Pas installé"
651
 
652
+ #: core/core.php:2962
653
  msgid "CURL version"
654
+ msgstr "Version de CURL"
655
 
656
+ #: core/core.php:2968
657
  msgid "Installed"
658
  msgstr "Installé"
659
 
660
+ #: core/core.php:2981
661
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
662
  msgstr ""
663
+ "Vous devez avoir soit CURL, soit Snoopy d'installé pour que l'extension "
664
  "fonctionne !"
665
 
666
+ #: core/core.php:2992
667
  msgid "On"
668
  msgstr "Activé"
669
 
670
+ #: core/core.php:2993
671
  msgid "Redirects may be detected as broken links when safe_mode is on."
672
  msgstr ""
673
  "Les redirections peuvent être détectées comme des liens cassés quand le "
674
  "safe_mode est activé."
675
 
676
+ #: core/core.php:2998 core/core.php:3012
677
  msgid "Off"
678
  msgstr "Désactivé"
679
 
680
+ #: core/core.php:3006
681
  #, php-format
682
  msgid "On ( %s )"
683
  msgstr "Activé ( %s )"
684
 
685
+ #: core/core.php:3007
686
  msgid "Redirects may be detected as broken links when open_basedir is on."
687
  msgstr ""
688
  "Les redirections peuvent être détectées comme des liens cassés quand "
689
  "open_basedir est activé."
690
 
691
+ #: core/core.php:3036
692
  msgid ""
693
  "If this value is zero even after several page reloads you have probably "
694
  "encountered a bug."
696
  "Si cette valeur est &agrave; z&eacute;ro m&ecirc;me apr&egrave;s plusieurs "
697
  "rechargement vous avez probablement rencontr&eacute; un bogue."
698
 
699
+ #: core/core.php:3159 core/core.php:3278
700
  #, php-format
701
  msgid "[%s] Broken links detected"
702
  msgstr "[%s] liens cass&eacute;s trouv&eacute;s"
703
 
704
+ #: core/core.php:3165
705
  #, php-format
706
  msgid "Broken Link Checker has detected %d new broken link on your site."
707
  msgid_plural ""
713
  "Broken Link Checker a trouv&eacute; %d nouveaux liens cass&eacute;s dans "
714
  "votre site."
715
 
716
+ #: core/core.php:3196
717
  #, php-format
718
  msgid "Here's a list of the first %d broken links:"
719
  msgid_plural "Here's a list of the first %d broken links:"
720
  msgstr[0] "Ici se trouve une liste du %d nouveau lien cass&eacute;:"
721
  msgstr[1] "Ici se trouve une liste des %d nouveaux liens cass&eacute;s:"
722
 
723
+ #: core/core.php:3204
724
  msgid "Here's a list of the new broken links: "
725
  msgstr "Ici se trouve une liste des nouveaux liens cass&eacute;s:"
726
 
727
+ #: core/core.php:3213
728
  #, php-format
729
  msgid "Link text : %s"
730
  msgstr "Texte du lien : %s"
731
 
732
+ #: core/core.php:3214
733
  #, php-format
734
  msgid "Link URL : <a href=\"%s\">%s</a>"
735
+ msgstr "URL du lien : <a href=\"%s\">%s</a>"
736
 
737
+ #: core/core.php:3215
738
  #, php-format
739
  msgid "Source : %s"
740
  msgstr "Source : %s"
741
 
742
+ #: core/core.php:3229
743
  msgid "You can see all broken links here:"
744
  msgstr "Vous pouvez voir tous les liens cass&eacute;s ici:"
745
 
746
+ #: core/core.php:3284
747
  #, php-format
748
  msgid "Broken Link Checker has detected %d new broken link in your posts."
749
  msgid_plural ""
755
  "Broken Link Checker a trouv&eacute; %d nouveaux liens cass&eacute;s dans vos "
756
  "articles."
757
 
758
+ #: core/init.php:249
759
  msgid "Once Weekly"
760
  msgstr "Une fois par semaine"
761
 
762
+ #: core/init.php:255
763
  msgid "Twice a Month"
764
  msgstr "Deux fois par mois"
765
 
766
+ #: core/init.php:331
767
  msgid ""
768
  "Broken Link Checker installation failed. Try deactivating and then "
769
  "reactivating the plugin."
771
  "L'installation de Broken Link Checher a &eacute;chou&eacute;.Essayer de "
772
  "d&eacute;sactiver puis de r&eacute;activer le plugin."
773
 
774
+ #: core/init.php:335
775
+ msgid ""
776
+ "Please activate the plugin separately on each site. Network activation is "
777
+ "not supported."
778
+ msgstr ""
779
+ "Merci d'activer l'extension séparement sur chaque site. L'activation en "
780
+ "réseau n'est pas supportée."
781
+
782
+ #: includes/any-post.php:398 modules/containers/blogroll.php:46
783
  #: modules/containers/comment.php:153 modules/containers/custom_field.php:207
784
  msgid "Edit"
785
+ msgstr "Modifier"
786
 
787
+ #: includes/any-post.php:406 modules/containers/custom_field.php:213
788
  msgid "Move this item to the Trash"
789
  msgstr "D&eacute;placer cet objet dans la poubelle"
790
 
791
+ #: includes/any-post.php:408 modules/containers/custom_field.php:215
792
  msgid "Trash"
793
  msgstr "Poubelle"
794
 
795
+ #: includes/any-post.php:413 modules/containers/custom_field.php:220
796
  msgid "Delete this item permanently"
797
  msgstr "Supprimer cet objet de mani&egrave;re permanente"
798
 
799
+ #: includes/any-post.php:415 modules/containers/blogroll.php:47
800
  #: modules/containers/custom_field.php:222
801
  msgid "Delete"
802
  msgstr "Supprimer"
803
 
804
+ #: includes/any-post.php:428
805
  #, php-format
806
  msgid "Preview &#8220;%s&#8221;"
807
  msgstr "Pr&eacute;visualisation &#8220;%s&#8221;"
808
 
809
+ #: includes/any-post.php:429
810
  msgid "Preview"
811
  msgstr "Pr&eacute;visualisation"
812
 
813
+ #: includes/any-post.php:436
814
  #, php-format
815
  msgid "View &#8220;%s&#8221;"
816
  msgstr "Voir &#8220;%s&#8221;"
817
 
818
+ #: includes/any-post.php:437 modules/containers/comment.php:166
819
  #: modules/containers/custom_field.php:227
820
  msgid "View"
821
  msgstr "Afficher"
822
 
823
+ #: includes/any-post.php:456 modules/containers/custom_field.php:207
824
  msgid "Edit this item"
825
  msgstr "Modifier cet objet"
826
 
827
+ #: includes/any-post.php:520 modules/containers/blogroll.php:83
828
  #: modules/containers/comment.php:43
829
  msgid "Nothing to update"
830
  msgstr "Rien &agrave; mettre &agrave; jour"
831
 
832
+ #: includes/any-post.php:530
833
  #, php-format
834
  msgid "Updating post %d failed"
835
  msgstr "La mise &agrave jour de l'article %d a &eacute;chou&eacute;"
836
 
837
+ #: includes/any-post.php:567 modules/containers/custom_field.php:294
838
  #, php-format
839
  msgid "Failed to delete post \"%s\" (%d)"
840
  msgstr "&Eacute;chec de la suppression de l'article \"%s\" (%d)"
841
 
842
+ #: includes/any-post.php:586 modules/containers/custom_field.php:313
843
  #, php-format
844
  msgid ""
845
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
848
  "Impossible de mettre l'article \"%s\" (%d) &agrave; la poubelle car la "
849
  "fonction 'poubelle' n'est pas active"
850
 
851
+ #: includes/any-post.php:606 modules/containers/custom_field.php:332
852
  #, php-format
853
  msgid "Failed to move post \"%s\" (%d) to the trash"
854
  msgstr "Echec du d&eacute;placement de l'article \"%s\" (%d) dans la poubelle"
855
 
856
+ #: includes/any-post.php:714
857
  #, php-format
858
  msgid "%d post deleted."
859
  msgid_plural "%d posts deleted."
860
  msgstr[0] "%d article supprim&eacute;."
861
  msgstr[1] "%d articles supprim&eacute;s."
862
 
863
+ #: includes/any-post.php:716
864
  #, php-format
865
  msgid "%d page deleted."
866
  msgid_plural "%d pages deleted."
867
  msgstr[0] "%d page supprim&eacute;e."
868
  msgstr[1] "%d pages supprim&eacute;es."
869
 
870
+ #: includes/any-post.php:718
871
  #, php-format
872
  msgid "%d \"%s\" deleted."
873
  msgid_plural "%d \"%s\" deleted."
874
  msgstr[0] "%d \"%s\" supprim&eacute;."
875
  msgstr[1] "%d \"%s\" supprim&eacute;s."
876
 
877
+ #: includes/any-post.php:737
878
  #, php-format
879
  msgid "%d post moved to the Trash."
880
  msgid_plural "%d posts moved to the Trash."
881
  msgstr[0] "%d article deplac&eacute; dans la poubelle."
882
  msgstr[1] "%d articles deplac&eacute;s dans la poubelle."
883
 
884
+ #: includes/any-post.php:739
885
  #, php-format
886
  msgid "%d page moved to the Trash."
887
  msgid_plural "%d pages moved to the Trash."
888
  msgstr[0] "%d page d&eacute;plac&eacute;e dans la poubelle."
889
  msgstr[1] "%d pages d&eacute;plac&eacute;es dans la poubelle."
890
 
891
+ #: includes/any-post.php:741
892
  #, php-format
893
  msgid "%d \"%s\" moved to the Trash."
894
  msgid_plural "%d \"%s\" moved to the Trash."
1083
  msgid "No links found for your query"
1084
  msgstr "Pas de lien trouv&eacute; dans votre requ&ecirc;te"
1085
 
1086
+ #: includes/links.php:222
1087
  msgid "The plugin script was terminated while trying to check the link."
1088
  msgstr ""
1089
  "Le code du plugin a &eacute;t&eacute interrompu pendant la v&eacute;"
1090
  "rification du lien."
1091
 
1092
+ #: includes/links.php:268
1093
  msgid "The plugin doesn't know how to check this type of link."
1094
  msgstr "Le plugin ne sait pas comment v&eacute;rifier ce type de lien."
1095
 
1096
+ #: includes/links.php:361
1097
  msgid "Link is valid."
1098
  msgstr "Le lien est valide."
1099
 
1100
+ #: includes/links.php:363
1101
  msgid "Link is broken."
1102
  msgstr "Le lien est cassé."
1103
 
1104
+ #: includes/links.php:582 includes/links.php:684 includes/links.php:711
1105
  msgid "Link is not valid"
1106
  msgstr "Lien non valide"
1107
 
1108
+ #: includes/links.php:599
1109
  msgid ""
1110
  "This link can not be edited because it is not used anywhere on this site."
1111
  msgstr ""
1112
  "Ce lien ne peut pas &ecirc;tre modif&eacute; car il n'est plus utlis&eacute; "
1113
  "dans tous le site."
1114
 
1115
+ #: includes/links.php:625
1116
  msgid "Failed to create a DB entry for the new URL."
1117
  msgstr ""
1118
  "Impossible de cr&eacute;er un enregistrement dans la base de donn&eacute;es "
1119
  "pour la nouvelle URL."
1120
 
1121
+ #: includes/links.php:691
1122
  msgid "This link is not a redirect"
1123
  msgstr "Ce lien n'est pas une redirection"
1124
 
1125
+ #: includes/links.php:738 includes/links.php:775
1126
  msgid "Couldn't delete the link's database record"
1127
  msgstr ""
1128
  "Impossible de supprimer l'enregistrement pour la lien dans la base de "
1129
  "donn&eacute;es"
1130
 
1131
+ #: includes/links.php:849
1132
  msgctxt "link status"
1133
  msgid "Unknown"
1134
  msgstr "Erreur inconnue"
1135
 
1136
+ #: includes/links.php:863 modules/checkers/http.php:289
1137
  #: modules/extras/mediafire.php:101
1138
  msgid "Unknown Error"
1139
  msgstr "Erreur inconnue"
1140
 
1141
+ #: includes/links.php:887
1142
  msgid "Not checked"
1143
  msgstr "Pas v&eacute;rifi&eacute;"
1144
 
1145
+ #: includes/links.php:890
1146
  msgid "False positive"
1147
  msgstr "Faux positif"
1148
 
1149
+ #: includes/links.php:893 modules/extras/fileserve.php:121
1150
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1151
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1152
  msgctxt "link status"
1240
  "Impossible de supprimer les vieilles tables dans la base de donn&eacute;es. "
1241
  "Erreur : %s"
1242
 
1243
+ #: includes/admin/links-page-js.php:62 includes/admin/links-page-js.php:525
1244
  msgid "Wait..."
1245
  msgstr "Attendez..."
1246
 
1247
+ #: includes/admin/links-page-js.php:107 includes/admin/table-printer.php:663
1248
  msgid "Not broken"
1249
  msgstr "Pas cass&eacute;"
1250
 
1251
+ #: includes/admin/links-page-js.php:243
1252
  msgctxt "link text"
1253
  msgid "(None)"
1254
  msgstr "(Aucun)"
1255
 
1256
+ #: includes/admin/links-page-js.php:244
1257
  msgctxt "link text"
1258
  msgid "(Multiple links)"
1259
  msgstr "(Liens multiples)"
1260
 
1261
+ #: includes/admin/links-page-js.php:302
1262
  msgctxt "link suggestions"
1263
  msgid "Searching..."
1264
  msgstr "Rechercher..."
1265
 
1266
+ #: includes/admin/links-page-js.php:303
1267
  msgctxt "link suggestions"
1268
  msgid "No suggestions available."
1269
  msgstr "Pas de suggestions disponibles."
1270
 
1271
+ #: includes/admin/links-page-js.php:304
1272
  #, php-format
1273
  msgctxt "link suggestions"
1274
  msgid "Archived page from %s (via the Wayback Machine)"
1275
  msgstr "Page d'archive de %s (par Wayback Machine)"
1276
 
1277
+ #: includes/admin/links-page-js.php:387
1278
  #, php-format
1279
  msgid "%d instances of the link were successfully modified."
1280
  msgstr ""
1281
  "%d occurences du lien ont &eacute;t&eacute; modifi&eacute;es avec "
1282
  "succ&egrave;."
1283
 
1284
+ #: includes/admin/links-page-js.php:393
1285
  #, php-format
1286
  msgid ""
1287
  "However, %d instances couldn't be edited and still point to the old URL."
1289
  "Cependant, %d occurences n'ont pas &eacute;t&eacute; mises &agrave; jour et "
1290
  "pointent vers l'ancienne URL."
1291
 
1292
+ #: includes/admin/links-page-js.php:399
1293
  msgid "The link could not be modified."
1294
  msgstr "Le lien ne peut pas &ecirc;tre modifi&eacute;."
1295
 
1296
+ #: includes/admin/links-page-js.php:402
1297
  msgid "The following error(s) occurred :"
1298
  msgstr "L'erreur suivante est survenue :"
1299
 
1300
+ #: includes/admin/links-page-js.php:488
1301
  msgid "Error: Link URL must not be empty."
1302
  msgstr "Erreur: l'URL du lien ne doit pas être vide."
1303
 
1304
+ #: includes/admin/links-page-js.php:563
1305
  #, php-format
1306
  msgid "%d instances of the link were successfully unlinked."
1307
  msgstr ""
1308
  "%d occurences du lien ont &eacute;t&eacute; d&eacute;faites avec succ&egrave;"
1309
  "s"
1310
 
1311
+ #: includes/admin/links-page-js.php:569
1312
  #, php-format
1313
  msgid "However, %d instances couldn't be removed."
1314
  msgstr "Cependant, %d occurences ne peuvent pas &ecirc;tre supprim&eacute;es."
1315
 
1316
+ #: includes/admin/links-page-js.php:574
1317
  msgid "The plugin failed to remove the link."
1318
  msgstr "L'extension n'a pas pu supprimer ce lien."
1319
 
1320
+ #: includes/admin/links-page-js.php:577
1321
  msgid "The following error(s) occured :"
1322
  msgstr "L'erreur suivante est survenue :"
1323
 
1324
+ #: includes/admin/links-page-js.php:585 includes/admin/table-printer.php:281
1325
+ #: includes/admin/table-printer.php:657
1326
  msgid "Unlink"
1327
  msgstr "D&eacute;lier"
1328
 
1329
+ #: includes/admin/links-page-js.php:629
1330
  msgid "Enter a name for the new custom filter"
1331
  msgstr "Donner un nom pour le nouveau filtre de recherche"
1332
 
1333
+ #: includes/admin/links-page-js.php:641
1334
  msgid ""
1335
  "You are about to delete the current filter.\n"
1336
  "'Cancel' to stop, 'OK' to delete"
1338
  "Vous &ecirc;tes sur le point de supprimer le filtre courant.\n"
1339
  "'Annuler' pour le conserver, 'OK' pour le supprimer."
1340
 
1341
+ #: includes/admin/links-page-js.php:665
1342
  msgid ""
1343
  "Are you sure you want to delete all posts, bookmarks or other items that "
1344
  "contain any of the selected links? This action can't be undone.\n"
1349
  "lectionn&eacute;s? Cette action ne pourra pas &ecirc;tre annul&eacute;e.\n"
1350
  "'Annuler' pour le conserver, 'OK' pour le supprimer."
1351
 
1352
+ #: includes/admin/links-page-js.php:679
1353
  msgid ""
1354
  "Are you sure you want to remove the selected links? This action can't be "
1355
  "undone.\n"
1359
  "lectionn&eacute;s? Cette action ne pourra pas &ecirc;tes annul&eacute;e.\n"
1360
  "'Annuler' pour les conserver, 'OK' pour les supprimer."
1361
 
1362
+ #: includes/admin/links-page-js.php:791
1363
  msgid "Enter a search string first."
1364
  msgstr "Donner d'abord une cha&icirc;ne de recherche."
1365
 
1366
+ #: includes/admin/links-page-js.php:798
1367
  msgid "Select one or more links to edit."
1368
  msgstr "S&eacute;lectionner un ou plusieurs liens &agrave; &eacute;diter"
1369
 
1383
  msgid "Link text"
1384
  msgstr "Texte du lien"
1385
 
1386
+ #: includes/admin/search-form.php:45 includes/admin/table-printer.php:208
1387
  msgid "URL"
1388
  msgstr "URL"
1389
 
1390
+ #: includes/admin/search-form.php:48 includes/admin/table-printer.php:527
1391
  msgid "HTTP code"
1392
  msgstr "Code HTTP"
1393
 
1411
  msgid "Search Links"
1412
  msgstr "Liens de recherche"
1413
 
1414
+ #: includes/admin/search-form.php:113 includes/admin/table-printer.php:357
1415
+ #: includes/admin/table-printer.php:687 includes/admin/table-printer.php:812
1416
  msgid "Cancel"
1417
  msgstr "Annuler"
1418
 
1436
  msgid "Return to WordPress Dashboard"
1437
  msgstr "Revenir au tableau de bord WordPress"
1438
 
1439
+ #: includes/admin/table-printer.php:185
1440
  msgid "Compact View"
1441
  msgstr "Vue comptacte"
1442
 
1443
+ #: includes/admin/table-printer.php:186
1444
  msgid "Detailed View"
1445
  msgstr "D&eacute;tails"
1446
 
1447
+ #: includes/admin/table-printer.php:215
1448
  msgid "Source"
1449
  msgstr "Source"
1450
 
1451
+ #: includes/admin/table-printer.php:221
1452
  msgid "Link Text"
1453
  msgstr "Texte du lien"
1454
 
1455
+ #: includes/admin/table-printer.php:228
1456
  msgid "Redirect URL"
1457
  msgstr "Redirections"
1458
 
1459
+ #: includes/admin/table-printer.php:276
1460
  msgid "Bulk Actions"
1461
  msgstr "Actions en masse"
1462
 
1463
+ #: includes/admin/table-printer.php:277 includes/admin/table-printer.php:654
1464
  msgid "Edit URL"
1465
  msgstr "&Eacute;diter l'URL"
1466
 
1467
+ #: includes/admin/table-printer.php:278
1468
  msgid "Recheck"
1469
  msgstr "Rev&eacute;rifier"
1470
 
1471
+ #: includes/admin/table-printer.php:279
1472
  msgid "Fix redirects"
1473
  msgstr "R&eacute;parer les redirections"
1474
 
1475
+ #: includes/admin/table-printer.php:280
1476
  msgid "Mark as not broken"
1477
  msgstr "Marquer comme non cass&eacute;."
1478
 
1479
+ #: includes/admin/table-printer.php:284
1480
  msgid "Move sources to Trash"
1481
  msgstr "D&eacute;placer les sources dans la poubelle"
1482
 
1483
+ #: includes/admin/table-printer.php:286
1484
  msgid "Delete sources"
1485
  msgstr "Supprimer ces sources"
1486
 
1487
+ #: includes/admin/table-printer.php:301
1488
  msgid "&laquo;"
1489
  msgstr "&laquo;"
1490
 
1491
+ #: includes/admin/table-printer.php:302
1492
  msgid "&raquo;"
1493
  msgstr "&raquo;"
1494
 
1495
+ #: includes/admin/table-printer.php:310
1496
  #, php-format
1497
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1498
  msgstr "Affichage %s&#8211;%s sur <span class=\"current-link-count\">%s</span>"
1499
 
1500
+ #: includes/admin/table-printer.php:333
1501
  msgid "Bulk Edit URLs"
1502
  msgstr "Modifier les URL en masse"
1503
 
1504
+ #: includes/admin/table-printer.php:335
1505
  msgid "Find"
1506
  msgstr "Trouver"
1507
 
1508
+ #: includes/admin/table-printer.php:339
1509
  msgid "Replace with"
1510
  msgstr "Remplacer par"
1511
 
1512
+ #: includes/admin/table-printer.php:347
1513
  msgid "Case sensitive"
1514
  msgstr "Respecter la case"
1515
 
1516
+ #: includes/admin/table-printer.php:351
1517
  msgid "Regular expression"
1518
  msgstr "Expression r&eacute;guli&egrave;re"
1519
 
1520
+ #: includes/admin/table-printer.php:359 includes/admin/table-printer.php:813
1521
  msgid "Update"
1522
  msgstr "Modifier"
1523
 
1524
+ #: includes/admin/table-printer.php:512
1525
  msgid "Post published on"
1526
  msgstr "Article publi&eacute; le"
1527
 
1528
+ #: includes/admin/table-printer.php:517
1529
  msgid "Link last checked"
1530
  msgstr "Derni&egrave;re v&eacute;rification"
1531
 
1532
+ #: includes/admin/table-printer.php:521
1533
  msgid "Never"
1534
  msgstr "Jamais"
1535
 
1536
+ #: includes/admin/table-printer.php:532
1537
  msgid "Response time"
1538
  msgstr "Temps de r&eacute;ponse"
1539
 
1540
+ #: includes/admin/table-printer.php:534
1541
  #, php-format
1542
  msgid "%2.3f seconds"
1543
  msgstr "%2.3f secondes"
1544
 
1545
+ #: includes/admin/table-printer.php:537
1546
  msgid "Final URL"
1547
  msgstr "URL finale"
1548
 
1549
+ #: includes/admin/table-printer.php:542
1550
  msgid "Redirect count"
1551
  msgstr "Nombre de redirections"
1552
 
1553
+ #: includes/admin/table-printer.php:547
1554
  msgid "Instance count"
1555
  msgstr "Nombre d'instances"
1556
 
1557
+ #: includes/admin/table-printer.php:556
1558
  #, php-format
1559
  msgid "This link has failed %d time."
1560
  msgid_plural "This link has failed %d times."
1561
  msgstr[0] "Ce lien a &eacute;chou&eacute; %d fois."
1562
  msgstr[1] "Ces liens ont &eacute;chou&eacute;s %d fois."
1563
 
1564
+ #: includes/admin/table-printer.php:564
1565
  #, php-format
1566
  msgid "This link has been broken for %s."
1567
  msgstr "Le lien est cass&eacute; depuis %s."
1568
 
1569
+ #: includes/admin/table-printer.php:575
1570
  msgid "Log"
1571
  msgstr "Journal"
1572
 
1573
+ #: includes/admin/table-printer.php:600
1574
  msgid "Show more info about this link"
1575
  msgstr "Afficher plus d'informations concernant ce lien"
1576
 
1577
+ #: includes/admin/table-printer.php:618
1578
  msgctxt "checked how long ago"
1579
  msgid "Checked"
1580
  msgstr "V&eacute;rifi&eacute;"
1581
 
1582
+ #: includes/admin/table-printer.php:634
1583
  msgid "Broken for"
1584
  msgstr "Cass&eacute;"
1585
 
1586
+ #: includes/admin/table-printer.php:654
1587
  msgid "Edit this link"
1588
  msgstr "Modifier ce lien"
1589
 
1590
+ #: includes/admin/table-printer.php:656
1591
  msgid "Remove this link from all posts"
1592
  msgstr "Supprimer ce lien de tous les articles"
1593
 
1594
+ #: includes/admin/table-printer.php:662
1595
  msgid "Remove this link from the list of broken links and mark it as valid"
1596
  msgstr ""
1597
  "Supprimer ce lien de la liste des liens cass&eacute;s et le marquer comme "
1598
  "&eacute;tant valide"
1599
 
1600
+ #: includes/admin/table-printer.php:670
1601
  msgid "Hide this link and do not report it again unless its status changes"
1602
  msgstr ""
1603
  "Cacher ce lien et ne plus le mentionner tant que son status ne change pas"
1604
 
1605
+ #: includes/admin/table-printer.php:671
1606
  msgid "Dismiss"
1607
  msgstr "Suspendre"
1608
 
1609
+ #: includes/admin/table-printer.php:676
1610
  msgid "Undismiss this link"
1611
  msgstr "Reprendre ce lien"
1612
 
1613
+ #: includes/admin/table-printer.php:677
1614
  msgid "Undismiss"
1615
  msgstr "Reprendre"
1616
 
1617
+ #: includes/admin/table-printer.php:688
1618
  msgid "Update URL"
1619
  msgstr "Modifier l'URL"
1620
 
1621
+ #: includes/admin/table-printer.php:715
1622
  msgid "[An orphaned link! This is a bug.]"
1623
  msgstr "[Lien orphelin ! C'est un bogue.]"
1624
 
1625
+ #: includes/admin/table-printer.php:792
1626
  msgctxt "inline editor title"
1627
  msgid "Edit Link"
1628
  msgstr "Modifier le lien"
1629
 
1630
+ #: includes/admin/table-printer.php:795
1631
  msgctxt "inline link editor"
1632
  msgid "Text"
1633
  msgstr "Texte"
1634
 
1635
+ #: includes/admin/table-printer.php:800
1636
  msgctxt "inline link editor"
1637
  msgid "URL"
1638
  msgstr "URL"
1639
 
1640
+ #: includes/admin/table-printer.php:805
1641
  msgctxt "inline link editor"
1642
  msgid "Suggestions"
1643
  msgstr "Suggestions"
1644
 
1645
+ #: includes/admin/table-printer.php:825
1646
  msgid "Use this URL"
1647
  msgstr "Utiliser cette URL"
1648
 
1649
+ #: modules/checkers/http.php:268
1650
  msgid "Server Not Found"
1651
  msgstr "Serveur non trouv&eacute;"
1652
 
1653
+ #: modules/checkers/http.php:283
1654
  msgid "Connection Failed"
1655
  msgstr "&Eacute;chec de la connection"
1656
 
1657
+ #: modules/checkers/http.php:318 modules/checkers/http.php:388
1658
  #, php-format
1659
  msgid "HTTP code : %d"
1660
  msgstr "Code HTTP: %d"
1661
 
1662
+ #: modules/checkers/http.php:320 modules/checkers/http.php:390
1663
  msgid "(No response)"
1664
  msgstr "(pas de r&eacute;ponse)"
1665
 
1666
+ #: modules/checkers/http.php:326
1667
  msgid "Most likely the connection timed out or the domain doesn't exist."
1668
  msgstr "Généralement, la connexion a expiré ou le domaine n'existe pas."
1669
 
1670
+ #: modules/checkers/http.php:397
1671
  msgid "Request timed out."
1672
  msgstr "Timeout de la requête."
1673
 
1674
+ #: modules/checkers/http.php:415
1675
  msgid "Using Snoopy"
1676
  msgstr "Utilise Snoopy"
1677
 
1730
 
1731
  #: modules/containers/comment.php:155
1732
  msgid "_wpnonce="
1733
+ msgstr "_wpnonce="
1734
 
1735
  #: modules/containers/comment.php:160
1736
  msgid "Delete Permanently"
languages/broken-link-checker-he_IL.mo CHANGED
Binary file
languages/broken-link-checker-he_IL.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker v1.9.1\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2013-11-29 06:43:30-0600\n"
7
  "Last-Translator: admin <eitan@caspi.org.il>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Textdomain-Support: yes"
22
 
23
  #: core/core.php:153
24
- #: includes/admin/links-page-js.php:37
25
  #@ broken-link-checker
26
  msgid "Loading..."
27
  msgstr "טוען..."
@@ -73,343 +73,343 @@ msgstr "אל הקישורים השבורים"
73
  msgid "Settings"
74
  msgstr "הגדרות"
75
 
76
- #: core/core.php:538
77
  #@ broken-link-checker
78
  msgid "Settings saved."
79
  msgstr "ההגדרות נשמרו"
80
 
81
- #: core/core.php:544
82
  #@ broken-link-checker
83
  msgid "Thank you for your donation!"
84
  msgstr "תודה לך על תרומתך!"
85
 
86
- #: core/core.php:552
87
  #@ broken-link-checker
88
  msgid "Complete site recheck started."
89
  msgstr "החלה בדיקה חוזרת של האתר."
90
 
91
- #: core/core.php:561
92
  #@ broken-link-checker
93
  msgid "Details"
94
  msgstr "פרטים"
95
 
96
- #: core/core.php:575
97
  #@ broken-link-checker
98
  msgid "General"
99
  msgstr "כללי"
100
 
101
- #: core/core.php:576
102
  #@ broken-link-checker
103
  msgid "Look For Links In"
104
  msgstr "חיפוש קישורים על פי:"
105
 
106
- #: core/core.php:577
107
  #@ broken-link-checker
108
  msgid "Which Links To Check"
109
  msgstr "סוגי קישורים שיבדקו"
110
 
111
- #: core/core.php:578
112
  #@ broken-link-checker
113
  msgid "Protocols & APIs"
114
  msgstr "פרוטוקולים ו-APIs"
115
 
116
- #: core/core.php:579
117
  #@ broken-link-checker
118
  msgid "Advanced"
119
  msgstr "הגדרות מתקדמות"
120
 
121
- #: core/core.php:594
122
  #@ broken-link-checker
123
  msgid "Broken Link Checker Options"
124
  msgstr "הגדרות בודק קישורים שבורים"
125
 
126
- #: core/core.php:636
127
- #: includes/admin/table-printer.php:200
128
  #@ broken-link-checker
129
  msgid "Status"
130
  msgstr "סטטוס"
131
 
132
- #: core/core.php:638
133
  #: includes/admin/options-page-js.php:56
134
  #@ broken-link-checker
135
  msgid "Show debug info"
136
  msgstr "הצגת מידע מערכת"
137
 
138
- #: core/core.php:666
139
  #@ broken-link-checker
140
  msgid "Check each link"
141
  msgstr "בדיקה חוזרת של כל הקישורים"
142
 
143
- #: core/core.php:671
144
  #, php-format
145
  #@ broken-link-checker
146
  msgid "Every %s hours"
147
  msgstr "תבוצע בדיקה כל %s שעות"
148
 
149
- #: core/core.php:680
150
  #@ broken-link-checker
151
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
152
  msgstr "קישורים קיימים יבדקו בתכיפות הזו. קישורים חדשים בדרך כלל יבדקו בהקדם האפשרי.<br>(ערך ברירת מחדל: 72. ערך מינימום: 1. ערך מקסימום: 99999. אפס (0) אינו ערך מותר)"
153
 
154
- #: core/core.php:687
155
  #@ broken-link-checker
156
  msgid "E-mail notifications"
157
  msgstr "התראות בדואר אלקטרוני"
158
 
159
- #: core/core.php:693
160
  #@ broken-link-checker
161
  msgid "Send me e-mail notifications about newly detected broken links"
162
  msgstr "משלוח התראות בדואר אלקטרוני אודות קישורים שבורים חדשים שנמצאו"
163
 
164
- #: core/core.php:701
165
  #@ broken-link-checker
166
  msgid "Send authors e-mail notifications about broken links in their posts"
167
  msgstr "מחברי פוסטים יקבלו התראות בדואר אלקטרוני אודות קישורים שבורים בפוסטים שלהם"
168
 
169
- #: core/core.php:708
170
  #@ broken-link-checker
171
  msgid "Notification e-mail address"
172
  msgstr "כתובת הדואר האלקטרוני למשלוח התראות"
173
 
174
- #: core/core.php:720
175
  #@ broken-link-checker
176
  msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
177
  msgstr "השאירו שדה זה ריק אם ברצונכם שההתראות ישלחו לכתובת הדואר האלקטרוני הראשית של האתר, זו הרשומה בהגדרות הכלליות של וורדפרס (הגדרות -> כללי)"
178
 
179
- #: core/core.php:727
180
  #@ broken-link-checker
181
  msgid "Link tweaks"
182
  msgstr "עיצוב טקסט הקישור<br>(כאן ניתן לציין עיצוב מבוסס CSS לטקסט של קישורים על פי הסטטוס שלהם. למשל קו חוצה/מוחק על טקסט של קישור שבור, כך שהקוראים יבינו שהקישור שבור מבלי שיצטרכו להקליק על הקישור)"
183
 
184
- #: core/core.php:733
185
  #@ broken-link-checker
186
  msgid "Apply custom formatting to broken links"
187
  msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו שבור"
188
 
189
- #: core/core.php:737
190
- #: core/core.php:768
191
  #@ broken-link-checker
192
  msgid "Edit CSS"
193
  msgstr "עריכת CSS"
194
 
195
- #: core/core.php:753
196
  #, php-format
197
  #@ broken-link-checker
198
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
199
  msgstr "דוגמה: \"גנן גידל דגן בגן, <a %s>קישור שבור</a> דגן גדול גדל בגן\"."
200
 
201
- #: core/core.php:756
202
- #: core/core.php:787
203
  #@ broken-link-checker
204
  msgid "Click \"Save Changes\" to update example output."
205
  msgstr "במידה ושיניתם את קוד ה-CSS הקליקו \"שמור שינויים\" בכדי לעדכן את הדוגמה."
206
 
207
- #: core/core.php:764
208
  #@ broken-link-checker
209
  msgid "Apply custom formatting to removed links"
210
  msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו הוסר"
211
 
212
- #: core/core.php:784
213
  #, php-format
214
  #@ broken-link-checker
215
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
216
  msgstr "דוגמה: \"גנן גידל דגן בגן, <span %s>קישור להסרה</span> דגן גדול גדל בגן\"."
217
 
218
- #: core/core.php:797
219
  #@ broken-link-checker
220
  msgid "Stop search engines from following broken links"
221
  msgstr "חסימת מנועי חיפוש מלהמשיך אל עמוד היעד של קישור שבור"
222
 
223
- #: core/core.php:827
224
  #@ broken-link-checker
225
  msgid "Look for links in"
226
  msgstr "סוגי מקורות הקישורים"
227
 
228
- #: core/core.php:838
229
  #@ broken-link-checker
230
  msgid "Post statuses"
231
  msgstr "סטטוס של פוסטים"
232
 
233
- #: core/core.php:871
234
  #@ broken-link-checker
235
  msgid "Link types"
236
  msgstr "סוגי קישורים"
237
 
238
- #: core/core.php:877
239
  #@ broken-link-checker
240
  msgid "Error : All link parsers missing!"
241
  msgstr "שגיאה: כל רכיבי הניתוח (Parsers) של הקישורים לא נמצאו!"
242
 
243
- #: core/core.php:884
244
  #@ broken-link-checker
245
  msgid "Exclusion list"
246
  msgstr "רשימת התעלמות (Exclusion)"
247
 
248
- #: core/core.php:885
249
  #@ broken-link-checker
250
  msgid "Don't check links where the URL contains any of these words (one per line) :"
251
  msgstr "לא ייבדקו קישורים שכתובת האינטרנט שלהם מכילה לפחות את אחת מהמילים הבאות (יש לרשום בכל שורה רק מילה אחת):"
252
 
253
- #: core/core.php:903
254
  #@ broken-link-checker
255
  msgid "Check links using"
256
  msgstr "בדיקת קישורים בעזרת"
257
 
258
- #: core/core.php:922
259
- #: includes/links.php:857
260
  #@ broken-link-checker
261
  msgid "Timeout"
262
  msgstr "משך הבדיקה המקסימלי לכל קישור (Timeout)"
263
 
264
- #: core/core.php:928
265
- #: core/core.php:997
266
- #: core/core.php:2904
267
  #, php-format
268
  #@ broken-link-checker
269
  #@ default
270
  msgid "%s seconds"
271
  msgstr "%s שניות"
272
 
273
- #: core/core.php:937
274
  #@ broken-link-checker
275
  msgid "Links that take longer than this to load will be marked as broken."
276
  msgstr "קישורים שלא שולחים חזרה קוד שגיאה או הפניה אך זמן הטעינה של עמוד היעד שלהם ארוך מערך זה - כנראה בעייתים מסיבה כלשהי ולכן יסומנו כשבורים.<br>(ערך ברירת מחדל: 30. ערך מינימום: 1. ערך מקסימום: 999. אפס (0) אינו ערך מותר)"
277
 
278
- #: core/core.php:944
279
  #@ broken-link-checker
280
  msgid "Link monitor"
281
  msgstr "תכיפות ניטור הקישורים<br>(שימו לב - אם שתי תיבות הסימון של הגדרה זו יהיו ריקות - התוסף למעשה יפסיק לחלוטין לבדוק קישורים! (אז תשאירו לפחות אחד מסומן))"
282
 
283
- #: core/core.php:952
284
  #@ broken-link-checker
285
  msgid "Run continuously while the Dashboard is open"
286
  msgstr "ניטור מתמשך כל עוד ממשק הניהול של וורדפרס פתוח על ידי משתמש אחד לפחות (ללא הגבלת ה-\"תפקיד\" (Role) אליו משויך המשתמש - משתמש כלשהו)"
287
 
288
- #: core/core.php:960
289
  #@ broken-link-checker
290
  msgid "Run hourly in the background"
291
  msgstr "ניטור פעם בשעה ברקע, ללא קשר למצב ממשק הניהול"
292
 
293
- #: core/core.php:968
294
  #@ broken-link-checker
295
  msgid "Show the dashboard widget for"
296
  msgstr "הצגת וידג'ט התוסף בעמוד \"לוח בקרה\" רק למשתמשים מסוג"
297
 
298
- #: core/core.php:973
299
  #@ broken-link-checker
300
  msgctxt "dashboard widget visibility"
301
  msgid "Administrator"
302
  msgstr "מנהל"
303
 
304
- #: core/core.php:974
305
  #@ broken-link-checker
306
  msgctxt "dashboard widget visibility"
307
  msgid "Editor and above"
308
  msgstr "עורך ומעלה"
309
 
310
- #: core/core.php:975
311
  #@ broken-link-checker
312
  msgctxt "dashboard widget visibility"
313
  msgid "Nobody (disables the widget)"
314
  msgstr "אף אחד (מכבה את הוידג'ט)"
315
 
316
- #: core/core.php:991
317
  #@ broken-link-checker
318
  msgid "Max. execution time"
319
  msgstr "משך זמן מקסימלי לבדיקת כל הקישורים באתר"
320
 
321
- #: core/core.php:1008
322
  #@ broken-link-checker
323
  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."
324
  msgstr "התוסף פועל על ידי משימה של בדיקת קישורים אשר בוחנת את סוגי התכנים השונים באתר ומנסה למצוא בהם קישורים. אם נמצאו קישורים המשימה בודקת את תקינותם ומבצעת פעילויות אחרות שגוזלות זמן ומשאבי מערכת. בשדה זה אתם יכולים להגדיר את כמות זמן הניטור המקסימלית המותרת. לאחר משך זמן זה תופסק פעילות הניטור באופן יזום על ידי התוסף.<br>(ערך ברירת מחדל: 300. ערך מינימום: 1. ערך מקסימום: 99999. אפס (0) אינו ערך מותר)"
325
 
326
- #: core/core.php:1017
327
  #@ broken-link-checker
328
  msgid "Server load limit"
329
  msgstr "הגבלת עומס על השרת"
330
 
331
- #: core/core.php:1032
332
  #, php-format
333
  #@ broken-link-checker
334
  msgid "Current load : %s"
335
  msgstr "העומס הנוכחי על השרת: %s"
336
 
337
- #: core/core.php:1038
338
  #, php-format
339
  #@ broken-link-checker
340
  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."
341
  msgstr "משימת בדיקת הקישורים תושעה במידה וממוצע <a href=\"%s\" target=\\\"_blank\\\">העומס על השרת</a> יעלה מעל מספר זה. ניתן להשאיר שדה זה ריק בכדי לכבות אפשרות זו - אולם מומלץ מאוד שלא לעשות זאת, בכדי למנוע את השבתת האתר שלכם על ידי ספק האירוח במידה ופעולת בדיקת הקישורים באתר שלכם תגרום לעומס אשר יפריע לפעולת השרת המארח."
342
 
343
- #: core/core.php:1046
344
  #@ broken-link-checker
345
  msgid "Not available"
346
  msgstr "לא זמין"
347
 
348
- #: core/core.php:1048
349
  #@ broken-link-checker
350
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
351
  msgstr "הגבלת עומס על השרת פועלת רק על מערכות דמויות Linux כאשר <code>/proc/loadavg</code> קיים ונגיש."
352
 
353
- #: core/core.php:1056
354
  #@ broken-link-checker
355
  msgid "Forced recheck"
356
  msgstr "איפוס ממצאי התוסף"
357
 
358
- #: core/core.php:1059
359
  #@ broken-link-checker
360
  msgid "Re-check all pages"
361
  msgstr "איפוס ממצאי התוסף"
362
 
363
- #: core/core.php:1063
364
  #@ broken-link-checker
365
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
366
  msgstr "***זהירות***: הקלקה על כפתור זה תמחק לחלוטין את התוכן הנוכחי של מסד הנתונים של התוסף (רק מידע שנאסף אודות הקישורים, לא ההגדרות של התוסף) ולאחר מכן תחל בדיקה מחדש של כל הקישורים באתר זה."
367
 
368
- #: core/core.php:1074
369
  #@ default
370
  msgid "Save Changes"
371
  msgstr "שמירת שינויים"
372
 
373
- #: core/core.php:1125
374
  #@ broken-link-checker
375
  msgid "Configure"
376
  msgstr "פירוט"
377
 
378
- #: core/core.php:1338
379
- #: core/core.php:1421
380
- #: core/core.php:1453
381
  #, php-format
382
  #@ broken-link-checker
383
  msgid "Database error : %s"
384
  msgstr "שגיאת מסד נתונים: %s"
385
 
386
- #: core/core.php:1403
387
  #@ broken-link-checker
388
  msgid "You must enter a filter name!"
389
  msgstr "חובה להזין שם מסנן!"
390
 
391
- #: core/core.php:1407
392
  #@ broken-link-checker
393
  msgid "Invalid search query."
394
  msgstr "שאילתת חיפוש לא תקינה."
395
 
396
- #: core/core.php:1416
397
  #, php-format
398
  #@ broken-link-checker
399
  msgid "Filter \"%s\" created"
400
  msgstr "הסינון \"%s\" נוצר"
401
 
402
- #: core/core.php:1443
403
  #@ broken-link-checker
404
  msgid "Filter ID not specified."
405
  msgstr "לא מצוין קוד זיהוי מסנן."
406
 
407
- #: core/core.php:1450
408
  #@ broken-link-checker
409
  msgid "Filter deleted"
410
  msgstr "המסנן נמחק"
411
 
412
- #: core/core.php:1498
413
  #, php-format
414
  #@ broken-link-checker
415
  msgid "Replaced %d redirect with a direct link"
@@ -417,7 +417,7 @@ msgid_plural "Replaced %d redirects with direct links"
417
  msgstr[0] " %d הפניה החליפה את הקישור המקורי"
418
  msgstr[1] "%d הפניות החליפו את הקישורים המקוריים"
419
 
420
- #: core/core.php:1509
421
  #, php-format
422
  #@ broken-link-checker
423
  msgid "Failed to fix %d redirect"
@@ -425,12 +425,12 @@ msgid_plural "Failed to fix %d redirects"
425
  msgstr[0] "נכשל הניסיון לתקן %d הפניה"
426
  msgstr[1] "נכשל הניסיון לתקן %d הפניות"
427
 
428
- #: core/core.php:1519
429
  #@ broken-link-checker
430
  msgid "None of the selected links are redirects!"
431
  msgstr "אף אחד מהקישורים שנבחרו אינו הפניה!"
432
 
433
- #: core/core.php:1598
434
  #, php-format
435
  #@ broken-link-checker
436
  msgid "%d link updated."
@@ -438,7 +438,7 @@ msgid_plural "%d links updated."
438
  msgstr[0] "עודכן %d קישור."
439
  msgstr[1] "עודכנו %d קישורים."
440
 
441
- #: core/core.php:1609
442
  #, php-format
443
  #@ broken-link-checker
444
  msgid "Failed to update %d link."
@@ -446,7 +446,7 @@ msgid_plural "Failed to update %d links."
446
  msgstr[0] "נכשל הניסיון לעדכן %d קישור."
447
  msgstr[1] "נכשל הניסיון לעדכן %d קישורים."
448
 
449
- #: core/core.php:1698
450
  #, php-format
451
  #@ broken-link-checker
452
  msgid "%d link removed"
@@ -454,7 +454,7 @@ msgid_plural "%d links removed"
454
  msgstr[0] "%d קישור הוסר"
455
  msgstr[1] "הוסרו %d קישורים"
456
 
457
- #: core/core.php:1709
458
  #, php-format
459
  #@ broken-link-checker
460
  msgid "Failed to remove %d link"
@@ -462,7 +462,7 @@ msgid_plural "Failed to remove %d links"
462
  msgstr[0] "נכשל הניסיון להסיר את הקישור %d"
463
  msgstr[1] "נכשל הניסיון להסיר את הקישורים %d"
464
 
465
- #: core/core.php:1818
466
  #, php-format
467
  #@ default
468
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
@@ -470,12 +470,12 @@ msgid_plural "%d items were skipped because they can't be moved to the Trash. Yo
470
  msgstr[0] "%d פריט לא עובד בגלל שלא ניתן להעביר אותו לסל המחזור. צריך למחוק אותו ידנית."
471
  msgstr[1] "%d פריטים לא עובדו בגלל שלא ניתן להעביר אותם לסל המחזור. צריך למחוק אותם ידנית."
472
 
473
- #: core/core.php:1839
474
  #@ broken-link-checker
475
  msgid "Didn't find anything to delete!"
476
  msgstr "לא נמצאו פריטים למחיקה!"
477
 
478
- #: core/core.php:1868
479
  #, php-format
480
  #@ broken-link-checker
481
  msgid "%d link scheduled for rechecking"
@@ -483,19 +483,19 @@ msgid_plural "%d links scheduled for rechecking"
483
  msgstr[0] "%d קישור תוזמן לבדיקה חוזרת"
484
  msgstr[1] "%d קישורים תוזמנו לבדיקה חוזרת"
485
 
486
- #: core/core.php:1913
487
- #: core/core.php:2522
488
  #@ broken-link-checker
489
  msgid "This link was manually marked as working by the user."
490
  msgstr "הקישור סומן ידנית כ'לא שבור' על ידי משתמש."
491
 
492
- #: core/core.php:1920
493
  #, php-format
494
  #@ broken-link-checker
495
  msgid "Couldn't modify link %d"
496
  msgstr "לא ניתן היה לשנות את הקישור %d"
497
 
498
- #: core/core.php:1931
499
  #, php-format
500
  #@ broken-link-checker
501
  msgid "%d link marked as not broken"
@@ -503,59 +503,59 @@ msgid_plural "%d links marked as not broken"
503
  msgstr[0] "הקישור %d סומן כ\\\"לא שבור\\\""
504
  msgstr[1] "הקישורים %d סומנו כ\\\"לא שבור\\\""
505
 
506
- #: core/core.php:1970
507
  #@ broken-link-checker
508
  msgid "Table columns"
509
  msgstr "טורי טבלה"
510
 
511
- #: core/core.php:1989
512
  #@ default
513
  msgid "Show on screen"
514
  msgstr "הצג במסך"
515
 
516
- #: core/core.php:1996
517
  #@ broken-link-checker
518
  msgid "links"
519
  msgstr "קישורים"
520
 
521
- #: core/core.php:1997
522
- #: includes/admin/table-printer.php:168
523
  #@ default
524
  #@ broken-link-checker
525
  msgid "Apply"
526
  msgstr "ביצוע"
527
 
528
- #: core/core.php:2001
529
  #@ broken-link-checker
530
  msgid "Misc"
531
  msgstr "שונות"
532
 
533
- #: core/core.php:2016
534
  #, php-format
535
  #@ broken-link-checker
536
  msgid "Highlight links broken for at least %s days"
537
  msgstr "הדגשת הרקע של קישורים אשר שבורים כבר במשך לפחות %s ימים"
538
 
539
- #: core/core.php:2025
540
  #@ broken-link-checker
541
  msgid "Color-code status codes"
542
  msgstr "קודי סטטוס צבעוניים"
543
 
544
- #: core/core.php:2042
545
- #: core/core.php:2507
546
- #: core/core.php:2547
547
- #: core/core.php:2580
548
- #: core/core.php:2667
549
  #@ broken-link-checker
550
  msgid "You're not allowed to do that!"
551
  msgstr "אינכם מורשים לבצע פעולה זו!"
552
 
553
- #: core/core.php:2377
554
  #@ broken-link-checker
555
  msgid "View broken links"
556
  msgstr "צפיה בקישורים השבורים"
557
 
558
- #: core/core.php:2378
559
  #, php-format
560
  #@ broken-link-checker
561
  msgid "Found %d broken link"
@@ -563,12 +563,12 @@ msgid_plural "Found %d broken links"
563
  msgstr[0] "נמצאו %d קישור שבור"
564
  msgstr[1] "נמצאו %d קישורים שבורים"
565
 
566
- #: core/core.php:2384
567
  #@ broken-link-checker
568
  msgid "No broken links found."
569
  msgstr "לא נמצאו קישורים שבורים."
570
 
571
- #: core/core.php:2391
572
  #, php-format
573
  #@ broken-link-checker
574
  msgid "%d URL in the work queue"
@@ -576,12 +576,12 @@ msgid_plural "%d URLs in the work queue"
576
  msgstr[0] "קיימת %d ‏כתובת אינטרנט בתור המשימות"
577
  msgstr[1] "קיימות %d ‏כתובות אינטרנט בתור המשימות"
578
 
579
- #: core/core.php:2394
580
  #@ broken-link-checker
581
  msgid "No URLs in the work queue."
582
  msgstr "אין בתור המשימות כתובות אינטרנט לבדיקה"
583
 
584
- #: core/core.php:2400
585
  #, php-format
586
  #@ broken-link-checker
587
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
@@ -590,7 +590,7 @@ msgid_plural "%d unique URLs"
590
  msgstr[0] "%d ‏כתובת אינטרנט יחודית"
591
  msgstr[1] "%d ‏כתובות אינטרנט יחודיות"
592
 
593
- #: core/core.php:2404
594
  #, php-format
595
  #@ broken-link-checker
596
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
@@ -599,169 +599,169 @@ msgid_plural "%d links"
599
  msgstr[0] "%d קישור"
600
  msgstr[1] "%d קישורים"
601
 
602
- #: core/core.php:2410
603
  #, php-format
604
  #@ broken-link-checker
605
  msgid "Detected %1$s in %2$s and still searching..."
606
  msgstr "נמצאו %1$s בתוך %2$s והחיפוש ממשיך..."
607
 
608
- #: core/core.php:2416
609
  #, php-format
610
  #@ broken-link-checker
611
  msgid "Detected %1$s in %2$s."
612
  msgstr "נמצאו %1$s בתוך %2$s."
613
 
614
- #: core/core.php:2423
615
  #@ broken-link-checker
616
  msgid "Searching your blog for links..."
617
  msgstr "מתבצע חיפוש קישורים באתר..."
618
 
619
- #: core/core.php:2425
620
  #@ broken-link-checker
621
  msgid "No links detected."
622
  msgstr "לא נמצאו קישורים."
623
 
624
- #: core/core.php:2451
625
  #@ broken-link-checker
626
  msgctxt "current load"
627
  msgid "Unknown"
628
  msgstr "לא ידוע"
629
 
630
- #: core/core.php:2515
631
- #: core/core.php:2555
632
- #: core/core.php:2595
633
- #: core/core.php:2677
634
  #, php-format
635
  #@ broken-link-checker
636
  msgid "Oops, I can't find the link %d"
637
  msgstr "אופס, לא נמצא הקישור %d"
638
 
639
- #: core/core.php:2528
640
- #: core/core.php:2565
641
  #@ broken-link-checker
642
  msgid "Oops, couldn't modify the link!"
643
  msgstr "אופס, לא ניתן לשנות את הקישור!"
644
 
645
- #: core/core.php:2531
646
- #: core/core.php:2568
647
- #: core/core.php:2703
648
  #@ broken-link-checker
649
  msgid "Error : link_id not specified"
650
  msgstr "שגיאה: link_id אינו מוגדר"
651
 
652
- #: core/core.php:2604
653
  #@ broken-link-checker
654
  msgid "Oops, the new URL is invalid!"
655
  msgstr "אופס, כתובת האינטרנט החדשה אינה תקינה!"
656
 
657
- #: core/core.php:2686
658
  #@ broken-link-checker
659
  msgid "An unexpected error occured!"
660
  msgstr "אירעה שגיאה לא צפויה!"
661
 
662
- #: core/core.php:2586
663
  #@ broken-link-checker
664
  msgid "Error : link_id or new_url not specified"
665
  msgstr "שגיאה: link_id או new_url אינם מוגדרים"
666
 
667
- #: core/core.php:2712
668
  #@ broken-link-checker
669
  msgid "You don't have sufficient privileges to access this information!"
670
  msgstr "אין לכם את ההרשאות המתאימות בכדי לגשת למידע זה!"
671
 
672
- #: core/core.php:2725
673
  #@ broken-link-checker
674
  msgid "Error : link ID not specified"
675
  msgstr "שגיאה: לא מוגדר קוד זיהוי קישור"
676
 
677
- #: core/core.php:2739
678
  #, php-format
679
  #@ broken-link-checker
680
  msgid "Failed to load link details (%s)"
681
  msgstr "נכשל הניסיון לטעון את פרטי הקישור (%s)"
682
 
683
- #: core/core.php:2793
684
  #@ broken-link-checker
685
  msgid "Broken Link Checker"
686
  msgstr "בודק קישורים שבורים"
687
 
688
- #: core/core.php:2813
689
  #@ broken-link-checker
690
  msgid "PHP version"
691
  msgstr "גרסת PHP"
692
 
693
- #: core/core.php:2819
694
  #@ broken-link-checker
695
  msgid "MySQL version"
696
  msgstr "גרסת MySQL"
697
 
698
- #: core/core.php:2832
699
  #@ broken-link-checker
700
  msgid "You have an old version of CURL. Redirect detection may not work properly."
701
  msgstr "גרסת ה-CURL באתר שלכם ישנה. בשל כך קיים סיכוי שתהליך איתור ההפניות לא יעבוד באופן תקין. כדאי לבקש ממנהלי האתר שלכם לעדכן את גרסת ה-CURL לגרסה עדכנית."
702
 
703
- #: core/core.php:2844
704
- #: core/core.php:2860
705
- #: core/core.php:2865
706
  #@ broken-link-checker
707
  msgid "Not installed"
708
  msgstr "לא מותקן"
709
 
710
- #: core/core.php:2847
711
  #@ broken-link-checker
712
  msgid "CURL version"
713
  msgstr "גרסת CURL"
714
 
715
- #: core/core.php:2853
716
  #@ broken-link-checker
717
  msgid "Installed"
718
  msgstr "מותקן"
719
 
720
- #: core/core.php:2866
721
  #@ broken-link-checker
722
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
723
  msgstr "תוכנת CURL או Snoopy חייבת להיות מותקנת בכדי שתוסף זה יעבוד באופן תקין! אנא פנו למנהלי האתר או חברת אירוח האתרים בה מתארח אתר זה ובקשו מהם להתקין את אחת מהתוכנות האלו, בגרסה עדכנית."
724
 
725
- #: core/core.php:2877
726
  #@ broken-link-checker
727
  msgid "On"
728
  msgstr "פעיל"
729
 
730
- #: core/core.php:2878
731
  #@ broken-link-checker
732
  msgid "Redirects may be detected as broken links when safe_mode is on."
733
  msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר safe_mode פעיל."
734
 
735
- #: core/core.php:2883
736
- #: core/core.php:2897
737
  #@ broken-link-checker
738
  msgid "Off"
739
  msgstr "כבוי"
740
 
741
- #: core/core.php:2891
742
  #, php-format
743
  #@ broken-link-checker
744
  msgid "On ( %s )"
745
  msgstr "פעיל ( %s )"
746
 
747
- #: core/core.php:2892
748
  #@ broken-link-checker
749
  msgid "Redirects may be detected as broken links when open_basedir is on."
750
  msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר open_basedir פעיל."
751
 
752
- #: core/core.php:2921
753
  #@ broken-link-checker
754
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
755
  msgstr "אם ערך זה הוא 0 (אפס) אפילו לאחר מספר טעינות עמוד חוזרות - כנראה שנתקלתם בבאג."
756
 
757
- #: core/core.php:3044
758
  #: core/core.php:3159
 
759
  #, php-format
760
  #@ broken-link-checker
761
  msgid "[%s] Broken links detected"
762
  msgstr "נמצאו [%s] קישורים שבורים"
763
 
764
- #: core/core.php:3050
765
  #, php-format
766
  #@ broken-link-checker
767
  msgid "Broken Link Checker has detected %d new broken link on your site."
@@ -769,7 +769,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links on your site.
769
  msgstr[0] "בודק קישורים שבורים איתר %d קישור שבור חדש באתר שלכם."
770
  msgstr[1] "בודק קישורים שבורים איתר %d קישורים שבורים חדשים באתר שלכם."
771
 
772
- #: core/core.php:3081
773
  #, php-format
774
  #@ broken-link-checker
775
  msgid "Here's a list of the first %d broken links:"
@@ -777,35 +777,35 @@ msgid_plural "Here's a list of the first %d broken links:"
777
  msgstr[0] "הנה רשימה של %d הקישור השבור הראשון:"
778
  msgstr[1] "הנה רשימה של %d הקישורים השבורים הראשונים:"
779
 
780
- #: core/core.php:3089
781
  #@ broken-link-checker
782
  msgid "Here's a list of the new broken links: "
783
  msgstr "הנה רשימה של קישורים שבורים חדשים: "
784
 
785
- #: core/core.php:3098
786
  #, php-format
787
  #@ broken-link-checker
788
  msgid "Link text : %s"
789
  msgstr "טקסט קישור: %s"
790
 
791
- #: core/core.php:3099
792
  #, php-format
793
  #@ broken-link-checker
794
  msgid "Link URL : <a href=\"%s\">%s</a>"
795
  msgstr "קישור כתובת אינטרנט: ‏<a href=\"%s\">%s</a>"
796
 
797
- #: core/core.php:3100
798
  #, php-format
799
  #@ broken-link-checker
800
  msgid "Source : %s"
801
  msgstr "מקור הקישור: %s"
802
 
803
- #: core/core.php:3114
804
  #@ broken-link-checker
805
  msgid "You can see all broken links here:"
806
  msgstr "ניתן לצפות בכל הקישורים השבורים כאן:"
807
 
808
- #: core/core.php:3165
809
  #, php-format
810
  #@ broken-link-checker
811
  msgid "Broken Link Checker has detected %d new broken link in your posts."
@@ -813,17 +813,17 @@ msgid_plural "Broken Link Checker has detected %d new broken links in your posts
813
  msgstr[0] "בודק קישורים שבורים איתר %d קישור שבור חדש בפוסטים שלכם."
814
  msgstr[1] "בודק קישורים שבורים איתר %d קישורים שבורים חדשים בפוסטים שלכם."
815
 
816
- #: core/init.php:242
817
  #@ default
818
  msgid "Once Weekly"
819
  msgstr "פעם בשבוע"
820
 
821
- #: core/init.php:248
822
  #@ default
823
  msgid "Twice a Month"
824
  msgstr "פעמיים בחודש"
825
 
826
- #: core/init.php:324
827
  #@ broken-link-checker
828
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
829
  msgstr "התקנת התוסף בודק קישורים שבורים נכשלה. נסו לכבות ואז להפעיל מחדש את התוסף."
@@ -834,77 +834,77 @@ msgstr "התקנת התוסף בודק קישורים שבורים נכשלה.
834
  msgid "Failed to delete old DB tables. Database error : %s"
835
  msgstr "נכשל הניסיון למחוק טבלאות מסד נתונים ישנות. שגיאת מסד נתונים: %s"
836
 
837
- #: includes/admin/links-page-js.php:55
838
- #: includes/admin/links-page-js.php:517
839
  #@ broken-link-checker
840
  msgid "Wait..."
841
  msgstr "המתינו..."
842
 
843
- #: includes/admin/links-page-js.php:100
844
- #: includes/admin/table-printer.php:658
845
  #@ broken-link-checker
846
  msgid "Not broken"
847
  msgstr "לא שבור"
848
 
849
- #: includes/admin/links-page-js.php:379
850
  #, php-format
851
  #@ broken-link-checker
852
  msgid "%d instances of the link were successfully modified."
853
  msgstr "%d מופעים של הקישור שונו בהצלחה."
854
 
855
- #: includes/admin/links-page-js.php:385
856
  #, php-format
857
  #@ broken-link-checker
858
  msgid "However, %d instances couldn't be edited and still point to the old URL."
859
  msgstr "אולם, לא היה ניתן לערוך %d מופעים ולכן הם עדיין מצביעים לכתובת האינטרנט הישנה."
860
 
861
- #: includes/admin/links-page-js.php:391
862
  #@ broken-link-checker
863
  msgid "The link could not be modified."
864
  msgstr "לא היה ניתן לשנות את הקישור."
865
 
866
- #: includes/admin/links-page-js.php:569
867
  #@ broken-link-checker
868
  msgid "The following error(s) occured :"
869
  msgstr "השגיאה או השגיאות הבאות התרחשו:"
870
 
871
- #: includes/admin/links-page-js.php:555
872
  #, php-format
873
  #@ broken-link-checker
874
  msgid "%d instances of the link were successfully unlinked."
875
  msgstr "%d פעמים שהקישור נמצא עבור הסרת קישור"
876
 
877
- #: includes/admin/links-page-js.php:561
878
  #, php-format
879
  #@ broken-link-checker
880
  msgid "However, %d instances couldn't be removed."
881
  msgstr "אולם, לא היה ניתן להסיר %d מופעים."
882
 
883
- #: includes/admin/links-page-js.php:566
884
  #@ broken-link-checker
885
  msgid "The plugin failed to remove the link."
886
  msgstr "התוסף לא הצליח להסיר את הקישור."
887
 
888
- #: includes/admin/links-page-js.php:577
889
- #: includes/admin/table-printer.php:276
890
- #: includes/admin/table-printer.php:652
891
  #@ broken-link-checker
892
  msgid "Unlink"
893
  msgstr "הסרת הקישור (טקסט הקישור לא יוסר)"
894
 
895
- #: includes/admin/links-page-js.php:621
896
  #@ broken-link-checker
897
  msgid "Enter a name for the new custom filter"
898
  msgstr "הזינו שם למסנן המותאם החדש"
899
 
900
- #: includes/admin/links-page-js.php:632
901
  #@ broken-link-checker
902
  msgid ""
903
  "You are about to delete the current filter.\n"
904
  "'Cancel' to stop, 'OK' to delete"
905
  msgstr "אתם עומדים למחוק את המסנן הפעיל. הקליקו 'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה."
906
 
907
- #: includes/admin/links-page-js.php:652
908
  #@ broken-link-checker
909
  msgid ""
910
  "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"
@@ -913,7 +913,7 @@ msgstr ""
913
  "האם אתם בטוחים שאתם רוצים למחוק את כל הפוסטים, סימניות או פריטים אחרים שכוללים בתוכם את הקישורים שבחרתם? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \n"
914
  "'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה"
915
 
916
- #: includes/admin/links-page-js.php:662
917
  #@ broken-link-checker
918
  msgid ""
919
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
@@ -922,12 +922,12 @@ msgstr ""
922
  "האם אתם בטוחים שאתם רוצים להסיר את הקישורים שנבחרו? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \n"
923
  "'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה"
924
 
925
- #: includes/admin/links-page-js.php:771
926
  #@ broken-link-checker
927
  msgid "Enter a search string first."
928
  msgstr "ראשית הזינו טקסט חיפוש."
929
 
930
- #: includes/admin/links-page-js.php:778
931
  #@ broken-link-checker
932
  msgid "Select one or more links to edit."
933
  msgstr "בחרו קישור אחד או יותר לעריכה."
@@ -959,13 +959,13 @@ msgid "Link text"
959
  msgstr "טקסט הקישור"
960
 
961
  #: includes/admin/search-form.php:45
962
- #: includes/admin/table-printer.php:205
963
  #@ broken-link-checker
964
  msgid "URL"
965
  msgstr "כתובת האינטרנט"
966
 
967
  #: includes/admin/search-form.php:48
968
- #: includes/admin/table-printer.php:522
969
  #@ broken-link-checker
970
  msgid "HTTP code"
971
  msgstr "קוד HTTP‏"
@@ -997,9 +997,9 @@ msgid "Search Links"
997
  msgstr "חיפוש קישורים"
998
 
999
  #: includes/admin/search-form.php:113
1000
- #: includes/admin/table-printer.php:352
1001
- #: includes/admin/table-printer.php:682
1002
- #: includes/admin/table-printer.php:807
1003
  #@ broken-link-checker
1004
  msgid "Cancel"
1005
  msgstr "ביטול"
@@ -1024,156 +1024,156 @@ msgstr "אם אתם אוהבים תוסף זה, בבקשה תרמו בכדי ל
1024
  msgid "Return to WordPress Dashboard"
1025
  msgstr "חזרה ללוח המחוונים של Wordpress"
1026
 
1027
- #: includes/admin/table-printer.php:182
1028
  #@ broken-link-checker
1029
  msgid "Compact View"
1030
  msgstr "תצוגה מצומצמת"
1031
 
1032
- #: includes/admin/table-printer.php:183
1033
  #@ broken-link-checker
1034
  msgid "Detailed View"
1035
  msgstr "תצוגה מפורטת"
1036
 
1037
- #: includes/admin/table-printer.php:212
1038
  #@ broken-link-checker
1039
  msgid "Source"
1040
  msgstr "מקור הקישור"
1041
 
1042
- #: includes/admin/table-printer.php:218
1043
  #@ broken-link-checker
1044
  msgid "Link Text"
1045
  msgstr "טקסט הקישור"
1046
 
1047
- #: includes/admin/table-printer.php:223
1048
  #@ broken-link-checker
1049
  msgid "Redirect URL"
1050
  msgstr "כתובת ההפניה"
1051
 
1052
- #: includes/admin/table-printer.php:271
1053
  #@ broken-link-checker
1054
  msgid "Bulk Actions"
1055
  msgstr "פעולות על מספר קישורים במקביל"
1056
 
1057
- #: includes/admin/table-printer.php:272
1058
- #: includes/admin/table-printer.php:649
1059
  #@ broken-link-checker
1060
  msgid "Edit URL"
1061
  msgstr "עריכת הקישור"
1062
 
1063
- #: includes/admin/table-printer.php:273
1064
  #@ broken-link-checker
1065
  msgid "Recheck"
1066
  msgstr "בדיקה חוזרת"
1067
 
1068
- #: includes/admin/table-printer.php:274
1069
  #@ broken-link-checker
1070
  msgid "Fix redirects"
1071
  msgstr "החלפת הקישור המקורי בקישור ההפניה"
1072
 
1073
- #: includes/admin/table-printer.php:275
1074
  #@ broken-link-checker
1075
  msgid "Mark as not broken"
1076
  msgstr "סימון כ'לא שבור'"
1077
 
1078
- #: includes/admin/table-printer.php:279
1079
  #@ broken-link-checker
1080
  msgid "Move sources to Trash"
1081
  msgstr "העברה לפח (=מחיקה) של מקור הקישור (פוסט, עמוד וכדומה)"
1082
 
1083
- #: includes/admin/table-printer.php:281
1084
  #@ broken-link-checker
1085
  msgid "Delete sources"
1086
  msgstr "מחיקת מקורות הקישור"
1087
 
1088
- #: includes/admin/table-printer.php:296
1089
  #@ default
1090
  msgid "&laquo;"
1091
  msgstr "&laquo;"
1092
 
1093
- #: includes/admin/table-printer.php:297
1094
  #@ default
1095
  msgid "&raquo;"
1096
  msgstr "&raquo;"
1097
 
1098
- #: includes/admin/table-printer.php:305
1099
  #, php-format
1100
  #@ broken-link-checker
1101
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1102
  msgstr "הצגת %s&#8211;%s מתוך <span class=\"current-link-count\">%s</span>"
1103
 
1104
- #: includes/admin/table-printer.php:328
1105
  #@ broken-link-checker
1106
  msgid "Bulk Edit URLs"
1107
  msgstr "עריכה של קישורים מרובים במקביל"
1108
 
1109
- #: includes/admin/table-printer.php:330
1110
  #@ broken-link-checker
1111
  msgid "Find"
1112
  msgstr "מצא"
1113
 
1114
- #: includes/admin/table-printer.php:334
1115
  #@ broken-link-checker
1116
  msgid "Replace with"
1117
  msgstr "החלפה ב-"
1118
 
1119
- #: includes/admin/table-printer.php:342
1120
  #@ broken-link-checker
1121
  msgid "Case sensitive"
1122
  msgstr "עם רגישות לגודל אותיות אנגליות (Case Sensitive)"
1123
 
1124
- #: includes/admin/table-printer.php:346
1125
  #@ broken-link-checker
1126
  msgid "Regular expression"
1127
  msgstr "Regular Expression"
1128
 
1129
- #: includes/admin/table-printer.php:354
1130
- #: includes/admin/table-printer.php:808
1131
  #@ broken-link-checker
1132
  msgid "Update"
1133
  msgstr "עדכון"
1134
 
1135
- #: includes/admin/table-printer.php:507
1136
  #@ broken-link-checker
1137
  msgid "Post published on"
1138
  msgstr "פוסטים שפורסמו ב:"
1139
 
1140
- #: includes/admin/table-printer.php:512
1141
  #@ broken-link-checker
1142
  msgid "Link last checked"
1143
  msgstr "הקישור נבדק לאחרונה בתאריך"
1144
 
1145
- #: includes/admin/table-printer.php:516
1146
  #@ broken-link-checker
1147
  msgid "Never"
1148
  msgstr "מעולם לא"
1149
 
1150
- #: includes/admin/table-printer.php:527
1151
  #@ broken-link-checker
1152
  msgid "Response time"
1153
  msgstr "זמן תגובה"
1154
 
1155
- #: includes/admin/table-printer.php:529
1156
  #, php-format
1157
  #@ broken-link-checker
1158
  msgid "%2.3f seconds"
1159
  msgstr "%2.3f שניות"
1160
 
1161
- #: includes/admin/table-printer.php:532
1162
  #@ broken-link-checker
1163
  msgid "Final URL"
1164
  msgstr "כתובת אינטרנט סופית"
1165
 
1166
- #: includes/admin/table-printer.php:537
1167
  #@ broken-link-checker
1168
  msgid "Redirect count"
1169
  msgstr "כמות הפניות"
1170
 
1171
- #: includes/admin/table-printer.php:542
1172
  #@ broken-link-checker
1173
  msgid "Instance count"
1174
  msgstr "כמות מופעים"
1175
 
1176
- #: includes/admin/table-printer.php:551
1177
  #, php-format
1178
  #@ broken-link-checker
1179
  msgid "This link has failed %d time."
@@ -1181,74 +1181,74 @@ msgid_plural "This link has failed %d times."
1181
  msgstr[0] "הקישור נכשל ב-%d בדיקה."
1182
  msgstr[1] "הקישור נכשל ב-%d בדיקות."
1183
 
1184
- #: includes/admin/table-printer.php:559
1185
  #, php-format
1186
  #@ broken-link-checker
1187
  msgid "This link has been broken for %s."
1188
  msgstr "הקישור שבור במשך לפחות %s."
1189
 
1190
- #: includes/admin/table-printer.php:570
1191
  #@ broken-link-checker
1192
  msgid "Log"
1193
  msgstr "פרטי הבדיקה:<br>"
1194
 
1195
- #: includes/admin/table-printer.php:595
1196
  #@ broken-link-checker
1197
  msgid "Show more info about this link"
1198
  msgstr "הצג מידע נוסף אודות קישור זה"
1199
 
1200
- #: includes/admin/table-printer.php:613
1201
  #@ broken-link-checker
1202
  msgctxt "checked how long ago"
1203
  msgid "Checked"
1204
  msgstr "נבדק"
1205
 
1206
- #: includes/admin/table-printer.php:629
1207
  #@ broken-link-checker
1208
  msgid "Broken for"
1209
  msgstr "שבור כבר לפחות"
1210
 
1211
- #: includes/admin/table-printer.php:651
1212
  #@ broken-link-checker
1213
  msgid "Remove this link from all posts"
1214
  msgstr "הסרת קישור זה מכל הפוסטים בהם הוא מופיע. טקסט הקישור לא יוסר ולא ישתנה."
1215
 
1216
- #: includes/admin/table-printer.php:657
1217
  #@ broken-link-checker
1218
  msgid "Remove this link from the list of broken links and mark it as valid"
1219
  msgstr "הסרת קישור זה מהרשימה הנוכחית וסימונו כתקין"
1220
 
1221
- #: includes/admin/table-printer.php:665
1222
  #@ broken-link-checker
1223
  msgid "Hide this link and do not report it again unless its status changes"
1224
  msgstr "הקישור יועבר אל רשימת \"בהמתנה\" ולא ידווח שוב כשבור אלא אם הסטטוס שלו ישתנה"
1225
 
1226
- #: includes/admin/table-printer.php:666
1227
  #@ broken-link-checker
1228
  msgid "Dismiss"
1229
  msgstr "העברה למצב המתנה"
1230
 
1231
- #: includes/admin/table-printer.php:671
1232
  #@ broken-link-checker
1233
  msgid "Undismiss this link"
1234
  msgstr "הוצאת קישור זה ממצב המתנה והחזרתו לרשימת הקישורים השבורים"
1235
 
1236
- #: includes/admin/table-printer.php:672
1237
  #@ broken-link-checker
1238
  msgid "Undismiss"
1239
  msgstr "ביטול מצב המתנה"
1240
 
1241
- #: includes/admin/table-printer.php:683
1242
  #@ broken-link-checker
1243
  msgid "Update URL"
1244
  msgstr "עדכון כתובת אינטרנט"
1245
 
1246
- #: includes/admin/table-printer.php:710
1247
  #@ broken-link-checker
1248
  msgid "[An orphaned link! This is a bug.]"
1249
  msgstr "[קישור יתום! זה באג.]"
1250
 
1251
- #: includes/any-post.php:397
1252
  #: modules/containers/blogroll.php:46
1253
  #: modules/containers/comment.php:153
1254
  #: modules/containers/custom_field.php:207
@@ -1256,96 +1256,96 @@ msgstr "[קישור יתום! זה באג.]"
1256
  msgid "Edit"
1257
  msgstr "עריכה"
1258
 
1259
- #: includes/any-post.php:405
1260
  #: modules/containers/custom_field.php:213
1261
  #@ default
1262
  msgid "Move this item to the Trash"
1263
  msgstr "העבר פריט זה לסל המחזור"
1264
 
1265
- #: includes/any-post.php:407
1266
  #: modules/containers/custom_field.php:215
1267
  #@ default
1268
  msgid "Trash"
1269
  msgstr "סל המחזור"
1270
 
1271
- #: includes/any-post.php:412
1272
  #: modules/containers/custom_field.php:220
1273
  #@ default
1274
  msgid "Delete this item permanently"
1275
  msgstr "מחיקת פריט זה באופן מוחלט"
1276
 
1277
- #: includes/any-post.php:414
1278
  #: modules/containers/blogroll.php:47
1279
  #: modules/containers/custom_field.php:222
1280
  #@ default
1281
  msgid "Delete"
1282
  msgstr "מחיקה"
1283
 
1284
- #: includes/any-post.php:427
1285
  #, php-format
1286
  #@ default
1287
  msgid "Preview &#8220;%s&#8221;"
1288
  msgstr "תצוגה מקדימה &#8220;%s&#8221;"
1289
 
1290
- #: includes/any-post.php:428
1291
  #@ default
1292
  msgid "Preview"
1293
  msgstr "תצוגה מקדימה"
1294
 
1295
- #: includes/any-post.php:435
1296
  #, php-format
1297
  #@ default
1298
  msgid "View &#8220;%s&#8221;"
1299
  msgstr "צפיה &#8220;%s&#8221;"
1300
 
1301
- #: includes/any-post.php:436
1302
  #: modules/containers/comment.php:166
1303
  #: modules/containers/custom_field.php:227
1304
  #@ default
1305
  msgid "View"
1306
  msgstr "צפיה"
1307
 
1308
- #: includes/any-post.php:455
1309
  #: modules/containers/custom_field.php:207
1310
  #@ default
1311
  msgid "Edit this item"
1312
  msgstr "עריכת פריט זה"
1313
 
1314
- #: includes/any-post.php:519
1315
  #: modules/containers/blogroll.php:83
1316
  #: modules/containers/comment.php:43
1317
  #@ broken-link-checker
1318
  msgid "Nothing to update"
1319
  msgstr "אין מה לעדכן"
1320
 
1321
- #: includes/any-post.php:529
1322
  #, php-format
1323
  #@ broken-link-checker
1324
  msgid "Updating post %d failed"
1325
  msgstr "עדכון הפוסט %d נכשל"
1326
 
1327
- #: includes/any-post.php:566
1328
  #: modules/containers/custom_field.php:294
1329
  #, php-format
1330
  #@ broken-link-checker
1331
  msgid "Failed to delete post \"%s\" (%d)"
1332
  msgstr "נכשל הניסיון למחוק את הפוסט \"%s\" (%d)"
1333
 
1334
- #: includes/any-post.php:585
1335
  #: modules/containers/custom_field.php:313
1336
  #, php-format
1337
  #@ broken-link-checker
1338
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1339
  msgstr "לא ניתן להעביר את הפוסט \"%s\" (%d) אל הפח מפני שרכיב הפח לא פעיל"
1340
 
1341
- #: includes/any-post.php:605
1342
  #: modules/containers/custom_field.php:332
1343
  #, php-format
1344
  #@ broken-link-checker
1345
  msgid "Failed to move post \"%s\" (%d) to the trash"
1346
  msgstr "נכשל הניסיון להעביר את הפוסט \"%s\" (%d) אל הפח"
1347
 
1348
- #: includes/any-post.php:713
1349
  #, php-format
1350
  #@ broken-link-checker
1351
  msgid "%d post deleted."
@@ -1353,7 +1353,7 @@ msgid_plural "%d posts deleted."
1353
  msgstr[0] "הפוסט %d נמחק."
1354
  msgstr[1] "הפוסטים %d נמחקו."
1355
 
1356
- #: includes/any-post.php:715
1357
  #, php-format
1358
  #@ broken-link-checker
1359
  msgid "%d page deleted."
@@ -1361,7 +1361,7 @@ msgid_plural "%d pages deleted."
1361
  msgstr[0] "העמוד %d נמחק."
1362
  msgstr[1] "העמודים %d נמחקו."
1363
 
1364
- #: includes/any-post.php:717
1365
  #, php-format
1366
  #@ broken-link-checker
1367
  msgid "%d \"%s\" deleted."
@@ -1369,7 +1369,7 @@ msgid_plural "%d \"%s\" deleted."
1369
  msgstr[0] "%d \"%s\" נמחק."
1370
  msgstr[1] "%d \"%s\" נמחקו."
1371
 
1372
- #: includes/any-post.php:736
1373
  #, php-format
1374
  #@ broken-link-checker
1375
  msgid "%d post moved to the Trash."
@@ -1377,7 +1377,7 @@ msgid_plural "%d posts moved to the Trash."
1377
  msgstr[0] "הפוסט %d הועבר לפח."
1378
  msgstr[1] "הפוסטים %d הועברו לפח."
1379
 
1380
- #: includes/any-post.php:738
1381
  #, php-format
1382
  #@ broken-link-checker
1383
  msgid "%d page moved to the Trash."
@@ -1385,7 +1385,7 @@ msgid_plural "%d pages moved to the Trash."
1385
  msgstr[0] "העמוד %d הועבר לפח."
1386
  msgstr[1] "העמודים %d הועברו לפח."
1387
 
1388
- #: includes/any-post.php:740
1389
  #, php-format
1390
  #@ broken-link-checker
1391
  msgid "%d \"%s\" moved to the Trash."
@@ -1620,79 +1620,79 @@ msgstr "תוצאות החיפוש"
1620
  msgid "No links found for your query"
1621
  msgstr "לא נמצאו קישורים על פי השאילתא שלכם"
1622
 
1623
- #: includes/links.php:218
1624
  #@ broken-link-checker
1625
  msgid "The plugin script was terminated while trying to check the link."
1626
  msgstr "תסריט התוסף הסתיים בזמן בדיקת הקישור."
1627
 
1628
- #: includes/links.php:264
1629
  #@ broken-link-checker
1630
  msgid "The plugin doesn't know how to check this type of link."
1631
  msgstr "התוסף אינו יודע כיצד לבדוק סוג זה של קישור."
1632
 
1633
- #: includes/links.php:357
1634
  #@ broken-link-checker
1635
  msgid "Link is valid."
1636
  msgstr "הקישור תקין."
1637
 
1638
- #: includes/links.php:359
1639
  #@ broken-link-checker
1640
  msgid "Link is broken."
1641
  msgstr "הקישור שבור."
1642
 
1643
- #: includes/links.php:572
1644
- #: includes/links.php:674
1645
- #: includes/links.php:701
1646
  #@ broken-link-checker
1647
  msgid "Link is not valid"
1648
  msgstr "הקישור אינו תקין"
1649
 
1650
- #: includes/links.php:589
1651
  #@ broken-link-checker
1652
  msgid "This link can not be edited because it is not used anywhere on this site."
1653
  msgstr "לא ניתן לערוך את הקישור בגלל שלא נעשה בו שימוש במקום כלשהו באתר זה."
1654
 
1655
- #: includes/links.php:615
1656
  #@ broken-link-checker
1657
  msgid "Failed to create a DB entry for the new URL."
1658
  msgstr "נכשל הניסיון ליצור רשומת מסד נתונים עבור כתובת האינטרנט החדשה."
1659
 
1660
- #: includes/links.php:681
1661
  #@ broken-link-checker
1662
  msgid "This link is not a redirect"
1663
  msgstr "הקישור אינו הפניה"
1664
 
1665
- #: includes/links.php:728
1666
- #: includes/links.php:765
1667
  #@ broken-link-checker
1668
  msgid "Couldn't delete the link's database record"
1669
  msgstr "לא ניתן למחוק את רשומת מסד הנתונים של הקישור"
1670
 
1671
- #: includes/links.php:839
1672
  #@ broken-link-checker
1673
  msgctxt "link status"
1674
  msgid "Unknown"
1675
  msgstr "לא ידוע"
1676
 
1677
- #: includes/links.php:853
1678
- #: modules/checkers/http.php:263
1679
  #: modules/extras/mediafire.php:101
1680
  #@ link status
1681
  #@ broken-link-checker
1682
  msgid "Unknown Error"
1683
  msgstr "שגיאה לא ידועה"
1684
 
1685
- #: includes/links.php:877
1686
  #@ broken-link-checker
1687
  msgid "Not checked"
1688
  msgstr "טרם נבדק"
1689
 
1690
- #: includes/links.php:880
1691
  #@ broken-link-checker
1692
  msgid "False positive"
1693
  msgstr "זיהוי שגוי כשבור (False Positive)"
1694
 
1695
- #: includes/links.php:883
1696
  #: modules/extras/fileserve.php:121
1697
  #: modules/extras/megaupload.php:115
1698
  #: modules/extras/rapidshare.php:145
@@ -1802,40 +1802,40 @@ msgid_plural "%d months ago"
1802
  msgstr[0] "לפני %d חודש"
1803
  msgstr[1] "לפני %d חודשים"
1804
 
1805
- #: modules/checkers/http.php:242
1806
  #@ broken-link-checker
1807
  msgid "Server Not Found"
1808
  msgstr "שרת לא נמצא"
1809
 
1810
- #: modules/checkers/http.php:257
1811
  #@ broken-link-checker
1812
  msgid "Connection Failed"
1813
  msgstr "ההתקשרות נכשלה"
1814
 
1815
- #: modules/checkers/http.php:292
1816
- #: modules/checkers/http.php:362
1817
  #, php-format
1818
  #@ broken-link-checker
1819
  msgid "HTTP code : %d"
1820
  msgstr "קוד HTTP: ‏%d"
1821
 
1822
- #: modules/checkers/http.php:294
1823
- #: modules/checkers/http.php:364
1824
  #@ broken-link-checker
1825
  msgid "(No response)"
1826
  msgstr "(אין תגובה)"
1827
 
1828
- #: modules/checkers/http.php:300
1829
  #@ broken-link-checker
1830
  msgid "Most likely the connection timed out or the domain doesn't exist."
1831
  msgstr "קיימת סבירות גבוהה שההתקשרות הסתיימה בגלל היעדר תגובה מהשרת המארח את עמוד היעד של הקישור"
1832
 
1833
- #: modules/checkers/http.php:371
1834
  #@ broken-link-checker
1835
  msgid "Request timed out."
1836
  msgstr "זמן המתנה מקסימלי (Timeout) לבקשה."
1837
 
1838
- #: modules/checkers/http.php:389
1839
  #@ broken-link-checker
1840
  msgid "Using Snoopy"
1841
  msgstr "עושה שימוש ב-Snoopy"
@@ -2196,99 +2196,131 @@ msgstr "תמונה"
2196
  msgid "Custom field"
2197
  msgstr "שדה מותאם"
2198
 
2199
- #: core/core.php:805
2200
  #@ broken-link-checker
2201
  msgctxt "settings page"
2202
  msgid "Suggestions"
2203
  msgstr "הצעות לקישור חלופי מארכיב אינטרנט"
2204
 
2205
- #: core/core.php:811
2206
  #@ broken-link-checker
2207
  msgid "Suggest alternatives to broken links"
2208
  msgstr "לקישורים שבורים יוצעו אפשרויות לקישור חלופי מאתר <a href=\"http://archive.org/web/\" target=\\\"_blank\\\">ארכיב אינטרנט</a>.<br> אפשרות זו מתאימה בעיקר למקרה בו העמוד המדובר (או אפילו האתר כולו) כבר לא קיים בכלל באינטרנט, ולכן עדיף לפחות לתת קישור לעמוד ארכיב של עמוד המקור במקום להסיר לגמרי את הקישור."
2209
 
2210
- #: core/core.php:1208
2211
  #@ broken-link-checker
2212
  msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
2213
  msgstr "הזינו את שמות השדות המותאמים שברצונכם לבדוק (שם אחד בכל שורה). אם השדה מכיל קוד HTML, הוסיפו לשם השדה קידומת של <code>html:</code>. למשל <code>html:field_name</code>"
2214
 
2215
- #: core/core.php:2619
2216
  #@ broken-link-checker
2217
  msgid "An unexpected error occurred!"
2218
  msgstr "התרחשה שגיאה לא צפויה!"
2219
 
2220
- #: includes/admin/links-page-js.php:235
2221
  #@ broken-link-checker
2222
  msgctxt "link text"
2223
  msgid "(None)"
2224
  msgstr "(לא קיים)"
2225
 
2226
- #: includes/admin/links-page-js.php:236
2227
  #@ broken-link-checker
2228
  msgctxt "link text"
2229
  msgid "(Multiple links)"
2230
  msgstr "(הקישור משויך למספר טקסטים במקביל)"
2231
 
2232
- #: includes/admin/links-page-js.php:294
2233
  #@ broken-link-checker
2234
  msgctxt "link suggestions"
2235
  msgid "Searching..."
2236
  msgstr "מחפש..."
2237
 
2238
- #: includes/admin/links-page-js.php:295
2239
  #@ broken-link-checker
2240
  msgctxt "link suggestions"
2241
  msgid "No suggestions available."
2242
  msgstr "לא נמצאו הצעות."
2243
 
2244
- #: includes/admin/links-page-js.php:296
2245
  #, php-format
2246
  #@ broken-link-checker
2247
  msgctxt "link suggestions"
2248
  msgid "Archived page from %s (via the Wayback Machine)"
2249
  msgstr "עמוד ארכיב מתאריך %s (דרך ארכיב אינטרנט)"
2250
 
2251
- #: includes/admin/links-page-js.php:394
2252
  #@ broken-link-checker
2253
  msgid "The following error(s) occurred :"
2254
  msgstr "השגיאה(ות) הבאה(ות) התרחשה(ו): "
2255
 
2256
- #: includes/admin/links-page-js.php:480
2257
  #@ broken-link-checker
2258
  msgid "Error: Link URL must not be empty."
2259
  msgstr "שגיאה: קישור כתובת האינטרנט לא יכול להיות ריק."
2260
 
2261
- #: includes/admin/table-printer.php:649
2262
  #@ broken-link-checker
2263
  msgid "Edit this link"
2264
  msgstr "עריכת הקישור הזה"
2265
 
2266
- #: includes/admin/table-printer.php:787
2267
  #@ broken-link-checker
2268
  msgctxt "inline editor title"
2269
  msgid "Edit Link"
2270
  msgstr "עריכת הקישור"
2271
 
2272
- #: includes/admin/table-printer.php:790
2273
  #@ broken-link-checker
2274
  msgctxt "inline link editor"
2275
  msgid "Text"
2276
  msgstr "טקסט"
2277
 
2278
- #: includes/admin/table-printer.php:795
2279
  #@ broken-link-checker
2280
  msgctxt "inline link editor"
2281
  msgid "URL"
2282
  msgstr "כתובת"
2283
 
2284
- #: includes/admin/table-printer.php:800
2285
  #@ broken-link-checker
2286
  msgctxt "inline link editor"
2287
  msgid "Suggestions"
2288
  msgstr "הצעות מארכיב האינטרנט"
2289
 
2290
- #: includes/admin/table-printer.php:820
2291
  #@ broken-link-checker
2292
  msgid "Use this URL"
2293
  msgstr "החלפה לכתובת הזו"
2294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker v1.9.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
+ "PO-Revision-Date: 2014-03-27 21:31:48+0000\n"
7
  "Last-Translator: admin <eitan@caspi.org.il>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
21
  "X-Textdomain-Support: yes"
22
 
23
  #: core/core.php:153
24
+ #: includes/admin/links-page-js.php:44
25
  #@ broken-link-checker
26
  msgid "Loading..."
27
  msgstr "טוען..."
73
  msgid "Settings"
74
  msgstr "הגדרות"
75
 
76
+ #: core/core.php:572
77
  #@ broken-link-checker
78
  msgid "Settings saved."
79
  msgstr "ההגדרות נשמרו"
80
 
81
+ #: core/core.php:578
82
  #@ broken-link-checker
83
  msgid "Thank you for your donation!"
84
  msgstr "תודה לך על תרומתך!"
85
 
86
+ #: core/core.php:586
87
  #@ broken-link-checker
88
  msgid "Complete site recheck started."
89
  msgstr "החלה בדיקה חוזרת של האתר."
90
 
91
+ #: core/core.php:595
92
  #@ broken-link-checker
93
  msgid "Details"
94
  msgstr "פרטים"
95
 
96
+ #: core/core.php:609
97
  #@ broken-link-checker
98
  msgid "General"
99
  msgstr "כללי"
100
 
101
+ #: core/core.php:610
102
  #@ broken-link-checker
103
  msgid "Look For Links In"
104
  msgstr "חיפוש קישורים על פי:"
105
 
106
+ #: core/core.php:611
107
  #@ broken-link-checker
108
  msgid "Which Links To Check"
109
  msgstr "סוגי קישורים שיבדקו"
110
 
111
+ #: core/core.php:612
112
  #@ broken-link-checker
113
  msgid "Protocols & APIs"
114
  msgstr "פרוטוקולים ו-APIs"
115
 
116
+ #: core/core.php:613
117
  #@ broken-link-checker
118
  msgid "Advanced"
119
  msgstr "הגדרות מתקדמות"
120
 
121
+ #: core/core.php:628
122
  #@ broken-link-checker
123
  msgid "Broken Link Checker Options"
124
  msgstr "הגדרות בודק קישורים שבורים"
125
 
126
+ #: core/core.php:670
127
+ #: includes/admin/table-printer.php:203
128
  #@ broken-link-checker
129
  msgid "Status"
130
  msgstr "סטטוס"
131
 
132
+ #: core/core.php:672
133
  #: includes/admin/options-page-js.php:56
134
  #@ broken-link-checker
135
  msgid "Show debug info"
136
  msgstr "הצגת מידע מערכת"
137
 
138
+ #: core/core.php:700
139
  #@ broken-link-checker
140
  msgid "Check each link"
141
  msgstr "בדיקה חוזרת של כל הקישורים"
142
 
143
+ #: core/core.php:705
144
  #, php-format
145
  #@ broken-link-checker
146
  msgid "Every %s hours"
147
  msgstr "תבוצע בדיקה כל %s שעות"
148
 
149
+ #: core/core.php:714
150
  #@ broken-link-checker
151
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
152
  msgstr "קישורים קיימים יבדקו בתכיפות הזו. קישורים חדשים בדרך כלל יבדקו בהקדם האפשרי.<br>(ערך ברירת מחדל: 72. ערך מינימום: 1. ערך מקסימום: 99999. אפס (0) אינו ערך מותר)"
153
 
154
+ #: core/core.php:721
155
  #@ broken-link-checker
156
  msgid "E-mail notifications"
157
  msgstr "התראות בדואר אלקטרוני"
158
 
159
+ #: core/core.php:727
160
  #@ broken-link-checker
161
  msgid "Send me e-mail notifications about newly detected broken links"
162
  msgstr "משלוח התראות בדואר אלקטרוני אודות קישורים שבורים חדשים שנמצאו"
163
 
164
+ #: core/core.php:735
165
  #@ broken-link-checker
166
  msgid "Send authors e-mail notifications about broken links in their posts"
167
  msgstr "מחברי פוסטים יקבלו התראות בדואר אלקטרוני אודות קישורים שבורים בפוסטים שלהם"
168
 
169
+ #: core/core.php:742
170
  #@ broken-link-checker
171
  msgid "Notification e-mail address"
172
  msgstr "כתובת הדואר האלקטרוני למשלוח התראות"
173
 
174
+ #: core/core.php:754
175
  #@ broken-link-checker
176
  msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
177
  msgstr "השאירו שדה זה ריק אם ברצונכם שההתראות ישלחו לכתובת הדואר האלקטרוני הראשית של האתר, זו הרשומה בהגדרות הכלליות של וורדפרס (הגדרות -> כללי)"
178
 
179
+ #: core/core.php:761
180
  #@ broken-link-checker
181
  msgid "Link tweaks"
182
  msgstr "עיצוב טקסט הקישור<br>(כאן ניתן לציין עיצוב מבוסס CSS לטקסט של קישורים על פי הסטטוס שלהם. למשל קו חוצה/מוחק על טקסט של קישור שבור, כך שהקוראים יבינו שהקישור שבור מבלי שיצטרכו להקליק על הקישור)"
183
 
184
+ #: core/core.php:767
185
  #@ broken-link-checker
186
  msgid "Apply custom formatting to broken links"
187
  msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו שבור"
188
 
189
+ #: core/core.php:771
190
+ #: core/core.php:802
191
  #@ broken-link-checker
192
  msgid "Edit CSS"
193
  msgstr "עריכת CSS"
194
 
195
+ #: core/core.php:787
196
  #, php-format
197
  #@ broken-link-checker
198
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
199
  msgstr "דוגמה: \"גנן גידל דגן בגן, <a %s>קישור שבור</a> דגן גדול גדל בגן\"."
200
 
201
+ #: core/core.php:790
202
+ #: core/core.php:821
203
  #@ broken-link-checker
204
  msgid "Click \"Save Changes\" to update example output."
205
  msgstr "במידה ושיניתם את קוד ה-CSS הקליקו \"שמור שינויים\" בכדי לעדכן את הדוגמה."
206
 
207
+ #: core/core.php:798
208
  #@ broken-link-checker
209
  msgid "Apply custom formatting to removed links"
210
  msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו הוסר"
211
 
212
+ #: core/core.php:818
213
  #, php-format
214
  #@ broken-link-checker
215
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
216
  msgstr "דוגמה: \"גנן גידל דגן בגן, <span %s>קישור להסרה</span> דגן גדול גדל בגן\"."
217
 
218
+ #: core/core.php:831
219
  #@ broken-link-checker
220
  msgid "Stop search engines from following broken links"
221
  msgstr "חסימת מנועי חיפוש מלהמשיך אל עמוד היעד של קישור שבור"
222
 
223
+ #: core/core.php:861
224
  #@ broken-link-checker
225
  msgid "Look for links in"
226
  msgstr "סוגי מקורות הקישורים"
227
 
228
+ #: core/core.php:872
229
  #@ broken-link-checker
230
  msgid "Post statuses"
231
  msgstr "סטטוס של פוסטים"
232
 
233
+ #: core/core.php:905
234
  #@ broken-link-checker
235
  msgid "Link types"
236
  msgstr "סוגי קישורים"
237
 
238
+ #: core/core.php:911
239
  #@ broken-link-checker
240
  msgid "Error : All link parsers missing!"
241
  msgstr "שגיאה: כל רכיבי הניתוח (Parsers) של הקישורים לא נמצאו!"
242
 
243
+ #: core/core.php:918
244
  #@ broken-link-checker
245
  msgid "Exclusion list"
246
  msgstr "רשימת התעלמות (Exclusion)"
247
 
248
+ #: core/core.php:919
249
  #@ broken-link-checker
250
  msgid "Don't check links where the URL contains any of these words (one per line) :"
251
  msgstr "לא ייבדקו קישורים שכתובת האינטרנט שלהם מכילה לפחות את אחת מהמילים הבאות (יש לרשום בכל שורה רק מילה אחת):"
252
 
253
+ #: core/core.php:937
254
  #@ broken-link-checker
255
  msgid "Check links using"
256
  msgstr "בדיקת קישורים בעזרת"
257
 
258
+ #: core/core.php:956
259
+ #: includes/links.php:867
260
  #@ broken-link-checker
261
  msgid "Timeout"
262
  msgstr "משך הבדיקה המקסימלי לכל קישור (Timeout)"
263
 
264
+ #: core/core.php:962
265
+ #: core/core.php:1031
266
+ #: core/core.php:3019
267
  #, php-format
268
  #@ broken-link-checker
269
  #@ default
270
  msgid "%s seconds"
271
  msgstr "%s שניות"
272
 
273
+ #: core/core.php:971
274
  #@ broken-link-checker
275
  msgid "Links that take longer than this to load will be marked as broken."
276
  msgstr "קישורים שלא שולחים חזרה קוד שגיאה או הפניה אך זמן הטעינה של עמוד היעד שלהם ארוך מערך זה - כנראה בעייתים מסיבה כלשהי ולכן יסומנו כשבורים.<br>(ערך ברירת מחדל: 30. ערך מינימום: 1. ערך מקסימום: 999. אפס (0) אינו ערך מותר)"
277
 
278
+ #: core/core.php:978
279
  #@ broken-link-checker
280
  msgid "Link monitor"
281
  msgstr "תכיפות ניטור הקישורים<br>(שימו לב - אם שתי תיבות הסימון של הגדרה זו יהיו ריקות - התוסף למעשה יפסיק לחלוטין לבדוק קישורים! (אז תשאירו לפחות אחד מסומן))"
282
 
283
+ #: core/core.php:986
284
  #@ broken-link-checker
285
  msgid "Run continuously while the Dashboard is open"
286
  msgstr "ניטור מתמשך כל עוד ממשק הניהול של וורדפרס פתוח על ידי משתמש אחד לפחות (ללא הגבלת ה-\"תפקיד\" (Role) אליו משויך המשתמש - משתמש כלשהו)"
287
 
288
+ #: core/core.php:994
289
  #@ broken-link-checker
290
  msgid "Run hourly in the background"
291
  msgstr "ניטור פעם בשעה ברקע, ללא קשר למצב ממשק הניהול"
292
 
293
+ #: core/core.php:1002
294
  #@ broken-link-checker
295
  msgid "Show the dashboard widget for"
296
  msgstr "הצגת וידג'ט התוסף בעמוד \"לוח בקרה\" רק למשתמשים מסוג"
297
 
298
+ #: core/core.php:1007
299
  #@ broken-link-checker
300
  msgctxt "dashboard widget visibility"
301
  msgid "Administrator"
302
  msgstr "מנהל"
303
 
304
+ #: core/core.php:1008
305
  #@ broken-link-checker
306
  msgctxt "dashboard widget visibility"
307
  msgid "Editor and above"
308
  msgstr "עורך ומעלה"
309
 
310
+ #: core/core.php:1009
311
  #@ broken-link-checker
312
  msgctxt "dashboard widget visibility"
313
  msgid "Nobody (disables the widget)"
314
  msgstr "אף אחד (מכבה את הוידג'ט)"
315
 
316
+ #: core/core.php:1025
317
  #@ broken-link-checker
318
  msgid "Max. execution time"
319
  msgstr "משך זמן מקסימלי לבדיקת כל הקישורים באתר"
320
 
321
+ #: core/core.php:1042
322
  #@ broken-link-checker
323
  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."
324
  msgstr "התוסף פועל על ידי משימה של בדיקת קישורים אשר בוחנת את סוגי התכנים השונים באתר ומנסה למצוא בהם קישורים. אם נמצאו קישורים המשימה בודקת את תקינותם ומבצעת פעילויות אחרות שגוזלות זמן ומשאבי מערכת. בשדה זה אתם יכולים להגדיר את כמות זמן הניטור המקסימלית המותרת. לאחר משך זמן זה תופסק פעילות הניטור באופן יזום על ידי התוסף.<br>(ערך ברירת מחדל: 300. ערך מינימום: 1. ערך מקסימום: 99999. אפס (0) אינו ערך מותר)"
325
 
326
+ #: core/core.php:1051
327
  #@ broken-link-checker
328
  msgid "Server load limit"
329
  msgstr "הגבלת עומס על השרת"
330
 
331
+ #: core/core.php:1066
332
  #, php-format
333
  #@ broken-link-checker
334
  msgid "Current load : %s"
335
  msgstr "העומס הנוכחי על השרת: %s"
336
 
337
+ #: core/core.php:1072
338
  #, php-format
339
  #@ broken-link-checker
340
  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."
341
  msgstr "משימת בדיקת הקישורים תושעה במידה וממוצע <a href=\"%s\" target=\\\"_blank\\\">העומס על השרת</a> יעלה מעל מספר זה. ניתן להשאיר שדה זה ריק בכדי לכבות אפשרות זו - אולם מומלץ מאוד שלא לעשות זאת, בכדי למנוע את השבתת האתר שלכם על ידי ספק האירוח במידה ופעולת בדיקת הקישורים באתר שלכם תגרום לעומס אשר יפריע לפעולת השרת המארח."
342
 
343
+ #: core/core.php:1080
344
  #@ broken-link-checker
345
  msgid "Not available"
346
  msgstr "לא זמין"
347
 
348
+ #: core/core.php:1082
349
  #@ broken-link-checker
350
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
351
  msgstr "הגבלת עומס על השרת פועלת רק על מערכות דמויות Linux כאשר <code>/proc/loadavg</code> קיים ונגיש."
352
 
353
+ #: core/core.php:1138
354
  #@ broken-link-checker
355
  msgid "Forced recheck"
356
  msgstr "איפוס ממצאי התוסף"
357
 
358
+ #: core/core.php:1141
359
  #@ broken-link-checker
360
  msgid "Re-check all pages"
361
  msgstr "איפוס ממצאי התוסף"
362
 
363
+ #: core/core.php:1145
364
  #@ broken-link-checker
365
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
366
  msgstr "***זהירות***: הקלקה על כפתור זה תמחק לחלוטין את התוכן הנוכחי של מסד הנתונים של התוסף (רק מידע שנאסף אודות הקישורים, לא ההגדרות של התוסף) ולאחר מכן תחל בדיקה מחדש של כל הקישורים באתר זה."
367
 
368
+ #: core/core.php:1156
369
  #@ default
370
  msgid "Save Changes"
371
  msgstr "שמירת שינויים"
372
 
373
+ #: core/core.php:1207
374
  #@ broken-link-checker
375
  msgid "Configure"
376
  msgstr "פירוט"
377
 
378
+ #: core/core.php:1420
379
+ #: core/core.php:1503
380
+ #: core/core.php:1535
381
  #, php-format
382
  #@ broken-link-checker
383
  msgid "Database error : %s"
384
  msgstr "שגיאת מסד נתונים: %s"
385
 
386
+ #: core/core.php:1485
387
  #@ broken-link-checker
388
  msgid "You must enter a filter name!"
389
  msgstr "חובה להזין שם מסנן!"
390
 
391
+ #: core/core.php:1489
392
  #@ broken-link-checker
393
  msgid "Invalid search query."
394
  msgstr "שאילתת חיפוש לא תקינה."
395
 
396
+ #: core/core.php:1498
397
  #, php-format
398
  #@ broken-link-checker
399
  msgid "Filter \"%s\" created"
400
  msgstr "הסינון \"%s\" נוצר"
401
 
402
+ #: core/core.php:1525
403
  #@ broken-link-checker
404
  msgid "Filter ID not specified."
405
  msgstr "לא מצוין קוד זיהוי מסנן."
406
 
407
+ #: core/core.php:1532
408
  #@ broken-link-checker
409
  msgid "Filter deleted"
410
  msgstr "המסנן נמחק"
411
 
412
+ #: core/core.php:1580
413
  #, php-format
414
  #@ broken-link-checker
415
  msgid "Replaced %d redirect with a direct link"
417
  msgstr[0] " %d הפניה החליפה את הקישור המקורי"
418
  msgstr[1] "%d הפניות החליפו את הקישורים המקוריים"
419
 
420
+ #: core/core.php:1591
421
  #, php-format
422
  #@ broken-link-checker
423
  msgid "Failed to fix %d redirect"
425
  msgstr[0] "נכשל הניסיון לתקן %d הפניה"
426
  msgstr[1] "נכשל הניסיון לתקן %d הפניות"
427
 
428
+ #: core/core.php:1601
429
  #@ broken-link-checker
430
  msgid "None of the selected links are redirects!"
431
  msgstr "אף אחד מהקישורים שנבחרו אינו הפניה!"
432
 
433
+ #: core/core.php:1680
434
  #, php-format
435
  #@ broken-link-checker
436
  msgid "%d link updated."
438
  msgstr[0] "עודכן %d קישור."
439
  msgstr[1] "עודכנו %d קישורים."
440
 
441
+ #: core/core.php:1691
442
  #, php-format
443
  #@ broken-link-checker
444
  msgid "Failed to update %d link."
446
  msgstr[0] "נכשל הניסיון לעדכן %d קישור."
447
  msgstr[1] "נכשל הניסיון לעדכן %d קישורים."
448
 
449
+ #: core/core.php:1780
450
  #, php-format
451
  #@ broken-link-checker
452
  msgid "%d link removed"
454
  msgstr[0] "%d קישור הוסר"
455
  msgstr[1] "הוסרו %d קישורים"
456
 
457
+ #: core/core.php:1791
458
  #, php-format
459
  #@ broken-link-checker
460
  msgid "Failed to remove %d link"
462
  msgstr[0] "נכשל הניסיון להסיר את הקישור %d"
463
  msgstr[1] "נכשל הניסיון להסיר את הקישורים %d"
464
 
465
+ #: core/core.php:1900
466
  #, php-format
467
  #@ default
468
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
470
  msgstr[0] "%d פריט לא עובד בגלל שלא ניתן להעביר אותו לסל המחזור. צריך למחוק אותו ידנית."
471
  msgstr[1] "%d פריטים לא עובדו בגלל שלא ניתן להעביר אותם לסל המחזור. צריך למחוק אותם ידנית."
472
 
473
+ #: core/core.php:1921
474
  #@ broken-link-checker
475
  msgid "Didn't find anything to delete!"
476
  msgstr "לא נמצאו פריטים למחיקה!"
477
 
478
+ #: core/core.php:1950
479
  #, php-format
480
  #@ broken-link-checker
481
  msgid "%d link scheduled for rechecking"
483
  msgstr[0] "%d קישור תוזמן לבדיקה חוזרת"
484
  msgstr[1] "%d קישורים תוזמנו לבדיקה חוזרת"
485
 
486
+ #: core/core.php:1995
487
+ #: core/core.php:2637
488
  #@ broken-link-checker
489
  msgid "This link was manually marked as working by the user."
490
  msgstr "הקישור סומן ידנית כ'לא שבור' על ידי משתמש."
491
 
492
+ #: core/core.php:2002
493
  #, php-format
494
  #@ broken-link-checker
495
  msgid "Couldn't modify link %d"
496
  msgstr "לא ניתן היה לשנות את הקישור %d"
497
 
498
+ #: core/core.php:2013
499
  #, php-format
500
  #@ broken-link-checker
501
  msgid "%d link marked as not broken"
503
  msgstr[0] "הקישור %d סומן כ\\\"לא שבור\\\""
504
  msgstr[1] "הקישורים %d סומנו כ\\\"לא שבור\\\""
505
 
506
+ #: core/core.php:2052
507
  #@ broken-link-checker
508
  msgid "Table columns"
509
  msgstr "טורי טבלה"
510
 
511
+ #: core/core.php:2071
512
  #@ default
513
  msgid "Show on screen"
514
  msgstr "הצג במסך"
515
 
516
+ #: core/core.php:2078
517
  #@ broken-link-checker
518
  msgid "links"
519
  msgstr "קישורים"
520
 
521
+ #: core/core.php:2079
522
+ #: includes/admin/table-printer.php:171
523
  #@ default
524
  #@ broken-link-checker
525
  msgid "Apply"
526
  msgstr "ביצוע"
527
 
528
+ #: core/core.php:2083
529
  #@ broken-link-checker
530
  msgid "Misc"
531
  msgstr "שונות"
532
 
533
+ #: core/core.php:2098
534
  #, php-format
535
  #@ broken-link-checker
536
  msgid "Highlight links broken for at least %s days"
537
  msgstr "הדגשת הרקע של קישורים אשר שבורים כבר במשך לפחות %s ימים"
538
 
539
+ #: core/core.php:2107
540
  #@ broken-link-checker
541
  msgid "Color-code status codes"
542
  msgstr "קודי סטטוס צבעוניים"
543
 
544
+ #: core/core.php:2124
545
+ #: core/core.php:2622
546
+ #: core/core.php:2662
547
+ #: core/core.php:2695
548
+ #: core/core.php:2782
549
  #@ broken-link-checker
550
  msgid "You're not allowed to do that!"
551
  msgstr "אינכם מורשים לבצע פעולה זו!"
552
 
553
+ #: core/core.php:2492
554
  #@ broken-link-checker
555
  msgid "View broken links"
556
  msgstr "צפיה בקישורים השבורים"
557
 
558
+ #: core/core.php:2493
559
  #, php-format
560
  #@ broken-link-checker
561
  msgid "Found %d broken link"
563
  msgstr[0] "נמצאו %d קישור שבור"
564
  msgstr[1] "נמצאו %d קישורים שבורים"
565
 
566
+ #: core/core.php:2499
567
  #@ broken-link-checker
568
  msgid "No broken links found."
569
  msgstr "לא נמצאו קישורים שבורים."
570
 
571
+ #: core/core.php:2506
572
  #, php-format
573
  #@ broken-link-checker
574
  msgid "%d URL in the work queue"
576
  msgstr[0] "קיימת %d ‏כתובת אינטרנט בתור המשימות"
577
  msgstr[1] "קיימות %d ‏כתובות אינטרנט בתור המשימות"
578
 
579
+ #: core/core.php:2509
580
  #@ broken-link-checker
581
  msgid "No URLs in the work queue."
582
  msgstr "אין בתור המשימות כתובות אינטרנט לבדיקה"
583
 
584
+ #: core/core.php:2515
585
  #, php-format
586
  #@ broken-link-checker
587
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
590
  msgstr[0] "%d ‏כתובת אינטרנט יחודית"
591
  msgstr[1] "%d ‏כתובות אינטרנט יחודיות"
592
 
593
+ #: core/core.php:2519
594
  #, php-format
595
  #@ broken-link-checker
596
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
599
  msgstr[0] "%d קישור"
600
  msgstr[1] "%d קישורים"
601
 
602
+ #: core/core.php:2525
603
  #, php-format
604
  #@ broken-link-checker
605
  msgid "Detected %1$s in %2$s and still searching..."
606
  msgstr "נמצאו %1$s בתוך %2$s והחיפוש ממשיך..."
607
 
608
+ #: core/core.php:2531
609
  #, php-format
610
  #@ broken-link-checker
611
  msgid "Detected %1$s in %2$s."
612
  msgstr "נמצאו %1$s בתוך %2$s."
613
 
614
+ #: core/core.php:2538
615
  #@ broken-link-checker
616
  msgid "Searching your blog for links..."
617
  msgstr "מתבצע חיפוש קישורים באתר..."
618
 
619
+ #: core/core.php:2540
620
  #@ broken-link-checker
621
  msgid "No links detected."
622
  msgstr "לא נמצאו קישורים."
623
 
624
+ #: core/core.php:2566
625
  #@ broken-link-checker
626
  msgctxt "current load"
627
  msgid "Unknown"
628
  msgstr "לא ידוע"
629
 
630
+ #: core/core.php:2630
631
+ #: core/core.php:2670
632
+ #: core/core.php:2710
633
+ #: core/core.php:2792
634
  #, php-format
635
  #@ broken-link-checker
636
  msgid "Oops, I can't find the link %d"
637
  msgstr "אופס, לא נמצא הקישור %d"
638
 
639
+ #: core/core.php:2643
640
+ #: core/core.php:2680
641
  #@ broken-link-checker
642
  msgid "Oops, couldn't modify the link!"
643
  msgstr "אופס, לא ניתן לשנות את הקישור!"
644
 
645
+ #: core/core.php:2646
646
+ #: core/core.php:2683
647
+ #: core/core.php:2818
648
  #@ broken-link-checker
649
  msgid "Error : link_id not specified"
650
  msgstr "שגיאה: link_id אינו מוגדר"
651
 
652
+ #: core/core.php:2719
653
  #@ broken-link-checker
654
  msgid "Oops, the new URL is invalid!"
655
  msgstr "אופס, כתובת האינטרנט החדשה אינה תקינה!"
656
 
657
+ #: core/core.php:2801
658
  #@ broken-link-checker
659
  msgid "An unexpected error occured!"
660
  msgstr "אירעה שגיאה לא צפויה!"
661
 
662
+ #: core/core.php:2701
663
  #@ broken-link-checker
664
  msgid "Error : link_id or new_url not specified"
665
  msgstr "שגיאה: link_id או new_url אינם מוגדרים"
666
 
667
+ #: core/core.php:2827
668
  #@ broken-link-checker
669
  msgid "You don't have sufficient privileges to access this information!"
670
  msgstr "אין לכם את ההרשאות המתאימות בכדי לגשת למידע זה!"
671
 
672
+ #: core/core.php:2840
673
  #@ broken-link-checker
674
  msgid "Error : link ID not specified"
675
  msgstr "שגיאה: לא מוגדר קוד זיהוי קישור"
676
 
677
+ #: core/core.php:2854
678
  #, php-format
679
  #@ broken-link-checker
680
  msgid "Failed to load link details (%s)"
681
  msgstr "נכשל הניסיון לטעון את פרטי הקישור (%s)"
682
 
683
+ #: core/core.php:2908
684
  #@ broken-link-checker
685
  msgid "Broken Link Checker"
686
  msgstr "בודק קישורים שבורים"
687
 
688
+ #: core/core.php:2928
689
  #@ broken-link-checker
690
  msgid "PHP version"
691
  msgstr "גרסת PHP"
692
 
693
+ #: core/core.php:2934
694
  #@ broken-link-checker
695
  msgid "MySQL version"
696
  msgstr "גרסת MySQL"
697
 
698
+ #: core/core.php:2947
699
  #@ broken-link-checker
700
  msgid "You have an old version of CURL. Redirect detection may not work properly."
701
  msgstr "גרסת ה-CURL באתר שלכם ישנה. בשל כך קיים סיכוי שתהליך איתור ההפניות לא יעבוד באופן תקין. כדאי לבקש ממנהלי האתר שלכם לעדכן את גרסת ה-CURL לגרסה עדכנית."
702
 
703
+ #: core/core.php:2959
704
+ #: core/core.php:2975
705
+ #: core/core.php:2980
706
  #@ broken-link-checker
707
  msgid "Not installed"
708
  msgstr "לא מותקן"
709
 
710
+ #: core/core.php:2962
711
  #@ broken-link-checker
712
  msgid "CURL version"
713
  msgstr "גרסת CURL"
714
 
715
+ #: core/core.php:2968
716
  #@ broken-link-checker
717
  msgid "Installed"
718
  msgstr "מותקן"
719
 
720
+ #: core/core.php:2981
721
  #@ broken-link-checker
722
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
723
  msgstr "תוכנת CURL או Snoopy חייבת להיות מותקנת בכדי שתוסף זה יעבוד באופן תקין! אנא פנו למנהלי האתר או חברת אירוח האתרים בה מתארח אתר זה ובקשו מהם להתקין את אחת מהתוכנות האלו, בגרסה עדכנית."
724
 
725
+ #: core/core.php:2992
726
  #@ broken-link-checker
727
  msgid "On"
728
  msgstr "פעיל"
729
 
730
+ #: core/core.php:2993
731
  #@ broken-link-checker
732
  msgid "Redirects may be detected as broken links when safe_mode is on."
733
  msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר safe_mode פעיל."
734
 
735
+ #: core/core.php:2998
736
+ #: core/core.php:3012
737
  #@ broken-link-checker
738
  msgid "Off"
739
  msgstr "כבוי"
740
 
741
+ #: core/core.php:3006
742
  #, php-format
743
  #@ broken-link-checker
744
  msgid "On ( %s )"
745
  msgstr "פעיל ( %s )"
746
 
747
+ #: core/core.php:3007
748
  #@ broken-link-checker
749
  msgid "Redirects may be detected as broken links when open_basedir is on."
750
  msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר open_basedir פעיל."
751
 
752
+ #: core/core.php:3036
753
  #@ broken-link-checker
754
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
755
  msgstr "אם ערך זה הוא 0 (אפס) אפילו לאחר מספר טעינות עמוד חוזרות - כנראה שנתקלתם בבאג."
756
 
 
757
  #: core/core.php:3159
758
+ #: core/core.php:3278
759
  #, php-format
760
  #@ broken-link-checker
761
  msgid "[%s] Broken links detected"
762
  msgstr "נמצאו [%s] קישורים שבורים"
763
 
764
+ #: core/core.php:3165
765
  #, php-format
766
  #@ broken-link-checker
767
  msgid "Broken Link Checker has detected %d new broken link on your site."
769
  msgstr[0] "בודק קישורים שבורים איתר %d קישור שבור חדש באתר שלכם."
770
  msgstr[1] "בודק קישורים שבורים איתר %d קישורים שבורים חדשים באתר שלכם."
771
 
772
+ #: core/core.php:3196
773
  #, php-format
774
  #@ broken-link-checker
775
  msgid "Here's a list of the first %d broken links:"
777
  msgstr[0] "הנה רשימה של %d הקישור השבור הראשון:"
778
  msgstr[1] "הנה רשימה של %d הקישורים השבורים הראשונים:"
779
 
780
+ #: core/core.php:3204
781
  #@ broken-link-checker
782
  msgid "Here's a list of the new broken links: "
783
  msgstr "הנה רשימה של קישורים שבורים חדשים: "
784
 
785
+ #: core/core.php:3213
786
  #, php-format
787
  #@ broken-link-checker
788
  msgid "Link text : %s"
789
  msgstr "טקסט קישור: %s"
790
 
791
+ #: core/core.php:3214
792
  #, php-format
793
  #@ broken-link-checker
794
  msgid "Link URL : <a href=\"%s\">%s</a>"
795
  msgstr "קישור כתובת אינטרנט: ‏<a href=\"%s\">%s</a>"
796
 
797
+ #: core/core.php:3215
798
  #, php-format
799
  #@ broken-link-checker
800
  msgid "Source : %s"
801
  msgstr "מקור הקישור: %s"
802
 
803
+ #: core/core.php:3229
804
  #@ broken-link-checker
805
  msgid "You can see all broken links here:"
806
  msgstr "ניתן לצפות בכל הקישורים השבורים כאן:"
807
 
808
+ #: core/core.php:3284
809
  #, php-format
810
  #@ broken-link-checker
811
  msgid "Broken Link Checker has detected %d new broken link in your posts."
813
  msgstr[0] "בודק קישורים שבורים איתר %d קישור שבור חדש בפוסטים שלכם."
814
  msgstr[1] "בודק קישורים שבורים איתר %d קישורים שבורים חדשים בפוסטים שלכם."
815
 
816
+ #: core/init.php:249
817
  #@ default
818
  msgid "Once Weekly"
819
  msgstr "פעם בשבוע"
820
 
821
+ #: core/init.php:255
822
  #@ default
823
  msgid "Twice a Month"
824
  msgstr "פעמיים בחודש"
825
 
826
+ #: core/init.php:331
827
  #@ broken-link-checker
828
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
829
  msgstr "התקנת התוסף בודק קישורים שבורים נכשלה. נסו לכבות ואז להפעיל מחדש את התוסף."
834
  msgid "Failed to delete old DB tables. Database error : %s"
835
  msgstr "נכשל הניסיון למחוק טבלאות מסד נתונים ישנות. שגיאת מסד נתונים: %s"
836
 
837
+ #: includes/admin/links-page-js.php:62
838
+ #: includes/admin/links-page-js.php:525
839
  #@ broken-link-checker
840
  msgid "Wait..."
841
  msgstr "המתינו..."
842
 
843
+ #: includes/admin/links-page-js.php:107
844
+ #: includes/admin/table-printer.php:663
845
  #@ broken-link-checker
846
  msgid "Not broken"
847
  msgstr "לא שבור"
848
 
849
+ #: includes/admin/links-page-js.php:387
850
  #, php-format
851
  #@ broken-link-checker
852
  msgid "%d instances of the link were successfully modified."
853
  msgstr "%d מופעים של הקישור שונו בהצלחה."
854
 
855
+ #: includes/admin/links-page-js.php:393
856
  #, php-format
857
  #@ broken-link-checker
858
  msgid "However, %d instances couldn't be edited and still point to the old URL."
859
  msgstr "אולם, לא היה ניתן לערוך %d מופעים ולכן הם עדיין מצביעים לכתובת האינטרנט הישנה."
860
 
861
+ #: includes/admin/links-page-js.php:399
862
  #@ broken-link-checker
863
  msgid "The link could not be modified."
864
  msgstr "לא היה ניתן לשנות את הקישור."
865
 
866
+ #: includes/admin/links-page-js.php:577
867
  #@ broken-link-checker
868
  msgid "The following error(s) occured :"
869
  msgstr "השגיאה או השגיאות הבאות התרחשו:"
870
 
871
+ #: includes/admin/links-page-js.php:563
872
  #, php-format
873
  #@ broken-link-checker
874
  msgid "%d instances of the link were successfully unlinked."
875
  msgstr "%d פעמים שהקישור נמצא עבור הסרת קישור"
876
 
877
+ #: includes/admin/links-page-js.php:569
878
  #, php-format
879
  #@ broken-link-checker
880
  msgid "However, %d instances couldn't be removed."
881
  msgstr "אולם, לא היה ניתן להסיר %d מופעים."
882
 
883
+ #: includes/admin/links-page-js.php:574
884
  #@ broken-link-checker
885
  msgid "The plugin failed to remove the link."
886
  msgstr "התוסף לא הצליח להסיר את הקישור."
887
 
888
+ #: includes/admin/links-page-js.php:585
889
+ #: includes/admin/table-printer.php:281
890
+ #: includes/admin/table-printer.php:657
891
  #@ broken-link-checker
892
  msgid "Unlink"
893
  msgstr "הסרת הקישור (טקסט הקישור לא יוסר)"
894
 
895
+ #: includes/admin/links-page-js.php:629
896
  #@ broken-link-checker
897
  msgid "Enter a name for the new custom filter"
898
  msgstr "הזינו שם למסנן המותאם החדש"
899
 
900
+ #: includes/admin/links-page-js.php:641
901
  #@ broken-link-checker
902
  msgid ""
903
  "You are about to delete the current filter.\n"
904
  "'Cancel' to stop, 'OK' to delete"
905
  msgstr "אתם עומדים למחוק את המסנן הפעיל. הקליקו 'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה."
906
 
907
+ #: includes/admin/links-page-js.php:665
908
  #@ broken-link-checker
909
  msgid ""
910
  "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"
913
  "האם אתם בטוחים שאתם רוצים למחוק את כל הפוסטים, סימניות או פריטים אחרים שכוללים בתוכם את הקישורים שבחרתם? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \n"
914
  "'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה"
915
 
916
+ #: includes/admin/links-page-js.php:679
917
  #@ broken-link-checker
918
  msgid ""
919
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
922
  "האם אתם בטוחים שאתם רוצים להסיר את הקישורים שנבחרו? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \n"
923
  "'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה"
924
 
925
+ #: includes/admin/links-page-js.php:791
926
  #@ broken-link-checker
927
  msgid "Enter a search string first."
928
  msgstr "ראשית הזינו טקסט חיפוש."
929
 
930
+ #: includes/admin/links-page-js.php:798
931
  #@ broken-link-checker
932
  msgid "Select one or more links to edit."
933
  msgstr "בחרו קישור אחד או יותר לעריכה."
959
  msgstr "טקסט הקישור"
960
 
961
  #: includes/admin/search-form.php:45
962
+ #: includes/admin/table-printer.php:208
963
  #@ broken-link-checker
964
  msgid "URL"
965
  msgstr "כתובת האינטרנט"
966
 
967
  #: includes/admin/search-form.php:48
968
+ #: includes/admin/table-printer.php:527
969
  #@ broken-link-checker
970
  msgid "HTTP code"
971
  msgstr "קוד HTTP‏"
997
  msgstr "חיפוש קישורים"
998
 
999
  #: includes/admin/search-form.php:113
1000
+ #: includes/admin/table-printer.php:357
1001
+ #: includes/admin/table-printer.php:687
1002
+ #: includes/admin/table-printer.php:812
1003
  #@ broken-link-checker
1004
  msgid "Cancel"
1005
  msgstr "ביטול"
1024
  msgid "Return to WordPress Dashboard"
1025
  msgstr "חזרה ללוח המחוונים של Wordpress"
1026
 
1027
+ #: includes/admin/table-printer.php:185
1028
  #@ broken-link-checker
1029
  msgid "Compact View"
1030
  msgstr "תצוגה מצומצמת"
1031
 
1032
+ #: includes/admin/table-printer.php:186
1033
  #@ broken-link-checker
1034
  msgid "Detailed View"
1035
  msgstr "תצוגה מפורטת"
1036
 
1037
+ #: includes/admin/table-printer.php:215
1038
  #@ broken-link-checker
1039
  msgid "Source"
1040
  msgstr "מקור הקישור"
1041
 
1042
+ #: includes/admin/table-printer.php:221
1043
  #@ broken-link-checker
1044
  msgid "Link Text"
1045
  msgstr "טקסט הקישור"
1046
 
1047
+ #: includes/admin/table-printer.php:228
1048
  #@ broken-link-checker
1049
  msgid "Redirect URL"
1050
  msgstr "כתובת ההפניה"
1051
 
1052
+ #: includes/admin/table-printer.php:276
1053
  #@ broken-link-checker
1054
  msgid "Bulk Actions"
1055
  msgstr "פעולות על מספר קישורים במקביל"
1056
 
1057
+ #: includes/admin/table-printer.php:277
1058
+ #: includes/admin/table-printer.php:654
1059
  #@ broken-link-checker
1060
  msgid "Edit URL"
1061
  msgstr "עריכת הקישור"
1062
 
1063
+ #: includes/admin/table-printer.php:278
1064
  #@ broken-link-checker
1065
  msgid "Recheck"
1066
  msgstr "בדיקה חוזרת"
1067
 
1068
+ #: includes/admin/table-printer.php:279
1069
  #@ broken-link-checker
1070
  msgid "Fix redirects"
1071
  msgstr "החלפת הקישור המקורי בקישור ההפניה"
1072
 
1073
+ #: includes/admin/table-printer.php:280
1074
  #@ broken-link-checker
1075
  msgid "Mark as not broken"
1076
  msgstr "סימון כ'לא שבור'"
1077
 
1078
+ #: includes/admin/table-printer.php:284
1079
  #@ broken-link-checker
1080
  msgid "Move sources to Trash"
1081
  msgstr "העברה לפח (=מחיקה) של מקור הקישור (פוסט, עמוד וכדומה)"
1082
 
1083
+ #: includes/admin/table-printer.php:286
1084
  #@ broken-link-checker
1085
  msgid "Delete sources"
1086
  msgstr "מחיקת מקורות הקישור"
1087
 
1088
+ #: includes/admin/table-printer.php:301
1089
  #@ default
1090
  msgid "&laquo;"
1091
  msgstr "&laquo;"
1092
 
1093
+ #: includes/admin/table-printer.php:302
1094
  #@ default
1095
  msgid "&raquo;"
1096
  msgstr "&raquo;"
1097
 
1098
+ #: includes/admin/table-printer.php:310
1099
  #, php-format
1100
  #@ broken-link-checker
1101
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1102
  msgstr "הצגת %s&#8211;%s מתוך <span class=\"current-link-count\">%s</span>"
1103
 
1104
+ #: includes/admin/table-printer.php:333
1105
  #@ broken-link-checker
1106
  msgid "Bulk Edit URLs"
1107
  msgstr "עריכה של קישורים מרובים במקביל"
1108
 
1109
+ #: includes/admin/table-printer.php:335
1110
  #@ broken-link-checker
1111
  msgid "Find"
1112
  msgstr "מצא"
1113
 
1114
+ #: includes/admin/table-printer.php:339
1115
  #@ broken-link-checker
1116
  msgid "Replace with"
1117
  msgstr "החלפה ב-"
1118
 
1119
+ #: includes/admin/table-printer.php:347
1120
  #@ broken-link-checker
1121
  msgid "Case sensitive"
1122
  msgstr "עם רגישות לגודל אותיות אנגליות (Case Sensitive)"
1123
 
1124
+ #: includes/admin/table-printer.php:351
1125
  #@ broken-link-checker
1126
  msgid "Regular expression"
1127
  msgstr "Regular Expression"
1128
 
1129
+ #: includes/admin/table-printer.php:359
1130
+ #: includes/admin/table-printer.php:813
1131
  #@ broken-link-checker
1132
  msgid "Update"
1133
  msgstr "עדכון"
1134
 
1135
+ #: includes/admin/table-printer.php:512
1136
  #@ broken-link-checker
1137
  msgid "Post published on"
1138
  msgstr "פוסטים שפורסמו ב:"
1139
 
1140
+ #: includes/admin/table-printer.php:517
1141
  #@ broken-link-checker
1142
  msgid "Link last checked"
1143
  msgstr "הקישור נבדק לאחרונה בתאריך"
1144
 
1145
+ #: includes/admin/table-printer.php:521
1146
  #@ broken-link-checker
1147
  msgid "Never"
1148
  msgstr "מעולם לא"
1149
 
1150
+ #: includes/admin/table-printer.php:532
1151
  #@ broken-link-checker
1152
  msgid "Response time"
1153
  msgstr "זמן תגובה"
1154
 
1155
+ #: includes/admin/table-printer.php:534
1156
  #, php-format
1157
  #@ broken-link-checker
1158
  msgid "%2.3f seconds"
1159
  msgstr "%2.3f שניות"
1160
 
1161
+ #: includes/admin/table-printer.php:537
1162
  #@ broken-link-checker
1163
  msgid "Final URL"
1164
  msgstr "כתובת אינטרנט סופית"
1165
 
1166
+ #: includes/admin/table-printer.php:542
1167
  #@ broken-link-checker
1168
  msgid "Redirect count"
1169
  msgstr "כמות הפניות"
1170
 
1171
+ #: includes/admin/table-printer.php:547
1172
  #@ broken-link-checker
1173
  msgid "Instance count"
1174
  msgstr "כמות מופעים"
1175
 
1176
+ #: includes/admin/table-printer.php:556
1177
  #, php-format
1178
  #@ broken-link-checker
1179
  msgid "This link has failed %d time."
1181
  msgstr[0] "הקישור נכשל ב-%d בדיקה."
1182
  msgstr[1] "הקישור נכשל ב-%d בדיקות."
1183
 
1184
+ #: includes/admin/table-printer.php:564
1185
  #, php-format
1186
  #@ broken-link-checker
1187
  msgid "This link has been broken for %s."
1188
  msgstr "הקישור שבור במשך לפחות %s."
1189
 
1190
+ #: includes/admin/table-printer.php:575
1191
  #@ broken-link-checker
1192
  msgid "Log"
1193
  msgstr "פרטי הבדיקה:<br>"
1194
 
1195
+ #: includes/admin/table-printer.php:600
1196
  #@ broken-link-checker
1197
  msgid "Show more info about this link"
1198
  msgstr "הצג מידע נוסף אודות קישור זה"
1199
 
1200
+ #: includes/admin/table-printer.php:618
1201
  #@ broken-link-checker
1202
  msgctxt "checked how long ago"
1203
  msgid "Checked"
1204
  msgstr "נבדק"
1205
 
1206
+ #: includes/admin/table-printer.php:634
1207
  #@ broken-link-checker
1208
  msgid "Broken for"
1209
  msgstr "שבור כבר לפחות"
1210
 
1211
+ #: includes/admin/table-printer.php:656
1212
  #@ broken-link-checker
1213
  msgid "Remove this link from all posts"
1214
  msgstr "הסרת קישור זה מכל הפוסטים בהם הוא מופיע. טקסט הקישור לא יוסר ולא ישתנה."
1215
 
1216
+ #: includes/admin/table-printer.php:662
1217
  #@ broken-link-checker
1218
  msgid "Remove this link from the list of broken links and mark it as valid"
1219
  msgstr "הסרת קישור זה מהרשימה הנוכחית וסימונו כתקין"
1220
 
1221
+ #: includes/admin/table-printer.php:670
1222
  #@ broken-link-checker
1223
  msgid "Hide this link and do not report it again unless its status changes"
1224
  msgstr "הקישור יועבר אל רשימת \"בהמתנה\" ולא ידווח שוב כשבור אלא אם הסטטוס שלו ישתנה"
1225
 
1226
+ #: includes/admin/table-printer.php:671
1227
  #@ broken-link-checker
1228
  msgid "Dismiss"
1229
  msgstr "העברה למצב המתנה"
1230
 
1231
+ #: includes/admin/table-printer.php:676
1232
  #@ broken-link-checker
1233
  msgid "Undismiss this link"
1234
  msgstr "הוצאת קישור זה ממצב המתנה והחזרתו לרשימת הקישורים השבורים"
1235
 
1236
+ #: includes/admin/table-printer.php:677
1237
  #@ broken-link-checker
1238
  msgid "Undismiss"
1239
  msgstr "ביטול מצב המתנה"
1240
 
1241
+ #: includes/admin/table-printer.php:688
1242
  #@ broken-link-checker
1243
  msgid "Update URL"
1244
  msgstr "עדכון כתובת אינטרנט"
1245
 
1246
+ #: includes/admin/table-printer.php:715
1247
  #@ broken-link-checker
1248
  msgid "[An orphaned link! This is a bug.]"
1249
  msgstr "[קישור יתום! זה באג.]"
1250
 
1251
+ #: includes/any-post.php:398
1252
  #: modules/containers/blogroll.php:46
1253
  #: modules/containers/comment.php:153
1254
  #: modules/containers/custom_field.php:207
1256
  msgid "Edit"
1257
  msgstr "עריכה"
1258
 
1259
+ #: includes/any-post.php:406
1260
  #: modules/containers/custom_field.php:213
1261
  #@ default
1262
  msgid "Move this item to the Trash"
1263
  msgstr "העבר פריט זה לסל המחזור"
1264
 
1265
+ #: includes/any-post.php:408
1266
  #: modules/containers/custom_field.php:215
1267
  #@ default
1268
  msgid "Trash"
1269
  msgstr "סל המחזור"
1270
 
1271
+ #: includes/any-post.php:413
1272
  #: modules/containers/custom_field.php:220
1273
  #@ default
1274
  msgid "Delete this item permanently"
1275
  msgstr "מחיקת פריט זה באופן מוחלט"
1276
 
1277
+ #: includes/any-post.php:415
1278
  #: modules/containers/blogroll.php:47
1279
  #: modules/containers/custom_field.php:222
1280
  #@ default
1281
  msgid "Delete"
1282
  msgstr "מחיקה"
1283
 
1284
+ #: includes/any-post.php:428
1285
  #, php-format
1286
  #@ default
1287
  msgid "Preview &#8220;%s&#8221;"
1288
  msgstr "תצוגה מקדימה &#8220;%s&#8221;"
1289
 
1290
+ #: includes/any-post.php:429
1291
  #@ default
1292
  msgid "Preview"
1293
  msgstr "תצוגה מקדימה"
1294
 
1295
+ #: includes/any-post.php:436
1296
  #, php-format
1297
  #@ default
1298
  msgid "View &#8220;%s&#8221;"
1299
  msgstr "צפיה &#8220;%s&#8221;"
1300
 
1301
+ #: includes/any-post.php:437
1302
  #: modules/containers/comment.php:166
1303
  #: modules/containers/custom_field.php:227
1304
  #@ default
1305
  msgid "View"
1306
  msgstr "צפיה"
1307
 
1308
+ #: includes/any-post.php:456
1309
  #: modules/containers/custom_field.php:207
1310
  #@ default
1311
  msgid "Edit this item"
1312
  msgstr "עריכת פריט זה"
1313
 
1314
+ #: includes/any-post.php:520
1315
  #: modules/containers/blogroll.php:83
1316
  #: modules/containers/comment.php:43
1317
  #@ broken-link-checker
1318
  msgid "Nothing to update"
1319
  msgstr "אין מה לעדכן"
1320
 
1321
+ #: includes/any-post.php:530
1322
  #, php-format
1323
  #@ broken-link-checker
1324
  msgid "Updating post %d failed"
1325
  msgstr "עדכון הפוסט %d נכשל"
1326
 
1327
+ #: includes/any-post.php:567
1328
  #: modules/containers/custom_field.php:294
1329
  #, php-format
1330
  #@ broken-link-checker
1331
  msgid "Failed to delete post \"%s\" (%d)"
1332
  msgstr "נכשל הניסיון למחוק את הפוסט \"%s\" (%d)"
1333
 
1334
+ #: includes/any-post.php:586
1335
  #: modules/containers/custom_field.php:313
1336
  #, php-format
1337
  #@ broken-link-checker
1338
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1339
  msgstr "לא ניתן להעביר את הפוסט \"%s\" (%d) אל הפח מפני שרכיב הפח לא פעיל"
1340
 
1341
+ #: includes/any-post.php:606
1342
  #: modules/containers/custom_field.php:332
1343
  #, php-format
1344
  #@ broken-link-checker
1345
  msgid "Failed to move post \"%s\" (%d) to the trash"
1346
  msgstr "נכשל הניסיון להעביר את הפוסט \"%s\" (%d) אל הפח"
1347
 
1348
+ #: includes/any-post.php:714
1349
  #, php-format
1350
  #@ broken-link-checker
1351
  msgid "%d post deleted."
1353
  msgstr[0] "הפוסט %d נמחק."
1354
  msgstr[1] "הפוסטים %d נמחקו."
1355
 
1356
+ #: includes/any-post.php:716
1357
  #, php-format
1358
  #@ broken-link-checker
1359
  msgid "%d page deleted."
1361
  msgstr[0] "העמוד %d נמחק."
1362
  msgstr[1] "העמודים %d נמחקו."
1363
 
1364
+ #: includes/any-post.php:718
1365
  #, php-format
1366
  #@ broken-link-checker
1367
  msgid "%d \"%s\" deleted."
1369
  msgstr[0] "%d \"%s\" נמחק."
1370
  msgstr[1] "%d \"%s\" נמחקו."
1371
 
1372
+ #: includes/any-post.php:737
1373
  #, php-format
1374
  #@ broken-link-checker
1375
  msgid "%d post moved to the Trash."
1377
  msgstr[0] "הפוסט %d הועבר לפח."
1378
  msgstr[1] "הפוסטים %d הועברו לפח."
1379
 
1380
+ #: includes/any-post.php:739
1381
  #, php-format
1382
  #@ broken-link-checker
1383
  msgid "%d page moved to the Trash."
1385
  msgstr[0] "העמוד %d הועבר לפח."
1386
  msgstr[1] "העמודים %d הועברו לפח."
1387
 
1388
+ #: includes/any-post.php:741
1389
  #, php-format
1390
  #@ broken-link-checker
1391
  msgid "%d \"%s\" moved to the Trash."
1620
  msgid "No links found for your query"
1621
  msgstr "לא נמצאו קישורים על פי השאילתא שלכם"
1622
 
1623
+ #: includes/links.php:222
1624
  #@ broken-link-checker
1625
  msgid "The plugin script was terminated while trying to check the link."
1626
  msgstr "תסריט התוסף הסתיים בזמן בדיקת הקישור."
1627
 
1628
+ #: includes/links.php:268
1629
  #@ broken-link-checker
1630
  msgid "The plugin doesn't know how to check this type of link."
1631
  msgstr "התוסף אינו יודע כיצד לבדוק סוג זה של קישור."
1632
 
1633
+ #: includes/links.php:361
1634
  #@ broken-link-checker
1635
  msgid "Link is valid."
1636
  msgstr "הקישור תקין."
1637
 
1638
+ #: includes/links.php:363
1639
  #@ broken-link-checker
1640
  msgid "Link is broken."
1641
  msgstr "הקישור שבור."
1642
 
1643
+ #: includes/links.php:582
1644
+ #: includes/links.php:684
1645
+ #: includes/links.php:711
1646
  #@ broken-link-checker
1647
  msgid "Link is not valid"
1648
  msgstr "הקישור אינו תקין"
1649
 
1650
+ #: includes/links.php:599
1651
  #@ broken-link-checker
1652
  msgid "This link can not be edited because it is not used anywhere on this site."
1653
  msgstr "לא ניתן לערוך את הקישור בגלל שלא נעשה בו שימוש במקום כלשהו באתר זה."
1654
 
1655
+ #: includes/links.php:625
1656
  #@ broken-link-checker
1657
  msgid "Failed to create a DB entry for the new URL."
1658
  msgstr "נכשל הניסיון ליצור רשומת מסד נתונים עבור כתובת האינטרנט החדשה."
1659
 
1660
+ #: includes/links.php:691
1661
  #@ broken-link-checker
1662
  msgid "This link is not a redirect"
1663
  msgstr "הקישור אינו הפניה"
1664
 
1665
+ #: includes/links.php:738
1666
+ #: includes/links.php:775
1667
  #@ broken-link-checker
1668
  msgid "Couldn't delete the link's database record"
1669
  msgstr "לא ניתן למחוק את רשומת מסד הנתונים של הקישור"
1670
 
1671
+ #: includes/links.php:849
1672
  #@ broken-link-checker
1673
  msgctxt "link status"
1674
  msgid "Unknown"
1675
  msgstr "לא ידוע"
1676
 
1677
+ #: includes/links.php:863
1678
+ #: modules/checkers/http.php:289
1679
  #: modules/extras/mediafire.php:101
1680
  #@ link status
1681
  #@ broken-link-checker
1682
  msgid "Unknown Error"
1683
  msgstr "שגיאה לא ידועה"
1684
 
1685
+ #: includes/links.php:887
1686
  #@ broken-link-checker
1687
  msgid "Not checked"
1688
  msgstr "טרם נבדק"
1689
 
1690
+ #: includes/links.php:890
1691
  #@ broken-link-checker
1692
  msgid "False positive"
1693
  msgstr "זיהוי שגוי כשבור (False Positive)"
1694
 
1695
+ #: includes/links.php:893
1696
  #: modules/extras/fileserve.php:121
1697
  #: modules/extras/megaupload.php:115
1698
  #: modules/extras/rapidshare.php:145
1802
  msgstr[0] "לפני %d חודש"
1803
  msgstr[1] "לפני %d חודשים"
1804
 
1805
+ #: modules/checkers/http.php:268
1806
  #@ broken-link-checker
1807
  msgid "Server Not Found"
1808
  msgstr "שרת לא נמצא"
1809
 
1810
+ #: modules/checkers/http.php:283
1811
  #@ broken-link-checker
1812
  msgid "Connection Failed"
1813
  msgstr "ההתקשרות נכשלה"
1814
 
1815
+ #: modules/checkers/http.php:318
1816
+ #: modules/checkers/http.php:388
1817
  #, php-format
1818
  #@ broken-link-checker
1819
  msgid "HTTP code : %d"
1820
  msgstr "קוד HTTP: ‏%d"
1821
 
1822
+ #: modules/checkers/http.php:320
1823
+ #: modules/checkers/http.php:390
1824
  #@ broken-link-checker
1825
  msgid "(No response)"
1826
  msgstr "(אין תגובה)"
1827
 
1828
+ #: modules/checkers/http.php:326
1829
  #@ broken-link-checker
1830
  msgid "Most likely the connection timed out or the domain doesn't exist."
1831
  msgstr "קיימת סבירות גבוהה שההתקשרות הסתיימה בגלל היעדר תגובה מהשרת המארח את עמוד היעד של הקישור"
1832
 
1833
+ #: modules/checkers/http.php:397
1834
  #@ broken-link-checker
1835
  msgid "Request timed out."
1836
  msgstr "זמן המתנה מקסימלי (Timeout) לבקשה."
1837
 
1838
+ #: modules/checkers/http.php:415
1839
  #@ broken-link-checker
1840
  msgid "Using Snoopy"
1841
  msgstr "עושה שימוש ב-Snoopy"
2196
  msgid "Custom field"
2197
  msgstr "שדה מותאם"
2198
 
2199
+ #: core/core.php:839
2200
  #@ broken-link-checker
2201
  msgctxt "settings page"
2202
  msgid "Suggestions"
2203
  msgstr "הצעות לקישור חלופי מארכיב אינטרנט"
2204
 
2205
+ #: core/core.php:845
2206
  #@ broken-link-checker
2207
  msgid "Suggest alternatives to broken links"
2208
  msgstr "לקישורים שבורים יוצעו אפשרויות לקישור חלופי מאתר <a href=\"http://archive.org/web/\" target=\\\"_blank\\\">ארכיב אינטרנט</a>.<br> אפשרות זו מתאימה בעיקר למקרה בו העמוד המדובר (או אפילו האתר כולו) כבר לא קיים בכלל באינטרנט, ולכן עדיף לפחות לתת קישור לעמוד ארכיב של עמוד המקור במקום להסיר לגמרי את הקישור."
2209
 
2210
+ #: core/core.php:1290
2211
  #@ broken-link-checker
2212
  msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
2213
  msgstr "הזינו את שמות השדות המותאמים שברצונכם לבדוק (שם אחד בכל שורה). אם השדה מכיל קוד HTML, הוסיפו לשם השדה קידומת של <code>html:</code>. למשל <code>html:field_name</code>"
2214
 
2215
+ #: core/core.php:2734
2216
  #@ broken-link-checker
2217
  msgid "An unexpected error occurred!"
2218
  msgstr "התרחשה שגיאה לא צפויה!"
2219
 
2220
+ #: includes/admin/links-page-js.php:243
2221
  #@ broken-link-checker
2222
  msgctxt "link text"
2223
  msgid "(None)"
2224
  msgstr "(לא קיים)"
2225
 
2226
+ #: includes/admin/links-page-js.php:244
2227
  #@ broken-link-checker
2228
  msgctxt "link text"
2229
  msgid "(Multiple links)"
2230
  msgstr "(הקישור משויך למספר טקסטים במקביל)"
2231
 
2232
+ #: includes/admin/links-page-js.php:302
2233
  #@ broken-link-checker
2234
  msgctxt "link suggestions"
2235
  msgid "Searching..."
2236
  msgstr "מחפש..."
2237
 
2238
+ #: includes/admin/links-page-js.php:303
2239
  #@ broken-link-checker
2240
  msgctxt "link suggestions"
2241
  msgid "No suggestions available."
2242
  msgstr "לא נמצאו הצעות."
2243
 
2244
+ #: includes/admin/links-page-js.php:304
2245
  #, php-format
2246
  #@ broken-link-checker
2247
  msgctxt "link suggestions"
2248
  msgid "Archived page from %s (via the Wayback Machine)"
2249
  msgstr "עמוד ארכיב מתאריך %s (דרך ארכיב אינטרנט)"
2250
 
2251
+ #: includes/admin/links-page-js.php:402
2252
  #@ broken-link-checker
2253
  msgid "The following error(s) occurred :"
2254
  msgstr "השגיאה(ות) הבאה(ות) התרחשה(ו): "
2255
 
2256
+ #: includes/admin/links-page-js.php:488
2257
  #@ broken-link-checker
2258
  msgid "Error: Link URL must not be empty."
2259
  msgstr "שגיאה: קישור כתובת האינטרנט לא יכול להיות ריק."
2260
 
2261
+ #: includes/admin/table-printer.php:654
2262
  #@ broken-link-checker
2263
  msgid "Edit this link"
2264
  msgstr "עריכת הקישור הזה"
2265
 
2266
+ #: includes/admin/table-printer.php:792
2267
  #@ broken-link-checker
2268
  msgctxt "inline editor title"
2269
  msgid "Edit Link"
2270
  msgstr "עריכת הקישור"
2271
 
2272
+ #: includes/admin/table-printer.php:795
2273
  #@ broken-link-checker
2274
  msgctxt "inline link editor"
2275
  msgid "Text"
2276
  msgstr "טקסט"
2277
 
2278
+ #: includes/admin/table-printer.php:800
2279
  #@ broken-link-checker
2280
  msgctxt "inline link editor"
2281
  msgid "URL"
2282
  msgstr "כתובת"
2283
 
2284
+ #: includes/admin/table-printer.php:805
2285
  #@ broken-link-checker
2286
  msgctxt "inline link editor"
2287
  msgid "Suggestions"
2288
  msgstr "הצעות מארכיב האינטרנט"
2289
 
2290
+ #: includes/admin/table-printer.php:825
2291
  #@ broken-link-checker
2292
  msgid "Use this URL"
2293
  msgstr "החלפה לכתובת הזו"
2294
 
2295
+ #: core/core.php:1090
2296
+ #@ broken-link-checker
2297
+ msgid "Logging"
2298
+ msgstr "רישום אירועי התוסף (Logging)"
2299
+
2300
+ #: core/core.php:1096
2301
+ #@ broken-link-checker
2302
+ msgid "Enable logging"
2303
+ msgstr "הפעל רישום אירועי התוסף"
2304
+
2305
+ #: core/core.php:1103
2306
+ #@ broken-link-checker
2307
+ msgid "Log file location"
2308
+ msgstr "מיקום קובץ רישום אירועי התוסף"
2309
+
2310
+ #: core/core.php:1112
2311
+ #@ broken-link-checker
2312
+ msgctxt "log file location"
2313
+ msgid "Default"
2314
+ msgstr "ברירת מחדל"
2315
+
2316
+ #: core/core.php:1126
2317
+ #@ broken-link-checker
2318
+ msgctxt "log file location"
2319
+ msgid "Custom"
2320
+ msgstr "מיקום מותאם"
2321
+
2322
+ #: core/init.php:335
2323
+ #@ broken-link-checker
2324
+ msgid "Please activate the plugin separately on each site. Network activation is not supported."
2325
+ msgstr "בבקשה הפעל את התוסף בנפרד עבור כל אתר. הפעלת רשת אינה נתמכת."
2326
+
languages/broken-link-checker-ja.mo CHANGED
Binary file
languages/broken-link-checker-ja.po CHANGED
@@ -7,723 +7,821 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: Broken Link Checker 0.9.2\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
10
- "POT-Creation-Date: 2010-10-08 16:08+0000\n"
11
- "PO-Revision-Date: 2010-11-11 19:36+0900\n"
12
- "Last-Translator: ningendesu <a@ningendesu.com>\n"
13
- "Language-Team: 人間です <a@ningendesu.com>\n"
 
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: Japanese\n"
18
- "X-Poedit-Country: JAPAN\n"
19
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
20
 
21
- #: core/core.php:152
22
- #: includes/admin/links-page-js.php:37
23
  msgid "Loading..."
24
  msgstr "読み込み中..."
25
 
26
- #: core/core.php:176
27
- #: includes/admin/options-page-js.php:18
28
  msgid "[ Network error ]"
29
  msgstr "[ネットワークエラー]"
30
 
31
- #: core/core.php:201
32
  msgid "Automatically expand the widget if broken links have been detected"
33
  msgstr "リンクエラーが検出された場合に、ウィジェットを自動的に展開する"
34
 
35
- #: core/core.php:342
36
  msgid "Link Checker Settings"
37
  msgstr "リンクチェッカーの設定"
38
 
39
- #: core/core.php:343
40
  msgid "Link Checker"
41
  msgstr "Broken Link Checker"
42
 
43
- #: core/core.php:348
44
- #: includes/link-query.php:26
45
  msgid "Broken Links"
46
  msgstr "リンクエラーをチェック"
47
 
48
- #: core/core.php:364
49
  msgid "View Broken Links"
50
  msgstr "リンクエラーを見る"
51
 
52
- #: core/core.php:392
 
 
 
 
 
 
 
 
53
  msgid "Settings"
54
  msgstr "設定"
55
 
56
- #: core/core.php:404
57
- #: core/core.php:1186
58
- #, php-format
59
- msgid "Error: The plugin's database tables are not up to date! (Current version : %d, expected : %d)"
60
- msgstr "エラーが発生しました:プラグインのデータベーステーブルを最新の状態にされていません! (現在のバージョン:%d, 予期されるバージョン: %d)"
61
-
62
- #: core/core.php:543
63
  msgid "Settings saved."
64
  msgstr "設定を保存"
65
 
66
- #: core/core.php:550
 
 
 
 
67
  msgid "Complete site recheck started."
68
  msgstr "サイト全体の再確認が開始されました。"
69
 
70
- #: core/core.php:564
71
- #: core/core.php:2744
72
  msgid "Details"
73
  msgstr "詳細"
74
 
75
- #: core/core.php:578
76
  msgid "General"
77
  msgstr "一般"
78
 
79
- #: core/core.php:579
80
  msgid "Look For Links In"
81
  msgstr "リンクチェック対象"
82
 
83
- #: core/core.php:580
84
  msgid "Which Links To Check"
85
  msgstr "リンク種類チェック対象"
86
 
87
- #: core/core.php:581
88
  msgid "Protocols & APIs"
89
  msgstr "プロトコル&API"
90
 
91
- #: core/core.php:582
92
  msgid "Advanced"
93
  msgstr "高度な設定"
94
 
95
- #: core/core.php:586
96
  msgid "Broken Link Checker Options"
97
  msgstr "Broken Link Checkerのオプション"
98
 
99
- #: core/core.php:612
100
- #: includes/admin/table-printer.php:168
101
  msgid "Status"
102
  msgstr "ステータス"
103
 
104
- #: core/core.php:614
105
- #: includes/admin/options-page-js.php:56
106
  msgid "Show debug info"
107
  msgstr "デバッグ情報を表示"
108
 
109
- #: core/core.php:642
110
  msgid "Check each link"
111
  msgstr "各リンクをチェック"
112
 
113
- #: core/core.php:647
114
- #, php-format
115
  msgid "Every %s hours"
116
  msgstr "%s 時間ごと"
117
 
118
- #: core/core.php:656
119
- msgid "Existing links will be checked this often. New links will usually be checked ASAP."
120
- msgstr "既存のリンクは、定期的にチェックされます。新しいリンクは即チェックされます。"
 
 
 
121
 
122
- #: core/core.php:663
123
  msgid "E-mail notifications"
124
  msgstr "メールで通知"
125
 
126
- #: core/core.php:669
127
  msgid "Send me e-mail notifications about newly detected broken links"
128
  msgstr "新たに検出されたリンクエラーに関してメール通知を受ける"
129
 
130
- #: core/core.php:676
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
  msgid "Link tweaks"
132
  msgstr "リンクの調整"
133
 
134
- #: core/core.php:682
135
  msgid "Apply custom formatting to broken links"
136
  msgstr "リンクエラーにカスタムCSSを適用する"
137
 
138
- #: core/core.php:686
139
- #: core/core.php:714
140
  msgid "Edit CSS"
141
  msgstr "CSSを編集"
142
 
143
- #: core/core.php:710
 
 
 
 
 
 
 
 
144
  msgid "Apply custom formatting to removed links"
145
  msgstr "削除したリンクにカスタムCSSを適用する"
146
 
147
- #: core/core.php:738
 
 
 
 
148
  msgid "Stop search engines from following broken links"
149
- msgstr "検索エンジンがリンクエラーをリンクしたと認識しないようにする<small>リンクエラーに<code>rel=”nofollow”</code>が付きます</small>"
 
 
 
 
 
 
 
150
 
151
- #: core/core.php:755
 
 
 
 
152
  msgid "Look for links in"
153
  msgstr "リンクチェック対象"
154
 
155
- #: core/core.php:766
156
  msgid "Post statuses"
157
  msgstr "リンクチェックする記事のステータス"
158
 
159
- #: core/core.php:799
160
  msgid "Link types"
161
  msgstr "リンクの種類"
162
 
163
- #: core/core.php:805
164
  msgid "Error : All link parsers missing!"
165
  msgstr "エラー: すべてのリンクパーサがなくなっています!"
166
 
167
- #: core/core.php:812
168
  msgid "Exclusion list"
169
  msgstr "除外リスト"
170
 
171
- #: core/core.php:813
172
- msgid "Don't check links where the URL contains any of these words (one per line) :"
 
173
  msgstr "URLが含まれるリンクをチェックしない(1行に1つ):"
174
 
175
- #: core/core.php:831
176
  msgid "Check links using"
177
  msgstr "リンクチェックに使用するもの"
178
 
179
- #: core/core.php:850
180
- #: includes/links.php:849
181
  msgid "Timeout"
182
  msgstr "タイムアウト"
183
 
184
- #: core/core.php:856
185
- #: core/core.php:902
186
- #: core/core.php:2871
187
- #, php-format
188
  msgid "%s seconds"
189
  msgstr "%s 秒"
190
 
191
- #: core/core.php:865
192
  msgid "Links that take longer than this to load will be marked as broken."
193
  msgstr "これよりも読み込みに時間がかかったリンクはリンクエラーとマークする"
194
 
195
- #: core/core.php:872
196
  msgid "Link monitor"
197
  msgstr "リンクモニター"
198
 
199
- #: core/core.php:880
200
  msgid "Run continuously while the Dashboard is open"
201
  msgstr "継続的にダッシュボードが開いている間実行する"
202
 
203
- #: core/core.php:888
204
  msgid "Run hourly in the background"
205
  msgstr "バックグラウンドで1時間ごとに実行する"
206
 
207
- #: core/core.php:896
208
- msgid "Max. execution time"
209
- msgstr "最大実行時間"
210
 
211
- #: core/core.php:913
212
- msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
213
- msgstr "このプラグインは、他の時間のかかるタスクを実行するバックグラウンドジョブを使用して、定期的に起動することで動作します。 ここでは、リンクモニタが停止する前に実行することができる時間を設定することができます。"
 
214
 
215
- #: core/core.php:923
216
- msgid "Custom temporary directory"
217
- msgstr "一時ディレクトリ"
 
218
 
219
- #: core/core.php:932
220
- msgid "OK"
221
- msgstr "OK"
222
-
223
- #: core/core.php:935
224
- msgid "Error : This directory isn't writable by PHP."
225
- msgstr "エラー : PHP が書き込み可能ではありません。"
226
 
227
- #: core/core.php:940
228
- msgid "Error : This directory doesn't exist."
229
- msgstr "エラー : このディレクトリーが存在しません。"
230
 
231
- #: core/core.php:948
232
- msgid "Set this field if you want the plugin to use a custom directory for its lockfiles. Otherwise, leave it blank."
233
- msgstr "ロックファイルにカスタムディレクトリを使用するには、このフィールドを設定します。変える必要がない場合は、このフィールドを空白にしておいてください。"
 
 
 
 
 
 
 
234
 
235
- #: core/core.php:955
236
  msgid "Server load limit"
237
  msgstr "サーバーの負担の制限"
238
 
239
- #: core/core.php:970
240
- #, php-format
241
  msgid "Current load : %s"
242
  msgstr "現在の負担:%s"
243
 
244
- #: core/core.php:976
245
- #, php-format
246
- msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
247
- msgstr "サーバーの<a href=\"%s\">負荷</a>が設定した数値以上に上昇したら、リンクチェックが中断されます。負荷制限を無効にするには、このフィールドを空白にしておいてください。"
 
 
 
 
248
 
249
- #: core/core.php:984
250
  msgid "Not available"
251
  msgstr "利用できません"
252
 
253
- #: core/core.php:986
254
- msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
255
- msgstr "負荷制限が動作し、アクセス可能な '/proc/loadavg' Linux のようなシステムで動作します。"
 
 
 
 
256
 
257
- #: core/core.php:994
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
  msgid "Forced recheck"
259
  msgstr "再確認"
260
 
261
- #: core/core.php:997
262
  msgid "Re-check all pages"
263
  msgstr "すべてのページを再確認"
264
 
265
- #: core/core.php:1001
266
- msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
267
- msgstr "これは\"核オプション\"です。リンクデーターベースを空にしてサイト全体を最初から再確認する場合はこのボタンをクリックします。"
 
 
 
 
268
 
269
- #: core/core.php:1012
270
  msgid "Save Changes"
271
  msgstr "変更を保存"
272
 
273
- #: core/core.php:1057
274
  msgid "Configure"
275
  msgstr "設定"
276
 
277
- #: core/core.php:1117
278
- msgid "Upgrade to Pro to enable this feature"
279
- msgstr "この機能はプロ版でのみ使用できます"
280
-
281
- #: core/core.php:1152
282
- msgid "Check URLs entered in these custom fields (one per line) :"
283
- msgstr "これらのカスタム フィールド (1 行に 1 つ) で入力した URL を確認します:"
 
 
284
 
285
- #: core/core.php:1286
286
- #: core/core.php:1370
287
- #: core/core.php:1402
288
- #, php-format
289
  msgid "Database error : %s"
290
  msgstr "データベース エラー: %s"
291
 
292
- #: core/core.php:1352
293
  msgid "You must enter a filter name!"
294
  msgstr "フィルター名を入力する必要があります!"
295
 
296
- #: core/core.php:1356
297
  msgid "Invalid search query."
298
  msgstr "無効な検索クエリ"
299
 
300
- #: core/core.php:1365
301
- #, php-format
302
  msgid "Filter \"%s\" created"
303
  msgstr "フィルター %s を作成しました。"
304
 
305
- #: core/core.php:1392
306
  msgid "Filter ID not specified."
307
  msgstr "フィルタが指定されないIDです。"
308
 
309
- #: core/core.php:1399
310
  msgid "Filter deleted"
311
  msgstr "フィルタを削除"
312
 
313
- #: core/core.php:1447
314
- #, php-format
315
  msgid "Replaced %d redirect with a direct link"
316
  msgid_plural "Replaced %d redirects with direct links"
317
  msgstr[0] "%dのリダイレクトは直接のリンクに変更されました。"
318
  msgstr[1] "%dのリダイレクトは直接のリンクに変更されました。"
319
 
320
- #: core/core.php:1458
321
- #, php-format
322
  msgid "Failed to fix %d redirect"
323
  msgid_plural "Failed to fix %d redirects"
324
  msgstr[0] "%d リダイレクトの修正に失敗しました。"
325
  msgstr[1] "%d リダイレクトの修正に失敗しました。"
326
 
327
- #: core/core.php:1468
328
  msgid "None of the selected links are redirects!"
329
  msgstr "選択したリンクはリダイレクトではありません。"
330
 
331
- #: core/core.php:1547
332
- #, php-format
333
  msgid "%d link updated."
334
  msgid_plural "%d links updated."
335
  msgstr[0] "%dのリンクを更新しました。"
336
  msgstr[1] "%dのリンクを更新しました。"
337
 
338
- #: core/core.php:1558
339
- #, php-format
340
  msgid "Failed to update %d link."
341
  msgid_plural "Failed to update %d links."
342
  msgstr[0] "%dのリンク更新に失敗しました。"
343
  msgstr[1] "%dのリンク更新に失敗しました。"
344
 
345
- #: core/core.php:1612
346
- #, php-format
347
  msgid "%d link removed"
348
  msgid_plural "%d links removed"
349
  msgstr[0] "%d リンクの削除"
350
  msgstr[1] "%d リンクの削除"
351
 
352
- #: core/core.php:1623
353
- #, php-format
354
  msgid "Failed to remove %d link"
355
  msgid_plural "Failed to remove %d links"
356
  msgstr[0] "%d リンクを削除できませんでした。"
357
  msgstr[1] "%d リンクを削除できませんでした。"
358
 
359
- #: core/core.php:1732
360
- #, php-format
361
- msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
362
- msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
363
- msgstr[0] "%dの項目をゴミ箱に移動できないため、スキップされました。手動で削除する必要があります。"
364
- msgstr[1] "%dの項目をゴミ箱に移動できないため、スキップされました。手動で削除する必要があります。"
365
-
366
- #: core/core.php:1753
 
 
 
 
 
 
 
367
  msgid "Didn't find anything to delete!"
368
  msgstr "削除するには何も見つかりませんでした!"
369
 
370
- #: core/core.php:1781
371
- #, php-format
372
  msgid "%d link scheduled for rechecking"
373
  msgid_plural "%d links scheduled for rechecking"
374
  msgstr[0] "%dのリンクを再確認します。"
375
  msgstr[1] "%dのリンクを再確認します。"
376
 
377
- #: core/core.php:1826
378
- #: core/core.php:2431
379
  msgid "This link was manually marked as working by the user."
380
  msgstr "このリンクは手動での作業としてマークされました。"
381
 
382
- #: core/core.php:1833
383
- #, php-format
384
  msgid "Couldn't modify link %d"
385
  msgstr "%dのリンクを変更することができませんでした"
386
 
387
- #: core/core.php:1844
388
- #, php-format
389
  msgid "%d link marked as not broken"
390
  msgid_plural "%d links marked as not broken"
391
  msgstr[0] "%dリンクを「リンクエラーでない」としました"
392
  msgstr[1] "%dリンクを「リンクエラーでない」としました"
393
 
394
- #: core/core.php:1884
395
  msgid "Table columns"
396
  msgstr "表の列"
397
 
398
- #: core/core.php:1903
399
  msgid "Show on screen"
400
  msgstr "画面に表示する"
401
 
402
- #: core/core.php:1910
403
  msgid "links"
404
  msgstr "リンク"
405
 
406
- #: core/core.php:1911
407
- #: includes/admin/table-printer.php:136
408
  msgid "Apply"
409
  msgstr "適用"
410
 
411
- #: core/core.php:1915
412
  msgid "Misc"
413
  msgstr "その他"
414
 
415
- #: core/core.php:1930
416
- #, php-format
417
  msgid "Highlight links broken for at least %s days"
418
  msgstr "発見してから%s日過ぎたリンクエラーをハイライト表示する"
419
 
420
- #: core/core.php:1939
421
  msgid "Color-code status codes"
422
  msgstr "ステータスコードを色分けする"
423
 
424
- #: core/core.php:1956
425
- #: core/core.php:2416
426
- #: core/core.php:2452
427
- #: core/core.php:2515
428
  msgid "You're not allowed to do that!"
429
  msgstr "それを行うことが許可されていません!"
430
 
431
- #: core/core.php:2297
432
  msgid "View broken links"
433
  msgstr "リンクエラーを表示"
434
 
435
- #: core/core.php:2298
436
- #, php-format
437
  msgid "Found %d broken link"
438
  msgid_plural "Found %d broken links"
439
  msgstr[0] "%dのリンクエラーを発見しました"
440
  msgstr[1] "%dのリンクエラーを発見しました"
441
 
442
- #: core/core.php:2304
443
  msgid "No broken links found."
444
  msgstr "リンクを発見しました。"
445
 
446
- #: core/core.php:2311
447
- #, php-format
448
  msgid "%d URL in the work queue"
449
  msgid_plural "%d URLs in the work queue"
450
  msgstr[0] "%d URLワークキュー内"
451
  msgstr[1] "%d URLワークキュー内"
452
 
453
- #: core/core.php:2314
454
  msgid "No URLs in the work queue."
455
  msgstr "ワークキュー内のURLはありません"
456
 
457
- #: core/core.php:2320
458
- #, php-format
459
- msgid "Detected %d unique URL"
460
- msgid_plural "Detected %d unique URLs"
461
  msgstr[0] "%dリンク検出 ユニークURL"
462
  msgstr[1] "%dリンク検出 ユニークURL"
463
 
464
- #: core/core.php:2321
465
- #, php-format
466
- msgid "in %d link"
467
- msgid_plural "in %d links"
468
  msgstr[0] "%dリンク"
469
- msgstr[1] "%d リンク"
 
 
 
 
470
 
471
- #: core/core.php:2326
472
- msgid "and still searching..."
473
- msgstr "常にチェックしています..."
474
 
475
- #: core/core.php:2332
476
  msgid "Searching your blog for links..."
477
  msgstr "あなたのブログへのリンクを検索しています..."
478
 
479
- #: core/core.php:2334
480
  msgid "No links detected."
481
  msgstr "リンクの検出。"
482
 
483
- #: core/core.php:2360
484
  msgctxt "current load"
485
  msgid "Unknown"
486
  msgstr "不明"
487
 
488
- #: core/core.php:2424
489
- #: core/core.php:2462
490
- #: core/core.php:2525
491
- #, php-format
492
  msgid "Oops, I can't find the link %d"
493
  msgstr "リンク %d を見つけることができません。"
494
 
495
- #: core/core.php:2437
496
  msgid "Oops, couldn't modify the link!"
497
  msgstr "リンクを変更できませんでした!"
498
 
499
- #: core/core.php:2440
500
- #: core/core.php:2551
501
  msgid "Error : link_id not specified"
502
  msgstr "エラー: link_id が指定されていません"
503
 
504
- #: core/core.php:2472
 
 
 
 
505
  msgid "Oops, the new URL is invalid!"
506
  msgstr "新しい URL が無効です!"
507
 
508
- #: core/core.php:2483
509
- #: core/core.php:2534
510
- msgid "An unexpected error occured!"
511
  msgstr "予期しないエラーが発生しました !"
512
 
513
- #: core/core.php:2501
514
- msgid "Error : link_id or new_url not specified"
515
- msgstr "エラー: link_id または new_url が指定されていません"
516
 
517
- #: core/core.php:2560
518
  msgid "You don't have sufficient privileges to access this information!"
519
  msgstr "この情報にアクセスする権限を持っていません!"
520
 
521
- #: core/core.php:2573
522
  msgid "Error : link ID not specified"
523
  msgstr "エラー: リンクIDは指定しませんでした。"
524
 
525
- #: core/core.php:2587
526
- #, php-format
527
  msgid "Failed to load link details (%s)"
528
  msgstr "リンクの詳細 (%s) の読み込みに失敗しました"
529
 
530
- #. #-#-#-#-# plugin.pot (Broken Link Checker 0.9.6) #-#-#-#-#
531
  #. Plugin Name of the plugin/theme
532
- #: core/core.php:2716
533
  msgid "Broken Link Checker"
534
  msgstr "Broken Link Checker"
535
 
536
- #: core/core.php:2730
537
- #, php-format
538
- msgid "The current temporary directory is not accessible; please <a href=\"%s\">set a different one</a>."
539
- msgstr "現在の一時ディレクトリにアクセス出来ません。別のディレクトリーを<a href=\"%s\">指定</a>してください。"
540
-
541
- #: core/core.php:2735
542
- #, php-format
543
- msgid "Please make the directory <code>%1$s</code> writable by plugins or <a href=\"%2$s\">set a custom temporary directory</a>."
544
- msgstr "ディレクトリ <code>%1$s</code> プラグインによって書き込み可能にするか、カスタム一時ディレクトリを <a href=\"%2$s\">設定</a>してください。"
545
-
546
- #: core/core.php:2742
547
- msgid "Broken Link Checker can't create a lockfile."
548
- msgstr "Broken Link Checker ロックファイルを作成できません。"
549
-
550
- #: core/core.php:2747
551
- 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."
552
- msgstr "このプラグインは、リソースの重いリンクチェックアルゴリズムの1つだけのインスタンスが任意の時点で実行しているように、ファイルベースのロックメカニズムを使用します。残念ながら、ロックファイルを保存できる書き込み可能なディレクトリを見つけることができません。- サーバーの一時ディレクトリの場所を検出できませんでしたし、プラグインのディレクトリを PHP が書き込み可能ではありません。この問題を解決するには、プラグインのディレクトリを書き込み可能にするか、プラグインの設定でカスタムの一時ディレクトリを指定してください。"
553
-
554
- #: core/core.php:2766
555
  msgid "PHP version"
556
  msgstr "PHPバージョン"
557
 
558
- #: core/core.php:2772
559
  msgid "MySQL version"
560
  msgstr "MySQLバージョン"
561
 
562
- #: core/core.php:2785
563
- msgid "You have an old version of CURL. Redirect detection may not work properly."
564
- msgstr "CURLのバージョンが古いため、リダイレクト検出が正しく動作しないことがあります。"
 
 
 
565
 
566
- #: core/core.php:2797
567
- #: core/core.php:2813
568
- #: core/core.php:2818
569
  msgid "Not installed"
570
  msgstr "インストールされていません"
571
 
572
- #: core/core.php:2800
573
  msgid "CURL version"
574
  msgstr "CURLバージョン"
575
 
576
- #: core/core.php:2806
577
  msgid "Installed"
578
  msgstr "インストールされています"
579
 
580
- #: core/core.php:2819
581
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
582
- msgstr "CURL か Snoopy はプラグイン動作するためにインストールされている必要があります!"
 
 
583
 
584
- #: core/core.php:2830
585
  msgid "On"
586
  msgstr "ON"
587
 
588
- #: core/core.php:2831
589
  msgid "Redirects may be detected as broken links when safe_mode is on."
590
- msgstr "セーフモードが有効な場合リダイレクトリンクエラーとして検出されることがあります。"
 
 
591
 
592
- #: core/core.php:2836
593
- #: core/core.php:2850
594
  msgid "Off"
595
  msgstr "OFF"
596
 
597
- #: core/core.php:2844
598
- #, php-format
599
  msgid "On ( %s )"
600
  msgstr "ON ( %s )"
601
 
602
- #: core/core.php:2845
603
  msgid "Redirects may be detected as broken links when open_basedir is on."
604
  msgstr "ここにある場合リダイレクトリンクエラーとして検出されることがあります。"
605
 
606
- #: core/core.php:2864
607
- msgid "Can't create a lockfile. Please specify a custom temporary directory."
608
- msgstr "ロックファイルを作成することはできません。 カスタムの一時ディレクトリを指定してください。"
609
-
610
- #: core/core.php:2888
611
- msgid "If this value is zero even after several page reloads you have probably encountered a bug."
612
- msgstr "この値がもししばらくたったあと再読込みしても0だった場合、バグが発生した可能性があります。"
613
 
614
- #: core/core.php:2959
615
- #, php-format
616
  msgid "[%s] Broken links detected"
617
  msgstr "[%s] リンクエラーの検出"
618
 
619
- #: core/core.php:2965
620
- #, php-format
621
  msgid "Broken Link Checker has detected %d new broken link on your site."
622
- msgid_plural "Broken Link Checker has detected %d new broken links on your site."
623
- msgstr[0] "Broken Link Checkerは、あなたのサイトに新しいリンク%dがリンクエラーと検出されました。"
624
- msgstr[1] "Broken Link Checkerは、あなたのサイトに新しいリンク%dがリンクエラーと検出されました。"
625
-
626
- #: core/core.php:2980
627
- #, php-format
 
 
 
 
628
  msgid "Here's a list of the first %d broken links:"
629
  msgid_plural "Here's a list of the first %d broken links:"
630
  msgstr[0] "%dの壊れたリンクのリスト:"
631
  msgstr[1] "%dの壊れたリンクのリスト:"
632
 
633
- #: core/core.php:2988
634
  msgid "Here's a list of the new broken links: "
635
  msgstr "リンクエラーの一覧 : "
636
 
637
- #: core/core.php:3000
638
- #, php-format
639
  msgid "Link text : %s"
640
  msgstr "リンク テキスト: %s"
641
 
642
- #: core/core.php:3001
643
- #, php-format
644
  msgid "Link URL : <a href=\"%s\">%s</a>"
645
  msgstr "リンクのURL : <a href=\"%s\">%s</a>"
646
 
647
- #: core/core.php:3002
648
- #, php-format
649
  msgid "Source : %s"
650
  msgstr "ソース : %s"
651
 
652
- #: core/core.php:3016
653
  msgid "You can see all broken links here:"
654
  msgstr "すべてのリンクエラーを見ることができます:"
655
 
656
- #: core/init.php:236
 
 
 
 
 
 
 
 
 
 
 
657
  msgid "Once Weekly"
658
  msgstr "週1回"
659
 
660
- #: core/init.php:242
661
  msgid "Twice a Month"
662
  msgstr "月2回"
663
 
664
- #: core/init.php:309
665
- msgid "Broken Link Checker installation failed"
666
- msgstr "Broken Link Checker のオプション"
 
 
 
 
 
 
 
 
 
 
 
 
667
 
668
  #: includes/admin/db-upgrade.php:95
669
- #, php-format
670
  msgid "Failed to delete old DB tables. Database error : %s"
671
  msgstr "古いDBのテーブルの削除に失敗しました。データベースエラー: %s"
672
 
673
- #: includes/admin/links-page-js.php:58
674
- #: includes/admin/links-page-js.php:301
675
  msgid "Wait..."
676
  msgstr "処理中..."
677
 
678
- #: includes/admin/links-page-js.php:99
679
- #: includes/admin/table-printer.php:592
680
  msgid "Not broken"
681
  msgstr "リンクエラーでない"
682
 
683
- #: includes/admin/links-page-js.php:213
684
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
685
  msgid "%d instances of the link were successfully modified."
686
  msgstr "%dのインスタンスのリンクが正常に変更されました。"
687
 
688
- #: includes/admin/links-page-js.php:219
689
- #, php-format
690
- msgid "However, %d instances couldn't be edited and still point to the old URL."
691
  msgstr "しかし、 %d のインスタンスは削除できませんでした。"
692
 
693
- #: includes/admin/links-page-js.php:225
694
  msgid "The link could not be modified."
695
  msgstr "リンクを変更できませんでした。"
696
 
697
- #: includes/admin/links-page-js.php:228
698
- #: includes/admin/links-page-js.php:353
699
- msgid "The following error(s) occured :"
700
- msgstr "エラーが発生しました:"
 
 
 
701
 
702
- #: includes/admin/links-page-js.php:339
703
- #, php-format
704
  msgid "%d instances of the link were successfully unlinked."
705
  msgstr "リンク%dのインスタンスが正常に解除されました。"
706
 
707
- #: includes/admin/links-page-js.php:345
708
- #, php-format
709
  msgid "However, %d instances couldn't be removed."
710
  msgstr "しかし、%dのインスタンスは削除できませんでした。"
711
 
712
- #: includes/admin/links-page-js.php:350
713
  msgid "The plugin failed to remove the link."
714
  msgstr "プラグインは、リンクを削除できませんでした。"
715
 
716
- #: includes/admin/links-page-js.php:361
717
- #: includes/admin/table-printer.php:237
718
- #: includes/admin/table-printer.php:586
 
 
 
719
  msgid "Unlink"
720
  msgstr "リンク解除"
721
 
722
- #: includes/admin/links-page-js.php:405
723
  msgid "Enter a name for the new custom filter"
724
  msgstr "新しいカスタムフィルターの名前を入力します。"
725
 
726
- #: includes/admin/links-page-js.php:416
727
  msgid ""
728
  "You are about to delete the current filter.\n"
729
  "'Cancel' to stop, 'OK' to delete"
@@ -731,29 +829,32 @@ msgstr ""
731
  "現在のフィルタを削除しようとしています。 \n"
732
  "「OK」で削除、「キャンセル」で中止します。"
733
 
734
- #: includes/admin/links-page-js.php:439
735
  msgid ""
736
- "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"
 
737
  "'Cancel' to stop, 'OK' to delete"
738
  msgstr ""
739
- "すべての記事の、ブックマーク、またはいずれかを選択したリンクが含まれている他の項目を削除してよろしいですか?\n"
 
740
  "この操作は元に戻すことはできません。\n"
741
  "「OK」で削除、「キャンセル」で中止します。"
742
 
743
- #: includes/admin/links-page-js.php:449
744
  msgid ""
745
- "Are you sure you want to remove the selected links? This action can't be undone.\n"
 
746
  "'Cancel' to stop, 'OK' to remove"
747
  msgstr ""
748
  "選択したリンクを削除してよろしいですか?元に戻すことはできません。\n"
749
  "この操作は元に戻すことはできません。\n"
750
  "「OK」で削除、「キャンセル」で中止します。"
751
 
752
- #: includes/admin/links-page-js.php:558
753
  msgid "Enter a search string first."
754
  msgstr "検索文字列が最初に入力してください。"
755
 
756
- #: includes/admin/links-page-js.php:565
757
  msgid "Select one or more links to edit."
758
  msgstr "ひとつまたは複数のリンクを編集することができます。"
759
 
@@ -769,8 +870,7 @@ msgstr "この検索フィルターとして保存"
769
  msgid "Delete This Filter"
770
  msgstr "このフィルターを削除"
771
 
772
- #: includes/admin/search-form.php:32
773
- #: includes/link-query.php:53
774
  msgid "Search"
775
  msgstr "検索"
776
 
@@ -778,13 +878,11 @@ msgstr "検索"
778
  msgid "Link text"
779
  msgstr "リンクテキスト"
780
 
781
- #: includes/admin/search-form.php:45
782
- #: includes/admin/table-printer.php:173
783
  msgid "URL"
784
  msgstr "URL"
785
 
786
- #: includes/admin/search-form.php:48
787
- #: includes/admin/table-printer.php:460
788
  msgid "HTTP code"
789
  msgstr "HTTP コード"
790
 
@@ -792,8 +890,7 @@ msgstr "HTTP コード"
792
  msgid "Link status"
793
  msgstr "リンクのステータス"
794
 
795
- #: includes/admin/search-form.php:68
796
- #: includes/admin/search-form.php:85
797
  msgid "Link type"
798
  msgstr "リンクの種類"
799
 
@@ -809,211 +906,259 @@ msgstr "リンクチェック対象"
809
  msgid "Search Links"
810
  msgstr "リンク検索"
811
 
812
- #: includes/admin/search-form.php:113
813
- #: includes/admin/table-printer.php:318
814
- #: includes/admin/table-printer.php:600
815
- #: includes/admin/table-printer.php:606
816
  msgid "Cancel"
817
  msgstr "キャンセル"
818
 
819
- #: includes/admin/table-printer.php:150
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
820
  msgid "Compact View"
821
  msgstr "一覧表示"
822
 
823
- #: includes/admin/table-printer.php:151
824
  msgid "Detailed View"
825
  msgstr "詳細表示"
826
 
827
- #: includes/admin/table-printer.php:178
828
  msgid "Source"
829
  msgstr "ソース"
830
 
831
- #: includes/admin/table-printer.php:184
832
  msgid "Link Text"
833
  msgstr "リンクテキスト"
834
 
835
- #: includes/admin/table-printer.php:232
 
 
 
 
836
  msgid "Bulk Actions"
837
  msgstr "一括操作"
838
 
839
- #: includes/admin/table-printer.php:233
840
- #: includes/admin/table-printer.php:583
841
  msgid "Edit URL"
842
  msgstr "URLを編集"
843
 
844
- #: includes/admin/table-printer.php:234
845
  msgid "Recheck"
846
  msgstr "再確認"
847
 
848
- #: includes/admin/table-printer.php:235
849
  msgid "Fix redirects"
850
  msgstr "リダイレクトを修正"
851
 
852
- #: includes/admin/table-printer.php:236
853
  msgid "Mark as not broken"
854
  msgstr "リンクエラーでない"
855
 
856
- #: includes/admin/table-printer.php:240
857
  msgid "Move sources to Trash"
858
  msgstr "ゴミ箱に移動"
859
 
860
- #: includes/admin/table-printer.php:242
861
  msgid "Delete sources"
862
  msgstr "ソースを削除"
863
 
864
- #: includes/admin/table-printer.php:262
865
  msgid "&laquo;"
866
  msgstr "&laquo;"
867
 
868
- #: includes/admin/table-printer.php:263
869
  msgid "&raquo;"
870
  msgstr "&raquo;"
871
 
872
- #: includes/admin/table-printer.php:271
873
- #, php-format
874
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
875
  msgstr "表示 %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
876
 
877
- #: includes/admin/table-printer.php:294
878
  msgid "Bulk Edit URLs"
879
  msgstr "URLを一括編集"
880
 
881
- #: includes/admin/table-printer.php:296
882
  msgid "Find"
883
  msgstr "検索"
884
 
885
- #: includes/admin/table-printer.php:300
886
  msgid "Replace with"
887
  msgstr "置き換え"
888
 
889
- #: includes/admin/table-printer.php:308
890
  msgid "Case sensitive"
891
  msgstr "大文字と小文字を区別する"
892
 
893
- #: includes/admin/table-printer.php:312
894
  msgid "Regular expression"
895
  msgstr "正規表現"
896
 
897
- #: includes/admin/table-printer.php:320
898
  msgid "Update"
899
  msgstr "更新"
900
 
901
- #: includes/admin/table-printer.php:445
902
  msgid "Post published on"
903
  msgstr "投稿を公開"
904
 
905
- #: includes/admin/table-printer.php:450
906
  msgid "Link last checked"
907
  msgstr "最後のリンクチェック"
908
 
909
- #: includes/admin/table-printer.php:454
910
  msgid "Never"
911
  msgstr "決して"
912
 
913
- #: includes/admin/table-printer.php:465
914
  msgid "Response time"
915
  msgstr "応答時間"
916
 
917
- #: includes/admin/table-printer.php:467
918
- #, php-format
919
  msgid "%2.3f seconds"
920
  msgstr "%2.3f 秒"
921
 
922
- #: includes/admin/table-printer.php:470
923
  msgid "Final URL"
924
  msgstr "リダイレクトされたURL"
925
 
926
- #: includes/admin/table-printer.php:475
927
  msgid "Redirect count"
928
  msgstr "リダイレクトの回数"
929
 
930
- #: includes/admin/table-printer.php:480
931
  msgid "Instance count"
932
  msgstr "インスタンス数"
933
 
934
- #: includes/admin/table-printer.php:489
935
- #, php-format
936
  msgid "This link has failed %d time."
937
  msgid_plural "This link has failed %d times."
938
  msgstr[0] "最終チェック%d時間前"
939
  msgstr[1] "最終チェック%d時間前"
940
 
941
- #: includes/admin/table-printer.php:497
942
- #, php-format
943
  msgid "This link has been broken for %s."
944
  msgstr "%sの間リンクエラー状態です。"
945
 
946
- #: includes/admin/table-printer.php:508
947
  msgid "Log"
948
  msgstr "ログ"
949
 
950
- #: includes/admin/table-printer.php:529
951
  msgid "Show more info about this link"
952
  msgstr "このリンクに関する表示詳細情報をもっと見る"
953
 
954
- #: includes/admin/table-printer.php:547
955
  msgctxt "checked how long ago"
956
  msgid "Checked"
957
  msgstr "チェック"
958
 
959
- #: includes/admin/table-printer.php:563
960
  msgid "Broken for"
961
  msgstr "エラー"
962
 
963
- #: includes/admin/table-printer.php:583
964
- msgid "Edit link URL"
965
- msgstr "リンクのURLを編集"
966
 
967
- #: includes/admin/table-printer.php:585
968
  msgid "Remove this link from all posts"
969
  msgstr "すべての記事からこのリンクを削除"
970
 
971
- #: includes/admin/table-printer.php:591
972
  msgid "Remove this link from the list of broken links and mark it as valid"
973
  msgstr "リンクエラーのリストから削除する"
974
 
975
- #: includes/admin/table-printer.php:600
976
- msgid "Cancel URL editing"
977
- msgstr "URLの編集をキャンセル"
 
 
 
 
 
 
 
 
 
 
978
 
979
- #: includes/admin/table-printer.php:607
 
 
 
 
980
  msgid "Update URL"
981
  msgstr "URLを編集"
982
 
983
- #: includes/admin/table-printer.php:629
984
  msgid "[An orphaned link! This is a bug.]"
985
  msgstr "[独立したリンク! これはバグです]"
986
 
987
- #: includes/any-post.php:398
988
- #: modules/containers/blogroll.php:46
989
- #: modules/containers/comment.php:153
990
- #: modules/containers/custom_field.php:197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
991
  msgid "Edit"
992
  msgstr "編集"
993
 
994
- #: includes/any-post.php:406
995
- #: modules/containers/custom_field.php:203
996
  msgid "Move this item to the Trash"
997
  msgstr "この項目をゴミ箱に移動"
998
 
999
- #: includes/any-post.php:408
1000
- #: modules/containers/custom_field.php:205
1001
  msgid "Trash"
1002
  msgstr "ゴミ箱"
1003
 
1004
- #: includes/any-post.php:413
1005
- #: modules/containers/custom_field.php:210
1006
  msgid "Delete this item permanently"
1007
  msgstr "この項目を完全に削除する"
1008
 
1009
- #: includes/any-post.php:415
1010
- #: modules/containers/blogroll.php:47
1011
- #: modules/containers/custom_field.php:212
1012
  msgid "Delete"
1013
  msgstr "削除"
1014
 
1015
  #: includes/any-post.php:428
1016
- #, php-format
1017
  msgid "Preview &#8220;%s&#8221;"
1018
  msgstr "プレビュー &#8220;%s&#8221;"
1019
 
@@ -1022,102 +1167,86 @@ msgid "Preview"
1022
  msgstr "プレビュー"
1023
 
1024
  #: includes/any-post.php:436
1025
- #, php-format
1026
  msgid "View &#8220;%s&#8221;"
1027
  msgstr "見る &#8220;%s&#8221;"
1028
 
1029
- #: includes/any-post.php:437
1030
- #: modules/containers/comment.php:166
1031
- #: modules/containers/custom_field.php:217
1032
  msgid "View"
1033
  msgstr "見る"
1034
 
1035
- #: includes/any-post.php:456
1036
- #: modules/containers/custom_field.php:197
1037
  msgid "Edit this item"
1038
  msgstr "この項目を編集"
1039
 
1040
- #: includes/any-post.php:520
1041
- #: modules/containers/blogroll.php:83
1042
  #: modules/containers/comment.php:43
1043
  msgid "Nothing to update"
1044
  msgstr "何も更新してません"
1045
 
1046
  #: includes/any-post.php:530
1047
- #, php-format
1048
  msgid "Updating post %d failed"
1049
  msgstr "ポスト%dが更新できませんでした。"
1050
 
1051
- #: includes/any-post.php:565
1052
- #: modules/containers/custom_field.php:284
1053
- #, php-format
1054
  msgid "Failed to delete post \"%s\" (%d)"
1055
  msgstr "\"%s\"(%d)の投稿を削除できませんでした。"
1056
 
1057
- #: includes/any-post.php:584
1058
- #: modules/containers/custom_field.php:303
1059
- #, php-format
1060
- msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1061
- msgstr "ゴミ箱機能が無効になっているため、\"%s\" (%d)を移動することができませんでした。"
 
 
1062
 
1063
- #: includes/any-post.php:604
1064
- #: modules/containers/custom_field.php:322
1065
- #, php-format
1066
  msgid "Failed to move post \"%s\" (%d) to the trash"
1067
  msgstr "\"%s\" (%d) の投稿の移動に失敗しました。"
1068
 
1069
- #: includes/any-post.php:712
1070
- #, php-format
1071
  msgid "%d post deleted."
1072
  msgid_plural "%d posts deleted."
1073
  msgstr[0] "%d投稿を削除しました。"
1074
  msgstr[1] "%d投稿を削除しました。"
1075
 
1076
- #: includes/any-post.php:714
1077
- #, php-format
1078
  msgid "%d page deleted."
1079
  msgid_plural "%d pages deleted."
1080
  msgstr[0] "%dページを削除しました。"
1081
  msgstr[1] "%dページを削除しました。"
1082
 
1083
- #: includes/any-post.php:716
1084
- #, php-format
1085
  msgid "%d \"%s\" deleted."
1086
  msgid_plural "%d \"%s\" deleted."
1087
  msgstr[0] "%d \"%s\"を削除しました。"
1088
  msgstr[1] "%d \"%s\"を削除しました。"
1089
 
1090
- #: includes/any-post.php:735
1091
- #, php-format
1092
  msgid "%d post moved to the Trash."
1093
  msgid_plural "%d posts moved to the Trash."
1094
  msgstr[0] "%dの記事をゴミ箱に移動しました。"
1095
  msgstr[1] "%dの記事をゴミ箱に移動しました。"
1096
 
1097
- #: includes/any-post.php:737
1098
- #, php-format
1099
  msgid "%d page moved to the Trash."
1100
  msgid_plural "%d pages moved to the Trash."
1101
  msgstr[0] "%dページゴミ箱に移動しました。"
1102
  msgstr[1] "%dページゴミ箱に移動しました。"
1103
 
1104
- #: includes/any-post.php:739
1105
- #, php-format
1106
  msgid "%d \"%s\" moved to the Trash."
1107
  msgid_plural "%d \"%s\" moved to the Trash."
1108
  msgstr[0] "%d \"%s\"をゴミ箱に移動しました。"
1109
  msgstr[1] "%d \"%s\"をゴミ箱に移動しました。"
1110
 
1111
  #: includes/containers.php:122
1112
- #, php-format
1113
  msgid "%d '%s' has been deleted"
1114
  msgid_plural "%d '%s' have been deleted"
1115
  msgstr[0] "%d '%s' は削除されました"
1116
  msgstr[1] "%d '%s' は削除されました"
1117
 
1118
- #: includes/containers.php:882
1119
- #: includes/containers.php:900
1120
- #, php-format
1121
  msgid "Container type '%s' not recognized"
1122
  msgstr "コンテナの型 '%s' が認識されません。"
1123
 
@@ -1148,288 +1277,305 @@ msgstr "埋め込まれたDailyMotionの動画"
1148
 
1149
  #: includes/extra-strings.php:7
1150
  msgctxt "module name"
 
 
 
 
 
 
 
 
 
 
1151
  msgid "Embedded Vimeo videos"
1152
  msgstr "埋め込まれたVimeoの動画"
1153
 
1154
- #: includes/extra-strings.php:8
 
 
 
 
 
1155
  msgctxt "module name"
1156
  msgid "Embedded YouTube videos"
1157
  msgstr "埋め込まれたYouTubeの動画"
1158
 
1159
- #: includes/extra-strings.php:9
 
 
 
 
 
 
 
 
 
 
1160
  msgctxt "module name"
1161
  msgid "HTML images"
1162
  msgstr "HTML画像"
1163
 
1164
- #: includes/extra-strings.php:10
1165
  msgctxt "module name"
1166
  msgid "HTML links"
1167
  msgstr "HTMLリンク"
1168
 
1169
- #: includes/extra-strings.php:11
1170
  msgctxt "module name"
1171
  msgid "MediaFire API"
1172
  msgstr "MediaFire API"
1173
 
1174
- #: includes/extra-strings.php:12
1175
  msgctxt "module name"
1176
  msgid "MegaUpload API"
1177
  msgstr "MegaUpload API"
1178
 
1179
- #: includes/extra-strings.php:13
1180
  msgctxt "module name"
1181
  msgid "Plaintext URLs"
1182
  msgstr "プレーンテキストのURL"
1183
 
1184
- #: includes/extra-strings.php:14
1185
  msgctxt "module name"
1186
  msgid "RapidShare API"
1187
  msgstr "RapidShare API"
1188
 
1189
- #: includes/extra-strings.php:15
 
 
 
 
 
1190
  msgctxt "module name"
1191
  msgid "YouTube API"
1192
  msgstr "YouTube API"
1193
 
1194
- #: includes/extra-strings.php:16
1195
  msgctxt "module name"
1196
  msgid "Posts"
1197
  msgstr "投稿"
1198
 
1199
- #: includes/extra-strings.php:17
1200
  msgctxt "module name"
1201
  msgid "Pages"
1202
  msgstr "ページ"
1203
 
1204
- #: includes/instances.php:102
1205
- #: includes/instances.php:158
1206
- #, php-format
1207
  msgid "Container %s[%d] not found"
1208
  msgstr "%s[%d] コンテナーが見つかりません。"
1209
 
1210
- #: includes/instances.php:111
1211
- #: includes/instances.php:167
1212
- #, php-format
1213
  msgid "Parser '%s' not found."
1214
  msgstr "パーサー '%s' が見つかりません。"
1215
 
1216
- #: includes/link-query.php:25
1217
  msgid "Broken"
1218
  msgstr "リンクエラー"
1219
 
1220
- #: includes/link-query.php:27
1221
  msgid "No broken links found"
1222
  msgstr "リンクエラーは見つかりませんでした"
1223
 
1224
- #: includes/link-query.php:34
1225
  msgid "Redirects"
1226
  msgstr "リダイレクト"
1227
 
1228
- #: includes/link-query.php:35
1229
  msgid "Redirected Links"
1230
  msgstr "リダイレクトリンク"
1231
 
1232
- #: includes/link-query.php:36
1233
  msgid "No redirects found"
1234
  msgstr "リダイレクトが見つかりませんでした"
1235
 
1236
- #: includes/link-query.php:44
 
 
 
 
 
 
 
 
 
 
 
 
1237
  msgid "All"
1238
  msgstr "すべて"
1239
 
1240
- #: includes/link-query.php:45
1241
  msgid "Detected Links"
1242
  msgstr "すべてのリンク"
1243
 
1244
- #: includes/link-query.php:46
1245
  msgid "No links found (yet)"
1246
  msgstr "リンクは(まだ)見つかっていません"
1247
 
1248
- #: includes/link-query.php:54
1249
  msgid "Search Results"
1250
  msgstr "検索結果"
1251
 
1252
- #: includes/link-query.php:55
1253
- #: includes/link-query.php:106
1254
  msgid "No links found for your query"
1255
  msgstr "見つかりませんでした"
1256
 
1257
- #: includes/links.php:215
1258
  msgid "The plugin script was terminated while trying to check the link."
1259
  msgstr "リンクを確認しようとしたとき、プラグインかスクリプトが終了しました。"
1260
 
1261
- #: includes/links.php:261
1262
  msgid "The plugin doesn't know how to check this type of link."
1263
  msgstr "未知のリンクの種類です。"
1264
 
1265
- #: includes/links.php:349
1266
  msgid "Link is valid."
1267
  msgstr "リンクは有効です。"
1268
 
1269
- #: includes/links.php:351
1270
  msgid "Link is broken."
1271
  msgstr "リンクエラーです。"
1272
 
1273
- #: includes/links.php:564
1274
- #: includes/links.php:666
1275
- #: includes/links.php:693
1276
  msgid "Link is not valid"
1277
  msgstr "リンクが有効ではありません。"
1278
 
1279
- #: includes/links.php:581
1280
- msgid "This link can not be edited because it is not used anywhere on this site."
1281
- msgstr "それはこのサイトで使用されていないためこのリンクを編集することはできません。"
 
 
1282
 
1283
- #: includes/links.php:607
1284
  msgid "Failed to create a DB entry for the new URL."
1285
  msgstr "新しいURLのDBエントリの作成に失敗しました。"
1286
 
1287
- #: includes/links.php:673
1288
  msgid "This link is not a redirect"
1289
  msgstr "このリンクはリダイレクトされていません。"
1290
 
1291
- #: includes/links.php:720
1292
- #: includes/links.php:757
1293
  msgid "Couldn't delete the link's database record"
1294
  msgstr "リンクのデータベースのレコードを削除できませんでした。"
1295
 
1296
- #: includes/links.php:831
1297
  msgctxt "link status"
1298
  msgid "Unknown"
1299
  msgstr "不明"
1300
 
1301
- #: includes/links.php:845
1302
- #: modules/checkers/http.php:263
1303
  msgid "Unknown Error"
1304
  msgstr "不明なエラー"
1305
 
1306
- #: includes/links.php:869
1307
  msgid "Not checked"
1308
  msgstr "チェックされていません。"
1309
 
1310
- #: includes/links.php:872
1311
  msgid "False positive"
1312
  msgstr "見つかりませんでした"
1313
 
1314
- #: includes/links.php:875
 
 
1315
  msgctxt "link status"
1316
  msgid "OK"
1317
  msgstr "OK"
1318
 
1319
- #: includes/module-manager.php:122
1320
- #: includes/module-manager.php:139
1321
- msgctxt "module name"
1322
- msgid "Name"
1323
- msgstr "名前"
1324
-
1325
  #: includes/parsers.php:109
1326
- #, php-format
1327
  msgid "Editing is not implemented in the '%s' parser"
1328
  msgstr "編集は、'%s'パーサーでは実装されていません"
1329
 
1330
  #: includes/parsers.php:124
1331
- #, php-format
1332
  msgid "Unlinking is not implemented in the '%s' parser"
1333
  msgstr "'%s'パーサーではリンク解除は実装されていません"
1334
 
1335
- #: includes/utility-class.php:287
1336
- #, php-format
1337
  msgid "%d second"
1338
  msgid_plural "%d seconds"
1339
  msgstr[0] "%d秒"
1340
  msgstr[1] "%d秒"
1341
 
1342
- #: includes/utility-class.php:288
1343
- #, php-format
1344
  msgid "%d second ago"
1345
  msgid_plural "%d seconds ago"
1346
  msgstr[0] "%d秒前"
1347
  msgstr[1] "%d秒前"
1348
 
1349
- #: includes/utility-class.php:291
1350
- #, php-format
1351
  msgid "%d minute"
1352
  msgid_plural "%d minutes"
1353
  msgstr[0] "%d分"
1354
  msgstr[1] "%d分"
1355
 
1356
- #: includes/utility-class.php:292
1357
- #, php-format
1358
  msgid "%d minute ago"
1359
  msgid_plural "%d minutes ago"
1360
  msgstr[0] "%d分前"
1361
  msgstr[1] "%d分前"
1362
 
1363
- #: includes/utility-class.php:295
1364
- #, php-format
1365
  msgid "%d hour"
1366
  msgid_plural "%d hours"
1367
  msgstr[0] "%d時間"
1368
  msgstr[1] "%d時間"
1369
 
1370
- #: includes/utility-class.php:296
1371
- #, php-format
1372
  msgid "%d hour ago"
1373
  msgid_plural "%d hours ago"
1374
  msgstr[0] "%d時間前"
1375
  msgstr[1] "%d時間前"
1376
 
1377
- #: includes/utility-class.php:299
1378
- #, php-format
1379
  msgid "%d day"
1380
  msgid_plural "%d days"
1381
  msgstr[0] "%d日"
1382
  msgstr[1] "%d日"
1383
 
1384
- #: includes/utility-class.php:300
1385
- #, php-format
1386
  msgid "%d day ago"
1387
  msgid_plural "%d days ago"
1388
  msgstr[0] "%d日前"
1389
  msgstr[1] "%d日前"
1390
 
1391
- #: includes/utility-class.php:303
1392
- #, php-format
1393
  msgid "%d month"
1394
  msgid_plural "%d months"
1395
  msgstr[0] "%d分"
1396
  msgstr[1] "%d分"
1397
 
1398
- #: includes/utility-class.php:304
1399
- #, php-format
1400
  msgid "%d month ago"
1401
  msgid_plural "%d months ago"
1402
  msgstr[0] "%dヶ月前"
1403
  msgstr[1] "%dヶ月前"
1404
 
1405
- #: modules/checkers/http.php:242
1406
  msgid "Server Not Found"
1407
  msgstr "サーバーが見つかりません"
1408
 
1409
- #: modules/checkers/http.php:257
1410
  msgid "Connection Failed"
1411
  msgstr "接続に失敗しました"
1412
 
1413
- #: modules/checkers/http.php:292
1414
- #: modules/checkers/http.php:362
1415
- #, php-format
1416
  msgid "HTTP code : %d"
1417
  msgstr "HTTP コード : %d"
1418
 
1419
- #: modules/checkers/http.php:294
1420
- #: modules/checkers/http.php:364
1421
  msgid "(No response)"
1422
  msgstr "(応答なし)"
1423
 
1424
- #: modules/checkers/http.php:300
1425
  msgid "Most likely the connection timed out or the domain doesn't exist."
1426
  msgstr "ドメインが存在しないかサーバーが反応していない可能性があります。"
1427
 
1428
- #: modules/checkers/http.php:371
1429
  msgid "Request timed out."
1430
  msgstr "要求がタイムアウトしました。"
1431
 
1432
- #: modules/checkers/http.php:389
1433
  msgid "Using Snoopy"
1434
  msgstr "Snoopyを使用"
1435
 
@@ -1437,13 +1583,11 @@ msgstr "Snoopyを使用"
1437
  msgid "Bookmark"
1438
  msgstr "ブックマーク"
1439
 
1440
- #: modules/containers/blogroll.php:27
1441
- #: modules/containers/blogroll.php:46
1442
  msgid "Edit this bookmark"
1443
  msgstr "このブックマークを編集"
1444
 
1445
  #: modules/containers/blogroll.php:47
1446
- #, php-format
1447
  msgid ""
1448
  "You are about to delete this link '%s'\n"
1449
  " 'Cancel' to stop, 'OK' to delete."
@@ -1452,39 +1596,32 @@ msgstr ""
1452
  "「OK」で削除、「キャンセル」で中止します。"
1453
 
1454
  #: modules/containers/blogroll.php:97
1455
- #, php-format
1456
  msgid "Updating bookmark %d failed"
1457
  msgstr "ブックマーク%dの更新に失敗しました"
1458
 
1459
  #: modules/containers/blogroll.php:128
1460
- #, php-format
1461
  msgid "Failed to delete blogroll link \"%s\" (%d)"
1462
  msgstr "ブログロールのリンク '%s' を削除できませんでした (%d)"
1463
 
1464
- #: modules/containers/blogroll.php:299
1465
- #, php-format
1466
  msgid "%d blogroll link deleted."
1467
  msgid_plural "%d blogroll links deleted."
1468
  msgstr[0] "%dのブログロールのリンクを削除しました。"
1469
  msgstr[1] "%dのブログロールのリンクを削除しました。"
1470
 
1471
  #: modules/containers/comment.php:53
1472
- #, php-format
1473
  msgid "Updating comment %d failed"
1474
  msgstr "%dのコメント更新に失敗しました。"
1475
 
1476
  #: modules/containers/comment.php:74
1477
- #, php-format
1478
  msgid "Failed to delete comment %d"
1479
  msgstr "%dのコメントを削除できませんでした。"
1480
 
1481
  #: modules/containers/comment.php:95
1482
- #, php-format
1483
  msgid "Can't move comment %d to the trash"
1484
  msgstr "ゴミ箱に%dを移動できません。"
1485
 
1486
- #: modules/containers/comment.php:153
1487
- #: modules/containers/comment.php:195
1488
  msgid "Edit comment"
1489
  msgstr "コメントを編集"
1490
 
@@ -1509,40 +1646,203 @@ msgstr "コメントを見る"
1509
  msgid "Comment"
1510
  msgstr "コメント"
1511
 
1512
- #: modules/containers/comment.php:372
1513
- #, php-format
1514
  msgid "%d comment has been deleted."
1515
  msgid_plural "%d comments have been deleted."
1516
  msgstr[0] "%dのコメントが削除されました。"
1517
  msgstr[1] "%dのコメントが削除されました。"
1518
 
1519
- #: modules/containers/comment.php:391
1520
- #, php-format
1521
  msgid "%d comment moved to the Trash."
1522
  msgid_plural "%d comments moved to the Trash."
1523
  msgstr[0] "%dコメントをゴミ箱に移動しました。"
1524
  msgstr[1] "%dコメントをゴミ箱に移動しました。"
1525
 
1526
- #: modules/containers/custom_field.php:187
 
 
 
 
 
 
 
 
1527
  msgid "Edit this post"
1528
  msgstr "この記事を編集"
1529
 
1530
- #: modules/containers/custom_field.php:217
1531
- #, php-format
1532
  msgid "View \"%s\""
1533
  msgstr "\"%s\" を見る"
1534
 
1535
- #: modules/containers/dummy.php:34
1536
- #: modules/containers/dummy.php:45
1537
- #, php-format
1538
  msgid "I don't know how to edit a '%s' [%d]."
1539
  msgstr "不明なエラーのため、'%s' [%d]を編集することができません。"
1540
 
1541
- #: modules/parsers/image.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1542
  msgid "Image"
1543
  msgstr "イメージ"
1544
 
1545
- #: modules/parsers/metadata.php:117
1546
  msgid "Custom field"
1547
  msgstr "カスタムフィールド"
1548
 
@@ -1551,16 +1851,98 @@ msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1551
  msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1552
 
1553
  #. Description of the plugin/theme
1554
- msgid "Checks your blog for broken links and missing images and notifies you on the dashboard if any are found."
1555
- msgstr "リンクエラーやリンクエラーの画像がないかブログをチェックし、見つかった場合は、ダッシュボード等で通知します。"
 
 
 
 
1556
 
1557
  #. Author of the plugin/theme
1558
  msgid "Janis Elsts"
1559
  msgstr "Janis Elsts"
1560
 
1561
  #. Author URI of the plugin/theme
1562
- msgid "http://w-shadow.com/blog/"
1563
- msgstr "http://w-shadow.com/blog/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1564
 
1565
  #~ msgid ""
1566
  #~ "Unexpected error: The plugin doesn't know how to upgrade its database to "
7
  msgstr ""
8
  "Project-Id-Version: Broken Link Checker 0.9.2\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
10
+ "POT-Creation-Date: 2014-03-25 12:29:11+00:00\n"
11
+ "PO-Revision-Date: 2014-06-08 14:22+0900\n"
12
+ "Last-Translator: Shohei Tanaka <shohei.tanaka@artisanworkshop.biz>\n"
13
+ "Language-Team: Shohei Tanaka <shohei.tanaka@artisanworkshop.biz>\n"
14
+ "Language: ja_JP\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
 
 
18
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
19
+ "X-Generator: Poedit 1.5.7\n"
20
 
21
+ #: core/core.php:153 includes/admin/links-page-js.php:44
 
22
  msgid "Loading..."
23
  msgstr "読み込み中..."
24
 
25
+ #: core/core.php:177 includes/admin/options-page-js.php:18
 
26
  msgid "[ Network error ]"
27
  msgstr "[ネットワークエラー]"
28
 
29
+ #: core/core.php:204
30
  msgid "Automatically expand the widget if broken links have been detected"
31
  msgstr "リンクエラーが検出された場合に、ウィジェットを自動的に展開する"
32
 
33
+ #: core/core.php:295
34
  msgid "Link Checker Settings"
35
  msgstr "リンクチェッカーの設定"
36
 
37
+ #: core/core.php:296
38
  msgid "Link Checker"
39
  msgstr "Broken Link Checker"
40
 
41
+ #: core/core.php:301 includes/link-query.php:27
 
42
  msgid "Broken Links"
43
  msgstr "リンクエラーをチェック"
44
 
45
+ #: core/core.php:317
46
  msgid "View Broken Links"
47
  msgstr "リンクエラーを見る"
48
 
49
+ #: core/core.php:332
50
+ msgid "Feedback"
51
+ msgstr "フィードバック"
52
+
53
+ #: core/core.php:340
54
+ msgid "Go to Broken Links"
55
+ msgstr "リンクエラーを見る"
56
+
57
+ #: core/core.php:369
58
  msgid "Settings"
59
  msgstr "設定"
60
 
61
+ #: core/core.php:572
 
 
 
 
 
 
62
  msgid "Settings saved."
63
  msgstr "設定を保存"
64
 
65
+ #: core/core.php:578
66
+ msgid "Thank you for your donation!"
67
+ msgstr "寄付をありがとうございます!"
68
+
69
+ #: core/core.php:586
70
  msgid "Complete site recheck started."
71
  msgstr "サイト全体の再確認が開始されました。"
72
 
73
+ #: core/core.php:595
 
74
  msgid "Details"
75
  msgstr "詳細"
76
 
77
+ #: core/core.php:609
78
  msgid "General"
79
  msgstr "一般"
80
 
81
+ #: core/core.php:610
82
  msgid "Look For Links In"
83
  msgstr "リンクチェック対象"
84
 
85
+ #: core/core.php:611
86
  msgid "Which Links To Check"
87
  msgstr "リンク種類チェック対象"
88
 
89
+ #: core/core.php:612
90
  msgid "Protocols & APIs"
91
  msgstr "プロトコル&API"
92
 
93
+ #: core/core.php:613
94
  msgid "Advanced"
95
  msgstr "高度な設定"
96
 
97
+ #: core/core.php:628
98
  msgid "Broken Link Checker Options"
99
  msgstr "Broken Link Checkerのオプション"
100
 
101
+ #: core/core.php:670 includes/admin/table-printer.php:203
 
102
  msgid "Status"
103
  msgstr "ステータス"
104
 
105
+ #: core/core.php:672 includes/admin/options-page-js.php:56
 
106
  msgid "Show debug info"
107
  msgstr "デバッグ情報を表示"
108
 
109
+ #: core/core.php:700
110
  msgid "Check each link"
111
  msgstr "各リンクをチェック"
112
 
113
+ #: core/core.php:705
 
114
  msgid "Every %s hours"
115
  msgstr "%s 時間ごと"
116
 
117
+ #: core/core.php:714
118
+ msgid ""
119
+ "Existing links will be checked this often. New links will usually be checked "
120
+ "ASAP."
121
+ msgstr ""
122
+ "既存のリンクは、定期的にチェックされます。新しいリンクは即チェックされます。"
123
 
124
+ #: core/core.php:721
125
  msgid "E-mail notifications"
126
  msgstr "メールで通知"
127
 
128
+ #: core/core.php:727
129
  msgid "Send me e-mail notifications about newly detected broken links"
130
  msgstr "新たに検出されたリンクエラーに関してメール通知を受ける"
131
 
132
+ #: core/core.php:735
133
+ msgid "Send authors e-mail notifications about broken links in their posts"
134
+ msgstr "記事内のリンク切れについて、投稿者に電子メール通知を送信"
135
+
136
+ #: core/core.php:742
137
+ msgid "Notification e-mail address"
138
+ msgstr "通知メールアドレス"
139
+
140
+ #: core/core.php:754
141
+ msgid ""
142
+ "Leave empty to use the e-mail address specified in Settings &rarr; General."
143
+ msgstr ""
144
+ "設定で指定した電子メールアドレスを使用する場合は空白のままにします → 設定[一"
145
+ "般]"
146
+
147
+ #: core/core.php:761
148
  msgid "Link tweaks"
149
  msgstr "リンクの調整"
150
 
151
+ #: core/core.php:767
152
  msgid "Apply custom formatting to broken links"
153
  msgstr "リンクエラーにカスタムCSSを適用する"
154
 
155
+ #: core/core.php:771 core/core.php:802
 
156
  msgid "Edit CSS"
157
  msgstr "CSSを編集"
158
 
159
+ #: core/core.php:787
160
+ msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
161
+ msgstr "例: Lorem ipsum<a %s>リンク切れ</a>, dolor sit amet."
162
+
163
+ #: core/core.php:790 core/core.php:821
164
+ msgid "Click \"Save Changes\" to update example output."
165
+ msgstr "例の表示を更新するには\"変更を保存\"をクリックしてください。"
166
+
167
+ #: core/core.php:798
168
  msgid "Apply custom formatting to removed links"
169
  msgstr "削除したリンクにカスタムCSSを適用する"
170
 
171
+ #: core/core.php:818
172
+ msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
173
+ msgstr "例: Lorem ipsum<a %s>削除されたリンク</a>, dolor sit amet."
174
+
175
+ #: core/core.php:831
176
  msgid "Stop search engines from following broken links"
177
+ msgstr ""
178
+ "検索エンジンがリンクエラーをリンクしたと認識しないようにする<small>リンクエ"
179
+ "ラーに<code>rel=”nofollow”</code>が付きます</small>"
180
+
181
+ #: core/core.php:839
182
+ msgctxt "settings page"
183
+ msgid "Suggestions"
184
+ msgstr "提案"
185
 
186
+ #: core/core.php:845
187
+ msgid "Suggest alternatives to broken links"
188
+ msgstr "リンク切れに代わるものを提案する"
189
+
190
+ #: core/core.php:861
191
  msgid "Look for links in"
192
  msgstr "リンクチェック対象"
193
 
194
+ #: core/core.php:872
195
  msgid "Post statuses"
196
  msgstr "リンクチェックする記事のステータス"
197
 
198
+ #: core/core.php:905
199
  msgid "Link types"
200
  msgstr "リンクの種類"
201
 
202
+ #: core/core.php:911
203
  msgid "Error : All link parsers missing!"
204
  msgstr "エラー: すべてのリンクパーサがなくなっています!"
205
 
206
+ #: core/core.php:918
207
  msgid "Exclusion list"
208
  msgstr "除外リスト"
209
 
210
+ #: core/core.php:919
211
+ msgid ""
212
+ "Don't check links where the URL contains any of these words (one per line) :"
213
  msgstr "URLが含まれるリンクをチェックしない(1行に1つ):"
214
 
215
+ #: core/core.php:937
216
  msgid "Check links using"
217
  msgstr "リンクチェックに使用するもの"
218
 
219
+ #: core/core.php:956 includes/links.php:867
 
220
  msgid "Timeout"
221
  msgstr "タイムアウト"
222
 
223
+ #: core/core.php:962 core/core.php:1031 core/core.php:3019
 
 
 
224
  msgid "%s seconds"
225
  msgstr "%s 秒"
226
 
227
+ #: core/core.php:971
228
  msgid "Links that take longer than this to load will be marked as broken."
229
  msgstr "これよりも読み込みに時間がかかったリンクはリンクエラーとマークする"
230
 
231
+ #: core/core.php:978
232
  msgid "Link monitor"
233
  msgstr "リンクモニター"
234
 
235
+ #: core/core.php:986
236
  msgid "Run continuously while the Dashboard is open"
237
  msgstr "継続的にダッシュボードが開いている間実行する"
238
 
239
+ #: core/core.php:994
240
  msgid "Run hourly in the background"
241
  msgstr "バックグラウンドで1時間ごとに実行する"
242
 
243
+ #: core/core.php:1002
244
+ msgid "Show the dashboard widget for"
245
+ msgstr "ウィジェットのダッシュボードを表示"
246
 
247
+ #: core/core.php:1007
248
+ msgctxt "dashboard widget visibility"
249
+ msgid "Administrator"
250
+ msgstr "Administrator"
251
 
252
+ #: core/core.php:1008
253
+ msgctxt "dashboard widget visibility"
254
+ msgid "Editor and above"
255
+ msgstr "編集者以上"
256
 
257
+ #: core/core.php:1009
258
+ msgctxt "dashboard widget visibility"
259
+ msgid "Nobody (disables the widget)"
260
+ msgstr "誰も出来ない(ウィジェットの無効)"
 
 
 
261
 
262
+ #: core/core.php:1025
263
+ msgid "Max. execution time"
264
+ msgstr "最大実行時間"
265
 
266
+ #: core/core.php:1042
267
+ msgid ""
268
+ "The plugin works by periodically launching a background job that parses your "
269
+ "posts for links, checks the discovered URLs, and performs other time-"
270
+ "consuming tasks. Here you can set for how long, at most, the link monitor "
271
+ "may run each time before stopping."
272
+ msgstr ""
273
+ "このプラグインは、他の時間のかかるタスクを実行するバックグラウンドジョブを使"
274
+ "用して、定期的に起動することで動作します。 ここでは、リンクモニタが停止する前"
275
+ "に実行することができる時間を設定することができます。"
276
 
277
+ #: core/core.php:1051
278
  msgid "Server load limit"
279
  msgstr "サーバーの負担の制限"
280
 
281
+ #: core/core.php:1066
 
282
  msgid "Current load : %s"
283
  msgstr "現在の負担:%s"
284
 
285
+ #: core/core.php:1071
286
+ msgid ""
287
+ "Link checking will be suspended if the average <a href=\"%s\">server load</"
288
+ "a> rises above this number. Leave this field blank to disable load limiting."
289
+ msgstr ""
290
+ "サーバーの<a href=\"%s\">負荷</a>が設定した数値以上に上昇したら、リンクチェッ"
291
+ "クが中断されます。負荷制限を無効にするには、このフィールドを空白にしておいて"
292
+ "ください。"
293
 
294
+ #: core/core.php:1080
295
  msgid "Not available"
296
  msgstr "利用できません"
297
 
298
+ #: core/core.php:1082
299
+ msgid ""
300
+ "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
301
+ "code> is present and accessible."
302
+ msgstr ""
303
+ "負荷制限が動作し、アクセス可能な '/proc/loadavg' を Linux のようなシステムで"
304
+ "動作します。"
305
 
306
+ #: core/core.php:1090
307
+ msgid "Logging"
308
+ msgstr "ログの保存"
309
+
310
+ #: core/core.php:1096
311
+ msgid "Enable logging"
312
+ msgstr "ログを取る"
313
+
314
+ #: core/core.php:1103
315
+ msgid "Log file location"
316
+ msgstr "ログファイルの場所"
317
+
318
+ #: core/core.php:1112
319
+ msgctxt "log file location"
320
+ msgid "Default"
321
+ msgstr "デフォルト"
322
+
323
+ #: core/core.php:1126
324
+ msgctxt "log file location"
325
+ msgid "Custom"
326
+ msgstr "カスタム"
327
+
328
+ #: core/core.php:1138
329
  msgid "Forced recheck"
330
  msgstr "再確認"
331
 
332
+ #: core/core.php:1141
333
  msgid "Re-check all pages"
334
  msgstr "すべてのページを再確認"
335
 
336
+ #: core/core.php:1145
337
+ msgid ""
338
+ "The \"Nuclear Option\". Click this button to make the plugin empty its link "
339
+ "database and recheck the entire site from scratch."
340
+ msgstr ""
341
+ "これは\"危険なオプション\"です。リンクデーターベースを空にしてサイト全体を最"
342
+ "初から再確認する場合はこのボタンをクリックします。"
343
 
344
+ #: core/core.php:1156
345
  msgid "Save Changes"
346
  msgstr "変更を保存"
347
 
348
+ #: core/core.php:1207
349
  msgid "Configure"
350
  msgstr "設定"
351
 
352
+ #: core/core.php:1289
353
+ msgid ""
354
+ "Enter the names of custom fields you want to check (one per line). If a "
355
+ "field contains HTML code, prefix its name with <code>html:</code>. For "
356
+ "example, <code>html:field_name</code>."
357
+ msgstr ""
358
+ "あなたが、チェックしたいカスタムフィールドの名前を入れてください。一行1個ず"
359
+ "つ。もし、htmlコードを許容しているフィールドならば、前に<code>html:</code>を"
360
+ "付けてください。例:<code>html:field_name</code>"
361
 
362
+ #: core/core.php:1420 core/core.php:1503 core/core.php:1535
 
 
 
363
  msgid "Database error : %s"
364
  msgstr "データベース エラー: %s"
365
 
366
+ #: core/core.php:1485
367
  msgid "You must enter a filter name!"
368
  msgstr "フィルター名を入力する必要があります!"
369
 
370
+ #: core/core.php:1489
371
  msgid "Invalid search query."
372
  msgstr "無効な検索クエリ"
373
 
374
+ #: core/core.php:1498
 
375
  msgid "Filter \"%s\" created"
376
  msgstr "フィルター %s を作成しました。"
377
 
378
+ #: core/core.php:1525
379
  msgid "Filter ID not specified."
380
  msgstr "フィルタが指定されないIDです。"
381
 
382
+ #: core/core.php:1532
383
  msgid "Filter deleted"
384
  msgstr "フィルタを削除"
385
 
386
+ #: core/core.php:1579
 
387
  msgid "Replaced %d redirect with a direct link"
388
  msgid_plural "Replaced %d redirects with direct links"
389
  msgstr[0] "%dのリダイレクトは直接のリンクに変更されました。"
390
  msgstr[1] "%dのリダイレクトは直接のリンクに変更されました。"
391
 
392
+ #: core/core.php:1590
 
393
  msgid "Failed to fix %d redirect"
394
  msgid_plural "Failed to fix %d redirects"
395
  msgstr[0] "%d リダイレクトの修正に失敗しました。"
396
  msgstr[1] "%d リダイレクトの修正に失敗しました。"
397
 
398
+ #: core/core.php:1601
399
  msgid "None of the selected links are redirects!"
400
  msgstr "選択したリンクはリダイレクトではありません。"
401
 
402
+ #: core/core.php:1679
 
403
  msgid "%d link updated."
404
  msgid_plural "%d links updated."
405
  msgstr[0] "%dのリンクを更新しました。"
406
  msgstr[1] "%dのリンクを更新しました。"
407
 
408
+ #: core/core.php:1690
 
409
  msgid "Failed to update %d link."
410
  msgid_plural "Failed to update %d links."
411
  msgstr[0] "%dのリンク更新に失敗しました。"
412
  msgstr[1] "%dのリンク更新に失敗しました。"
413
 
414
+ #: core/core.php:1779
 
415
  msgid "%d link removed"
416
  msgid_plural "%d links removed"
417
  msgstr[0] "%d リンクの削除"
418
  msgstr[1] "%d リンクの削除"
419
 
420
+ #: core/core.php:1790
 
421
  msgid "Failed to remove %d link"
422
  msgid_plural "Failed to remove %d links"
423
  msgstr[0] "%d リンクを削除できませんでした。"
424
  msgstr[1] "%d リンクを削除できませんでした。"
425
 
426
+ #: core/core.php:1899
427
+ msgid ""
428
+ "%d item was skipped because it can't be moved to the Trash. You need to "
429
+ "delete it manually."
430
+ msgid_plural ""
431
+ "%d items were skipped because they can't be moved to the Trash. You need to "
432
+ "delete them manually."
433
+ msgstr[0] ""
434
+ "%dの項目をゴミ箱に移動できないため、スキップされました。手動で削除する必要が"
435
+ "あります。"
436
+ msgstr[1] ""
437
+ "%dの項目をゴミ箱に移動できないため、スキップされました。手動で削除する必要が"
438
+ "あります。"
439
+
440
+ #: core/core.php:1921
441
  msgid "Didn't find anything to delete!"
442
  msgstr "削除するには何も見つかりませんでした!"
443
 
444
+ #: core/core.php:1949
 
445
  msgid "%d link scheduled for rechecking"
446
  msgid_plural "%d links scheduled for rechecking"
447
  msgstr[0] "%dのリンクを再確認します。"
448
  msgstr[1] "%dのリンクを再確認します。"
449
 
450
+ #: core/core.php:1995 core/core.php:2637
 
451
  msgid "This link was manually marked as working by the user."
452
  msgstr "このリンクは手動での作業としてマークされました。"
453
 
454
+ #: core/core.php:2002
 
455
  msgid "Couldn't modify link %d"
456
  msgstr "%dのリンクを変更することができませんでした"
457
 
458
+ #: core/core.php:2012
 
459
  msgid "%d link marked as not broken"
460
  msgid_plural "%d links marked as not broken"
461
  msgstr[0] "%dリンクを「リンクエラーでない」としました"
462
  msgstr[1] "%dリンクを「リンクエラーでない」としました"
463
 
464
+ #: core/core.php:2052
465
  msgid "Table columns"
466
  msgstr "表の列"
467
 
468
+ #: core/core.php:2071
469
  msgid "Show on screen"
470
  msgstr "画面に表示する"
471
 
472
+ #: core/core.php:2078
473
  msgid "links"
474
  msgstr "リンク"
475
 
476
+ #: core/core.php:2079 includes/admin/table-printer.php:171
 
477
  msgid "Apply"
478
  msgstr "適用"
479
 
480
+ #: core/core.php:2083
481
  msgid "Misc"
482
  msgstr "その他"
483
 
484
+ #: core/core.php:2098
 
485
  msgid "Highlight links broken for at least %s days"
486
  msgstr "発見してから%s日過ぎたリンクエラーをハイライト表示する"
487
 
488
+ #: core/core.php:2107
489
  msgid "Color-code status codes"
490
  msgstr "ステータスコードを色分けする"
491
 
492
+ #: core/core.php:2124 core/core.php:2622 core/core.php:2662 core/core.php:2695
493
+ #: core/core.php:2782
 
 
494
  msgid "You're not allowed to do that!"
495
  msgstr "それを行うことが許可されていません!"
496
 
497
+ #: core/core.php:2492
498
  msgid "View broken links"
499
  msgstr "リンクエラーを表示"
500
 
501
+ #: core/core.php:2493
 
502
  msgid "Found %d broken link"
503
  msgid_plural "Found %d broken links"
504
  msgstr[0] "%dのリンクエラーを発見しました"
505
  msgstr[1] "%dのリンクエラーを発見しました"
506
 
507
+ #: core/core.php:2499
508
  msgid "No broken links found."
509
  msgstr "リンクを発見しました。"
510
 
511
+ #: core/core.php:2506
 
512
  msgid "%d URL in the work queue"
513
  msgid_plural "%d URLs in the work queue"
514
  msgstr[0] "%d URLワークキュー内"
515
  msgstr[1] "%d URLワークキュー内"
516
 
517
+ #: core/core.php:2509
518
  msgid "No URLs in the work queue."
519
  msgstr "ワークキュー内のURLはありません"
520
 
521
+ #: core/core.php:2515
522
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
523
+ msgid "%d unique URL"
524
+ msgid_plural "%d unique URLs"
525
  msgstr[0] "%dリンク検出 ユニークURL"
526
  msgstr[1] "%dリンク検出 ユニークURL"
527
 
528
+ #: core/core.php:2519
529
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
530
+ msgid "%d link"
531
+ msgid_plural "%d links"
532
  msgstr[0] "%dリンク"
533
+ msgstr[1] "%dリンク"
534
+
535
+ #: core/core.php:2525
536
+ msgid "Detected %1$s in %2$s and still searching..."
537
+ msgstr "%2$s 中%1$s を検出し、検索中..."
538
 
539
+ #: core/core.php:2531
540
+ msgid "Detected %1$s in %2$s."
541
+ msgstr "%2$s中%1$sを検出する。"
542
 
543
+ #: core/core.php:2538
544
  msgid "Searching your blog for links..."
545
  msgstr "あなたのブログへのリンクを検索しています..."
546
 
547
+ #: core/core.php:2540
548
  msgid "No links detected."
549
  msgstr "リンクの検出。"
550
 
551
+ #: core/core.php:2566
552
  msgctxt "current load"
553
  msgid "Unknown"
554
  msgstr "不明"
555
 
556
+ #: core/core.php:2630 core/core.php:2670 core/core.php:2710 core/core.php:2792
 
 
 
557
  msgid "Oops, I can't find the link %d"
558
  msgstr "リンク %d を見つけることができません。"
559
 
560
+ #: core/core.php:2643 core/core.php:2680
561
  msgid "Oops, couldn't modify the link!"
562
  msgstr "リンクを変更できませんでした!"
563
 
564
+ #: core/core.php:2646 core/core.php:2683 core/core.php:2818
 
565
  msgid "Error : link_id not specified"
566
  msgstr "エラー: link_id が指定されていません"
567
 
568
+ #: core/core.php:2701
569
+ msgid "Error : link_id or new_url not specified"
570
+ msgstr "エラー: link_id または new_url が指定されていません"
571
+
572
+ #: core/core.php:2719
573
  msgid "Oops, the new URL is invalid!"
574
  msgstr "新しい URL が無効です!"
575
 
576
+ #: core/core.php:2734
577
+ msgid "An unexpected error occurred!"
 
578
  msgstr "予期しないエラーが発生しました !"
579
 
580
+ #: core/core.php:2801
581
+ msgid "An unexpected error occured!"
582
+ msgstr "予期しないエラーが発生しました "
583
 
584
+ #: core/core.php:2827
585
  msgid "You don't have sufficient privileges to access this information!"
586
  msgstr "この情報にアクセスする権限を持っていません!"
587
 
588
+ #: core/core.php:2840
589
  msgid "Error : link ID not specified"
590
  msgstr "エラー: リンクIDは指定しませんでした。"
591
 
592
+ #: core/core.php:2854
 
593
  msgid "Failed to load link details (%s)"
594
  msgstr "リンクの詳細 (%s) の読み込みに失敗しました"
595
 
596
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.9.3) #-#-#-#-#
597
  #. Plugin Name of the plugin/theme
598
+ #: core/core.php:2908
599
  msgid "Broken Link Checker"
600
  msgstr "Broken Link Checker"
601
 
602
+ #: core/core.php:2928
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
603
  msgid "PHP version"
604
  msgstr "PHPバージョン"
605
 
606
+ #: core/core.php:2934
607
  msgid "MySQL version"
608
  msgstr "MySQLバージョン"
609
 
610
+ #: core/core.php:2947
611
+ msgid ""
612
+ "You have an old version of CURL. Redirect detection may not work properly."
613
+ msgstr ""
614
+ "CURLのバージョンが古いため、リダイレクト検出が正しく動作しないことがありま"
615
+ "す。"
616
 
617
+ #: core/core.php:2959 core/core.php:2975 core/core.php:2980
 
 
618
  msgid "Not installed"
619
  msgstr "インストールされていません"
620
 
621
+ #: core/core.php:2962
622
  msgid "CURL version"
623
  msgstr "CURLバージョン"
624
 
625
+ #: core/core.php:2968
626
  msgid "Installed"
627
  msgstr "インストールされています"
628
 
629
+ #: core/core.php:2981
630
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
631
+ msgstr ""
632
+ "CURL か Snoopy はプラグイン動作するためにインストールされている必要がありま"
633
+ "す!"
634
 
635
+ #: core/core.php:2992
636
  msgid "On"
637
  msgstr "ON"
638
 
639
+ #: core/core.php:2993
640
  msgid "Redirects may be detected as broken links when safe_mode is on."
641
+ msgstr ""
642
+ "セーフモードが有効な場合リダイレクトリンクエラーとして検出されることがありま"
643
+ "す。"
644
 
645
+ #: core/core.php:2998 core/core.php:3012
 
646
  msgid "Off"
647
  msgstr "OFF"
648
 
649
+ #: core/core.php:3006
 
650
  msgid "On ( %s )"
651
  msgstr "ON ( %s )"
652
 
653
+ #: core/core.php:3007
654
  msgid "Redirects may be detected as broken links when open_basedir is on."
655
  msgstr "ここにある場合リダイレクトリンクエラーとして検出されることがあります。"
656
 
657
+ #: core/core.php:3036
658
+ msgid ""
659
+ "If this value is zero even after several page reloads you have probably "
660
+ "encountered a bug."
661
+ msgstr ""
662
+ "この値がもししばらくたったあと再読込みしても0だった場合、バグが発生した可能性"
663
+ "があります。"
664
 
665
+ #: core/core.php:3159 core/core.php:3278
 
666
  msgid "[%s] Broken links detected"
667
  msgstr "[%s] リンクエラーの検出"
668
 
669
+ #: core/core.php:3164
 
670
  msgid "Broken Link Checker has detected %d new broken link on your site."
671
+ msgid_plural ""
672
+ "Broken Link Checker has detected %d new broken links on your site."
673
+ msgstr[0] ""
674
+ "Broken Link Checkerは、あなたのサイトに新しいリンク%dがリンクエラーと検出され"
675
+ "ました。"
676
+ msgstr[1] ""
677
+ "Broken Link Checkerは、あなたのサイトに新しいリンク%dがリンクエラーと検出され"
678
+ "ました。"
679
+
680
+ #: core/core.php:3195
681
  msgid "Here's a list of the first %d broken links:"
682
  msgid_plural "Here's a list of the first %d broken links:"
683
  msgstr[0] "%dの壊れたリンクのリスト:"
684
  msgstr[1] "%dの壊れたリンクのリスト:"
685
 
686
+ #: core/core.php:3204
687
  msgid "Here's a list of the new broken links: "
688
  msgstr "リンクエラーの一覧 : "
689
 
690
+ #: core/core.php:3213
 
691
  msgid "Link text : %s"
692
  msgstr "リンク テキスト: %s"
693
 
694
+ #: core/core.php:3214
 
695
  msgid "Link URL : <a href=\"%s\">%s</a>"
696
  msgstr "リンクのURL : <a href=\"%s\">%s</a>"
697
 
698
+ #: core/core.php:3215
 
699
  msgid "Source : %s"
700
  msgstr "ソース : %s"
701
 
702
+ #: core/core.php:3229
703
  msgid "You can see all broken links here:"
704
  msgstr "すべてのリンクエラーを見ることができます:"
705
 
706
+ #: core/core.php:3283
707
+ msgid "Broken Link Checker has detected %d new broken link in your posts."
708
+ msgid_plural ""
709
+ "Broken Link Checker has detected %d new broken links in your posts."
710
+ msgstr[0] ""
711
+ "Broken Link Checkerは、あなたのサイトに新しいリンク%dがリンクエラーと検出され"
712
+ "ました。"
713
+ msgstr[1] ""
714
+ "Broken Link Checkerは、あなたのサイトに新しいリンク%dがリンクエラーと検出され"
715
+ "ました。"
716
+
717
+ #: core/init.php:249
718
  msgid "Once Weekly"
719
  msgstr "週1回"
720
 
721
+ #: core/init.php:255
722
  msgid "Twice a Month"
723
  msgstr "月2回"
724
 
725
+ #: core/init.php:331
726
+ msgid ""
727
+ "Broken Link Checker installation failed. Try deactivating and then "
728
+ "reactivating the plugin."
729
+ msgstr ""
730
+ "リンク切れチェッカーのインストールに失敗しました。プラグインを停止にしてか"
731
+ "ら、有効化してみてください。"
732
+
733
+ #: core/init.php:335
734
+ msgid ""
735
+ "Please activate the plugin separately on each site. Network activation is "
736
+ "not supported."
737
+ msgstr ""
738
+ "各サイトで個別にプラグインの設定を有効にしてください。ネットワークの有効化は"
739
+ "サポートされていません。"
740
 
741
  #: includes/admin/db-upgrade.php:95
 
742
  msgid "Failed to delete old DB tables. Database error : %s"
743
  msgstr "古いDBのテーブルの削除に失敗しました。データベースエラー: %s"
744
 
745
+ #: includes/admin/links-page-js.php:62 includes/admin/links-page-js.php:525
 
746
  msgid "Wait..."
747
  msgstr "処理中..."
748
 
749
+ #: includes/admin/links-page-js.php:107 includes/admin/table-printer.php:663
 
750
  msgid "Not broken"
751
  msgstr "リンクエラーでない"
752
 
753
+ #: includes/admin/links-page-js.php:243
754
+ msgctxt "link text"
755
+ msgid "(None)"
756
+ msgstr "(無し)"
757
+
758
+ #: includes/admin/links-page-js.php:244
759
+ msgctxt "link text"
760
+ msgid "(Multiple links)"
761
+ msgstr "(マルチリンク)"
762
+
763
+ #: includes/admin/links-page-js.php:302
764
+ msgctxt "link suggestions"
765
+ msgid "Searching..."
766
+ msgstr "検索中..."
767
+
768
+ #: includes/admin/links-page-js.php:303
769
+ msgctxt "link suggestions"
770
+ msgid "No suggestions available."
771
+ msgstr "提案はありません。"
772
+
773
+ #: includes/admin/links-page-js.php:304
774
+ msgctxt "link suggestions"
775
+ msgid "Archived page from %s (via the Wayback Machine)"
776
+ msgstr "(Wayback Machineを経由して)%sからアーカイブされたページ"
777
+
778
+ #: includes/admin/links-page-js.php:387
779
  msgid "%d instances of the link were successfully modified."
780
  msgstr "%dのインスタンスのリンクが正常に変更されました。"
781
 
782
+ #: includes/admin/links-page-js.php:393
783
+ msgid ""
784
+ "However, %d instances couldn't be edited and still point to the old URL."
785
  msgstr "しかし、 %d のインスタンスは削除できませんでした。"
786
 
787
+ #: includes/admin/links-page-js.php:399
788
  msgid "The link could not be modified."
789
  msgstr "リンクを変更できませんでした。"
790
 
791
+ #: includes/admin/links-page-js.php:402
792
+ msgid "The following error(s) occurred :"
793
+ msgstr "以下のエラーが発生しました:"
794
+
795
+ #: includes/admin/links-page-js.php:488
796
+ msgid "Error: Link URL must not be empty."
797
+ msgstr "エラー:リンクURLは空ではいけません。"
798
 
799
+ #: includes/admin/links-page-js.php:563
 
800
  msgid "%d instances of the link were successfully unlinked."
801
  msgstr "リンク%dのインスタンスが正常に解除されました。"
802
 
803
+ #: includes/admin/links-page-js.php:569
 
804
  msgid "However, %d instances couldn't be removed."
805
  msgstr "しかし、%dのインスタンスは削除できませんでした。"
806
 
807
+ #: includes/admin/links-page-js.php:574
808
  msgid "The plugin failed to remove the link."
809
  msgstr "プラグインは、リンクを削除できませんでした。"
810
 
811
+ #: includes/admin/links-page-js.php:577
812
+ msgid "The following error(s) occured :"
813
+ msgstr "エラーが発生しました:"
814
+
815
+ #: includes/admin/links-page-js.php:585 includes/admin/table-printer.php:281
816
+ #: includes/admin/table-printer.php:657
817
  msgid "Unlink"
818
  msgstr "リンク解除"
819
 
820
+ #: includes/admin/links-page-js.php:629
821
  msgid "Enter a name for the new custom filter"
822
  msgstr "新しいカスタムフィルターの名前を入力します。"
823
 
824
+ #: includes/admin/links-page-js.php:641
825
  msgid ""
826
  "You are about to delete the current filter.\n"
827
  "'Cancel' to stop, 'OK' to delete"
829
  "現在のフィルタを削除しようとしています。 \n"
830
  "「OK」で削除、「キャンセル」で中止します。"
831
 
832
+ #: includes/admin/links-page-js.php:665
833
  msgid ""
834
+ "Are you sure you want to delete all posts, bookmarks or other items that "
835
+ "contain any of the selected links? This action can't be undone.\n"
836
  "'Cancel' to stop, 'OK' to delete"
837
  msgstr ""
838
+ "すべての記事の、ブックマーク、またはいずれかを選択したリンクが含まれている他"
839
+ "の項目を削除してよろしいですか?\n"
840
  "この操作は元に戻すことはできません。\n"
841
  "「OK」で削除、「キャンセル」で中止します。"
842
 
843
+ #: includes/admin/links-page-js.php:679
844
  msgid ""
845
+ "Are you sure you want to remove the selected links? This action can't be "
846
+ "undone.\n"
847
  "'Cancel' to stop, 'OK' to remove"
848
  msgstr ""
849
  "選択したリンクを削除してよろしいですか?元に戻すことはできません。\n"
850
  "この操作は元に戻すことはできません。\n"
851
  "「OK」で削除、「キャンセル」で中止します。"
852
 
853
+ #: includes/admin/links-page-js.php:791
854
  msgid "Enter a search string first."
855
  msgstr "検索文字列が最初に入力してください。"
856
 
857
+ #: includes/admin/links-page-js.php:798
858
  msgid "Select one or more links to edit."
859
  msgstr "ひとつまたは複数のリンクを編集することができます。"
860
 
870
  msgid "Delete This Filter"
871
  msgstr "このフィルターを削除"
872
 
873
+ #: includes/admin/search-form.php:32 includes/link-query.php:65
 
874
  msgid "Search"
875
  msgstr "検索"
876
 
878
  msgid "Link text"
879
  msgstr "リンクテキスト"
880
 
881
+ #: includes/admin/search-form.php:45 includes/admin/table-printer.php:208
 
882
  msgid "URL"
883
  msgstr "URL"
884
 
885
+ #: includes/admin/search-form.php:48 includes/admin/table-printer.php:527
 
886
  msgid "HTTP code"
887
  msgstr "HTTP コード"
888
 
890
  msgid "Link status"
891
  msgstr "リンクのステータス"
892
 
893
+ #: includes/admin/search-form.php:68 includes/admin/search-form.php:85
 
894
  msgid "Link type"
895
  msgstr "リンクの種類"
896
 
906
  msgid "Search Links"
907
  msgstr "リンク検索"
908
 
909
+ #: includes/admin/search-form.php:113 includes/admin/table-printer.php:357
910
+ #: includes/admin/table-printer.php:687 includes/admin/table-printer.php:812
 
 
911
  msgid "Cancel"
912
  msgstr "キャンセル"
913
 
914
+ #: includes/admin/sidebar.php:24
915
+ msgid "More plugins by Janis Elsts"
916
+ msgstr "Janis Elsts作成の他のプラグイン"
917
+
918
+ #: includes/admin/sidebar.php:47
919
+ msgid "Donate $10, $20 or $50!"
920
+ msgstr "$10, $20 もしくは $50の寄付!"
921
+
922
+ #: includes/admin/sidebar.php:50
923
+ msgid ""
924
+ "If you like this plugin, please donate to support development and "
925
+ "maintenance!"
926
+ msgstr ""
927
+ "このプラグインを気に入って頂けたら、開発と保守を支援するために寄付してくださ"
928
+ "い!"
929
+
930
+ #: includes/admin/sidebar.php:68
931
+ msgid "Return to WordPress Dashboard"
932
+ msgstr "WordPress Dashboardに戻る"
933
+
934
+ #: includes/admin/table-printer.php:185
935
  msgid "Compact View"
936
  msgstr "一覧表示"
937
 
938
+ #: includes/admin/table-printer.php:186
939
  msgid "Detailed View"
940
  msgstr "詳細表示"
941
 
942
+ #: includes/admin/table-printer.php:215
943
  msgid "Source"
944
  msgstr "ソース"
945
 
946
+ #: includes/admin/table-printer.php:221
947
  msgid "Link Text"
948
  msgstr "リンクテキスト"
949
 
950
+ #: includes/admin/table-printer.php:228
951
+ msgid "Redirect URL"
952
+ msgstr "リダイレクトURL"
953
+
954
+ #: includes/admin/table-printer.php:276
955
  msgid "Bulk Actions"
956
  msgstr "一括操作"
957
 
958
+ #: includes/admin/table-printer.php:277 includes/admin/table-printer.php:654
 
959
  msgid "Edit URL"
960
  msgstr "URLを編集"
961
 
962
+ #: includes/admin/table-printer.php:278
963
  msgid "Recheck"
964
  msgstr "再確認"
965
 
966
+ #: includes/admin/table-printer.php:279
967
  msgid "Fix redirects"
968
  msgstr "リダイレクトを修正"
969
 
970
+ #: includes/admin/table-printer.php:280
971
  msgid "Mark as not broken"
972
  msgstr "リンクエラーでない"
973
 
974
+ #: includes/admin/table-printer.php:284
975
  msgid "Move sources to Trash"
976
  msgstr "ゴミ箱に移動"
977
 
978
+ #: includes/admin/table-printer.php:286
979
  msgid "Delete sources"
980
  msgstr "ソースを削除"
981
 
982
+ #: includes/admin/table-printer.php:301
983
  msgid "&laquo;"
984
  msgstr "&laquo;"
985
 
986
+ #: includes/admin/table-printer.php:302
987
  msgid "&raquo;"
988
  msgstr "&raquo;"
989
 
990
+ #: includes/admin/table-printer.php:310
 
991
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
992
  msgstr "表示 %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
993
 
994
+ #: includes/admin/table-printer.php:333
995
  msgid "Bulk Edit URLs"
996
  msgstr "URLを一括編集"
997
 
998
+ #: includes/admin/table-printer.php:335
999
  msgid "Find"
1000
  msgstr "検索"
1001
 
1002
+ #: includes/admin/table-printer.php:339
1003
  msgid "Replace with"
1004
  msgstr "置き換え"
1005
 
1006
+ #: includes/admin/table-printer.php:347
1007
  msgid "Case sensitive"
1008
  msgstr "大文字と小文字を区別する"
1009
 
1010
+ #: includes/admin/table-printer.php:351
1011
  msgid "Regular expression"
1012
  msgstr "正規表現"
1013
 
1014
+ #: includes/admin/table-printer.php:359 includes/admin/table-printer.php:813
1015
  msgid "Update"
1016
  msgstr "更新"
1017
 
1018
+ #: includes/admin/table-printer.php:512
1019
  msgid "Post published on"
1020
  msgstr "投稿を公開"
1021
 
1022
+ #: includes/admin/table-printer.php:517
1023
  msgid "Link last checked"
1024
  msgstr "最後のリンクチェック"
1025
 
1026
+ #: includes/admin/table-printer.php:521
1027
  msgid "Never"
1028
  msgstr "決して"
1029
 
1030
+ #: includes/admin/table-printer.php:532
1031
  msgid "Response time"
1032
  msgstr "応答時間"
1033
 
1034
+ #: includes/admin/table-printer.php:534
 
1035
  msgid "%2.3f seconds"
1036
  msgstr "%2.3f 秒"
1037
 
1038
+ #: includes/admin/table-printer.php:537
1039
  msgid "Final URL"
1040
  msgstr "リダイレクトされたURL"
1041
 
1042
+ #: includes/admin/table-printer.php:542
1043
  msgid "Redirect count"
1044
  msgstr "リダイレクトの回数"
1045
 
1046
+ #: includes/admin/table-printer.php:547
1047
  msgid "Instance count"
1048
  msgstr "インスタンス数"
1049
 
1050
+ #: includes/admin/table-printer.php:556
 
1051
  msgid "This link has failed %d time."
1052
  msgid_plural "This link has failed %d times."
1053
  msgstr[0] "最終チェック%d時間前"
1054
  msgstr[1] "最終チェック%d時間前"
1055
 
1056
+ #: includes/admin/table-printer.php:564
 
1057
  msgid "This link has been broken for %s."
1058
  msgstr "%sの間リンクエラー状態です。"
1059
 
1060
+ #: includes/admin/table-printer.php:575
1061
  msgid "Log"
1062
  msgstr "ログ"
1063
 
1064
+ #: includes/admin/table-printer.php:600
1065
  msgid "Show more info about this link"
1066
  msgstr "このリンクに関する表示詳細情報をもっと見る"
1067
 
1068
+ #: includes/admin/table-printer.php:618
1069
  msgctxt "checked how long ago"
1070
  msgid "Checked"
1071
  msgstr "チェック"
1072
 
1073
+ #: includes/admin/table-printer.php:634
1074
  msgid "Broken for"
1075
  msgstr "エラー"
1076
 
1077
+ #: includes/admin/table-printer.php:654
1078
+ msgid "Edit this link"
1079
+ msgstr "このリンクを編集"
1080
 
1081
+ #: includes/admin/table-printer.php:656
1082
  msgid "Remove this link from all posts"
1083
  msgstr "すべての記事からこのリンクを削除"
1084
 
1085
+ #: includes/admin/table-printer.php:662
1086
  msgid "Remove this link from the list of broken links and mark it as valid"
1087
  msgstr "リンクエラーのリストから削除する"
1088
 
1089
+ #: includes/admin/table-printer.php:670
1090
+ msgid "Hide this link and do not report it again unless its status changes"
1091
+ msgstr ""
1092
+ "このリンクを非表示にし、ステータスの変更が無い限りレポートしないようにしま"
1093
+ "す。"
1094
+
1095
+ #: includes/admin/table-printer.php:671
1096
+ msgid "Dismiss"
1097
+ msgstr "リンク切れから解除"
1098
+
1099
+ #: includes/admin/table-printer.php:676
1100
+ msgid "Undismiss this link"
1101
+ msgstr "このリンクをリンク切れから解除する"
1102
 
1103
+ #: includes/admin/table-printer.php:677
1104
+ msgid "Undismiss"
1105
+ msgstr "リンク切れにします"
1106
+
1107
+ #: includes/admin/table-printer.php:688
1108
  msgid "Update URL"
1109
  msgstr "URLを編集"
1110
 
1111
+ #: includes/admin/table-printer.php:715
1112
  msgid "[An orphaned link! This is a bug.]"
1113
  msgstr "[独立したリンク! これはバグです]"
1114
 
1115
+ #: includes/admin/table-printer.php:792
1116
+ msgctxt "inline editor title"
1117
+ msgid "Edit Link"
1118
+ msgstr "リンクを編集"
1119
+
1120
+ #: includes/admin/table-printer.php:795
1121
+ msgctxt "inline link editor"
1122
+ msgid "Text"
1123
+ msgstr "リンクテキスト"
1124
+
1125
+ #: includes/admin/table-printer.php:800
1126
+ msgctxt "inline link editor"
1127
+ msgid "URL"
1128
+ msgstr "URL"
1129
+
1130
+ #: includes/admin/table-printer.php:805
1131
+ msgctxt "inline link editor"
1132
+ msgid "Suggestions"
1133
+ msgstr "提案"
1134
+
1135
+ #: includes/admin/table-printer.php:825
1136
+ msgid "Use this URL"
1137
+ msgstr "このURLを使う"
1138
+
1139
+ #: includes/any-post.php:398 modules/containers/blogroll.php:46
1140
+ #: modules/containers/comment.php:153 modules/containers/custom_field.php:207
1141
  msgid "Edit"
1142
  msgstr "編集"
1143
 
1144
+ #: includes/any-post.php:406 modules/containers/custom_field.php:213
 
1145
  msgid "Move this item to the Trash"
1146
  msgstr "この項目をゴミ箱に移動"
1147
 
1148
+ #: includes/any-post.php:408 modules/containers/custom_field.php:215
 
1149
  msgid "Trash"
1150
  msgstr "ゴミ箱"
1151
 
1152
+ #: includes/any-post.php:413 modules/containers/custom_field.php:220
 
1153
  msgid "Delete this item permanently"
1154
  msgstr "この項目を完全に削除する"
1155
 
1156
+ #: includes/any-post.php:415 modules/containers/blogroll.php:47
1157
+ #: modules/containers/custom_field.php:222
 
1158
  msgid "Delete"
1159
  msgstr "削除"
1160
 
1161
  #: includes/any-post.php:428
 
1162
  msgid "Preview &#8220;%s&#8221;"
1163
  msgstr "プレビュー &#8220;%s&#8221;"
1164
 
1167
  msgstr "プレビュー"
1168
 
1169
  #: includes/any-post.php:436
 
1170
  msgid "View &#8220;%s&#8221;"
1171
  msgstr "見る &#8220;%s&#8221;"
1172
 
1173
+ #: includes/any-post.php:437 modules/containers/comment.php:166
1174
+ #: modules/containers/custom_field.php:227
 
1175
  msgid "View"
1176
  msgstr "見る"
1177
 
1178
+ #: includes/any-post.php:456 modules/containers/custom_field.php:207
 
1179
  msgid "Edit this item"
1180
  msgstr "この項目を編集"
1181
 
1182
+ #: includes/any-post.php:520 modules/containers/blogroll.php:83
 
1183
  #: modules/containers/comment.php:43
1184
  msgid "Nothing to update"
1185
  msgstr "何も更新してません"
1186
 
1187
  #: includes/any-post.php:530
 
1188
  msgid "Updating post %d failed"
1189
  msgstr "ポスト%dが更新できませんでした。"
1190
 
1191
+ #: includes/any-post.php:567 modules/containers/custom_field.php:294
 
 
1192
  msgid "Failed to delete post \"%s\" (%d)"
1193
  msgstr "\"%s\"(%d)の投稿を削除できませんでした。"
1194
 
1195
+ #: includes/any-post.php:586 modules/containers/custom_field.php:313
1196
+ msgid ""
1197
+ "Can't move post \"%s\" (%d) to the trash because the trash feature is "
1198
+ "disabled"
1199
+ msgstr ""
1200
+ "ゴミ箱機能が無効になっているため、\"%s\" (%d)を移動することができませんでし"
1201
+ "た。"
1202
 
1203
+ #: includes/any-post.php:606 modules/containers/custom_field.php:332
 
 
1204
  msgid "Failed to move post \"%s\" (%d) to the trash"
1205
  msgstr "\"%s\" (%d) の投稿の移動に失敗しました。"
1206
 
1207
+ #: includes/any-post.php:714
 
1208
  msgid "%d post deleted."
1209
  msgid_plural "%d posts deleted."
1210
  msgstr[0] "%d投稿を削除しました。"
1211
  msgstr[1] "%d投稿を削除しました。"
1212
 
1213
+ #: includes/any-post.php:716
 
1214
  msgid "%d page deleted."
1215
  msgid_plural "%d pages deleted."
1216
  msgstr[0] "%dページを削除しました。"
1217
  msgstr[1] "%dページを削除しました。"
1218
 
1219
+ #: includes/any-post.php:718
 
1220
  msgid "%d \"%s\" deleted."
1221
  msgid_plural "%d \"%s\" deleted."
1222
  msgstr[0] "%d \"%s\"を削除しました。"
1223
  msgstr[1] "%d \"%s\"を削除しました。"
1224
 
1225
+ #: includes/any-post.php:737
 
1226
  msgid "%d post moved to the Trash."
1227
  msgid_plural "%d posts moved to the Trash."
1228
  msgstr[0] "%dの記事をゴミ箱に移動しました。"
1229
  msgstr[1] "%dの記事をゴミ箱に移動しました。"
1230
 
1231
+ #: includes/any-post.php:739
 
1232
  msgid "%d page moved to the Trash."
1233
  msgid_plural "%d pages moved to the Trash."
1234
  msgstr[0] "%dページゴミ箱に移動しました。"
1235
  msgstr[1] "%dページゴミ箱に移動しました。"
1236
 
1237
+ #: includes/any-post.php:741
 
1238
  msgid "%d \"%s\" moved to the Trash."
1239
  msgid_plural "%d \"%s\" moved to the Trash."
1240
  msgstr[0] "%d \"%s\"をゴミ箱に移動しました。"
1241
  msgstr[1] "%d \"%s\"をゴミ箱に移動しました。"
1242
 
1243
  #: includes/containers.php:122
 
1244
  msgid "%d '%s' has been deleted"
1245
  msgid_plural "%d '%s' have been deleted"
1246
  msgstr[0] "%d '%s' は削除されました"
1247
  msgstr[1] "%d '%s' は削除されました"
1248
 
1249
+ #: includes/containers.php:880 includes/containers.php:898
 
 
1250
  msgid "Container type '%s' not recognized"
1251
  msgstr "コンテナの型 '%s' が認識されません。"
1252
 
1277
 
1278
  #: includes/extra-strings.php:7
1279
  msgctxt "module name"
1280
+ msgid "Embedded GoogleVideo videos"
1281
+ msgstr "埋め込まれたGoogleVideo動画"
1282
+
1283
+ #: includes/extra-strings.php:8
1284
+ msgctxt "module name"
1285
+ msgid "Embedded Megavideo videos"
1286
+ msgstr "埋め込まれたMegavideo動画"
1287
+
1288
+ #: includes/extra-strings.php:9
1289
+ msgctxt "module name"
1290
  msgid "Embedded Vimeo videos"
1291
  msgstr "埋め込まれたVimeoの動画"
1292
 
1293
+ #: includes/extra-strings.php:10
1294
+ msgctxt "module name"
1295
+ msgid "Embedded YouTube playlists (old embed code)"
1296
+ msgstr "埋め込まれたYouTubeプレイリスト(古いembedコード)"
1297
+
1298
+ #: includes/extra-strings.php:11
1299
  msgctxt "module name"
1300
  msgid "Embedded YouTube videos"
1301
  msgstr "埋め込まれたYouTubeの動画"
1302
 
1303
+ #: includes/extra-strings.php:12
1304
+ msgctxt "module name"
1305
+ msgid "Embedded YouTube videos (old embed code)"
1306
+ msgstr "埋め込まれたYouTube動画(古いembedコード)"
1307
+
1308
+ #: includes/extra-strings.php:13
1309
+ msgctxt "module name"
1310
+ msgid "FileServe API"
1311
+ msgstr "FileServe API"
1312
+
1313
+ #: includes/extra-strings.php:14
1314
  msgctxt "module name"
1315
  msgid "HTML images"
1316
  msgstr "HTML画像"
1317
 
1318
+ #: includes/extra-strings.php:15
1319
  msgctxt "module name"
1320
  msgid "HTML links"
1321
  msgstr "HTMLリンク"
1322
 
1323
+ #: includes/extra-strings.php:16
1324
  msgctxt "module name"
1325
  msgid "MediaFire API"
1326
  msgstr "MediaFire API"
1327
 
1328
+ #: includes/extra-strings.php:17
1329
  msgctxt "module name"
1330
  msgid "MegaUpload API"
1331
  msgstr "MegaUpload API"
1332
 
1333
+ #: includes/extra-strings.php:18
1334
  msgctxt "module name"
1335
  msgid "Plaintext URLs"
1336
  msgstr "プレーンテキストのURL"
1337
 
1338
+ #: includes/extra-strings.php:19
1339
  msgctxt "module name"
1340
  msgid "RapidShare API"
1341
  msgstr "RapidShare API"
1342
 
1343
+ #: includes/extra-strings.php:20
1344
+ msgctxt "module name"
1345
+ msgid "Smart YouTube httpv:// URLs"
1346
+ msgstr "Smart YouTube httpv:// URLs"
1347
+
1348
+ #: includes/extra-strings.php:21
1349
  msgctxt "module name"
1350
  msgid "YouTube API"
1351
  msgstr "YouTube API"
1352
 
1353
+ #: includes/extra-strings.php:22
1354
  msgctxt "module name"
1355
  msgid "Posts"
1356
  msgstr "投稿"
1357
 
1358
+ #: includes/extra-strings.php:23
1359
  msgctxt "module name"
1360
  msgid "Pages"
1361
  msgstr "ページ"
1362
 
1363
+ #: includes/instances.php:105 includes/instances.php:161
 
 
1364
  msgid "Container %s[%d] not found"
1365
  msgstr "%s[%d] コンテナーが見つかりません。"
1366
 
1367
+ #: includes/instances.php:114 includes/instances.php:170
 
 
1368
  msgid "Parser '%s' not found."
1369
  msgstr "パーサー '%s' が見つかりません。"
1370
 
1371
+ #: includes/link-query.php:26
1372
  msgid "Broken"
1373
  msgstr "リンクエラー"
1374
 
1375
+ #: includes/link-query.php:28
1376
  msgid "No broken links found"
1377
  msgstr "リンクエラーは見つかりませんでした"
1378
 
1379
+ #: includes/link-query.php:36
1380
  msgid "Redirects"
1381
  msgstr "リダイレクト"
1382
 
1383
+ #: includes/link-query.php:37
1384
  msgid "Redirected Links"
1385
  msgstr "リダイレクトリンク"
1386
 
1387
+ #: includes/link-query.php:38
1388
  msgid "No redirects found"
1389
  msgstr "リダイレクトが見つかりませんでした"
1390
 
1391
+ #: includes/link-query.php:46
1392
+ msgid "Dismissed"
1393
+ msgstr "リンク切れから解除されました"
1394
+
1395
+ #: includes/link-query.php:47
1396
+ msgid "Dismissed Links"
1397
+ msgstr "削除したリンク"
1398
+
1399
+ #: includes/link-query.php:48
1400
+ msgid "No dismissed links found"
1401
+ msgstr "削除したリンクは見つかりませんでした"
1402
+
1403
+ #: includes/link-query.php:56
1404
  msgid "All"
1405
  msgstr "すべて"
1406
 
1407
+ #: includes/link-query.php:57
1408
  msgid "Detected Links"
1409
  msgstr "すべてのリンク"
1410
 
1411
+ #: includes/link-query.php:58
1412
  msgid "No links found (yet)"
1413
  msgstr "リンクは(まだ)見つかっていません"
1414
 
1415
+ #: includes/link-query.php:66
1416
  msgid "Search Results"
1417
  msgstr "検索結果"
1418
 
1419
+ #: includes/link-query.php:67 includes/link-query.php:114
 
1420
  msgid "No links found for your query"
1421
  msgstr "見つかりませんでした"
1422
 
1423
+ #: includes/links.php:222
1424
  msgid "The plugin script was terminated while trying to check the link."
1425
  msgstr "リンクを確認しようとしたとき、プラグインかスクリプトが終了しました。"
1426
 
1427
+ #: includes/links.php:268
1428
  msgid "The plugin doesn't know how to check this type of link."
1429
  msgstr "未知のリンクの種類です。"
1430
 
1431
+ #: includes/links.php:361
1432
  msgid "Link is valid."
1433
  msgstr "リンクは有効です。"
1434
 
1435
+ #: includes/links.php:363
1436
  msgid "Link is broken."
1437
  msgstr "リンクエラーです。"
1438
 
1439
+ #: includes/links.php:582 includes/links.php:684 includes/links.php:711
 
 
1440
  msgid "Link is not valid"
1441
  msgstr "リンクが有効ではありません。"
1442
 
1443
+ #: includes/links.php:599
1444
+ msgid ""
1445
+ "This link can not be edited because it is not used anywhere on this site."
1446
+ msgstr ""
1447
+ "それはこのサイトで使用されていないためこのリンクを編集することはできません。"
1448
 
1449
+ #: includes/links.php:625
1450
  msgid "Failed to create a DB entry for the new URL."
1451
  msgstr "新しいURLのDBエントリの作成に失敗しました。"
1452
 
1453
+ #: includes/links.php:691
1454
  msgid "This link is not a redirect"
1455
  msgstr "このリンクはリダイレクトされていません。"
1456
 
1457
+ #: includes/links.php:738 includes/links.php:775
 
1458
  msgid "Couldn't delete the link's database record"
1459
  msgstr "リンクのデータベースのレコードを削除できませんでした。"
1460
 
1461
+ #: includes/links.php:849
1462
  msgctxt "link status"
1463
  msgid "Unknown"
1464
  msgstr "不明"
1465
 
1466
+ #: includes/links.php:863 modules/checkers/http.php:289
1467
+ #: modules/extras/mediafire.php:101
1468
  msgid "Unknown Error"
1469
  msgstr "不明なエラー"
1470
 
1471
+ #: includes/links.php:887
1472
  msgid "Not checked"
1473
  msgstr "チェックされていません。"
1474
 
1475
+ #: includes/links.php:890
1476
  msgid "False positive"
1477
  msgstr "見つかりませんでした"
1478
 
1479
+ #: includes/links.php:893 modules/extras/fileserve.php:121
1480
+ #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1481
+ #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1482
  msgctxt "link status"
1483
  msgid "OK"
1484
  msgstr "OK"
1485
 
 
 
 
 
 
 
1486
  #: includes/parsers.php:109
 
1487
  msgid "Editing is not implemented in the '%s' parser"
1488
  msgstr "編集は、'%s'パーサーでは実装されていません"
1489
 
1490
  #: includes/parsers.php:124
 
1491
  msgid "Unlinking is not implemented in the '%s' parser"
1492
  msgstr "'%s'パーサーではリンク解除は実装されていません"
1493
 
1494
+ #: includes/utility-class.php:245
 
1495
  msgid "%d second"
1496
  msgid_plural "%d seconds"
1497
  msgstr[0] "%d秒"
1498
  msgstr[1] "%d秒"
1499
 
1500
+ #: includes/utility-class.php:246
 
1501
  msgid "%d second ago"
1502
  msgid_plural "%d seconds ago"
1503
  msgstr[0] "%d秒前"
1504
  msgstr[1] "%d秒前"
1505
 
1506
+ #: includes/utility-class.php:249
 
1507
  msgid "%d minute"
1508
  msgid_plural "%d minutes"
1509
  msgstr[0] "%d分"
1510
  msgstr[1] "%d分"
1511
 
1512
+ #: includes/utility-class.php:250
 
1513
  msgid "%d minute ago"
1514
  msgid_plural "%d minutes ago"
1515
  msgstr[0] "%d分前"
1516
  msgstr[1] "%d分前"
1517
 
1518
+ #: includes/utility-class.php:253
 
1519
  msgid "%d hour"
1520
  msgid_plural "%d hours"
1521
  msgstr[0] "%d時間"
1522
  msgstr[1] "%d時間"
1523
 
1524
+ #: includes/utility-class.php:254
 
1525
  msgid "%d hour ago"
1526
  msgid_plural "%d hours ago"
1527
  msgstr[0] "%d時間前"
1528
  msgstr[1] "%d時間前"
1529
 
1530
+ #: includes/utility-class.php:257
 
1531
  msgid "%d day"
1532
  msgid_plural "%d days"
1533
  msgstr[0] "%d日"
1534
  msgstr[1] "%d日"
1535
 
1536
+ #: includes/utility-class.php:258
 
1537
  msgid "%d day ago"
1538
  msgid_plural "%d days ago"
1539
  msgstr[0] "%d日前"
1540
  msgstr[1] "%d日前"
1541
 
1542
+ #: includes/utility-class.php:261
 
1543
  msgid "%d month"
1544
  msgid_plural "%d months"
1545
  msgstr[0] "%d分"
1546
  msgstr[1] "%d分"
1547
 
1548
+ #: includes/utility-class.php:262
 
1549
  msgid "%d month ago"
1550
  msgid_plural "%d months ago"
1551
  msgstr[0] "%dヶ月前"
1552
  msgstr[1] "%dヶ月前"
1553
 
1554
+ #: modules/checkers/http.php:268
1555
  msgid "Server Not Found"
1556
  msgstr "サーバーが見つかりません"
1557
 
1558
+ #: modules/checkers/http.php:283
1559
  msgid "Connection Failed"
1560
  msgstr "接続に失敗しました"
1561
 
1562
+ #: modules/checkers/http.php:318 modules/checkers/http.php:388
 
 
1563
  msgid "HTTP code : %d"
1564
  msgstr "HTTP コード : %d"
1565
 
1566
+ #: modules/checkers/http.php:320 modules/checkers/http.php:390
 
1567
  msgid "(No response)"
1568
  msgstr "(応答なし)"
1569
 
1570
+ #: modules/checkers/http.php:326
1571
  msgid "Most likely the connection timed out or the domain doesn't exist."
1572
  msgstr "ドメインが存在しないかサーバーが反応していない可能性があります。"
1573
 
1574
+ #: modules/checkers/http.php:397
1575
  msgid "Request timed out."
1576
  msgstr "要求がタイムアウトしました。"
1577
 
1578
+ #: modules/checkers/http.php:415
1579
  msgid "Using Snoopy"
1580
  msgstr "Snoopyを使用"
1581
 
1583
  msgid "Bookmark"
1584
  msgstr "ブックマーク"
1585
 
1586
+ #: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
 
1587
  msgid "Edit this bookmark"
1588
  msgstr "このブックマークを編集"
1589
 
1590
  #: modules/containers/blogroll.php:47
 
1591
  msgid ""
1592
  "You are about to delete this link '%s'\n"
1593
  " 'Cancel' to stop, 'OK' to delete."
1596
  "「OK」で削除、「キャンセル」で中止します。"
1597
 
1598
  #: modules/containers/blogroll.php:97
 
1599
  msgid "Updating bookmark %d failed"
1600
  msgstr "ブックマーク%dの更新に失敗しました"
1601
 
1602
  #: modules/containers/blogroll.php:128
 
1603
  msgid "Failed to delete blogroll link \"%s\" (%d)"
1604
  msgstr "ブログロールのリンク '%s' を削除できませんでした (%d)"
1605
 
1606
+ #: modules/containers/blogroll.php:298
 
1607
  msgid "%d blogroll link deleted."
1608
  msgid_plural "%d blogroll links deleted."
1609
  msgstr[0] "%dのブログロールのリンクを削除しました。"
1610
  msgstr[1] "%dのブログロールのリンクを削除しました。"
1611
 
1612
  #: modules/containers/comment.php:53
 
1613
  msgid "Updating comment %d failed"
1614
  msgstr "%dのコメント更新に失敗しました。"
1615
 
1616
  #: modules/containers/comment.php:74
 
1617
  msgid "Failed to delete comment %d"
1618
  msgstr "%dのコメントを削除できませんでした。"
1619
 
1620
  #: modules/containers/comment.php:95
 
1621
  msgid "Can't move comment %d to the trash"
1622
  msgstr "ゴミ箱に%dを移動できません。"
1623
 
1624
+ #: modules/containers/comment.php:153 modules/containers/comment.php:195
 
1625
  msgid "Edit comment"
1626
  msgstr "コメントを編集"
1627
 
1646
  msgid "Comment"
1647
  msgstr "コメント"
1648
 
1649
+ #: modules/containers/comment.php:355
 
1650
  msgid "%d comment has been deleted."
1651
  msgid_plural "%d comments have been deleted."
1652
  msgstr[0] "%dのコメントが削除されました。"
1653
  msgstr[1] "%dのコメントが削除されました。"
1654
 
1655
+ #: modules/containers/comment.php:374
 
1656
  msgid "%d comment moved to the Trash."
1657
  msgid_plural "%d comments moved to the Trash."
1658
  msgstr[0] "%dコメントをゴミ箱に移動しました。"
1659
  msgstr[1] "%dコメントをゴミ箱に移動しました。"
1660
 
1661
+ #: modules/containers/custom_field.php:85
1662
+ msgid "Failed to update the meta field '%s' on %s [%d]"
1663
+ msgstr "メタフィールド%s [%d]を'%s'に更新するのに失敗しました。"
1664
+
1665
+ #: modules/containers/custom_field.php:115
1666
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
1667
+ msgstr "メタフィールド%s [%d]の'%s'の削除に失敗しました。"
1668
+
1669
+ #: modules/containers/custom_field.php:197
1670
  msgid "Edit this post"
1671
  msgstr "この記事を編集"
1672
 
1673
+ #: modules/containers/custom_field.php:227
 
1674
  msgid "View \"%s\""
1675
  msgstr "\"%s\" を見る"
1676
 
1677
+ #: modules/containers/dummy.php:34 modules/containers/dummy.php:45
 
 
1678
  msgid "I don't know how to edit a '%s' [%d]."
1679
  msgstr "不明なエラーのため、'%s' [%d]を編集することができません。"
1680
 
1681
+ #: modules/extras/dailymotion-embed.php:23
1682
+ msgid "DailyMotion Video"
1683
+ msgstr "DailyMotion動画"
1684
+
1685
+ #: modules/extras/dailymotion-embed.php:24
1686
+ msgid "Embedded DailyMotion video"
1687
+ msgstr "埋め込まれたDailyMotion動画"
1688
+
1689
+ #: modules/extras/embed-parser-base.php:197
1690
+ msgid ""
1691
+ "Embedded videos can't be edited using Broken Link Checker. Please edit or "
1692
+ "replace the video in question manually."
1693
+ msgstr ""
1694
+ "埋め込みビデオは、リンク切れチェッカーを使用して編集することはできません。手"
1695
+ "動で問題のビデオを編集したり、交換してください。"
1696
+
1697
+ #: modules/extras/fileserve.php:55
1698
+ msgid "Using FileServe API"
1699
+ msgstr "FileServe APIを使う"
1700
+
1701
+ #: modules/extras/fileserve.php:112 modules/extras/mediafire.php:91
1702
+ #: modules/extras/mediafire.php:96 modules/extras/megaupload.php:81
1703
+ #: modules/extras/megaupload.php:123 modules/extras/rapidshare.php:139
1704
+ msgid "Not Found"
1705
+ msgstr "見つかりません"
1706
+
1707
+ #: modules/extras/fileserve.php:115
1708
+ msgid "FileServe : %d %s"
1709
+ msgstr "ふぁいるさーばー: %d %s"
1710
+
1711
+ #: modules/extras/googlevideo-embed.php:24
1712
+ msgid "GoogleVideo Video"
1713
+ msgstr "GoogleVideo動画"
1714
+
1715
+ #: modules/extras/googlevideo-embed.php:25
1716
+ msgid "Embedded GoogleVideo video"
1717
+ msgstr "埋め込まれたGoogleVideo動画"
1718
+
1719
+ #: modules/extras/megaupload.php:130
1720
+ msgid "File Temporarily Unavailable"
1721
+ msgstr "ファイルが一時的に使用できません"
1722
+
1723
+ #: modules/extras/megaupload.php:136
1724
+ msgid "API Error"
1725
+ msgstr "APIエラー"
1726
+
1727
+ #: modules/extras/megavideo-embed.php:24
1728
+ msgid "Megavideo Video"
1729
+ msgstr "Megavideo動画"
1730
+
1731
+ #: modules/extras/megavideo-embed.php:25
1732
+ msgid "Embedded Megavideo video"
1733
+ msgstr "埋め込まれたMegavideo動画"
1734
+
1735
+ #: modules/extras/rapidshare.php:51
1736
+ msgid "Using RapidShare API"
1737
+ msgstr "RapidShare APIを使う"
1738
+
1739
+ #: modules/extras/rapidshare.php:158
1740
+ msgid "RS Server Down"
1741
+ msgstr "RSサーバーが見つかりません"
1742
+
1743
+ #: modules/extras/rapidshare.php:165
1744
+ msgid "File Blocked"
1745
+ msgstr "ファイルが壊れています"
1746
+
1747
+ #: modules/extras/rapidshare.php:172
1748
+ msgid "File Locked"
1749
+ msgstr "ファイルがロックされています"
1750
+
1751
+ #: modules/extras/rapidshare.php:183
1752
+ msgid "RapidShare : %s"
1753
+ msgstr "RapidShare : %s"
1754
+
1755
+ #: modules/extras/rapidshare.php:189
1756
+ msgid "RapidShare API error: %s"
1757
+ msgstr "RapidShare API エラー: %s"
1758
+
1759
+ #: modules/extras/vimeo-embed.php:24
1760
+ msgid "Vimeo Video"
1761
+ msgstr "Vimeo動画"
1762
+
1763
+ #: modules/extras/vimeo-embed.php:25
1764
+ msgid "Embedded Vimeo video"
1765
+ msgstr "埋め込まれたVimeo動画"
1766
+
1767
+ #: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
1768
+ msgid "YouTube Video"
1769
+ msgstr "YouTubeの動画"
1770
+
1771
+ #: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
1772
+ msgid "Embedded YouTube video"
1773
+ msgstr "埋め込まれたYouTube動画"
1774
+
1775
+ #: modules/extras/youtube-playlist-embed.php:24
1776
+ msgid "YouTube Playlist"
1777
+ msgstr "YouTubeプレイリスト"
1778
+
1779
+ #: modules/extras/youtube-playlist-embed.php:25
1780
+ msgid "Embedded YouTube playlist"
1781
+ msgstr "埋め込まれたYouTubeプレイリスト"
1782
+
1783
+ #: modules/extras/youtube.php:124 modules/extras/youtube.php:127
1784
+ msgid "Video Not Found"
1785
+ msgstr "ビデオが見つかりません"
1786
+
1787
+ #: modules/extras/youtube.php:135
1788
+ msgid "Video Removed"
1789
+ msgstr "動画が削除されています"
1790
+
1791
+ #: modules/extras/youtube.php:143
1792
+ msgid "Invalid Video ID"
1793
+ msgstr "無効なVideo ID"
1794
+
1795
+ #: modules/extras/youtube.php:155
1796
+ msgid "Video OK"
1797
+ msgstr "動画は大丈夫です。"
1798
+
1799
+ #: modules/extras/youtube.php:156 modules/extras/youtube.php:177
1800
+ #: modules/extras/youtube.php:249 modules/extras/youtube.php:289
1801
+ msgid "OK"
1802
+ msgstr "OK"
1803
+
1804
+ #: modules/extras/youtube.php:170 modules/extras/youtube.php:271
1805
+ msgid "Video status : %s%s"
1806
+ msgstr "動画ステータス : %s%s"
1807
+
1808
+ #: modules/extras/youtube.php:182 modules/extras/youtube.php:280
1809
+ msgid "Video Restricted"
1810
+ msgstr "ビデオ制限"
1811
+
1812
+ #: modules/extras/youtube.php:199 modules/extras/youtube.php:305
1813
+ msgid "Unknown YouTube API response received."
1814
+ msgstr "不明なYouTube APIレスポンスを受信しました。"
1815
+
1816
+ #: modules/extras/youtube.php:217 modules/extras/youtube.php:220
1817
+ msgid "Playlist Not Found"
1818
+ msgstr "プレイリストが見つかりません"
1819
+
1820
+ #: modules/extras/youtube.php:227
1821
+ msgid "Playlist Restricted"
1822
+ msgstr "プレイリスト制限"
1823
+
1824
+ #: modules/extras/youtube.php:234
1825
+ msgid "Invalid Playlist"
1826
+ msgstr "無効なプレイリスト"
1827
+
1828
+ #: modules/extras/youtube.php:248
1829
+ msgid "Playlist OK"
1830
+ msgstr "プレイリストは大丈夫です"
1831
+
1832
+ #: modules/extras/youtube.php:255
1833
+ msgid "This playlist has no entries or all entries have been deleted."
1834
+ msgstr ""
1835
+ "このプレイリストはエントリがないか、すべてのエントリが削除されています。"
1836
+
1837
+ #: modules/extras/youtube.php:256
1838
+ msgid "Empty Playlist"
1839
+ msgstr "プレイリストが空です"
1840
+
1841
+ #: modules/parsers/image.php:164
1842
  msgid "Image"
1843
  msgstr "イメージ"
1844
 
1845
+ #: modules/parsers/metadata.php:119
1846
  msgid "Custom field"
1847
  msgstr "カスタムフィールド"
1848
 
1851
  msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1852
 
1853
  #. Description of the plugin/theme
1854
+ msgid ""
1855
+ "Checks your blog for broken links and missing images and notifies you on the "
1856
+ "dashboard if any are found."
1857
+ msgstr ""
1858
+ "リンクエラーやリンクエラーの画像がないかブログをチェックし、見つかった場合"
1859
+ "は、ダッシュボード等で通知します。"
1860
 
1861
  #. Author of the plugin/theme
1862
  msgid "Janis Elsts"
1863
  msgstr "Janis Elsts"
1864
 
1865
  #. Author URI of the plugin/theme
1866
+ msgid "http://w-shadow.com/"
1867
+ msgstr "http://w-shadow.com/"
1868
+
1869
+ #~ msgid ""
1870
+ #~ "Error: The plugin's database tables are not up to date! (Current "
1871
+ #~ "version : %d, expected : %d)"
1872
+ #~ msgstr ""
1873
+ #~ "エラーが発生しました:プラグインのデータベーステーブルを最新の状態にされて"
1874
+ #~ "いません! (現在のバージョン:%d, 予期されるバージョン: %d)"
1875
+
1876
+ #~ msgid "Custom temporary directory"
1877
+ #~ msgstr "一時ディレクトリ"
1878
+
1879
+ #~ msgid "Error : This directory isn't writable by PHP."
1880
+ #~ msgstr "エラー : PHP が書き込み可能ではありません。"
1881
+
1882
+ #~ msgid "Error : This directory doesn't exist."
1883
+ #~ msgstr "エラー : このディレクトリーが存在しません。"
1884
+
1885
+ #~ msgid ""
1886
+ #~ "Set this field if you want the plugin to use a custom directory for its "
1887
+ #~ "lockfiles. Otherwise, leave it blank."
1888
+ #~ msgstr ""
1889
+ #~ "ロックファイルにカスタムディレクトリを使用するには、このフィールドを設定し"
1890
+ #~ "ます。変える必要がない場合は、このフィールドを空白にしておいてください。"
1891
+
1892
+ #~ msgid "Upgrade to Pro to enable this feature"
1893
+ #~ msgstr "この機能はプロ版でのみ使用できます"
1894
+
1895
+ #~ msgid "Check URLs entered in these custom fields (one per line) :"
1896
+ #~ msgstr ""
1897
+ #~ "これらのカスタム フィールド (1 行に 1 つ) で入力した URL を確認します:"
1898
+
1899
+ #~ msgid ""
1900
+ #~ "The current temporary directory is not accessible; please <a href=\"%s"
1901
+ #~ "\">set a different one</a>."
1902
+ #~ msgstr ""
1903
+ #~ "現在の一時ディレクトリにアクセス出来ません。別のディレクトリーを<a href="
1904
+ #~ "\"%s\">指定</a>してください。"
1905
+
1906
+ #~ msgid ""
1907
+ #~ "Please make the directory <code>%1$s</code> writable by plugins or <a "
1908
+ #~ "href=\"%2$s\">set a custom temporary directory</a>."
1909
+ #~ msgstr ""
1910
+ #~ "ディレクトリ <code>%1$s</code> プラグインによって書き込み可能にするか、カ"
1911
+ #~ "スタム一時ディレクトリを <a href=\"%2$s\">設定</a>してください。"
1912
+
1913
+ #~ msgid "Broken Link Checker can't create a lockfile."
1914
+ #~ msgstr "Broken Link Checker ロックファイルを作成できません。"
1915
+
1916
+ #~ msgid ""
1917
+ #~ "The plugin uses a file-based locking mechanism to ensure that only one "
1918
+ #~ "instance of the resource-heavy link checking algorithm is running at any "
1919
+ #~ "given time. Unfortunately, BLC can't find a writable directory where it "
1920
+ #~ "could store the lockfile - it failed to detect the location of your "
1921
+ #~ "server's temporary directory, and the plugin's own directory isn't "
1922
+ #~ "writable by PHP. To fix this problem, please make the plugin's directory "
1923
+ #~ "writable or enter a specify a custom temporary directory in the plugin's "
1924
+ #~ "settings."
1925
+ #~ msgstr ""
1926
+ #~ "このプラグインは、リソースの重いリンクチェックアルゴリズムの1つだけのイン"
1927
+ #~ "スタンスが任意の時点で実行しているように、ファイルベースのロックメカニズム"
1928
+ #~ "を使用します。残念ながら、ロックファイルを保存できる書き込み可能なディレク"
1929
+ #~ "トリを見つけることができません。- サーバーの一時ディレクトリの場所を検出で"
1930
+ #~ "きませんでしたし、プラグインのディレクトリを PHP が書き込み可能ではありま"
1931
+ #~ "せん。この問題を解決するには、プラグインのディレクトリを書き込み可能にする"
1932
+ #~ "か、プラグインの設定でカスタムの一時ディレクトリを指定してください。"
1933
+
1934
+ #~ msgid ""
1935
+ #~ "Can't create a lockfile. Please specify a custom temporary directory."
1936
+ #~ msgstr ""
1937
+ #~ "ロックファイルを作成することはできません。 カスタムの一時ディレクトリを指"
1938
+ #~ "定してください。"
1939
+
1940
+ #~ msgid "Cancel URL editing"
1941
+ #~ msgstr "URLの編集をキャンセル"
1942
+
1943
+ #~ msgctxt "module name"
1944
+ #~ msgid "Name"
1945
+ #~ msgstr "名前"
1946
 
1947
  #~ msgid ""
1948
  #~ "Unexpected error: The plugin doesn't know how to upgrade its database to "
languages/broken-link-checker-nl_NL.mo CHANGED
Binary file
languages/broken-link-checker-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Broken-link-checker\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
- "POT-Creation-Date: 2013-10-14 09:34:17+00:00\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Robin Roelofsen <info@dreamdesignsolutions.nl>\n"
8
  "Language-Team: Brokenlinkchecker <gvmelle@gmail.com>\n"
@@ -14,11 +14,11 @@ msgstr ""
14
  "X-Poedit-KeywordsList: __;_e;_c\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Generator: Poedit 1.5.7\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
- #: core/core.php:153 includes/admin/links-page-js.php:37
22
  msgid "Loading..."
23
  msgstr "Aan het laden..."
24
 
@@ -59,63 +59,63 @@ msgstr "Ga naar Verbroken Links"
59
  msgid "Settings"
60
  msgstr "Instellingen"
61
 
62
- #: core/core.php:538
63
  msgid "Settings saved."
64
  msgstr "Instellingen opgeslagen."
65
 
66
- #: core/core.php:544
67
  msgid "Thank you for your donation!"
68
  msgstr "Bedankt voor je donatie!"
69
 
70
- #: core/core.php:552
71
  msgid "Complete site recheck started."
72
  msgstr "Volledige site controle begonnen."
73
 
74
- #: core/core.php:561
75
  msgid "Details"
76
  msgstr "Details"
77
 
78
- #: core/core.php:575
79
  msgid "General"
80
  msgstr "Algemeen"
81
 
82
- #: core/core.php:576
83
  msgid "Look For Links In"
84
  msgstr "Zoek Naar Links In"
85
 
86
- #: core/core.php:577
87
  msgid "Which Links To Check"
88
  msgstr "Deze Links Controleren"
89
 
90
- #: core/core.php:578
91
  msgid "Protocols & APIs"
92
  msgstr "Protocollen & APIs"
93
 
94
- #: core/core.php:579
95
  msgid "Advanced"
96
  msgstr "Geavanceerd"
97
 
98
- #: core/core.php:594
99
  msgid "Broken Link Checker Options"
100
  msgstr "Broken Link Checker Opties"
101
 
102
- #: core/core.php:636 includes/admin/table-printer.php:200
103
  msgid "Status"
104
  msgstr "Status:"
105
 
106
- #: core/core.php:638 includes/admin/options-page-js.php:56
107
  msgid "Show debug info"
108
  msgstr "Toon debug informatie"
109
 
110
- #: core/core.php:666
111
  msgid "Check each link"
112
  msgstr "Controleer iedere link:"
113
 
114
- #: core/core.php:671
115
  msgid "Every %s hours"
116
  msgstr "Elke %s uur"
117
 
118
- #: core/core.php:680
119
  msgid ""
120
  "Existing links will be checked this often. New links will usually be checked "
121
  "ASAP."
@@ -123,153 +123,153 @@ msgstr ""
123
  "Bestaande links zullen met deze regelmaat worden gecontroleerd. Nieuwe links "
124
  "worden meestal zo snel mogelijk gecontroleerd. "
125
 
126
- #: core/core.php:687
127
  msgid "E-mail notifications"
128
  msgstr "E-mail meldingen:"
129
 
130
- #: core/core.php:693
131
  msgid "Send me e-mail notifications about newly detected broken links"
132
  msgstr "Stuur mij meldingen via e-mail over nieuw ontdekte verbroken links"
133
 
134
- #: core/core.php:701
135
  msgid "Send authors e-mail notifications about broken links in their posts"
136
  msgstr ""
137
  "Stuur schrijvers meldingen via e-mail over verbroken links in hun berichten"
138
 
139
- #: core/core.php:708
140
  msgid "Notification e-mail address"
141
  msgstr "E-mail adres voor meldingen:"
142
 
143
- #: core/core.php:720
144
  msgid ""
145
  "Leave empty to use the e-mail address specified in Settings &rarr; General."
146
  msgstr ""
147
  "Laat dit veld leeg om het e-mail adres te gebruiken dat is opgegeven bij "
148
  "Instellingen &rarr; Algemeen."
149
 
150
- #: core/core.php:727
151
  msgid "Link tweaks"
152
  msgstr "Link aanpassingen:"
153
 
154
- #: core/core.php:733
155
  msgid "Apply custom formatting to broken links"
156
  msgstr "Speciale formattering toepassen op verbroken links"
157
 
158
- #: core/core.php:737 core/core.php:768
159
  msgid "Edit CSS"
160
  msgstr "Bewerk CSS"
161
 
162
- #: core/core.php:753
163
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
164
  msgstr "Voorbeeld: Lorem ipsum <a %s>verbroken link</a>, dolor sit amet."
165
 
166
- #: core/core.php:756 core/core.php:787
167
  msgid "Click \"Save Changes\" to update example output."
168
  msgstr "Klik op \"Instellingen opslaan\" om het voorbeeld te verversen."
169
 
170
- #: core/core.php:764
171
  msgid "Apply custom formatting to removed links"
172
  msgstr "Speciale formattering toepassen op verwijderde links"
173
 
174
- #: core/core.php:784
175
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
176
  msgstr ""
177
  "Voorbeeld: Lorem ipsum <span %s>verwijderde link</span>, dolor sit amet."
178
 
179
- #: core/core.php:797
180
  msgid "Stop search engines from following broken links"
181
  msgstr "Verhinder dat zoekmachines verbroken links volgen"
182
 
183
- #: core/core.php:805
184
  msgctxt "settings page"
185
  msgid "Suggestions"
186
  msgstr "Suggesties:"
187
 
188
- #: core/core.php:811
189
  msgid "Suggest alternatives to broken links"
190
  msgstr "Suggereer alternatieven voor verbroken links"
191
 
192
- #: core/core.php:827
193
  msgid "Look for links in"
194
  msgstr "Zoek naar links in:"
195
 
196
- #: core/core.php:838
197
  msgid "Post statuses"
198
  msgstr "Bericht statussen:"
199
 
200
- #: core/core.php:871
201
  msgid "Link types"
202
  msgstr "Linksoorten:"
203
 
204
- #: core/core.php:877
205
  msgid "Error : All link parsers missing!"
206
  msgstr "Fout: alle linkparsers ontbreken! "
207
 
208
- #: core/core.php:884
209
  msgid "Exclusion list"
210
  msgstr "Uitsluitingslijst:"
211
 
212
- #: core/core.php:885
213
  msgid ""
214
  "Don't check links where the URL contains any of these words (one per line) :"
215
  msgstr ""
216
  "Controleer geen links waarbij de URL &eacute;&eacute;n of meerdere van deze "
217
  "woorden bevat (&eacute;&eacute;n per regel):"
218
 
219
- #: core/core.php:903
220
  msgid "Check links using"
221
  msgstr "Controleer links die gebruik maken van:"
222
 
223
- #: core/core.php:922 includes/links.php:857
224
  msgid "Timeout"
225
  msgstr "Timeout:"
226
 
227
- #: core/core.php:928 core/core.php:997 core/core.php:2904
228
  msgid "%s seconds"
229
  msgstr "%s seconden"
230
 
231
- #: core/core.php:937
232
  msgid "Links that take longer than this to load will be marked as broken."
233
  msgstr ""
234
  "Links die er langer over doen om te laden zullen worden aangemerkt als "
235
  "verbroken."
236
 
237
- #: core/core.php:944
238
  msgid "Link monitor"
239
  msgstr "Linkcontrole:"
240
 
241
- #: core/core.php:952
242
  msgid "Run continuously while the Dashboard is open"
243
  msgstr "Draai continu zolang het Dashboard openstaat"
244
 
245
- #: core/core.php:960
246
  msgid "Run hourly in the background"
247
  msgstr "Draai ieder uur in de achtergrond"
248
 
249
- #: core/core.php:968
250
  msgid "Show the dashboard widget for"
251
  msgstr "Laat het Dashboard widget zien aan:"
252
 
253
- #: core/core.php:973
254
  msgctxt "dashboard widget visibility"
255
  msgid "Administrator"
256
  msgstr "Beheerder"
257
 
258
- #: core/core.php:974
259
  msgctxt "dashboard widget visibility"
260
  msgid "Editor and above"
261
  msgstr "Redacteur en hoger"
262
 
263
- #: core/core.php:975
264
  msgctxt "dashboard widget visibility"
265
  msgid "Nobody (disables the widget)"
266
  msgstr "Niemand (deze optie zet de widget uit)"
267
 
268
- #: core/core.php:991
269
  msgid "Max. execution time"
270
  msgstr "Maximale uitvoeringstijd:"
271
 
272
- #: core/core.php:1008
273
  msgid ""
274
  "The plugin works by periodically launching a background job that parses your "
275
  "posts for links, checks the discovered URLs, and performs other time-"
@@ -281,15 +281,15 @@ msgstr ""
281
  "zaken uitvoert. Stel hier in hoe lang de linkcontrole elke keer maximaal mag "
282
  "draaien voor hij wordt gestopt."
283
 
284
- #: core/core.php:1017
285
  msgid "Server load limit"
286
  msgstr "Serverbelasting limiet:"
287
 
288
- #: core/core.php:1032
289
  msgid "Current load : %s"
290
  msgstr "Huidige serverbelasting: %s"
291
 
292
- #: core/core.php:1037
293
  msgid ""
294
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
295
  "a> rises above this number. Leave this field blank to disable load limiting."
@@ -298,11 +298,11 @@ msgstr ""
298
  "\">serverbelasting</a> boven dit getal uitkomt. Laat dit veld leeg om "
299
  "belastinglimitering uit te zetten."
300
 
301
- #: core/core.php:1046
302
  msgid "Not available"
303
  msgstr "Niet beschikbaar"
304
 
305
- #: core/core.php:1048
306
  msgid ""
307
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
308
  "code> is present and accessible."
@@ -310,31 +310,53 @@ msgstr ""
310
  "Belastinglimitering werkt alleen op Linux-achtige systemen waar <code>/proc/"
311
  "loadavg</code> aanwezig en bereikbaar is."
312
 
313
- #: core/core.php:1056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  msgid "Forced recheck"
315
  msgstr "Geforceerd controleren:"
316
 
317
- #: core/core.php:1059
318
  msgid "Re-check all pages"
319
  msgstr "Controleer nu all pagina's"
320
 
321
- #: core/core.php:1063
322
  msgid ""
323
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
324
  "database and recheck the entire site from scratch."
325
  msgstr ""
326
- "De \"Nucleaire Optie\". Wanneer je op deze knop klikt maakt de plugin zijn "
327
- "link database leeg, en wordt de volledige site opnieuw gecontroleerd."
328
 
329
- #: core/core.php:1074
330
  msgid "Save Changes"
331
  msgstr "Wijzigingen Opslaan"
332
 
333
- #: core/core.php:1125
334
  msgid "Configure"
335
  msgstr "Configureer"
336
 
337
- #: core/core.php:1207
338
  msgid ""
339
  "Enter the names of custom fields you want to check (one per line). If a "
340
  "field contains HTML code, prefix its name with <code>html:</code>. For "
@@ -344,71 +366,71 @@ msgstr ""
344
  "&eacute;n per regel). Wanneer een veld HTML code bevat, begin de veldnaam "
345
  "dan met <code>html:</code>. Bijvoorbeeld, <code>html:field_name</code>."
346
 
347
- #: core/core.php:1338 core/core.php:1421 core/core.php:1453
348
  msgid "Database error : %s"
349
  msgstr "Database fout: %s"
350
 
351
- #: core/core.php:1403
352
  msgid "You must enter a filter name!"
353
  msgstr "Je moet een filternaam invullen!"
354
 
355
- #: core/core.php:1407
356
  msgid "Invalid search query."
357
  msgstr "Onjuiste zoekopdracht"
358
 
359
- #: core/core.php:1416
360
  msgid "Filter \"%s\" created"
361
  msgstr "Filter \"%s\" aangemaakt"
362
 
363
- #: core/core.php:1443
364
  msgid "Filter ID not specified."
365
  msgstr "Filter ID niet opgegeven."
366
 
367
- #: core/core.php:1450
368
  msgid "Filter deleted"
369
  msgstr "Filter verwijderd"
370
 
371
- #: core/core.php:1497
372
  msgid "Replaced %d redirect with a direct link"
373
  msgid_plural "Replaced %d redirects with direct links"
374
  msgstr[0] "%d verwijzing vervangen door een directe link"
375
  msgstr[1] "%d verwijzingen vervangen door een directe link."
376
 
377
- #: core/core.php:1508
378
  msgid "Failed to fix %d redirect"
379
  msgid_plural "Failed to fix %d redirects"
380
  msgstr[0] "Kon %d verwijzing niet repareren"
381
  msgstr[1] "Kon %d verwijzingen niet repareren"
382
 
383
- #: core/core.php:1519
384
  msgid "None of the selected links are redirects!"
385
  msgstr "Geen van de geselecteerde links zijn verwijzingen!"
386
 
387
- #: core/core.php:1597
388
  msgid "%d link updated."
389
  msgid_plural "%d links updated."
390
  msgstr[0] "%d link bijgewerkt."
391
  msgstr[1] "%d links bijgewerkt."
392
 
393
- #: core/core.php:1608
394
  msgid "Failed to update %d link."
395
  msgid_plural "Failed to update %d links."
396
  msgstr[0] "Kon %d link niet aanpassen."
397
  msgstr[1] "Kon %d links niet aanpassen."
398
 
399
- #: core/core.php:1697
400
  msgid "%d link removed"
401
  msgid_plural "%d links removed"
402
  msgstr[0] "%d link verwijderd"
403
  msgstr[1] "%d links verwijderd"
404
 
405
- #: core/core.php:1708
406
  msgid "Failed to remove %d link"
407
  msgid_plural "Failed to remove %d links"
408
  msgstr[0] "Kon %d link niet verwijderen"
409
  msgstr[1] "Kon %d links niet verwijderen"
410
 
411
- #: core/core.php:1817
412
  msgid ""
413
  "%d item was skipped because it can't be moved to the Trash. You need to "
414
  "delete it manually."
@@ -422,225 +444,224 @@ msgstr[1] ""
422
  "%d onderdelen zijn overgeslagen omdat het niet naar de Prullenbak kan worden "
423
  "verplaatst. Je moet deze handmatig verwijderen."
424
 
425
- #: core/core.php:1839
426
  msgid "Didn't find anything to delete!"
427
  msgstr "Kon niets vinden om te verwijderen!"
428
 
429
- #: core/core.php:1867
430
  msgid "%d link scheduled for rechecking"
431
  msgid_plural "%d links scheduled for rechecking"
432
  msgstr[0] "%d link ingepland voor controle"
433
  msgstr[1] "%d links ingepland voor controle"
434
 
435
- #: core/core.php:1913 core/core.php:2522
436
  msgid "This link was manually marked as working by the user."
437
  msgstr "Deze link is handmatig aangemerkt als werkend door de gebruiker."
438
 
439
- #: core/core.php:1920
440
  msgid "Couldn't modify link %d"
441
  msgstr "Kon deze link niet bewerken: %d"
442
 
443
- #: core/core.php:1930
444
  msgid "%d link marked as not broken"
445
  msgid_plural "%d links marked as not broken"
446
  msgstr[0] "%d link gemarkeerd als niet verbroken"
447
  msgstr[1] "%d links gemarkeerd als niet verbroken"
448
 
449
- #: core/core.php:1970
450
  msgid "Table columns"
451
  msgstr "Tabel colommen"
452
 
453
- #: core/core.php:1989
454
  msgid "Show on screen"
455
  msgstr "Toon op scherm"
456
 
457
- #: core/core.php:1996
458
  msgid "links"
459
  msgstr "links"
460
 
461
- #: core/core.php:1997 includes/admin/table-printer.php:168
462
  msgid "Apply"
463
  msgstr "Toepassen"
464
 
465
- #: core/core.php:2001
466
  msgid "Misc"
467
  msgstr "Divers"
468
 
469
- #: core/core.php:2016
470
  msgid "Highlight links broken for at least %s days"
471
  msgstr "Laat links zien die minstens %s dagen verbroken zijn"
472
 
473
- #: core/core.php:2025
474
  msgid "Color-code status codes"
475
  msgstr "Kleurcodering voor status codes"
476
 
477
- #: core/core.php:2042 core/core.php:2507 core/core.php:2547 core/core.php:2580
478
- #: core/core.php:2667
479
  msgid "You're not allowed to do that!"
480
  msgstr "Je hebt geen toestemming om dat te doen!"
481
 
482
- #: core/core.php:2377
483
  msgid "View broken links"
484
  msgstr "Bekijk verbroken links"
485
 
486
- #: core/core.php:2378
487
  msgid "Found %d broken link"
488
  msgid_plural "Found %d broken links"
489
  msgstr[0] "%d verbroken link gevonden"
490
  msgstr[1] "%d verbroken links gevonden"
491
 
492
- #: core/core.php:2384
493
  msgid "No broken links found."
494
  msgstr "Geen verbroken links gevonden."
495
 
496
- #: core/core.php:2391
497
  msgid "%d URL in the work queue"
498
  msgid_plural "%d URLs in the work queue"
499
  msgstr[0] "%d URL in de wachtrij"
500
  msgstr[1] "%d URL&#x0027;s in de wachtrij"
501
 
502
- #: core/core.php:2394
503
  msgid "No URLs in the work queue."
504
  msgstr "Geen URLs meer in de wachtrij."
505
 
506
- #: core/core.php:2400
507
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
508
  msgid "%d unique URL"
509
  msgid_plural "%d unique URLs"
510
  msgstr[0] "%d unieke URL"
511
  msgstr[1] "%d unieke URLs"
512
 
513
- #: core/core.php:2404
514
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
515
  msgid "%d link"
516
  msgid_plural "%d links"
517
  msgstr[0] "%d link"
518
  msgstr[1] "%d links"
519
 
520
- #: core/core.php:2410
521
  msgid "Detected %1$s in %2$s and still searching..."
522
  msgstr "%1$s in %2$s gevonden, en nog steeds aan 't zoeken..."
523
 
524
- #: core/core.php:2416
525
  msgid "Detected %1$s in %2$s."
526
  msgstr "%1$s in %2$s gevonden."
527
 
528
- #: core/core.php:2423
529
  msgid "Searching your blog for links..."
530
  msgstr "Uw blog aan 't doorzoeken naar links..."
531
 
532
- #: core/core.php:2425
533
  msgid "No links detected."
534
  msgstr "Geen links gevonden."
535
 
536
- #: core/core.php:2451
537
  msgctxt "current load"
538
  msgid "Unknown"
539
  msgstr "Onbekend"
540
 
541
- #: core/core.php:2515 core/core.php:2555 core/core.php:2595 core/core.php:2677
542
  msgid "Oops, I can't find the link %d"
543
  msgstr "Oeps, ik kan link %d niet vinden"
544
 
545
- #: core/core.php:2528 core/core.php:2565
546
  msgid "Oops, couldn't modify the link!"
547
  msgstr "Oeps, ik kan deze link niet aanpassen!"
548
 
549
- #: core/core.php:2531 core/core.php:2568 core/core.php:2703
550
  msgid "Error : link_id not specified"
551
  msgstr "Fout : link_id niet opgegeven"
552
 
553
- #: core/core.php:2586
554
  msgid "Error : link_id or new_url not specified"
555
  msgstr "Fout: link_id of new_url niet opgegeven"
556
 
557
- #: core/core.php:2604
558
  msgid "Oops, the new URL is invalid!"
559
  msgstr "Oeps, de nieuwe URL is ongeldig!"
560
 
561
- #: core/core.php:2619
562
  msgid "An unexpected error occurred!"
563
  msgstr "Er is een onverwachte fout opgetreden!"
564
 
565
- #: core/core.php:2686
566
  msgid "An unexpected error occured!"
567
  msgstr "Er is een onverwachte fout opgetreden!"
568
 
569
- #: core/core.php:2712
570
  msgid "You don't have sufficient privileges to access this information!"
571
  msgstr "U heeft niet genoeg rechten om deze informatie te bekijken! "
572
 
573
- #: core/core.php:2725
574
  msgid "Error : link ID not specified"
575
  msgstr "Fout : link ID niet opgegeven"
576
 
577
- #: core/core.php:2739
578
  msgid "Failed to load link details (%s)"
579
  msgstr "Kon linkgegevens (%s) niet laden"
580
 
581
- #. #-#-#-#-# plugin.pot (Broken Link Checker 1.8.3) #-#-#-#-#
582
  #. Plugin Name of the plugin/theme
583
- #: core/core.php:2793
584
  msgid "Broken Link Checker"
585
  msgstr "Broken Link Checker"
586
 
587
- #: core/core.php:2813
588
  msgid "PHP version"
589
  msgstr "PHP versie"
590
 
591
- #: core/core.php:2819
592
  msgid "MySQL version"
593
  msgstr "MySQL versie"
594
 
595
- #: core/core.php:2832
596
  msgid ""
597
  "You have an old version of CURL. Redirect detection may not work properly."
598
  msgstr ""
599
  "U draait een oude versie van CURL. Omleidingsdetectie werkt misschien niet "
600
  "goed."
601
 
602
- #: core/core.php:2844 core/core.php:2860 core/core.php:2865
603
  msgid "Not installed"
604
  msgstr "Niet ge&iuml;nstalleerd."
605
 
606
- #: core/core.php:2847
607
  msgid "CURL version"
608
  msgstr "CURL versie"
609
 
610
- #: core/core.php:2853
611
  msgid "Installed"
612
  msgstr "Ge&iuml;nstalleerd."
613
 
614
- #: core/core.php:2866
615
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
616
  msgstr ""
617
  "U moet CURL of Snoopy hebben ge&iuml;nstalleerd. Anders werkt de plugin niet!"
618
 
619
- #: core/core.php:2877
620
  msgid "On"
621
  msgstr "Aan"
622
 
623
- #: core/core.php:2878
624
  msgid "Redirects may be detected as broken links when safe_mode is on."
625
  msgstr ""
626
  "Omgeleide links worden misschien gezien als verbroken links wanneer "
627
  "safe_mode aan staat."
628
 
629
- #: core/core.php:2883 core/core.php:2897
630
  msgid "Off"
631
  msgstr "Uit"
632
 
633
- #: core/core.php:2891
634
  msgid "On ( %s )"
635
  msgstr "Aan (%s)"
636
 
637
- #: core/core.php:2892
638
  msgid "Redirects may be detected as broken links when open_basedir is on."
639
  msgstr ""
640
  "Omgeleide link worden misschien gezien als verbroken links wanneer "
641
  "open_basedir aan staan."
642
 
643
- #: core/core.php:2921
644
  msgid ""
645
  "If this value is zero even after several page reloads you have probably "
646
  "encountered a bug."
@@ -648,11 +669,11 @@ msgstr ""
648
  "Wanneer deze waarde op nul staat, ook na het meerdere malen herladen van de "
649
  "pagina, heb je waarschijnlijk eenn bug ontdekt."
650
 
651
- #: core/core.php:3044 core/core.php:3159
652
  msgid "[%s] Broken links detected"
653
  msgstr "[%s] verbroken links gevonden"
654
 
655
- #: core/core.php:3049
656
  msgid "Broken Link Checker has detected %d new broken link on your site."
657
  msgid_plural ""
658
  "Broken Link Checker has detected %d new broken links on your site."
@@ -661,33 +682,33 @@ msgstr[0] ""
661
  msgstr[1] ""
662
  "Broken Link Checker heeft %d nieuwe verbroken links op jouw site gevonden."
663
 
664
- #: core/core.php:3080
665
  msgid "Here's a list of the first %d broken links:"
666
  msgid_plural "Here's a list of the first %d broken links:"
667
  msgstr[0] "Hier is een lijst van de eerste %d verbroken links:"
668
  msgstr[1] "Hier is een lijst van de eerste %d verbroken links:"
669
 
670
- #: core/core.php:3089
671
  msgid "Here's a list of the new broken links: "
672
  msgstr "Hier is een lijst van de nieuwe verbroken links:"
673
 
674
- #: core/core.php:3098
675
  msgid "Link text : %s"
676
  msgstr "Linktekst: %s"
677
 
678
- #: core/core.php:3099
679
  msgid "Link URL : <a href=\"%s\">%s</a>"
680
  msgstr "Link URL : <a href=\"%s\">%s</a>"
681
 
682
- #: core/core.php:3100
683
  msgid "Source : %s"
684
  msgstr "Bron: %s"
685
 
686
- #: core/core.php:3114
687
  msgid "You can see all broken links here:"
688
  msgstr "Je kunt hier alle verbroken links zien:"
689
 
690
- #: core/core.php:3164
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."
@@ -698,15 +719,15 @@ msgstr[1] ""
698
  "Broken Link Checker heeft %d nieuwe verbroken links in jouw berichten "
699
  "gevonden."
700
 
701
- #: core/init.php:242
702
  msgid "Once Weekly"
703
  msgstr "Wekelijks"
704
 
705
- #: core/init.php:248
706
  msgid "Twice a Month"
707
  msgstr "Twee Keer per Maand"
708
 
709
- #: core/init.php:324
710
  msgid ""
711
  "Broken Link Checker installation failed. Try deactivating and then "
712
  "reactivating the plugin."
@@ -714,92 +735,100 @@ msgstr ""
714
  "De installatie van Broken Link Checker is mislukt. Probeer de plugin te "
715
  "deactiveren en weer te activeren."
716
 
 
 
 
 
 
 
 
 
717
  #: includes/admin/db-upgrade.php:95
718
  msgid "Failed to delete old DB tables. Database error : %s"
719
  msgstr "Kon de oude databasetabellen niet verwijderen. Database fout: %s"
720
 
721
- #: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:517
722
  msgid "Wait..."
723
  msgstr "Wachten..."
724
 
725
- #: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:658
726
  msgid "Not broken"
727
  msgstr "Niet verbroken"
728
 
729
- #: includes/admin/links-page-js.php:235
730
  msgctxt "link text"
731
  msgid "(None)"
732
  msgstr "(Geen)"
733
 
734
- #: includes/admin/links-page-js.php:236
735
  msgctxt "link text"
736
  msgid "(Multiple links)"
737
  msgstr "(Meerdere links)"
738
 
739
- #: includes/admin/links-page-js.php:294
740
  msgctxt "link suggestions"
741
  msgid "Searching..."
742
  msgstr "Aan het zoeken..."
743
 
744
- #: includes/admin/links-page-js.php:295
745
  msgctxt "link suggestions"
746
  msgid "No suggestions available."
747
  msgstr "Geen suggesties beschikbaar."
748
 
749
- #: includes/admin/links-page-js.php:296
750
  msgctxt "link suggestions"
751
  msgid "Archived page from %s (via the Wayback Machine)"
752
  msgstr "Gearchiveerde pagina van %s (via de Wayback Machine)"
753
 
754
- #: includes/admin/links-page-js.php:379
755
  msgid "%d instances of the link were successfully modified."
756
  msgstr "%d links zijn met succes aangepast."
757
 
758
- #: includes/admin/links-page-js.php:385
759
  msgid ""
760
  "However, %d instances couldn't be edited and still point to the old URL."
761
  msgstr ""
762
  "Alleen konden %d links niet worden aangepast, en deze wijzen nog steeds naar "
763
  "de oude URL."
764
 
765
- #: includes/admin/links-page-js.php:391
766
  msgid "The link could not be modified."
767
  msgstr "De link kon niet worden aangepast."
768
 
769
- #: includes/admin/links-page-js.php:394
770
  msgid "The following error(s) occurred :"
771
  msgstr "De volgende fout(en) kwam(en) voor:"
772
 
773
- #: includes/admin/links-page-js.php:480
774
  msgid "Error: Link URL must not be empty."
775
  msgstr "Fout: de link URL moet ingevuld zijn."
776
 
777
- #: includes/admin/links-page-js.php:555
778
  msgid "%d instances of the link were successfully unlinked."
779
  msgstr "%d links zijn met succes verwijderd."
780
 
781
- #: includes/admin/links-page-js.php:561
782
  msgid "However, %d instances couldn't be removed."
783
  msgstr "%d links konden echter niet worden verwijderd."
784
 
785
- #: includes/admin/links-page-js.php:566
786
  msgid "The plugin failed to remove the link."
787
  msgstr "De plugin kon de link niet verwijderen."
788
 
789
- #: includes/admin/links-page-js.php:569
790
  msgid "The following error(s) occured :"
791
  msgstr "De volgende fout(en) kwam(en) voor:"
792
 
793
- #: includes/admin/links-page-js.php:577 includes/admin/table-printer.php:276
794
- #: includes/admin/table-printer.php:652
795
  msgid "Unlink"
796
  msgstr "ontkoppel"
797
 
798
- #: includes/admin/links-page-js.php:621
799
  msgid "Enter a name for the new custom filter"
800
  msgstr "Geef een naam aan het nieuwe filter"
801
 
802
- #: includes/admin/links-page-js.php:632
803
  msgid ""
804
  "You are about to delete the current filter.\n"
805
  "'Cancel' to stop, 'OK' to delete"
@@ -807,7 +836,7 @@ msgstr ""
807
  "Je staat op het punt om het huidige filter te verwijderen.\n"
808
  "'Annuleren' om te annuleren, 'OK' om te verwijderen"
809
 
810
- #: includes/admin/links-page-js.php:652
811
  msgid ""
812
  "Are you sure you want to delete all posts, bookmarks or other items that "
813
  "contain any of the selected links? This action can't be undone.\n"
@@ -818,7 +847,7 @@ msgstr ""
818
  "niet teruggedraaid worden.\n"
819
  "'Annuleren' om te annuleren, 'OK' om te verwijderen"
820
 
821
- #: includes/admin/links-page-js.php:662
822
  msgid ""
823
  "Are you sure you want to remove the selected links? This action can't be "
824
  "undone.\n"
@@ -828,11 +857,11 @@ msgstr ""
828
  "teruggedraaid worden.\n"
829
  "'Annuleren' om te annuleren, 'OK' om te verwijderen"
830
 
831
- #: includes/admin/links-page-js.php:771
832
  msgid "Enter a search string first."
833
  msgstr "Vul eerst een zoekopdracht in."
834
 
835
- #: includes/admin/links-page-js.php:778
836
  msgid "Select one or more links to edit."
837
  msgstr "Selecteer &eacute;&eacute;n of meerdere links om aan te passen."
838
 
@@ -856,11 +885,11 @@ msgstr "Zoek"
856
  msgid "Link text"
857
  msgstr "Link tekst"
858
 
859
- #: includes/admin/search-form.php:45 includes/admin/table-printer.php:205
860
  msgid "URL"
861
  msgstr "URL"
862
 
863
- #: includes/admin/search-form.php:48 includes/admin/table-printer.php:522
864
  msgid "HTTP code"
865
  msgstr "HTTP code"
866
 
@@ -884,8 +913,8 @@ msgstr "Links gebruikt in"
884
  msgid "Search Links"
885
  msgstr "Zoek Links"
886
 
887
- #: includes/admin/search-form.php:113 includes/admin/table-printer.php:352
888
- #: includes/admin/table-printer.php:682 includes/admin/table-printer.php:807
889
  msgid "Cancel"
890
  msgstr "Annuleren"
891
 
@@ -909,271 +938,271 @@ msgstr ""
909
  msgid "Return to WordPress Dashboard"
910
  msgstr "Ga terug naar het WordPress Dashboard"
911
 
912
- #: includes/admin/table-printer.php:182
913
  msgid "Compact View"
914
  msgstr "Compacte Weergave"
915
 
916
- #: includes/admin/table-printer.php:183
917
  msgid "Detailed View"
918
  msgstr "Gedetailleerde Weergave"
919
 
920
- #: includes/admin/table-printer.php:212
921
  msgid "Source"
922
  msgstr "Bron"
923
 
924
- #: includes/admin/table-printer.php:218
925
  msgid "Link Text"
926
  msgstr "Link Tekst"
927
 
928
- #: includes/admin/table-printer.php:223
929
  msgid "Redirect URL"
930
  msgstr "URL omleiden"
931
 
932
- #: includes/admin/table-printer.php:271
933
  msgid "Bulk Actions"
934
  msgstr "Meerdere Acties"
935
 
936
- #: includes/admin/table-printer.php:272 includes/admin/table-printer.php:649
937
  msgid "Edit URL"
938
  msgstr "Bewerk URL"
939
 
940
- #: includes/admin/table-printer.php:273
941
  msgid "Recheck"
942
  msgstr "Controleer"
943
 
944
- #: includes/admin/table-printer.php:274
945
  msgid "Fix redirects"
946
  msgstr "Omleidingen repareren"
947
 
948
- #: includes/admin/table-printer.php:275
949
  msgid "Mark as not broken"
950
  msgstr "Markeer als niet verbroken"
951
 
952
- #: includes/admin/table-printer.php:279
953
  msgid "Move sources to Trash"
954
  msgstr "Verplaats bronnen naar Prullenbak"
955
 
956
- #: includes/admin/table-printer.php:281
957
  msgid "Delete sources"
958
  msgstr "Verwijder bronnen"
959
 
960
- #: includes/admin/table-printer.php:296
961
  msgid "&laquo;"
962
  msgstr "&laquo;"
963
 
964
- #: includes/admin/table-printer.php:297
965
  msgid "&raquo;"
966
  msgstr "&raquo;"
967
 
968
- #: includes/admin/table-printer.php:305
969
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
970
  msgstr ""
971
  "Weergave van %s&#8211;%s van <span class=\"huidige-link-aantal\">%s</span>"
972
 
973
- #: includes/admin/table-printer.php:328
974
  msgid "Bulk Edit URLs"
975
  msgstr "Meerdere URLs Bewerken"
976
 
977
- #: includes/admin/table-printer.php:330
978
  msgid "Find"
979
  msgstr "Zoek"
980
 
981
- #: includes/admin/table-printer.php:334
982
  msgid "Replace with"
983
  msgstr "Vervang door"
984
 
985
- #: includes/admin/table-printer.php:342
986
  msgid "Case sensitive"
987
  msgstr "Hoofdlettergevoelig"
988
 
989
- #: includes/admin/table-printer.php:346
990
  msgid "Regular expression"
991
  msgstr "Reguliere expressie"
992
 
993
- #: includes/admin/table-printer.php:354 includes/admin/table-printer.php:808
994
  msgid "Update"
995
  msgstr "Aanpassen"
996
 
997
- #: includes/admin/table-printer.php:507
998
  msgid "Post published on"
999
  msgstr "Bericht gepubliceer op"
1000
 
1001
- #: includes/admin/table-printer.php:512
1002
  msgid "Link last checked"
1003
  msgstr "Link laatst gecontroleerd op"
1004
 
1005
- #: includes/admin/table-printer.php:516
1006
  msgid "Never"
1007
  msgstr "Nooit"
1008
 
1009
- #: includes/admin/table-printer.php:527
1010
  msgid "Response time"
1011
  msgstr "Responstijd"
1012
 
1013
- #: includes/admin/table-printer.php:529
1014
  msgid "%2.3f seconds"
1015
  msgstr "%2.3f seconden"
1016
 
1017
- #: includes/admin/table-printer.php:532
1018
  msgid "Final URL"
1019
  msgstr "Uiteindelijke URL"
1020
 
1021
- #: includes/admin/table-printer.php:537
1022
  msgid "Redirect count"
1023
  msgstr "Aantal omleidingen"
1024
 
1025
- #: includes/admin/table-printer.php:542
1026
  msgid "Instance count"
1027
  msgstr "Aantal"
1028
 
1029
- #: includes/admin/table-printer.php:551
1030
  msgid "This link has failed %d time."
1031
  msgid_plural "This link has failed %d times."
1032
  msgstr[0] "Deze link werkte %d keer niet."
1033
  msgstr[1] "Deze link werkte %d keer niet."
1034
 
1035
- #: includes/admin/table-printer.php:559
1036
  msgid "This link has been broken for %s."
1037
  msgstr "Deze link is al %s verbroken."
1038
 
1039
- #: includes/admin/table-printer.php:570
1040
  msgid "Log"
1041
  msgstr "Logboek"
1042
 
1043
- #: includes/admin/table-printer.php:595
1044
  msgid "Show more info about this link"
1045
  msgstr "Toon meer informatie over deze link"
1046
 
1047
- #: includes/admin/table-printer.php:613
1048
  msgctxt "checked how long ago"
1049
  msgid "Checked"
1050
  msgstr "Gecontroleerd"
1051
 
1052
- #: includes/admin/table-printer.php:629
1053
  msgid "Broken for"
1054
  msgstr "Verbroken gedurende"
1055
 
1056
- #: includes/admin/table-printer.php:649
1057
  msgid "Edit this link"
1058
  msgstr "Bewerk deze link"
1059
 
1060
- #: includes/admin/table-printer.php:651
1061
  msgid "Remove this link from all posts"
1062
  msgstr "Verwijder deze link uit alle berichten"
1063
 
1064
- #: includes/admin/table-printer.php:657
1065
  msgid "Remove this link from the list of broken links and mark it as valid"
1066
  msgstr ""
1067
  "Verwijder deze link uit de lijst met verbroken links en markeer hem als "
1068
  "geldig"
1069
 
1070
- #: includes/admin/table-printer.php:665
1071
  msgid "Hide this link and do not report it again unless its status changes"
1072
  msgstr ""
1073
  "Verberg deze link en laat het niet meer zien, behalve wanneer de status "
1074
  "verandert"
1075
 
1076
- #: includes/admin/table-printer.php:666
1077
  msgid "Dismiss"
1078
  msgstr "Overslaan"
1079
 
1080
- #: includes/admin/table-printer.php:671
1081
  msgid "Undismiss this link"
1082
  msgstr "Sla deze link niet over"
1083
 
1084
- #: includes/admin/table-printer.php:672
1085
  msgid "Undismiss"
1086
  msgstr "Niet overslaan"
1087
 
1088
- #: includes/admin/table-printer.php:683
1089
  msgid "Update URL"
1090
  msgstr "Bijwerken URL"
1091
 
1092
- #: includes/admin/table-printer.php:710
1093
  msgid "[An orphaned link! This is a bug.]"
1094
  msgstr "[Een link zonder referentie! Dit is een bug.]"
1095
 
1096
- #: includes/admin/table-printer.php:787
1097
  msgctxt "inline editor title"
1098
  msgid "Edit Link"
1099
  msgstr "Bewerk Link"
1100
 
1101
- #: includes/admin/table-printer.php:790
1102
  msgctxt "inline link editor"
1103
  msgid "Text"
1104
  msgstr "Link Tekst"
1105
 
1106
- #: includes/admin/table-printer.php:795
1107
  msgctxt "inline link editor"
1108
  msgid "URL"
1109
  msgstr "URL"
1110
 
1111
- #: includes/admin/table-printer.php:800
1112
  msgctxt "inline link editor"
1113
  msgid "Suggestions"
1114
  msgstr "Suggesties:"
1115
 
1116
- #: includes/admin/table-printer.php:820
1117
  msgid "Use this URL"
1118
  msgstr "Gebruik deze URL"
1119
 
1120
- #: includes/any-post.php:397 modules/containers/blogroll.php:46
1121
  #: modules/containers/comment.php:153 modules/containers/custom_field.php:207
1122
  msgid "Edit"
1123
  msgstr "Bewerken"
1124
 
1125
- #: includes/any-post.php:405 modules/containers/custom_field.php:213
1126
  msgid "Move this item to the Trash"
1127
  msgstr "Verplaats dit onderdeel naar de Prullenbak"
1128
 
1129
- #: includes/any-post.php:407 modules/containers/custom_field.php:215
1130
  msgid "Trash"
1131
  msgstr "Prullenbak"
1132
 
1133
- #: includes/any-post.php:412 modules/containers/custom_field.php:220
1134
  msgid "Delete this item permanently"
1135
  msgstr "Verwijder dit onderdeel permanent"
1136
 
1137
- #: includes/any-post.php:414 modules/containers/blogroll.php:47
1138
  #: modules/containers/custom_field.php:222
1139
  msgid "Delete"
1140
  msgstr "Verwijderen"
1141
 
1142
- #: includes/any-post.php:427
1143
  msgid "Preview &#8220;%s&#8221;"
1144
  msgstr "Voorbeeld &#8220;%s&#8221;"
1145
 
1146
- #: includes/any-post.php:428
1147
  msgid "Preview"
1148
  msgstr "Voorbeeld"
1149
 
1150
- #: includes/any-post.php:435
1151
  msgid "View &#8220;%s&#8221;"
1152
  msgstr "Bekijk &#8220;%s&#8221;"
1153
 
1154
- #: includes/any-post.php:436 modules/containers/comment.php:166
1155
  #: modules/containers/custom_field.php:227
1156
  msgid "View"
1157
  msgstr "Bekijken"
1158
 
1159
- #: includes/any-post.php:455 modules/containers/custom_field.php:207
1160
  msgid "Edit this item"
1161
  msgstr "Bewerk dit onderdeel"
1162
 
1163
- #: includes/any-post.php:519 modules/containers/blogroll.php:83
1164
  #: modules/containers/comment.php:43
1165
  msgid "Nothing to update"
1166
  msgstr "Niets aan te passen"
1167
 
1168
- #: includes/any-post.php:529
1169
  msgid "Updating post %d failed"
1170
  msgstr "Kon bericht %d niet aanpassen"
1171
 
1172
- #: includes/any-post.php:566 modules/containers/custom_field.php:294
1173
  msgid "Failed to delete post \"%s\" (%d)"
1174
  msgstr "Kon dit bericht niet verwijderen: \"%s\" (%d)"
1175
 
1176
- #: includes/any-post.php:585 modules/containers/custom_field.php:313
1177
  msgid ""
1178
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
1179
  "disabled"
@@ -1181,41 +1210,41 @@ msgstr ""
1181
  "Kan post \"%s\" (%d) niet naar de Prullenbak verplaatsen omdat de "
1182
  "prullenbakmogelijkheid is uitgezet"
1183
 
1184
- #: includes/any-post.php:605 modules/containers/custom_field.php:332
1185
  msgid "Failed to move post \"%s\" (%d) to the trash"
1186
  msgstr "Kon bericht \"%s\" (%d) niet verplaatsen naar de Prullenbak"
1187
 
1188
- #: includes/any-post.php:713
1189
  msgid "%d post deleted."
1190
  msgid_plural "%d posts deleted."
1191
  msgstr[0] "%d bericht verwijderd."
1192
  msgstr[1] "%d berichten verwijderd."
1193
 
1194
- #: includes/any-post.php:715
1195
  msgid "%d page deleted."
1196
  msgid_plural "%d pages deleted."
1197
  msgstr[0] "%d pagina verwijderd."
1198
  msgstr[1] "%d pagina's verwijderd."
1199
 
1200
- #: includes/any-post.php:717
1201
  msgid "%d \"%s\" deleted."
1202
  msgid_plural "%d \"%s\" deleted."
1203
  msgstr[0] "%d \"%s\" verwijderd."
1204
  msgstr[1] "%d \"%s\" verwijderd."
1205
 
1206
- #: includes/any-post.php:736
1207
  msgid "%d post moved to the Trash."
1208
  msgid_plural "%d posts moved to the Trash."
1209
  msgstr[0] "%d bericht verplaatst naar de Prullenbak."
1210
  msgstr[1] "%d berichten verplaatst naar de Prullenbak."
1211
 
1212
- #: includes/any-post.php:738
1213
  msgid "%d page moved to the Trash."
1214
  msgid_plural "%d pages moved to the Trash."
1215
  msgstr[0] "%d pagina verplaatst naar de Prullenbak."
1216
  msgstr[1] "%d pagina's verplaatst naar de Prullenbak."
1217
 
1218
- #: includes/any-post.php:740
1219
  msgid "%d \"%s\" moved to the Trash."
1220
  msgid_plural "%d \"%s\" moved to the Trash."
1221
  msgstr[0] "%d \"%s\" verplaatst naar de Prullenbak."
@@ -1401,65 +1430,65 @@ msgstr "Zoekresultaten"
1401
  msgid "No links found for your query"
1402
  msgstr "Geen links gevonden voor deze zoekopdracht"
1403
 
1404
- #: includes/links.php:218
1405
  msgid "The plugin script was terminated while trying to check the link."
1406
  msgstr ""
1407
  "Het plugin script stopte met werken tijdens het controleren van de link."
1408
 
1409
- #: includes/links.php:264
1410
  msgid "The plugin doesn't know how to check this type of link."
1411
  msgstr "De plugin weet niet hoe het dit type link moet controleren."
1412
 
1413
- #: includes/links.php:357
1414
  msgid "Link is valid."
1415
  msgstr "Link is geldig."
1416
 
1417
- #: includes/links.php:359
1418
  msgid "Link is broken."
1419
  msgstr "Link is verbroken."
1420
 
1421
- #: includes/links.php:572 includes/links.php:674 includes/links.php:701
1422
  msgid "Link is not valid"
1423
  msgstr "Link is niet geldig"
1424
 
1425
- #: includes/links.php:589
1426
  msgid ""
1427
  "This link can not be edited because it is not used anywhere on this site."
1428
  msgstr ""
1429
  "Deze link kan niet worden aangepast omdat deze nergens op deze site wordt "
1430
  "gebruikt."
1431
 
1432
- #: includes/links.php:615
1433
  msgid "Failed to create a DB entry for the new URL."
1434
  msgstr "Kon geen databasevermelding voor de nieuwe URL maken."
1435
 
1436
- #: includes/links.php:681
1437
  msgid "This link is not a redirect"
1438
  msgstr "Deze link is geen omleiding"
1439
 
1440
- #: includes/links.php:728 includes/links.php:765
1441
  msgid "Couldn't delete the link's database record"
1442
  msgstr "Kon de databaseregel voor deze link niet verwijderen."
1443
 
1444
- #: includes/links.php:839
1445
  msgctxt "link status"
1446
  msgid "Unknown"
1447
  msgstr "Onbekend"
1448
 
1449
- #: includes/links.php:853 modules/checkers/http.php:263
1450
  #: modules/extras/mediafire.php:101
1451
  msgid "Unknown Error"
1452
  msgstr "Onbekende Fout"
1453
 
1454
- #: includes/links.php:877
1455
  msgid "Not checked"
1456
  msgstr "Niet gecontroleerd"
1457
 
1458
- #: includes/links.php:880
1459
  msgid "False positive"
1460
  msgstr "Vals positief"
1461
 
1462
- #: includes/links.php:883 modules/extras/fileserve.php:121
1463
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1464
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1465
  msgctxt "link status"
@@ -1534,33 +1563,33 @@ msgid_plural "%d months ago"
1534
  msgstr[0] "%d maand geleden"
1535
  msgstr[1] "%d maanden geleden"
1536
 
1537
- #: modules/checkers/http.php:242
1538
  msgid "Server Not Found"
1539
  msgstr "Server Niet Gevonden"
1540
 
1541
- #: modules/checkers/http.php:257
1542
  msgid "Connection Failed"
1543
  msgstr "Verbinding Mislukt"
1544
 
1545
- #: modules/checkers/http.php:292 modules/checkers/http.php:362
1546
  msgid "HTTP code : %d"
1547
  msgstr "HTTP code: %d"
1548
 
1549
- #: modules/checkers/http.php:294 modules/checkers/http.php:364
1550
  msgid "(No response)"
1551
  msgstr "(Geen reactie)"
1552
 
1553
- #: modules/checkers/http.php:300
1554
  msgid "Most likely the connection timed out or the domain doesn't exist."
1555
  msgstr ""
1556
  "Hoogstwaarschijnlijk is er een time-out voor de verbinding opgetreden, of "
1557
  "het domein bestaat niet."
1558
 
1559
- #: modules/checkers/http.php:371
1560
  msgid "Request timed out."
1561
  msgstr "Time-out voor Verzoek opgetreden."
1562
 
1563
- #: modules/checkers/http.php:389
1564
  msgid "Using Snoopy"
1565
  msgstr "Gebruikt Snoopy"
1566
 
@@ -1973,11 +2002,11 @@ msgstr "http://w-shadow.com/"
1973
  #~ msgstr "Fout bij het vernieuwen van de koppeling %d : %s"
1974
 
1975
  #~ msgid ""
1976
- #~ "<span class='view'><a class='blc-details-button' href='javascript:void"
1977
- #~ "(0)' title='Show more info about this link'>Details</a>"
1978
  #~ msgstr ""
1979
- #~ "<span class='view'><a class='blc-details-button' href='javascript:void"
1980
- #~ "(0)' title='Toon meer info over deze link'>Details</a>"
1981
 
1982
  #~ msgid ""
1983
  #~ "<span class='delete'><a class='submitdelete blc-unlink-button' "
@@ -2019,15 +2048,15 @@ msgstr "http://w-shadow.com/"
2019
  #~ "links'><strong>%d verbroken link%s gevonden</strong></a>"
2020
 
2021
  #~ msgid ""
2022
- #~ "<a class=\"row-title\" href=\"post.php?action=edit&amp;post=$link"
2023
- #~ "[source_id]\" title=\"Edit this post\">{$link[post_title]}</a>"
2024
  #~ msgstr ""
2025
- #~ "<a class=\"row-title\" href=\"post.php?action=edit&amp;post=$link"
2026
- #~ "[source_id]\" title=\"Bewerk dit bericht\">{$link[post_title]}</a>"
2027
 
2028
  #~ msgid ""
2029
- #~ "<a class=\"row-title\" href=\"link.php?action=edit&amp;link_id=$link"
2030
- #~ "[source_id]\" title=\"Edit this bookmark\">{$link[link_text]}</a>"
2031
  #~ msgstr ""
2032
- #~ "<a class=\"row-title\" href=\"link.php?action=edit&amp;link_id=$link"
2033
- #~ "[source_id]\" title=\"Bewerk deze bladwijzer\">{$link[link_text]}</a>"
2
  msgstr ""
3
  "Project-Id-Version: Broken-link-checker\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2014-03-25 12:29:11+00:00\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Robin Roelofsen <info@dreamdesignsolutions.nl>\n"
8
  "Language-Team: Brokenlinkchecker <gvmelle@gmail.com>\n"
14
  "X-Poedit-KeywordsList: __;_e;_c\n"
15
  "X-Poedit-Basepath: .\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Generator: Poedit 1.6.5\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
+ #: core/core.php:153 includes/admin/links-page-js.php:44
22
  msgid "Loading..."
23
  msgstr "Aan het laden..."
24
 
59
  msgid "Settings"
60
  msgstr "Instellingen"
61
 
62
+ #: core/core.php:572
63
  msgid "Settings saved."
64
  msgstr "Instellingen opgeslagen."
65
 
66
+ #: core/core.php:578
67
  msgid "Thank you for your donation!"
68
  msgstr "Bedankt voor je donatie!"
69
 
70
+ #: core/core.php:586
71
  msgid "Complete site recheck started."
72
  msgstr "Volledige site controle begonnen."
73
 
74
+ #: core/core.php:595
75
  msgid "Details"
76
  msgstr "Details"
77
 
78
+ #: core/core.php:609
79
  msgid "General"
80
  msgstr "Algemeen"
81
 
82
+ #: core/core.php:610
83
  msgid "Look For Links In"
84
  msgstr "Zoek Naar Links In"
85
 
86
+ #: core/core.php:611
87
  msgid "Which Links To Check"
88
  msgstr "Deze Links Controleren"
89
 
90
+ #: core/core.php:612
91
  msgid "Protocols & APIs"
92
  msgstr "Protocollen & APIs"
93
 
94
+ #: core/core.php:613
95
  msgid "Advanced"
96
  msgstr "Geavanceerd"
97
 
98
+ #: core/core.php:628
99
  msgid "Broken Link Checker Options"
100
  msgstr "Broken Link Checker Opties"
101
 
102
+ #: core/core.php:670 includes/admin/table-printer.php:203
103
  msgid "Status"
104
  msgstr "Status:"
105
 
106
+ #: core/core.php:672 includes/admin/options-page-js.php:56
107
  msgid "Show debug info"
108
  msgstr "Toon debug informatie"
109
 
110
+ #: core/core.php:700
111
  msgid "Check each link"
112
  msgstr "Controleer iedere link:"
113
 
114
+ #: core/core.php:705
115
  msgid "Every %s hours"
116
  msgstr "Elke %s uur"
117
 
118
+ #: core/core.php:714
119
  msgid ""
120
  "Existing links will be checked this often. New links will usually be checked "
121
  "ASAP."
123
  "Bestaande links zullen met deze regelmaat worden gecontroleerd. Nieuwe links "
124
  "worden meestal zo snel mogelijk gecontroleerd. "
125
 
126
+ #: core/core.php:721
127
  msgid "E-mail notifications"
128
  msgstr "E-mail meldingen:"
129
 
130
+ #: core/core.php:727
131
  msgid "Send me e-mail notifications about newly detected broken links"
132
  msgstr "Stuur mij meldingen via e-mail over nieuw ontdekte verbroken links"
133
 
134
+ #: core/core.php:735
135
  msgid "Send authors e-mail notifications about broken links in their posts"
136
  msgstr ""
137
  "Stuur schrijvers meldingen via e-mail over verbroken links in hun berichten"
138
 
139
+ #: core/core.php:742
140
  msgid "Notification e-mail address"
141
  msgstr "E-mail adres voor meldingen:"
142
 
143
+ #: core/core.php:754
144
  msgid ""
145
  "Leave empty to use the e-mail address specified in Settings &rarr; General."
146
  msgstr ""
147
  "Laat dit veld leeg om het e-mail adres te gebruiken dat is opgegeven bij "
148
  "Instellingen &rarr; Algemeen."
149
 
150
+ #: core/core.php:761
151
  msgid "Link tweaks"
152
  msgstr "Link aanpassingen:"
153
 
154
+ #: core/core.php:767
155
  msgid "Apply custom formatting to broken links"
156
  msgstr "Speciale formattering toepassen op verbroken links"
157
 
158
+ #: core/core.php:771 core/core.php:802
159
  msgid "Edit CSS"
160
  msgstr "Bewerk CSS"
161
 
162
+ #: core/core.php:787
163
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
164
  msgstr "Voorbeeld: Lorem ipsum <a %s>verbroken link</a>, dolor sit amet."
165
 
166
+ #: core/core.php:790 core/core.php:821
167
  msgid "Click \"Save Changes\" to update example output."
168
  msgstr "Klik op \"Instellingen opslaan\" om het voorbeeld te verversen."
169
 
170
+ #: core/core.php:798
171
  msgid "Apply custom formatting to removed links"
172
  msgstr "Speciale formattering toepassen op verwijderde links"
173
 
174
+ #: core/core.php:818
175
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
176
  msgstr ""
177
  "Voorbeeld: Lorem ipsum <span %s>verwijderde link</span>, dolor sit amet."
178
 
179
+ #: core/core.php:831
180
  msgid "Stop search engines from following broken links"
181
  msgstr "Verhinder dat zoekmachines verbroken links volgen"
182
 
183
+ #: core/core.php:839
184
  msgctxt "settings page"
185
  msgid "Suggestions"
186
  msgstr "Suggesties:"
187
 
188
+ #: core/core.php:845
189
  msgid "Suggest alternatives to broken links"
190
  msgstr "Suggereer alternatieven voor verbroken links"
191
 
192
+ #: core/core.php:861
193
  msgid "Look for links in"
194
  msgstr "Zoek naar links in:"
195
 
196
+ #: core/core.php:872
197
  msgid "Post statuses"
198
  msgstr "Bericht statussen:"
199
 
200
+ #: core/core.php:905
201
  msgid "Link types"
202
  msgstr "Linksoorten:"
203
 
204
+ #: core/core.php:911
205
  msgid "Error : All link parsers missing!"
206
  msgstr "Fout: alle linkparsers ontbreken! "
207
 
208
+ #: core/core.php:918
209
  msgid "Exclusion list"
210
  msgstr "Uitsluitingslijst:"
211
 
212
+ #: core/core.php:919
213
  msgid ""
214
  "Don't check links where the URL contains any of these words (one per line) :"
215
  msgstr ""
216
  "Controleer geen links waarbij de URL &eacute;&eacute;n of meerdere van deze "
217
  "woorden bevat (&eacute;&eacute;n per regel):"
218
 
219
+ #: core/core.php:937
220
  msgid "Check links using"
221
  msgstr "Controleer links die gebruik maken van:"
222
 
223
+ #: core/core.php:956 includes/links.php:867
224
  msgid "Timeout"
225
  msgstr "Timeout:"
226
 
227
+ #: core/core.php:962 core/core.php:1031 core/core.php:3019
228
  msgid "%s seconds"
229
  msgstr "%s seconden"
230
 
231
+ #: core/core.php:971
232
  msgid "Links that take longer than this to load will be marked as broken."
233
  msgstr ""
234
  "Links die er langer over doen om te laden zullen worden aangemerkt als "
235
  "verbroken."
236
 
237
+ #: core/core.php:978
238
  msgid "Link monitor"
239
  msgstr "Linkcontrole:"
240
 
241
+ #: core/core.php:986
242
  msgid "Run continuously while the Dashboard is open"
243
  msgstr "Draai continu zolang het Dashboard openstaat"
244
 
245
+ #: core/core.php:994
246
  msgid "Run hourly in the background"
247
  msgstr "Draai ieder uur in de achtergrond"
248
 
249
+ #: core/core.php:1002
250
  msgid "Show the dashboard widget for"
251
  msgstr "Laat het Dashboard widget zien aan:"
252
 
253
+ #: core/core.php:1007
254
  msgctxt "dashboard widget visibility"
255
  msgid "Administrator"
256
  msgstr "Beheerder"
257
 
258
+ #: core/core.php:1008
259
  msgctxt "dashboard widget visibility"
260
  msgid "Editor and above"
261
  msgstr "Redacteur en hoger"
262
 
263
+ #: core/core.php:1009
264
  msgctxt "dashboard widget visibility"
265
  msgid "Nobody (disables the widget)"
266
  msgstr "Niemand (deze optie zet de widget uit)"
267
 
268
+ #: core/core.php:1025
269
  msgid "Max. execution time"
270
  msgstr "Maximale uitvoeringstijd:"
271
 
272
+ #: core/core.php:1042
273
  msgid ""
274
  "The plugin works by periodically launching a background job that parses your "
275
  "posts for links, checks the discovered URLs, and performs other time-"
281
  "zaken uitvoert. Stel hier in hoe lang de linkcontrole elke keer maximaal mag "
282
  "draaien voor hij wordt gestopt."
283
 
284
+ #: core/core.php:1051
285
  msgid "Server load limit"
286
  msgstr "Serverbelasting limiet:"
287
 
288
+ #: core/core.php:1066
289
  msgid "Current load : %s"
290
  msgstr "Huidige serverbelasting: %s"
291
 
292
+ #: core/core.php:1071
293
  msgid ""
294
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
295
  "a> rises above this number. Leave this field blank to disable load limiting."
298
  "\">serverbelasting</a> boven dit getal uitkomt. Laat dit veld leeg om "
299
  "belastinglimitering uit te zetten."
300
 
301
+ #: core/core.php:1080
302
  msgid "Not available"
303
  msgstr "Niet beschikbaar"
304
 
305
+ #: core/core.php:1082
306
  msgid ""
307
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
308
  "code> is present and accessible."
310
  "Belastinglimitering werkt alleen op Linux-achtige systemen waar <code>/proc/"
311
  "loadavg</code> aanwezig en bereikbaar is."
312
 
313
+ #: core/core.php:1090
314
+ msgid "Logging"
315
+ msgstr "Foutopsporing"
316
+
317
+ #: core/core.php:1096
318
+ msgid "Enable logging"
319
+ msgstr "Foutopsporing aanzetten (opslaan in logbestand)"
320
+
321
+ #: core/core.php:1103
322
+ msgid "Log file location"
323
+ msgstr "Locatie logbestand"
324
+
325
+ #: core/core.php:1112
326
+ msgctxt "log file location"
327
+ msgid "Default"
328
+ msgstr "Standaard (locatie logbestand)"
329
+
330
+ #: core/core.php:1126
331
+ msgctxt "log file location"
332
+ msgid "Custom"
333
+ msgstr "Aangepast (locatie logbestand)"
334
+
335
+ #: core/core.php:1138
336
  msgid "Forced recheck"
337
  msgstr "Geforceerd controleren:"
338
 
339
+ #: core/core.php:1141
340
  msgid "Re-check all pages"
341
  msgstr "Controleer nu all pagina's"
342
 
343
+ #: core/core.php:1145
344
  msgid ""
345
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
346
  "database and recheck the entire site from scratch."
347
  msgstr ""
348
+ "De \"Totale Optie\". Wanneer je op deze knop klikt maakt de plugin zijn link "
349
+ "database leeg, en wordt de volledige site opnieuw gecontroleerd."
350
 
351
+ #: core/core.php:1156
352
  msgid "Save Changes"
353
  msgstr "Wijzigingen Opslaan"
354
 
355
+ #: core/core.php:1207
356
  msgid "Configure"
357
  msgstr "Configureer"
358
 
359
+ #: core/core.php:1289
360
  msgid ""
361
  "Enter the names of custom fields you want to check (one per line). If a "
362
  "field contains HTML code, prefix its name with <code>html:</code>. For "
366
  "&eacute;n per regel). Wanneer een veld HTML code bevat, begin de veldnaam "
367
  "dan met <code>html:</code>. Bijvoorbeeld, <code>html:field_name</code>."
368
 
369
+ #: core/core.php:1420 core/core.php:1503 core/core.php:1535
370
  msgid "Database error : %s"
371
  msgstr "Database fout: %s"
372
 
373
+ #: core/core.php:1485
374
  msgid "You must enter a filter name!"
375
  msgstr "Je moet een filternaam invullen!"
376
 
377
+ #: core/core.php:1489
378
  msgid "Invalid search query."
379
  msgstr "Onjuiste zoekopdracht"
380
 
381
+ #: core/core.php:1498
382
  msgid "Filter \"%s\" created"
383
  msgstr "Filter \"%s\" aangemaakt"
384
 
385
+ #: core/core.php:1525
386
  msgid "Filter ID not specified."
387
  msgstr "Filter ID niet opgegeven."
388
 
389
+ #: core/core.php:1532
390
  msgid "Filter deleted"
391
  msgstr "Filter verwijderd"
392
 
393
+ #: core/core.php:1579
394
  msgid "Replaced %d redirect with a direct link"
395
  msgid_plural "Replaced %d redirects with direct links"
396
  msgstr[0] "%d verwijzing vervangen door een directe link"
397
  msgstr[1] "%d verwijzingen vervangen door een directe link."
398
 
399
+ #: core/core.php:1590
400
  msgid "Failed to fix %d redirect"
401
  msgid_plural "Failed to fix %d redirects"
402
  msgstr[0] "Kon %d verwijzing niet repareren"
403
  msgstr[1] "Kon %d verwijzingen niet repareren"
404
 
405
+ #: core/core.php:1601
406
  msgid "None of the selected links are redirects!"
407
  msgstr "Geen van de geselecteerde links zijn verwijzingen!"
408
 
409
+ #: core/core.php:1679
410
  msgid "%d link updated."
411
  msgid_plural "%d links updated."
412
  msgstr[0] "%d link bijgewerkt."
413
  msgstr[1] "%d links bijgewerkt."
414
 
415
+ #: core/core.php:1690
416
  msgid "Failed to update %d link."
417
  msgid_plural "Failed to update %d links."
418
  msgstr[0] "Kon %d link niet aanpassen."
419
  msgstr[1] "Kon %d links niet aanpassen."
420
 
421
+ #: core/core.php:1779
422
  msgid "%d link removed"
423
  msgid_plural "%d links removed"
424
  msgstr[0] "%d link verwijderd"
425
  msgstr[1] "%d links verwijderd"
426
 
427
+ #: core/core.php:1790
428
  msgid "Failed to remove %d link"
429
  msgid_plural "Failed to remove %d links"
430
  msgstr[0] "Kon %d link niet verwijderen"
431
  msgstr[1] "Kon %d links niet verwijderen"
432
 
433
+ #: core/core.php:1899
434
  msgid ""
435
  "%d item was skipped because it can't be moved to the Trash. You need to "
436
  "delete it manually."
444
  "%d onderdelen zijn overgeslagen omdat het niet naar de Prullenbak kan worden "
445
  "verplaatst. Je moet deze handmatig verwijderen."
446
 
447
+ #: core/core.php:1921
448
  msgid "Didn't find anything to delete!"
449
  msgstr "Kon niets vinden om te verwijderen!"
450
 
451
+ #: core/core.php:1949
452
  msgid "%d link scheduled for rechecking"
453
  msgid_plural "%d links scheduled for rechecking"
454
  msgstr[0] "%d link ingepland voor controle"
455
  msgstr[1] "%d links ingepland voor controle"
456
 
457
+ #: core/core.php:1995 core/core.php:2637
458
  msgid "This link was manually marked as working by the user."
459
  msgstr "Deze link is handmatig aangemerkt als werkend door de gebruiker."
460
 
461
+ #: core/core.php:2002
462
  msgid "Couldn't modify link %d"
463
  msgstr "Kon deze link niet bewerken: %d"
464
 
465
+ #: core/core.php:2012
466
  msgid "%d link marked as not broken"
467
  msgid_plural "%d links marked as not broken"
468
  msgstr[0] "%d link gemarkeerd als niet verbroken"
469
  msgstr[1] "%d links gemarkeerd als niet verbroken"
470
 
471
+ #: core/core.php:2052
472
  msgid "Table columns"
473
  msgstr "Tabel colommen"
474
 
475
+ #: core/core.php:2071
476
  msgid "Show on screen"
477
  msgstr "Toon op scherm"
478
 
479
+ #: core/core.php:2078
480
  msgid "links"
481
  msgstr "links"
482
 
483
+ #: core/core.php:2079 includes/admin/table-printer.php:171
484
  msgid "Apply"
485
  msgstr "Toepassen"
486
 
487
+ #: core/core.php:2083
488
  msgid "Misc"
489
  msgstr "Divers"
490
 
491
+ #: core/core.php:2098
492
  msgid "Highlight links broken for at least %s days"
493
  msgstr "Laat links zien die minstens %s dagen verbroken zijn"
494
 
495
+ #: core/core.php:2107
496
  msgid "Color-code status codes"
497
  msgstr "Kleurcodering voor status codes"
498
 
499
+ #: core/core.php:2124 core/core.php:2622 core/core.php:2662 core/core.php:2695
500
+ #: core/core.php:2782
501
  msgid "You're not allowed to do that!"
502
  msgstr "Je hebt geen toestemming om dat te doen!"
503
 
504
+ #: core/core.php:2492
505
  msgid "View broken links"
506
  msgstr "Bekijk verbroken links"
507
 
508
+ #: core/core.php:2493
509
  msgid "Found %d broken link"
510
  msgid_plural "Found %d broken links"
511
  msgstr[0] "%d verbroken link gevonden"
512
  msgstr[1] "%d verbroken links gevonden"
513
 
514
+ #: core/core.php:2499
515
  msgid "No broken links found."
516
  msgstr "Geen verbroken links gevonden."
517
 
518
+ #: core/core.php:2506
519
  msgid "%d URL in the work queue"
520
  msgid_plural "%d URLs in the work queue"
521
  msgstr[0] "%d URL in de wachtrij"
522
  msgstr[1] "%d URL&#x0027;s in de wachtrij"
523
 
524
+ #: core/core.php:2509
525
  msgid "No URLs in the work queue."
526
  msgstr "Geen URLs meer in de wachtrij."
527
 
528
+ #: core/core.php:2515
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 unieke URL"
533
  msgstr[1] "%d unieke URLs"
534
 
535
+ #: core/core.php:2519
536
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
537
  msgid "%d link"
538
  msgid_plural "%d links"
539
  msgstr[0] "%d link"
540
  msgstr[1] "%d links"
541
 
542
+ #: core/core.php:2525
543
  msgid "Detected %1$s in %2$s and still searching..."
544
  msgstr "%1$s in %2$s gevonden, en nog steeds aan 't zoeken..."
545
 
546
+ #: core/core.php:2531
547
  msgid "Detected %1$s in %2$s."
548
  msgstr "%1$s in %2$s gevonden."
549
 
550
+ #: core/core.php:2538
551
  msgid "Searching your blog for links..."
552
  msgstr "Uw blog aan 't doorzoeken naar links..."
553
 
554
+ #: core/core.php:2540
555
  msgid "No links detected."
556
  msgstr "Geen links gevonden."
557
 
558
+ #: core/core.php:2566
559
  msgctxt "current load"
560
  msgid "Unknown"
561
  msgstr "Onbekend"
562
 
563
+ #: core/core.php:2630 core/core.php:2670 core/core.php:2710 core/core.php:2792
564
  msgid "Oops, I can't find the link %d"
565
  msgstr "Oeps, ik kan link %d niet vinden"
566
 
567
+ #: core/core.php:2643 core/core.php:2680
568
  msgid "Oops, couldn't modify the link!"
569
  msgstr "Oeps, ik kan deze link niet aanpassen!"
570
 
571
+ #: core/core.php:2646 core/core.php:2683 core/core.php:2818
572
  msgid "Error : link_id not specified"
573
  msgstr "Fout : link_id niet opgegeven"
574
 
575
+ #: core/core.php:2701
576
  msgid "Error : link_id or new_url not specified"
577
  msgstr "Fout: link_id of new_url niet opgegeven"
578
 
579
+ #: core/core.php:2719
580
  msgid "Oops, the new URL is invalid!"
581
  msgstr "Oeps, de nieuwe URL is ongeldig!"
582
 
583
+ #: core/core.php:2734
584
  msgid "An unexpected error occurred!"
585
  msgstr "Er is een onverwachte fout opgetreden!"
586
 
587
+ #: core/core.php:2801
588
  msgid "An unexpected error occured!"
589
  msgstr "Er is een onverwachte fout opgetreden!"
590
 
591
+ #: core/core.php:2827
592
  msgid "You don't have sufficient privileges to access this information!"
593
  msgstr "U heeft niet genoeg rechten om deze informatie te bekijken! "
594
 
595
+ #: core/core.php:2840
596
  msgid "Error : link ID not specified"
597
  msgstr "Fout : link ID niet opgegeven"
598
 
599
+ #: core/core.php:2854
600
  msgid "Failed to load link details (%s)"
601
  msgstr "Kon linkgegevens (%s) niet laden"
602
 
 
603
  #. Plugin Name of the plugin/theme
604
+ #: core/core.php:2908
605
  msgid "Broken Link Checker"
606
  msgstr "Broken Link Checker"
607
 
608
+ #: core/core.php:2928
609
  msgid "PHP version"
610
  msgstr "PHP versie"
611
 
612
+ #: core/core.php:2934
613
  msgid "MySQL version"
614
  msgstr "MySQL versie"
615
 
616
+ #: core/core.php:2947
617
  msgid ""
618
  "You have an old version of CURL. Redirect detection may not work properly."
619
  msgstr ""
620
  "U draait een oude versie van CURL. Omleidingsdetectie werkt misschien niet "
621
  "goed."
622
 
623
+ #: core/core.php:2959 core/core.php:2975 core/core.php:2980
624
  msgid "Not installed"
625
  msgstr "Niet ge&iuml;nstalleerd."
626
 
627
+ #: core/core.php:2962
628
  msgid "CURL version"
629
  msgstr "CURL versie"
630
 
631
+ #: core/core.php:2968
632
  msgid "Installed"
633
  msgstr "Ge&iuml;nstalleerd."
634
 
635
+ #: core/core.php:2981
636
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
637
  msgstr ""
638
  "U moet CURL of Snoopy hebben ge&iuml;nstalleerd. Anders werkt de plugin niet!"
639
 
640
+ #: core/core.php:2992
641
  msgid "On"
642
  msgstr "Aan"
643
 
644
+ #: core/core.php:2993
645
  msgid "Redirects may be detected as broken links when safe_mode is on."
646
  msgstr ""
647
  "Omgeleide links worden misschien gezien als verbroken links wanneer "
648
  "safe_mode aan staat."
649
 
650
+ #: core/core.php:2998 core/core.php:3012
651
  msgid "Off"
652
  msgstr "Uit"
653
 
654
+ #: core/core.php:3006
655
  msgid "On ( %s )"
656
  msgstr "Aan (%s)"
657
 
658
+ #: core/core.php:3007
659
  msgid "Redirects may be detected as broken links when open_basedir is on."
660
  msgstr ""
661
  "Omgeleide link worden misschien gezien als verbroken links wanneer "
662
  "open_basedir aan staan."
663
 
664
+ #: core/core.php:3036
665
  msgid ""
666
  "If this value is zero even after several page reloads you have probably "
667
  "encountered a bug."
669
  "Wanneer deze waarde op nul staat, ook na het meerdere malen herladen van de "
670
  "pagina, heb je waarschijnlijk eenn bug ontdekt."
671
 
672
+ #: core/core.php:3159 core/core.php:3278
673
  msgid "[%s] Broken links detected"
674
  msgstr "[%s] verbroken links gevonden"
675
 
676
+ #: core/core.php:3164
677
  msgid "Broken Link Checker has detected %d new broken link on your site."
678
  msgid_plural ""
679
  "Broken Link Checker has detected %d new broken links on your site."
682
  msgstr[1] ""
683
  "Broken Link Checker heeft %d nieuwe verbroken links op jouw site gevonden."
684
 
685
+ #: core/core.php:3195
686
  msgid "Here's a list of the first %d broken links:"
687
  msgid_plural "Here's a list of the first %d broken links:"
688
  msgstr[0] "Hier is een lijst van de eerste %d verbroken links:"
689
  msgstr[1] "Hier is een lijst van de eerste %d verbroken links:"
690
 
691
+ #: core/core.php:3204
692
  msgid "Here's a list of the new broken links: "
693
  msgstr "Hier is een lijst van de nieuwe verbroken links:"
694
 
695
+ #: core/core.php:3213
696
  msgid "Link text : %s"
697
  msgstr "Linktekst: %s"
698
 
699
+ #: core/core.php:3214
700
  msgid "Link URL : <a href=\"%s\">%s</a>"
701
  msgstr "Link URL : <a href=\"%s\">%s</a>"
702
 
703
+ #: core/core.php:3215
704
  msgid "Source : %s"
705
  msgstr "Bron: %s"
706
 
707
+ #: core/core.php:3229
708
  msgid "You can see all broken links here:"
709
  msgstr "Je kunt hier alle verbroken links zien:"
710
 
711
+ #: core/core.php:3283
712
  msgid "Broken Link Checker has detected %d new broken link in your posts."
713
  msgid_plural ""
714
  "Broken Link Checker has detected %d new broken links in your posts."
719
  "Broken Link Checker heeft %d nieuwe verbroken links in jouw berichten "
720
  "gevonden."
721
 
722
+ #: core/init.php:249
723
  msgid "Once Weekly"
724
  msgstr "Wekelijks"
725
 
726
+ #: core/init.php:255
727
  msgid "Twice a Month"
728
  msgstr "Twee Keer per Maand"
729
 
730
+ #: core/init.php:331
731
  msgid ""
732
  "Broken Link Checker installation failed. Try deactivating and then "
733
  "reactivating the plugin."
735
  "De installatie van Broken Link Checker is mislukt. Probeer de plugin te "
736
  "deactiveren en weer te activeren."
737
 
738
+ #: core/init.php:335
739
+ msgid ""
740
+ "Please activate the plugin separately on each site. Network activation is "
741
+ "not supported."
742
+ msgstr ""
743
+ "Activeer de plugin apart op elke site. Activering via het netwerk wordt niet "
744
+ "ondersteund."
745
+
746
  #: includes/admin/db-upgrade.php:95
747
  msgid "Failed to delete old DB tables. Database error : %s"
748
  msgstr "Kon de oude databasetabellen niet verwijderen. Database fout: %s"
749
 
750
+ #: includes/admin/links-page-js.php:62 includes/admin/links-page-js.php:525
751
  msgid "Wait..."
752
  msgstr "Wachten..."
753
 
754
+ #: includes/admin/links-page-js.php:107 includes/admin/table-printer.php:663
755
  msgid "Not broken"
756
  msgstr "Niet verbroken"
757
 
758
+ #: includes/admin/links-page-js.php:243
759
  msgctxt "link text"
760
  msgid "(None)"
761
  msgstr "(Geen)"
762
 
763
+ #: includes/admin/links-page-js.php:244
764
  msgctxt "link text"
765
  msgid "(Multiple links)"
766
  msgstr "(Meerdere links)"
767
 
768
+ #: includes/admin/links-page-js.php:302
769
  msgctxt "link suggestions"
770
  msgid "Searching..."
771
  msgstr "Aan het zoeken..."
772
 
773
+ #: includes/admin/links-page-js.php:303
774
  msgctxt "link suggestions"
775
  msgid "No suggestions available."
776
  msgstr "Geen suggesties beschikbaar."
777
 
778
+ #: includes/admin/links-page-js.php:304
779
  msgctxt "link suggestions"
780
  msgid "Archived page from %s (via the Wayback Machine)"
781
  msgstr "Gearchiveerde pagina van %s (via de Wayback Machine)"
782
 
783
+ #: includes/admin/links-page-js.php:387
784
  msgid "%d instances of the link were successfully modified."
785
  msgstr "%d links zijn met succes aangepast."
786
 
787
+ #: includes/admin/links-page-js.php:393
788
  msgid ""
789
  "However, %d instances couldn't be edited and still point to the old URL."
790
  msgstr ""
791
  "Alleen konden %d links niet worden aangepast, en deze wijzen nog steeds naar "
792
  "de oude URL."
793
 
794
+ #: includes/admin/links-page-js.php:399
795
  msgid "The link could not be modified."
796
  msgstr "De link kon niet worden aangepast."
797
 
798
+ #: includes/admin/links-page-js.php:402
799
  msgid "The following error(s) occurred :"
800
  msgstr "De volgende fout(en) kwam(en) voor:"
801
 
802
+ #: includes/admin/links-page-js.php:488
803
  msgid "Error: Link URL must not be empty."
804
  msgstr "Fout: de link URL moet ingevuld zijn."
805
 
806
+ #: includes/admin/links-page-js.php:563
807
  msgid "%d instances of the link were successfully unlinked."
808
  msgstr "%d links zijn met succes verwijderd."
809
 
810
+ #: includes/admin/links-page-js.php:569
811
  msgid "However, %d instances couldn't be removed."
812
  msgstr "%d links konden echter niet worden verwijderd."
813
 
814
+ #: includes/admin/links-page-js.php:574
815
  msgid "The plugin failed to remove the link."
816
  msgstr "De plugin kon de link niet verwijderen."
817
 
818
+ #: includes/admin/links-page-js.php:577
819
  msgid "The following error(s) occured :"
820
  msgstr "De volgende fout(en) kwam(en) voor:"
821
 
822
+ #: includes/admin/links-page-js.php:585 includes/admin/table-printer.php:281
823
+ #: includes/admin/table-printer.php:657
824
  msgid "Unlink"
825
  msgstr "ontkoppel"
826
 
827
+ #: includes/admin/links-page-js.php:629
828
  msgid "Enter a name for the new custom filter"
829
  msgstr "Geef een naam aan het nieuwe filter"
830
 
831
+ #: includes/admin/links-page-js.php:641
832
  msgid ""
833
  "You are about to delete the current filter.\n"
834
  "'Cancel' to stop, 'OK' to delete"
836
  "Je staat op het punt om het huidige filter te verwijderen.\n"
837
  "'Annuleren' om te annuleren, 'OK' om te verwijderen"
838
 
839
+ #: includes/admin/links-page-js.php:665
840
  msgid ""
841
  "Are you sure you want to delete all posts, bookmarks or other items that "
842
  "contain any of the selected links? This action can't be undone.\n"
847
  "niet teruggedraaid worden.\n"
848
  "'Annuleren' om te annuleren, 'OK' om te verwijderen"
849
 
850
+ #: includes/admin/links-page-js.php:679
851
  msgid ""
852
  "Are you sure you want to remove the selected links? This action can't be "
853
  "undone.\n"
857
  "teruggedraaid worden.\n"
858
  "'Annuleren' om te annuleren, 'OK' om te verwijderen"
859
 
860
+ #: includes/admin/links-page-js.php:791
861
  msgid "Enter a search string first."
862
  msgstr "Vul eerst een zoekopdracht in."
863
 
864
+ #: includes/admin/links-page-js.php:798
865
  msgid "Select one or more links to edit."
866
  msgstr "Selecteer &eacute;&eacute;n of meerdere links om aan te passen."
867
 
885
  msgid "Link text"
886
  msgstr "Link tekst"
887
 
888
+ #: includes/admin/search-form.php:45 includes/admin/table-printer.php:208
889
  msgid "URL"
890
  msgstr "URL"
891
 
892
+ #: includes/admin/search-form.php:48 includes/admin/table-printer.php:527
893
  msgid "HTTP code"
894
  msgstr "HTTP code"
895
 
913
  msgid "Search Links"
914
  msgstr "Zoek Links"
915
 
916
+ #: includes/admin/search-form.php:113 includes/admin/table-printer.php:357
917
+ #: includes/admin/table-printer.php:687 includes/admin/table-printer.php:812
918
  msgid "Cancel"
919
  msgstr "Annuleren"
920
 
938
  msgid "Return to WordPress Dashboard"
939
  msgstr "Ga terug naar het WordPress Dashboard"
940
 
941
+ #: includes/admin/table-printer.php:185
942
  msgid "Compact View"
943
  msgstr "Compacte Weergave"
944
 
945
+ #: includes/admin/table-printer.php:186
946
  msgid "Detailed View"
947
  msgstr "Gedetailleerde Weergave"
948
 
949
+ #: includes/admin/table-printer.php:215
950
  msgid "Source"
951
  msgstr "Bron"
952
 
953
+ #: includes/admin/table-printer.php:221
954
  msgid "Link Text"
955
  msgstr "Link Tekst"
956
 
957
+ #: includes/admin/table-printer.php:228
958
  msgid "Redirect URL"
959
  msgstr "URL omleiden"
960
 
961
+ #: includes/admin/table-printer.php:276
962
  msgid "Bulk Actions"
963
  msgstr "Meerdere Acties"
964
 
965
+ #: includes/admin/table-printer.php:277 includes/admin/table-printer.php:654
966
  msgid "Edit URL"
967
  msgstr "Bewerk URL"
968
 
969
+ #: includes/admin/table-printer.php:278
970
  msgid "Recheck"
971
  msgstr "Controleer"
972
 
973
+ #: includes/admin/table-printer.php:279
974
  msgid "Fix redirects"
975
  msgstr "Omleidingen repareren"
976
 
977
+ #: includes/admin/table-printer.php:280
978
  msgid "Mark as not broken"
979
  msgstr "Markeer als niet verbroken"
980
 
981
+ #: includes/admin/table-printer.php:284
982
  msgid "Move sources to Trash"
983
  msgstr "Verplaats bronnen naar Prullenbak"
984
 
985
+ #: includes/admin/table-printer.php:286
986
  msgid "Delete sources"
987
  msgstr "Verwijder bronnen"
988
 
989
+ #: includes/admin/table-printer.php:301
990
  msgid "&laquo;"
991
  msgstr "&laquo;"
992
 
993
+ #: includes/admin/table-printer.php:302
994
  msgid "&raquo;"
995
  msgstr "&raquo;"
996
 
997
+ #: includes/admin/table-printer.php:310
998
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
999
  msgstr ""
1000
  "Weergave van %s&#8211;%s van <span class=\"huidige-link-aantal\">%s</span>"
1001
 
1002
+ #: includes/admin/table-printer.php:333
1003
  msgid "Bulk Edit URLs"
1004
  msgstr "Meerdere URLs Bewerken"
1005
 
1006
+ #: includes/admin/table-printer.php:335
1007
  msgid "Find"
1008
  msgstr "Zoek"
1009
 
1010
+ #: includes/admin/table-printer.php:339
1011
  msgid "Replace with"
1012
  msgstr "Vervang door"
1013
 
1014
+ #: includes/admin/table-printer.php:347
1015
  msgid "Case sensitive"
1016
  msgstr "Hoofdlettergevoelig"
1017
 
1018
+ #: includes/admin/table-printer.php:351
1019
  msgid "Regular expression"
1020
  msgstr "Reguliere expressie"
1021
 
1022
+ #: includes/admin/table-printer.php:359 includes/admin/table-printer.php:813
1023
  msgid "Update"
1024
  msgstr "Aanpassen"
1025
 
1026
+ #: includes/admin/table-printer.php:512
1027
  msgid "Post published on"
1028
  msgstr "Bericht gepubliceer op"
1029
 
1030
+ #: includes/admin/table-printer.php:517
1031
  msgid "Link last checked"
1032
  msgstr "Link laatst gecontroleerd op"
1033
 
1034
+ #: includes/admin/table-printer.php:521
1035
  msgid "Never"
1036
  msgstr "Nooit"
1037
 
1038
+ #: includes/admin/table-printer.php:532
1039
  msgid "Response time"
1040
  msgstr "Responstijd"
1041
 
1042
+ #: includes/admin/table-printer.php:534
1043
  msgid "%2.3f seconds"
1044
  msgstr "%2.3f seconden"
1045
 
1046
+ #: includes/admin/table-printer.php:537
1047
  msgid "Final URL"
1048
  msgstr "Uiteindelijke URL"
1049
 
1050
+ #: includes/admin/table-printer.php:542
1051
  msgid "Redirect count"
1052
  msgstr "Aantal omleidingen"
1053
 
1054
+ #: includes/admin/table-printer.php:547
1055
  msgid "Instance count"
1056
  msgstr "Aantal"
1057
 
1058
+ #: includes/admin/table-printer.php:556
1059
  msgid "This link has failed %d time."
1060
  msgid_plural "This link has failed %d times."
1061
  msgstr[0] "Deze link werkte %d keer niet."
1062
  msgstr[1] "Deze link werkte %d keer niet."
1063
 
1064
+ #: includes/admin/table-printer.php:564
1065
  msgid "This link has been broken for %s."
1066
  msgstr "Deze link is al %s verbroken."
1067
 
1068
+ #: includes/admin/table-printer.php:575
1069
  msgid "Log"
1070
  msgstr "Logboek"
1071
 
1072
+ #: includes/admin/table-printer.php:600
1073
  msgid "Show more info about this link"
1074
  msgstr "Toon meer informatie over deze link"
1075
 
1076
+ #: includes/admin/table-printer.php:618
1077
  msgctxt "checked how long ago"
1078
  msgid "Checked"
1079
  msgstr "Gecontroleerd"
1080
 
1081
+ #: includes/admin/table-printer.php:634
1082
  msgid "Broken for"
1083
  msgstr "Verbroken gedurende"
1084
 
1085
+ #: includes/admin/table-printer.php:654
1086
  msgid "Edit this link"
1087
  msgstr "Bewerk deze link"
1088
 
1089
+ #: includes/admin/table-printer.php:656
1090
  msgid "Remove this link from all posts"
1091
  msgstr "Verwijder deze link uit alle berichten"
1092
 
1093
+ #: includes/admin/table-printer.php:662
1094
  msgid "Remove this link from the list of broken links and mark it as valid"
1095
  msgstr ""
1096
  "Verwijder deze link uit de lijst met verbroken links en markeer hem als "
1097
  "geldig"
1098
 
1099
+ #: includes/admin/table-printer.php:670
1100
  msgid "Hide this link and do not report it again unless its status changes"
1101
  msgstr ""
1102
  "Verberg deze link en laat het niet meer zien, behalve wanneer de status "
1103
  "verandert"
1104
 
1105
+ #: includes/admin/table-printer.php:671
1106
  msgid "Dismiss"
1107
  msgstr "Overslaan"
1108
 
1109
+ #: includes/admin/table-printer.php:676
1110
  msgid "Undismiss this link"
1111
  msgstr "Sla deze link niet over"
1112
 
1113
+ #: includes/admin/table-printer.php:677
1114
  msgid "Undismiss"
1115
  msgstr "Niet overslaan"
1116
 
1117
+ #: includes/admin/table-printer.php:688
1118
  msgid "Update URL"
1119
  msgstr "Bijwerken URL"
1120
 
1121
+ #: includes/admin/table-printer.php:715
1122
  msgid "[An orphaned link! This is a bug.]"
1123
  msgstr "[Een link zonder referentie! Dit is een bug.]"
1124
 
1125
+ #: includes/admin/table-printer.php:792
1126
  msgctxt "inline editor title"
1127
  msgid "Edit Link"
1128
  msgstr "Bewerk Link"
1129
 
1130
+ #: includes/admin/table-printer.php:795
1131
  msgctxt "inline link editor"
1132
  msgid "Text"
1133
  msgstr "Link Tekst"
1134
 
1135
+ #: includes/admin/table-printer.php:800
1136
  msgctxt "inline link editor"
1137
  msgid "URL"
1138
  msgstr "URL"
1139
 
1140
+ #: includes/admin/table-printer.php:805
1141
  msgctxt "inline link editor"
1142
  msgid "Suggestions"
1143
  msgstr "Suggesties:"
1144
 
1145
+ #: includes/admin/table-printer.php:825
1146
  msgid "Use this URL"
1147
  msgstr "Gebruik deze URL"
1148
 
1149
+ #: includes/any-post.php:398 modules/containers/blogroll.php:46
1150
  #: modules/containers/comment.php:153 modules/containers/custom_field.php:207
1151
  msgid "Edit"
1152
  msgstr "Bewerken"
1153
 
1154
+ #: includes/any-post.php:406 modules/containers/custom_field.php:213
1155
  msgid "Move this item to the Trash"
1156
  msgstr "Verplaats dit onderdeel naar de Prullenbak"
1157
 
1158
+ #: includes/any-post.php:408 modules/containers/custom_field.php:215
1159
  msgid "Trash"
1160
  msgstr "Prullenbak"
1161
 
1162
+ #: includes/any-post.php:413 modules/containers/custom_field.php:220
1163
  msgid "Delete this item permanently"
1164
  msgstr "Verwijder dit onderdeel permanent"
1165
 
1166
+ #: includes/any-post.php:415 modules/containers/blogroll.php:47
1167
  #: modules/containers/custom_field.php:222
1168
  msgid "Delete"
1169
  msgstr "Verwijderen"
1170
 
1171
+ #: includes/any-post.php:428
1172
  msgid "Preview &#8220;%s&#8221;"
1173
  msgstr "Voorbeeld &#8220;%s&#8221;"
1174
 
1175
+ #: includes/any-post.php:429
1176
  msgid "Preview"
1177
  msgstr "Voorbeeld"
1178
 
1179
+ #: includes/any-post.php:436
1180
  msgid "View &#8220;%s&#8221;"
1181
  msgstr "Bekijk &#8220;%s&#8221;"
1182
 
1183
+ #: includes/any-post.php:437 modules/containers/comment.php:166
1184
  #: modules/containers/custom_field.php:227
1185
  msgid "View"
1186
  msgstr "Bekijken"
1187
 
1188
+ #: includes/any-post.php:456 modules/containers/custom_field.php:207
1189
  msgid "Edit this item"
1190
  msgstr "Bewerk dit onderdeel"
1191
 
1192
+ #: includes/any-post.php:520 modules/containers/blogroll.php:83
1193
  #: modules/containers/comment.php:43
1194
  msgid "Nothing to update"
1195
  msgstr "Niets aan te passen"
1196
 
1197
+ #: includes/any-post.php:530
1198
  msgid "Updating post %d failed"
1199
  msgstr "Kon bericht %d niet aanpassen"
1200
 
1201
+ #: includes/any-post.php:567 modules/containers/custom_field.php:294
1202
  msgid "Failed to delete post \"%s\" (%d)"
1203
  msgstr "Kon dit bericht niet verwijderen: \"%s\" (%d)"
1204
 
1205
+ #: includes/any-post.php:586 modules/containers/custom_field.php:313
1206
  msgid ""
1207
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
1208
  "disabled"
1210
  "Kan post \"%s\" (%d) niet naar de Prullenbak verplaatsen omdat de "
1211
  "prullenbakmogelijkheid is uitgezet"
1212
 
1213
+ #: includes/any-post.php:606 modules/containers/custom_field.php:332
1214
  msgid "Failed to move post \"%s\" (%d) to the trash"
1215
  msgstr "Kon bericht \"%s\" (%d) niet verplaatsen naar de Prullenbak"
1216
 
1217
+ #: includes/any-post.php:714
1218
  msgid "%d post deleted."
1219
  msgid_plural "%d posts deleted."
1220
  msgstr[0] "%d bericht verwijderd."
1221
  msgstr[1] "%d berichten verwijderd."
1222
 
1223
+ #: includes/any-post.php:716
1224
  msgid "%d page deleted."
1225
  msgid_plural "%d pages deleted."
1226
  msgstr[0] "%d pagina verwijderd."
1227
  msgstr[1] "%d pagina's verwijderd."
1228
 
1229
+ #: includes/any-post.php:718
1230
  msgid "%d \"%s\" deleted."
1231
  msgid_plural "%d \"%s\" deleted."
1232
  msgstr[0] "%d \"%s\" verwijderd."
1233
  msgstr[1] "%d \"%s\" verwijderd."
1234
 
1235
+ #: includes/any-post.php:737
1236
  msgid "%d post moved to the Trash."
1237
  msgid_plural "%d posts moved to the Trash."
1238
  msgstr[0] "%d bericht verplaatst naar de Prullenbak."
1239
  msgstr[1] "%d berichten verplaatst naar de Prullenbak."
1240
 
1241
+ #: includes/any-post.php:739
1242
  msgid "%d page moved to the Trash."
1243
  msgid_plural "%d pages moved to the Trash."
1244
  msgstr[0] "%d pagina verplaatst naar de Prullenbak."
1245
  msgstr[1] "%d pagina's verplaatst naar de Prullenbak."
1246
 
1247
+ #: includes/any-post.php:741
1248
  msgid "%d \"%s\" moved to the Trash."
1249
  msgid_plural "%d \"%s\" moved to the Trash."
1250
  msgstr[0] "%d \"%s\" verplaatst naar de Prullenbak."
1430
  msgid "No links found for your query"
1431
  msgstr "Geen links gevonden voor deze zoekopdracht"
1432
 
1433
+ #: includes/links.php:222
1434
  msgid "The plugin script was terminated while trying to check the link."
1435
  msgstr ""
1436
  "Het plugin script stopte met werken tijdens het controleren van de link."
1437
 
1438
+ #: includes/links.php:268
1439
  msgid "The plugin doesn't know how to check this type of link."
1440
  msgstr "De plugin weet niet hoe het dit type link moet controleren."
1441
 
1442
+ #: includes/links.php:361
1443
  msgid "Link is valid."
1444
  msgstr "Link is geldig."
1445
 
1446
+ #: includes/links.php:363
1447
  msgid "Link is broken."
1448
  msgstr "Link is verbroken."
1449
 
1450
+ #: includes/links.php:582 includes/links.php:684 includes/links.php:711
1451
  msgid "Link is not valid"
1452
  msgstr "Link is niet geldig"
1453
 
1454
+ #: includes/links.php:599
1455
  msgid ""
1456
  "This link can not be edited because it is not used anywhere on this site."
1457
  msgstr ""
1458
  "Deze link kan niet worden aangepast omdat deze nergens op deze site wordt "
1459
  "gebruikt."
1460
 
1461
+ #: includes/links.php:625
1462
  msgid "Failed to create a DB entry for the new URL."
1463
  msgstr "Kon geen databasevermelding voor de nieuwe URL maken."
1464
 
1465
+ #: includes/links.php:691
1466
  msgid "This link is not a redirect"
1467
  msgstr "Deze link is geen omleiding"
1468
 
1469
+ #: includes/links.php:738 includes/links.php:775
1470
  msgid "Couldn't delete the link's database record"
1471
  msgstr "Kon de databaseregel voor deze link niet verwijderen."
1472
 
1473
+ #: includes/links.php:849
1474
  msgctxt "link status"
1475
  msgid "Unknown"
1476
  msgstr "Onbekend"
1477
 
1478
+ #: includes/links.php:863 modules/checkers/http.php:289
1479
  #: modules/extras/mediafire.php:101
1480
  msgid "Unknown Error"
1481
  msgstr "Onbekende Fout"
1482
 
1483
+ #: includes/links.php:887
1484
  msgid "Not checked"
1485
  msgstr "Niet gecontroleerd"
1486
 
1487
+ #: includes/links.php:890
1488
  msgid "False positive"
1489
  msgstr "Vals positief"
1490
 
1491
+ #: includes/links.php:893 modules/extras/fileserve.php:121
1492
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1493
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1494
  msgctxt "link status"
1563
  msgstr[0] "%d maand geleden"
1564
  msgstr[1] "%d maanden geleden"
1565
 
1566
+ #: modules/checkers/http.php:268
1567
  msgid "Server Not Found"
1568
  msgstr "Server Niet Gevonden"
1569
 
1570
+ #: modules/checkers/http.php:283
1571
  msgid "Connection Failed"
1572
  msgstr "Verbinding Mislukt"
1573
 
1574
+ #: modules/checkers/http.php:318 modules/checkers/http.php:388
1575
  msgid "HTTP code : %d"
1576
  msgstr "HTTP code: %d"
1577
 
1578
+ #: modules/checkers/http.php:320 modules/checkers/http.php:390
1579
  msgid "(No response)"
1580
  msgstr "(Geen reactie)"
1581
 
1582
+ #: modules/checkers/http.php:326
1583
  msgid "Most likely the connection timed out or the domain doesn't exist."
1584
  msgstr ""
1585
  "Hoogstwaarschijnlijk is er een time-out voor de verbinding opgetreden, of "
1586
  "het domein bestaat niet."
1587
 
1588
+ #: modules/checkers/http.php:397
1589
  msgid "Request timed out."
1590
  msgstr "Time-out voor Verzoek opgetreden."
1591
 
1592
+ #: modules/checkers/http.php:415
1593
  msgid "Using Snoopy"
1594
  msgstr "Gebruikt Snoopy"
1595
 
2002
  #~ msgstr "Fout bij het vernieuwen van de koppeling %d : %s"
2003
 
2004
  #~ msgid ""
2005
+ #~ "<span class='view'><a class='blc-details-button' href='javascript:"
2006
+ #~ "void(0)' title='Show more info about this link'>Details</a>"
2007
  #~ msgstr ""
2008
+ #~ "<span class='view'><a class='blc-details-button' href='javascript:"
2009
+ #~ "void(0)' title='Toon meer info over deze link'>Details</a>"
2010
 
2011
  #~ msgid ""
2012
  #~ "<span class='delete'><a class='submitdelete blc-unlink-button' "
2048
  #~ "links'><strong>%d verbroken link%s gevonden</strong></a>"
2049
 
2050
  #~ msgid ""
2051
+ #~ "<a class=\"row-title\" href=\"post.php?action=edit&amp;post="
2052
+ #~ "$link[source_id]\" title=\"Edit this post\">{$link[post_title]}</a>"
2053
  #~ msgstr ""
2054
+ #~ "<a class=\"row-title\" href=\"post.php?action=edit&amp;post="
2055
+ #~ "$link[source_id]\" title=\"Bewerk dit bericht\">{$link[post_title]}</a>"
2056
 
2057
  #~ msgid ""
2058
+ #~ "<a class=\"row-title\" href=\"link.php?action=edit&amp;link_id="
2059
+ #~ "$link[source_id]\" title=\"Edit this bookmark\">{$link[link_text]}</a>"
2060
  #~ msgstr ""
2061
+ #~ "<a class=\"row-title\" href=\"link.php?action=edit&amp;link_id="
2062
+ #~ "$link[source_id]\" title=\"Bewerk deze bladwijzer\">{$link[link_text]}</a>"
languages/broken-link-checker-pt_PT.mo CHANGED
Binary file
languages/broken-link-checker-pt_PT.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Broken Link Checker v1.9\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-11 10:00-0000\n"
6
- "PO-Revision-Date: 2013-10-17 14:32:01+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
9
  "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
21
  "X-Textdomain-Support: yes"
22
 
23
  #: core/core.php:153
24
- #: includes/admin/links-page-js.php:37
25
  #@ broken-link-checker
26
  msgid "Loading..."
27
  msgstr "Carregando..."
@@ -73,287 +73,287 @@ msgstr "Ir a Links offline"
73
  msgid "Settings"
74
  msgstr "Definições"
75
 
76
- #: core/core.php:538
77
  #@ broken-link-checker
78
  msgid "Settings saved."
79
  msgstr "Definições guardadas."
80
 
81
- #: core/core.php:544
82
  #@ broken-link-checker
83
  msgid "Thank you for your donation!"
84
  msgstr "Obrigado pela sua colaboração!"
85
 
86
- #: core/core.php:552
87
  #@ broken-link-checker
88
  msgid "Complete site recheck started."
89
  msgstr "Reverificação completa do sítio iniciada."
90
 
91
- #: core/core.php:561
92
  #@ broken-link-checker
93
  msgid "Details"
94
  msgstr "Detalhes"
95
 
96
- #: core/core.php:575
97
  #@ broken-link-checker
98
  msgid "General"
99
  msgstr "Geral"
100
 
101
- #: core/core.php:576
102
  #@ broken-link-checker
103
  msgid "Look For Links In"
104
  msgstr "Procurar links"
105
 
106
- #: core/core.php:577
107
  #@ broken-link-checker
108
  msgid "Which Links To Check"
109
  msgstr "Links para verificar"
110
 
111
- #: core/core.php:578
112
  #@ broken-link-checker
113
  msgid "Protocols & APIs"
114
  msgstr "Protocolos & APIs"
115
 
116
- #: core/core.php:579
117
  #@ broken-link-checker
118
  msgid "Advanced"
119
  msgstr "Avançado"
120
 
121
- #: core/core.php:594
122
  #@ broken-link-checker
123
  msgid "Broken Link Checker Options"
124
  msgstr "Opções : Links offline"
125
 
126
- #: core/core.php:636
127
- #: includes/admin/table-printer.php:200
128
  #@ broken-link-checker
129
  msgid "Status"
130
  msgstr "Estado"
131
 
132
- #: core/core.php:638
133
  #: includes/admin/options-page-js.php:56
134
  #@ broken-link-checker
135
  msgid "Show debug info"
136
  msgstr "Mostrar sistema"
137
 
138
- #: core/core.php:666
139
  #@ broken-link-checker
140
  msgid "Check each link"
141
  msgstr "Verificar cada link"
142
 
143
- #: core/core.php:671
144
  #, php-format
145
  #@ broken-link-checker
146
  msgid "Every %s hours"
147
  msgstr "Cada %s horas"
148
 
149
- #: core/core.php:680
150
  #@ broken-link-checker
151
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
152
  msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
153
 
154
- #: core/core.php:687
155
  #@ broken-link-checker
156
  msgid "E-mail notifications"
157
  msgstr "Notificações por e-mail"
158
 
159
- #: core/core.php:693
160
  #@ broken-link-checker
161
  msgid "Send me e-mail notifications about newly detected broken links"
162
  msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
163
 
164
- #: core/core.php:727
165
  #@ broken-link-checker
166
  msgid "Link tweaks"
167
  msgstr "Melhoria de Links"
168
 
169
- #: core/core.php:733
170
  #@ broken-link-checker
171
  msgid "Apply custom formatting to broken links"
172
  msgstr "Aplicar formatação personalizada para os links offline"
173
 
174
- #: core/core.php:737
175
- #: core/core.php:768
176
  #@ broken-link-checker
177
  msgid "Edit CSS"
178
  msgstr "Editar CSS"
179
 
180
- #: core/core.php:764
181
  #@ broken-link-checker
182
  msgid "Apply custom formatting to removed links"
183
  msgstr "Aplicar formatação personalizada para os links removidos"
184
 
185
- #: core/core.php:797
186
  #@ broken-link-checker
187
  msgid "Stop search engines from following broken links"
188
  msgstr "Não permitir aos motores de busca seguir os links offline"
189
 
190
- #: core/core.php:827
191
  #@ broken-link-checker
192
  msgid "Look for links in"
193
  msgstr "Procurar links em"
194
 
195
- #: core/core.php:838
196
  #@ broken-link-checker
197
  msgid "Post statuses"
198
  msgstr "Estado do Artigo"
199
 
200
- #: core/core.php:871
201
  #@ broken-link-checker
202
  msgid "Link types"
203
  msgstr "Tipos de link"
204
 
205
- #: core/core.php:877
206
  #@ broken-link-checker
207
  msgid "Error : All link parsers missing!"
208
  msgstr "Erro : Análises aos links não encontradas!"
209
 
210
- #: core/core.php:884
211
  #@ broken-link-checker
212
  msgid "Exclusion list"
213
  msgstr "Lista de exclusão"
214
 
215
- #: core/core.php:885
216
  #@ broken-link-checker
217
  msgid "Don't check links where the URL contains any of these words (one per line) :"
218
  msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
219
 
220
- #: core/core.php:903
221
  #@ broken-link-checker
222
  msgid "Check links using"
223
  msgstr "Verificar links utilizando"
224
 
225
- #: core/core.php:922
226
- #: includes/links.php:857
227
  #@ broken-link-checker
228
  msgid "Timeout"
229
  msgstr "Intervalo"
230
 
231
- #: core/core.php:928
232
- #: core/core.php:997
233
- #: core/core.php:2904
234
  #, php-format
235
  #@ broken-link-checker
236
  #@ default
237
  msgid "%s seconds"
238
  msgstr "%s segundos"
239
 
240
- #: core/core.php:937
241
  #@ broken-link-checker
242
  msgid "Links that take longer than this to load will be marked as broken."
243
  msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
244
 
245
- #: core/core.php:944
246
  #@ broken-link-checker
247
  msgid "Link monitor"
248
  msgstr "Monitor de links"
249
 
250
- #: core/core.php:952
251
  #@ broken-link-checker
252
  msgid "Run continuously while the Dashboard is open"
253
  msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
254
 
255
- #: core/core.php:960
256
  #@ broken-link-checker
257
  msgid "Run hourly in the background"
258
  msgstr "Executar a cada hora em segundo plano"
259
 
260
- #: core/core.php:991
261
  #@ broken-link-checker
262
  msgid "Max. execution time"
263
  msgstr "Tempo máximo de execução"
264
 
265
- #: core/core.php:1008
266
  #@ broken-link-checker
267
  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."
268
  msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analisa os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
269
 
270
- #: core/core.php:1017
271
  #@ broken-link-checker
272
  msgid "Server load limit"
273
  msgstr "Limite de carregamento do servidor"
274
 
275
- #: core/core.php:1032
276
  #, php-format
277
  #@ broken-link-checker
278
  msgid "Current load : %s"
279
  msgstr "Carga atual : %s"
280
 
281
- #: core/core.php:1038
282
  #, php-format
283
  #@ broken-link-checker
284
  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."
285
  msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
286
 
287
- #: core/core.php:1046
288
  #@ broken-link-checker
289
  msgid "Not available"
290
  msgstr "Não disponível"
291
 
292
- #: core/core.php:1048
293
  #@ broken-link-checker
294
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
295
  msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
296
 
297
- #: core/core.php:1056
298
  #@ broken-link-checker
299
  msgid "Forced recheck"
300
  msgstr "Reverificação forçada"
301
 
302
- #: core/core.php:1059
303
  #@ broken-link-checker
304
  msgid "Re-check all pages"
305
  msgstr "Verificar de novo todas as páginas"
306
 
307
- #: core/core.php:1063
308
  #@ broken-link-checker
309
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
310
  msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e reverificar todo o sítio desde o início."
311
 
312
- #: core/core.php:1074
313
  #@ default
314
  msgid "Save Changes"
315
  msgstr "Guardar alterações"
316
 
317
- #: core/core.php:1125
318
  #@ broken-link-checker
319
  msgid "Configure"
320
  msgstr "Configurar"
321
 
322
- #: core/core.php:1338
323
- #: core/core.php:1421
324
- #: core/core.php:1453
325
  #, php-format
326
  #@ broken-link-checker
327
  msgid "Database error : %s"
328
  msgstr "Erro na Base de dados: %s"
329
 
330
- #: core/core.php:1403
331
  #@ broken-link-checker
332
  msgid "You must enter a filter name!"
333
  msgstr "Deve introduzir um nome para o filtro!"
334
 
335
- #: core/core.php:1407
336
  #@ broken-link-checker
337
  msgid "Invalid search query."
338
  msgstr "Procura inválida."
339
 
340
- #: core/core.php:1416
341
  #, php-format
342
  #@ broken-link-checker
343
  msgid "Filter \"%s\" created"
344
  msgstr "Filtro \"%s\" criado"
345
 
346
- #: core/core.php:1443
347
  #@ broken-link-checker
348
  msgid "Filter ID not specified."
349
  msgstr "ID do Filtro não especificado."
350
 
351
- #: core/core.php:1450
352
  #@ broken-link-checker
353
  msgid "Filter deleted"
354
  msgstr "Filtro eliminado"
355
 
356
- #: core/core.php:1498
357
  #, php-format
358
  #@ broken-link-checker
359
  msgid "Replaced %d redirect with a direct link"
@@ -361,7 +361,7 @@ msgid_plural "Replaced %d redirects with direct links"
361
  msgstr[0] "Substituído %d redirect com link direto"
362
  msgstr[1] "Substituídos %d redirects com links diretos"
363
 
364
- #: core/core.php:1509
365
  #, php-format
366
  #@ broken-link-checker
367
  msgid "Failed to fix %d redirect"
@@ -369,12 +369,12 @@ msgid_plural "Failed to fix %d redirects"
369
  msgstr[0] "Não foi possível reparar %d redirect"
370
  msgstr[1] "Não foi possível reparar %d redirects"
371
 
372
- #: core/core.php:1519
373
  #@ broken-link-checker
374
  msgid "None of the selected links are redirects!"
375
  msgstr "Nenhum dos links selecionados são redirects!"
376
 
377
- #: core/core.php:1598
378
  #, php-format
379
  #@ broken-link-checker
380
  msgid "%d link updated."
@@ -382,7 +382,7 @@ msgid_plural "%d links updated."
382
  msgstr[0] "%d link atualizado."
383
  msgstr[1] "%d links atualizados."
384
 
385
- #: core/core.php:1609
386
  #, php-format
387
  #@ broken-link-checker
388
  msgid "Failed to update %d link."
@@ -390,7 +390,7 @@ msgid_plural "Failed to update %d links."
390
  msgstr[0] "Erro a atualizar %d link."
391
  msgstr[1] "Erro a atualizar %d links."
392
 
393
- #: core/core.php:1698
394
  #, php-format
395
  #@ broken-link-checker
396
  msgid "%d link removed"
@@ -398,7 +398,7 @@ msgid_plural "%d links removed"
398
  msgstr[0] "%d link eliminado"
399
  msgstr[1] "%d links eliminados"
400
 
401
- #: core/core.php:1709
402
  #, php-format
403
  #@ broken-link-checker
404
  msgid "Failed to remove %d link"
@@ -406,7 +406,7 @@ msgid_plural "Failed to remove %d links"
406
  msgstr[0] "Erro a remover %d link"
407
  msgstr[1] "Erro a remover %d links"
408
 
409
- #: core/core.php:1818
410
  #, php-format
411
  #@ default
412
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
@@ -414,12 +414,12 @@ msgid_plural "%d items were skipped because they can't be moved to the Trash. Yo
414
  msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
415
  msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
416
 
417
- #: core/core.php:1839
418
  #@ broken-link-checker
419
  msgid "Didn't find anything to delete!"
420
  msgstr "Não foi encontrado nada para apagar!"
421
 
422
- #: core/core.php:1868
423
  #, php-format
424
  #@ broken-link-checker
425
  msgid "%d link scheduled for rechecking"
@@ -427,19 +427,19 @@ msgid_plural "%d links scheduled for rechecking"
427
  msgstr[0] "%d link agendado para verificação"
428
  msgstr[1] "%d links agendados para verificação"
429
 
430
- #: core/core.php:1913
431
- #: core/core.php:2522
432
  #@ broken-link-checker
433
  msgid "This link was manually marked as working by the user."
434
  msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
435
 
436
- #: core/core.php:1920
437
  #, php-format
438
  #@ broken-link-checker
439
  msgid "Couldn't modify link %d"
440
  msgstr "Impossível modificar o link %d"
441
 
442
- #: core/core.php:1931
443
  #, php-format
444
  #@ broken-link-checker
445
  msgid "%d link marked as not broken"
@@ -447,59 +447,59 @@ msgid_plural "%d links marked as not broken"
447
  msgstr[0] "%d link marcado como funcional"
448
  msgstr[1] "%d links marcados como funcionais"
449
 
450
- #: core/core.php:1970
451
  #@ broken-link-checker
452
  msgid "Table columns"
453
  msgstr "Colunas da Tabela"
454
 
455
- #: core/core.php:1989
456
  #@ default
457
  msgid "Show on screen"
458
  msgstr "Mostrar no ecrán"
459
 
460
- #: core/core.php:1996
461
  #@ broken-link-checker
462
  msgid "links"
463
  msgstr "links"
464
 
465
- #: core/core.php:1997
466
- #: includes/admin/table-printer.php:168
467
  #@ default
468
  #@ broken-link-checker
469
  msgid "Apply"
470
  msgstr "Aplicar"
471
 
472
- #: core/core.php:2001
473
  #@ broken-link-checker
474
  msgid "Misc"
475
  msgstr "Vários"
476
 
477
- #: core/core.php:2016
478
  #, php-format
479
  #@ broken-link-checker
480
  msgid "Highlight links broken for at least %s days"
481
  msgstr "Realçar links offline pelo menos durante %s dias"
482
 
483
- #: core/core.php:2025
484
  #@ broken-link-checker
485
  msgid "Color-code status codes"
486
  msgstr "Cor-código status códigos"
487
 
488
- #: core/core.php:2042
489
- #: core/core.php:2507
490
- #: core/core.php:2547
491
- #: core/core.php:2580
492
- #: core/core.php:2667
493
  #@ broken-link-checker
494
  msgid "You're not allowed to do that!"
495
  msgstr "Não permitido!"
496
 
497
- #: core/core.php:2377
498
  #@ broken-link-checker
499
  msgid "View broken links"
500
  msgstr "Ver links offline"
501
 
502
- #: core/core.php:2378
503
  #, php-format
504
  #@ broken-link-checker
505
  msgid "Found %d broken link"
@@ -507,12 +507,12 @@ msgid_plural "Found %d broken links"
507
  msgstr[0] "Encontrado %d Link offline"
508
  msgstr[1] "Encontrados %d Links offline"
509
 
510
- #: core/core.php:2384
511
  #@ broken-link-checker
512
  msgid "No broken links found."
513
  msgstr "Não existem links offline."
514
 
515
- #: core/core.php:2391
516
  #, php-format
517
  #@ broken-link-checker
518
  msgid "%d URL in the work queue"
@@ -520,156 +520,156 @@ msgid_plural "%d URLs in the work queue"
520
  msgstr[0] "%d URL em espera"
521
  msgstr[1] "%d URLs em espera"
522
 
523
- #: core/core.php:2394
524
  #@ broken-link-checker
525
  msgid "No URLs in the work queue."
526
  msgstr "Não existem URL em espera para verificação."
527
 
528
- #: core/core.php:2423
529
  #@ broken-link-checker
530
  msgid "Searching your blog for links..."
531
  msgstr "Procurando links..."
532
 
533
- #: core/core.php:2425
534
  #@ broken-link-checker
535
  msgid "No links detected."
536
  msgstr "Nenhuns links encontrados."
537
 
538
- #: core/core.php:2515
539
- #: core/core.php:2555
540
- #: core/core.php:2595
541
- #: core/core.php:2677
542
  #, php-format
543
  #@ broken-link-checker
544
  msgid "Oops, I can't find the link %d"
545
  msgstr "Oops, não é possível encontrar o link %d"
546
 
547
- #: core/core.php:2528
548
- #: core/core.php:2565
549
  #@ broken-link-checker
550
  msgid "Oops, couldn't modify the link!"
551
  msgstr "Oops, não é possível modificar o link!"
552
 
553
- #: core/core.php:2531
554
- #: core/core.php:2568
555
- #: core/core.php:2703
556
  #@ broken-link-checker
557
  msgid "Error : link_id not specified"
558
  msgstr "Erro : link_id não especificado"
559
 
560
- #: core/core.php:2604
561
  #@ broken-link-checker
562
  msgid "Oops, the new URL is invalid!"
563
  msgstr "Oops, a nova URL não é válida!"
564
 
565
- #: core/core.php:2686
566
  #@ broken-link-checker
567
  msgid "An unexpected error occured!"
568
  msgstr "Ocorreu um erro inesperado!"
569
 
570
- #: core/core.php:2586
571
  #@ broken-link-checker
572
  msgid "Error : link_id or new_url not specified"
573
  msgstr "Erro : link_id ou new_url não especificado"
574
 
575
- #: core/core.php:2712
576
  #@ broken-link-checker
577
  msgid "You don't have sufficient privileges to access this information!"
578
  msgstr "Não tem privilégios suficientes para aceder a esta informação!"
579
 
580
- #: core/core.php:2725
581
  #@ broken-link-checker
582
  msgid "Error : link ID not specified"
583
  msgstr "Erro : link ID não especificado"
584
 
585
- #: core/core.php:2739
586
  #, php-format
587
  #@ broken-link-checker
588
  msgid "Failed to load link details (%s)"
589
  msgstr "Erro a carregar os detalhes do link (%s)"
590
 
591
- #: core/core.php:2793
592
  #@ broken-link-checker
593
  msgid "Broken Link Checker"
594
  msgstr "Links offline"
595
 
596
- #: core/core.php:2813
597
  #@ broken-link-checker
598
  msgid "PHP version"
599
  msgstr "Versão PHP"
600
 
601
- #: core/core.php:2819
602
  #@ broken-link-checker
603
  msgid "MySQL version"
604
  msgstr "Versão MySQL"
605
 
606
- #: core/core.php:2832
607
  #@ broken-link-checker
608
  msgid "You have an old version of CURL. Redirect detection may not work properly."
609
  msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
610
 
611
- #: core/core.php:2844
612
- #: core/core.php:2860
613
- #: core/core.php:2865
614
  #@ broken-link-checker
615
  msgid "Not installed"
616
  msgstr "Não instalado"
617
 
618
- #: core/core.php:2847
619
  #@ broken-link-checker
620
  msgid "CURL version"
621
  msgstr "Versão CURL"
622
 
623
- #: core/core.php:2853
624
  #@ broken-link-checker
625
  msgid "Installed"
626
  msgstr "Instalado"
627
 
628
- #: core/core.php:2866
629
  #@ broken-link-checker
630
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
631
  msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
632
 
633
- #: core/core.php:2877
634
  #@ broken-link-checker
635
  msgid "On"
636
  msgstr "Ativado"
637
 
638
- #: core/core.php:2878
639
  #@ broken-link-checker
640
  msgid "Redirects may be detected as broken links when safe_mode is on."
641
  msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
642
 
643
- #: core/core.php:2883
644
- #: core/core.php:2897
645
  #@ broken-link-checker
646
  msgid "Off"
647
  msgstr "Desativado"
648
 
649
- #: core/core.php:2891
650
  #, php-format
651
  #@ broken-link-checker
652
  msgid "On ( %s )"
653
  msgstr "Ativado ( %s )"
654
 
655
- #: core/core.php:2892
656
  #@ broken-link-checker
657
  msgid "Redirects may be detected as broken links when open_basedir is on."
658
  msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
659
 
660
- #: core/core.php:2921
661
  #@ broken-link-checker
662
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
663
  msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
664
 
665
- #: core/core.php:3044
666
  #: core/core.php:3159
 
667
  #, php-format
668
  #@ broken-link-checker
669
  msgid "[%s] Broken links detected"
670
  msgstr "[%s] Links offline encontrados"
671
 
672
- #: core/core.php:3050
673
  #, php-format
674
  #@ broken-link-checker
675
  msgid "Broken Link Checker has detected %d new broken link on your site."
@@ -677,7 +677,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links on your site.
677
  msgstr[0] "Links offline detetou %d novo link sem ligação."
678
  msgstr[1] "Links offline detetou %d novos links sem ligação."
679
 
680
- #: core/core.php:3081
681
  #, php-format
682
  #@ broken-link-checker
683
  msgid "Here's a list of the first %d broken links:"
@@ -685,50 +685,50 @@ msgid_plural "Here's a list of the first %d broken links:"
685
  msgstr[0] "Lista do primeiro %d link sem ligação:"
686
  msgstr[1] "Lista dos primeiros %d links sem ligação:"
687
 
688
- #: core/core.php:3089
689
  #@ broken-link-checker
690
  msgid "Here's a list of the new broken links: "
691
  msgstr "Novos links offline: "
692
 
693
- #: core/core.php:3098
694
  #, php-format
695
  #@ broken-link-checker
696
  msgid "Link text : %s"
697
  msgstr "Texto do Link : %s"
698
 
699
- #: core/core.php:3099
700
  #, php-format
701
  #@ broken-link-checker
702
  msgid "Link URL : <a href=\"%s\">%s</a>"
703
  msgstr "Link URL : <a href=\"%s\">%s</a>"
704
 
705
- #: core/core.php:3100
706
  #, php-format
707
  #@ broken-link-checker
708
  msgid "Source : %s"
709
  msgstr "Fonte : %s"
710
 
711
- #: core/core.php:3114
712
  #@ broken-link-checker
713
  msgid "You can see all broken links here:"
714
  msgstr "Links offline:"
715
 
716
- #: core/init.php:242
717
  #@ default
718
  msgid "Once Weekly"
719
  msgstr "Uma vez por semana"
720
 
721
- #: core/init.php:248
722
  #@ default
723
  msgid "Twice a Month"
724
  msgstr "Bi-Mensal"
725
 
726
- #: core/init.php:324
727
  #@ broken-link-checker
728
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
729
  msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
730
 
731
- #: includes/any-post.php:397
732
  #: modules/containers/blogroll.php:46
733
  #: modules/containers/comment.php:153
734
  #: modules/containers/custom_field.php:207
@@ -736,96 +736,96 @@ msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin
736
  msgid "Edit"
737
  msgstr "Editar"
738
 
739
- #: includes/any-post.php:405
740
  #: modules/containers/custom_field.php:213
741
  #@ default
742
  msgid "Move this item to the Trash"
743
  msgstr "Apagar este item"
744
 
745
- #: includes/any-post.php:407
746
  #: modules/containers/custom_field.php:215
747
  #@ default
748
  msgid "Trash"
749
  msgstr "Lixo"
750
 
751
- #: includes/any-post.php:412
752
  #: modules/containers/custom_field.php:220
753
  #@ default
754
  msgid "Delete this item permanently"
755
  msgstr "Apagar este item definitivamente"
756
 
757
- #: includes/any-post.php:414
758
  #: modules/containers/blogroll.php:47
759
  #: modules/containers/custom_field.php:222
760
  #@ default
761
  msgid "Delete"
762
  msgstr "Apagar"
763
 
764
- #: includes/any-post.php:427
765
  #, php-format
766
  #@ default
767
  msgid "Preview &#8220;%s&#8221;"
768
  msgstr "Pré-vizualizar &#8220;%s&#8221;"
769
 
770
- #: includes/any-post.php:428
771
  #@ default
772
  msgid "Preview"
773
  msgstr "Pré-visualizar"
774
 
775
- #: includes/any-post.php:435
776
  #, php-format
777
  #@ default
778
  msgid "View &#8220;%s&#8221;"
779
  msgstr "Visualizar &#8220;%s&#8221;"
780
 
781
- #: includes/any-post.php:436
782
  #: modules/containers/comment.php:166
783
  #: modules/containers/custom_field.php:227
784
  #@ default
785
  msgid "View"
786
  msgstr "Ver"
787
 
788
- #: includes/any-post.php:455
789
  #: modules/containers/custom_field.php:207
790
  #@ default
791
  msgid "Edit this item"
792
  msgstr "Editar este item"
793
 
794
- #: includes/any-post.php:519
795
  #: modules/containers/blogroll.php:83
796
  #: modules/containers/comment.php:43
797
  #@ broken-link-checker
798
  msgid "Nothing to update"
799
  msgstr "Sem atualização"
800
 
801
- #: includes/any-post.php:529
802
  #, php-format
803
  #@ broken-link-checker
804
  msgid "Updating post %d failed"
805
  msgstr "Atualização do artigo %d falhou"
806
 
807
- #: includes/any-post.php:566
808
  #: modules/containers/custom_field.php:294
809
  #, php-format
810
  #@ broken-link-checker
811
  msgid "Failed to delete post \"%s\" (%d)"
812
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
813
 
814
- #: includes/any-post.php:585
815
  #: modules/containers/custom_field.php:313
816
  #, php-format
817
  #@ broken-link-checker
818
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
819
  msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
820
 
821
- #: includes/any-post.php:605
822
  #: modules/containers/custom_field.php:332
823
  #, php-format
824
  #@ broken-link-checker
825
  msgid "Failed to move post \"%s\" (%d) to the trash"
826
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
827
 
828
- #: includes/any-post.php:713
829
  #, php-format
830
  #@ broken-link-checker
831
  msgid "%d post deleted."
@@ -833,7 +833,7 @@ msgid_plural "%d posts deleted."
833
  msgstr[0] "%d artigo apagado."
834
  msgstr[1] "%d artigos apagados."
835
 
836
- #: includes/any-post.php:715
837
  #, php-format
838
  #@ broken-link-checker
839
  msgid "%d page deleted."
@@ -841,7 +841,7 @@ msgid_plural "%d pages deleted."
841
  msgstr[0] "%d página apagada."
842
  msgstr[1] "%d páginas apagadas."
843
 
844
- #: includes/any-post.php:717
845
  #, php-format
846
  #@ broken-link-checker
847
  msgid "%d \"%s\" deleted."
@@ -849,7 +849,7 @@ msgid_plural "%d \"%s\" deleted."
849
  msgstr[0] "%d \"%s\" apagado."
850
  msgstr[1] "%d \"%s\" apagados."
851
 
852
- #: includes/any-post.php:736
853
  #, php-format
854
  #@ broken-link-checker
855
  msgid "%d post moved to the Trash."
@@ -857,7 +857,7 @@ msgid_plural "%d posts moved to the Trash."
857
  msgstr[0] "%d artigo transferido para o Lixo."
858
  msgstr[1] "%d artigos transferidos para o Lixo."
859
 
860
- #: includes/any-post.php:738
861
  #, php-format
862
  #@ broken-link-checker
863
  msgid "%d page moved to the Trash."
@@ -865,7 +865,7 @@ msgid_plural "%d pages moved to the Trash."
865
  msgstr[0] "%d página transferida para o Lixo."
866
  msgstr[1] "%d páginas transferidas para o Lixo."
867
 
868
- #: includes/any-post.php:740
869
  #, php-format
870
  #@ broken-link-checker
871
  msgid "%d \"%s\" moved to the Trash."
@@ -959,68 +959,68 @@ msgstr "Resultados da procura"
959
  msgid "No links found for your query"
960
  msgstr "Sem resultados"
961
 
962
- #: includes/links.php:218
963
  #@ broken-link-checker
964
  msgid "The plugin script was terminated while trying to check the link."
965
  msgstr "O script do plugin terminou enquanto tentava verificar o link."
966
 
967
- #: includes/links.php:264
968
  #@ broken-link-checker
969
  msgid "The plugin doesn't know how to check this type of link."
970
  msgstr "O plugin não consegue verificar este tipo de link."
971
 
972
- #: includes/links.php:357
973
  #@ broken-link-checker
974
  msgid "Link is valid."
975
  msgstr "Link operacional."
976
 
977
- #: includes/links.php:359
978
  #@ broken-link-checker
979
  msgid "Link is broken."
980
  msgstr "Link sem ligação."
981
 
982
- #: includes/links.php:572
983
- #: includes/links.php:674
984
- #: includes/links.php:701
985
  #@ broken-link-checker
986
  msgid "Link is not valid"
987
  msgstr "Link inválido"
988
 
989
- #: includes/links.php:589
990
  #@ broken-link-checker
991
  msgid "This link can not be edited because it is not used anywhere on this site."
992
  msgstr "Este link não pode ser editado porque não é utilizado no sítio."
993
 
994
- #: includes/links.php:615
995
  #@ broken-link-checker
996
  msgid "Failed to create a DB entry for the new URL."
997
  msgstr "Falhou a criação de um registo na Base de dados para um novo URL."
998
 
999
- #: includes/links.php:681
1000
  #@ broken-link-checker
1001
  msgid "This link is not a redirect"
1002
  msgstr "O link não é um redirect"
1003
 
1004
- #: includes/links.php:728
1005
- #: includes/links.php:765
1006
  #@ broken-link-checker
1007
  msgid "Couldn't delete the link's database record"
1008
  msgstr "Não é possível apagar o registo do link na Base de dados"
1009
 
1010
- #: includes/links.php:853
1011
- #: modules/checkers/http.php:263
1012
  #: modules/extras/mediafire.php:101
1013
  #@ link status
1014
  #@ broken-link-checker
1015
  msgid "Unknown Error"
1016
  msgstr "Erro Desconhecido"
1017
 
1018
- #: includes/links.php:877
1019
  #@ broken-link-checker
1020
  msgid "Not checked"
1021
  msgstr "Não verificado"
1022
 
1023
- #: includes/links.php:880
1024
  #@ broken-link-checker
1025
  msgid "False positive"
1026
  msgstr "Falso positivo"
@@ -1051,70 +1051,70 @@ msgstr "Remover links não foi implementado no '%s' analisador sintático"
1051
  msgid "Failed to delete old DB tables. Database error : %s"
1052
  msgstr "Não foi possível apagar as tabelas antigas da Base de dados. Erro de Base de dados : %s"
1053
 
1054
- #: includes/admin/links-page-js.php:55
1055
- #: includes/admin/links-page-js.php:517
1056
  #@ broken-link-checker
1057
  msgid "Wait..."
1058
  msgstr "Espere ..."
1059
 
1060
- #: includes/admin/links-page-js.php:100
1061
- #: includes/admin/table-printer.php:658
1062
  #@ broken-link-checker
1063
  msgid "Not broken"
1064
  msgstr "Funcional"
1065
 
1066
- #: includes/admin/links-page-js.php:379
1067
  #, php-format
1068
  #@ broken-link-checker
1069
  msgid "%d instances of the link were successfully modified."
1070
  msgstr "%d casos de links que se modificaram com sucesso."
1071
 
1072
- #: includes/admin/links-page-js.php:385
1073
  #, php-format
1074
  #@ broken-link-checker
1075
  msgid "However, %d instances couldn't be edited and still point to the old URL."
1076
  msgstr "No entanto, %d casos não puderam ser editados e ainda apontam para a antiga URL."
1077
 
1078
- #: includes/admin/links-page-js.php:391
1079
  #@ broken-link-checker
1080
  msgid "The link could not be modified."
1081
  msgstr "O link não pode ser modificado."
1082
 
1083
- #: includes/admin/links-page-js.php:569
1084
  #@ broken-link-checker
1085
  msgid "The following error(s) occured :"
1086
  msgstr "Erro(s) :"
1087
 
1088
- #: includes/admin/links-page-js.php:555
1089
  #, php-format
1090
  #@ broken-link-checker
1091
  msgid "%d instances of the link were successfully unlinked."
1092
  msgstr "%d casos de links foram removidos com sucesso."
1093
 
1094
- #: includes/admin/links-page-js.php:561
1095
  #, php-format
1096
  #@ broken-link-checker
1097
  msgid "However, %d instances couldn't be removed."
1098
  msgstr "No entanto, %d casos não foram removidos."
1099
 
1100
- #: includes/admin/links-page-js.php:566
1101
  #@ broken-link-checker
1102
  msgid "The plugin failed to remove the link."
1103
  msgstr "O plugin não apagou o link."
1104
 
1105
- #: includes/admin/links-page-js.php:577
1106
- #: includes/admin/table-printer.php:276
1107
- #: includes/admin/table-printer.php:652
1108
  #@ broken-link-checker
1109
  msgid "Unlink"
1110
  msgstr "Remover link"
1111
 
1112
- #: includes/admin/links-page-js.php:621
1113
  #@ broken-link-checker
1114
  msgid "Enter a name for the new custom filter"
1115
  msgstr "Introduza o nome para o novo filtro personalizado"
1116
 
1117
- #: includes/admin/links-page-js.php:632
1118
  #@ broken-link-checker
1119
  msgid ""
1120
  "You are about to delete the current filter.\n"
@@ -1123,7 +1123,7 @@ msgstr ""
1123
  "Está a ponto de apagar o filtro atual.\n"
1124
  " 'Cancelar' para sair, 'Aceitar' para apagar"
1125
 
1126
- #: includes/admin/links-page-js.php:652
1127
  #@ broken-link-checker
1128
  msgid ""
1129
  "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"
@@ -1132,7 +1132,7 @@ msgstr ""
1132
  "Tem a certeza que deseja eliminar todos os artigos, favoritos ou outros itens que contenham quaisquer dos links selecionados? Esta ação não pode ser anulada.\n"
1133
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1134
 
1135
- #: includes/admin/links-page-js.php:662
1136
  #@ broken-link-checker
1137
  msgid ""
1138
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
@@ -1141,12 +1141,12 @@ msgstr ""
1141
  "Tem a certeza que deseja eliminar todos os links selecionados? Esta ação não pode ser anulada.\n"
1142
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1143
 
1144
- #: includes/admin/links-page-js.php:771
1145
  #@ broken-link-checker
1146
  msgid "Enter a search string first."
1147
  msgstr "Introduza primeiro uma string de procura."
1148
 
1149
- #: includes/admin/links-page-js.php:778
1150
  #@ broken-link-checker
1151
  msgid "Select one or more links to edit."
1152
  msgstr "Selecione um ou mais links para editar."
@@ -1172,13 +1172,13 @@ msgid "Link text"
1172
  msgstr "Texto do link"
1173
 
1174
  #: includes/admin/search-form.php:45
1175
- #: includes/admin/table-printer.php:205
1176
  #@ broken-link-checker
1177
  msgid "URL"
1178
  msgstr "URL"
1179
 
1180
  #: includes/admin/search-form.php:48
1181
- #: includes/admin/table-printer.php:522
1182
  #@ broken-link-checker
1183
  msgid "HTTP code"
1184
  msgstr "Código HTTP"
@@ -1210,9 +1210,9 @@ msgid "Search Links"
1210
  msgstr "Procurar"
1211
 
1212
  #: includes/admin/search-form.php:113
1213
- #: includes/admin/table-printer.php:352
1214
- #: includes/admin/table-printer.php:682
1215
- #: includes/admin/table-printer.php:807
1216
  #@ broken-link-checker
1217
  msgid "Cancel"
1218
  msgstr "Cancelar"
@@ -1237,151 +1237,151 @@ msgstr "Regressar ao Painel"
1237
  msgid "More plugins by Janis Elsts"
1238
  msgstr "Mais plugins de Janis Elsts"
1239
 
1240
- #: includes/admin/table-printer.php:182
1241
  #@ broken-link-checker
1242
  msgid "Compact View"
1243
  msgstr "Visão compacta"
1244
 
1245
- #: includes/admin/table-printer.php:183
1246
  #@ broken-link-checker
1247
  msgid "Detailed View"
1248
  msgstr "Detalhes"
1249
 
1250
- #: includes/admin/table-printer.php:212
1251
  #@ broken-link-checker
1252
  msgid "Source"
1253
  msgstr "Fonte"
1254
 
1255
- #: includes/admin/table-printer.php:218
1256
  #@ broken-link-checker
1257
  msgid "Link Text"
1258
  msgstr "Texto do Link"
1259
 
1260
- #: includes/admin/table-printer.php:271
1261
  #@ broken-link-checker
1262
  msgid "Bulk Actions"
1263
  msgstr "Edição em Massa"
1264
 
1265
- #: includes/admin/table-printer.php:272
1266
- #: includes/admin/table-printer.php:649
1267
  #@ broken-link-checker
1268
  msgid "Edit URL"
1269
  msgstr "Editar URL"
1270
 
1271
- #: includes/admin/table-printer.php:273
1272
  #@ broken-link-checker
1273
  msgid "Recheck"
1274
  msgstr "Voltar a verificar"
1275
 
1276
- #: includes/admin/table-printer.php:274
1277
  #@ broken-link-checker
1278
  msgid "Fix redirects"
1279
  msgstr "Reparar redirects"
1280
 
1281
- #: includes/admin/table-printer.php:275
1282
  #@ broken-link-checker
1283
  msgid "Mark as not broken"
1284
  msgstr "Funcional"
1285
 
1286
- #: includes/admin/table-printer.php:279
1287
  #@ broken-link-checker
1288
  msgid "Move sources to Trash"
1289
  msgstr "Apagar fontes"
1290
 
1291
- #: includes/admin/table-printer.php:281
1292
  #@ broken-link-checker
1293
  msgid "Delete sources"
1294
  msgstr "Apagar fontes"
1295
 
1296
- #: includes/admin/table-printer.php:296
1297
  #@ default
1298
  msgid "&laquo;"
1299
  msgstr "&laquo;"
1300
 
1301
- #: includes/admin/table-printer.php:297
1302
  #@ default
1303
  msgid "&raquo;"
1304
  msgstr "&raquo;"
1305
 
1306
- #: includes/admin/table-printer.php:305
1307
  #, php-format
1308
  #@ broken-link-checker
1309
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1310
  msgstr "Mostrando %s&#8211;%s de <span class=\"current-link-count\">%s</span>"
1311
 
1312
- #: includes/admin/table-printer.php:328
1313
  #@ broken-link-checker
1314
  msgid "Bulk Edit URLs"
1315
  msgstr "Editar URLs em massa"
1316
 
1317
- #: includes/admin/table-printer.php:330
1318
  #@ broken-link-checker
1319
  msgid "Find"
1320
  msgstr "Procura"
1321
 
1322
- #: includes/admin/table-printer.php:334
1323
  #@ broken-link-checker
1324
  msgid "Replace with"
1325
  msgstr "Substituir com"
1326
 
1327
- #: includes/admin/table-printer.php:342
1328
  #@ broken-link-checker
1329
  msgid "Case sensitive"
1330
  msgstr "Coincidir maiúsculas/minúsculas"
1331
 
1332
- #: includes/admin/table-printer.php:346
1333
  #@ broken-link-checker
1334
  msgid "Regular expression"
1335
  msgstr "Expressão regular"
1336
 
1337
- #: includes/admin/table-printer.php:354
1338
- #: includes/admin/table-printer.php:808
1339
  #@ broken-link-checker
1340
  msgid "Update"
1341
  msgstr "Atualizar"
1342
 
1343
- #: includes/admin/table-printer.php:507
1344
  #@ broken-link-checker
1345
  msgid "Post published on"
1346
  msgstr "Artigo publicado em"
1347
 
1348
- #: includes/admin/table-printer.php:512
1349
  #@ broken-link-checker
1350
  msgid "Link last checked"
1351
  msgstr "Última verificação"
1352
 
1353
- #: includes/admin/table-printer.php:516
1354
  #@ broken-link-checker
1355
  msgid "Never"
1356
  msgstr "Nunca"
1357
 
1358
- #: includes/admin/table-printer.php:527
1359
  #@ broken-link-checker
1360
  msgid "Response time"
1361
  msgstr "Tempo de resposta"
1362
 
1363
- #: includes/admin/table-printer.php:529
1364
  #, php-format
1365
  #@ broken-link-checker
1366
  msgid "%2.3f seconds"
1367
  msgstr "%2.3f segundos"
1368
 
1369
- #: includes/admin/table-printer.php:532
1370
  #@ broken-link-checker
1371
  msgid "Final URL"
1372
  msgstr "URL final"
1373
 
1374
- #: includes/admin/table-printer.php:537
1375
  #@ broken-link-checker
1376
  msgid "Redirect count"
1377
  msgstr "Contagem de redirects"
1378
 
1379
- #: includes/admin/table-printer.php:542
1380
  #@ broken-link-checker
1381
  msgid "Instance count"
1382
  msgstr "Contagem de casos"
1383
 
1384
- #: includes/admin/table-printer.php:551
1385
  #, php-format
1386
  #@ broken-link-checker
1387
  msgid "This link has failed %d time."
@@ -1389,81 +1389,81 @@ msgid_plural "This link has failed %d times."
1389
  msgstr[0] "Este link falhou %d vez."
1390
  msgstr[1] "Este link falhou %d vezes."
1391
 
1392
- #: includes/admin/table-printer.php:559
1393
  #, php-format
1394
  #@ broken-link-checker
1395
  msgid "This link has been broken for %s."
1396
  msgstr "Link offline durante %s."
1397
 
1398
- #: includes/admin/table-printer.php:570
1399
  #@ broken-link-checker
1400
  msgid "Log"
1401
  msgstr "Registo"
1402
 
1403
- #: includes/admin/table-printer.php:595
1404
  #@ broken-link-checker
1405
  msgid "Show more info about this link"
1406
  msgstr "Mostrar mais informação sobre este link"
1407
 
1408
- #: includes/admin/table-printer.php:629
1409
  #@ broken-link-checker
1410
  msgid "Broken for"
1411
  msgstr "Offline"
1412
 
1413
- #: includes/admin/table-printer.php:651
1414
  #@ broken-link-checker
1415
  msgid "Remove this link from all posts"
1416
  msgstr "Eliminar este link"
1417
 
1418
- #: includes/admin/table-printer.php:657
1419
  #@ broken-link-checker
1420
  msgid "Remove this link from the list of broken links and mark it as valid"
1421
  msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
1422
 
1423
- #: includes/admin/table-printer.php:683
1424
  #@ broken-link-checker
1425
  msgid "Update URL"
1426
  msgstr "Atualizar URL"
1427
 
1428
- #: includes/admin/table-printer.php:710
1429
  #@ broken-link-checker
1430
  msgid "[An orphaned link! This is a bug.]"
1431
  msgstr "[Um link órfão! Bug.]"
1432
 
1433
- #: modules/checkers/http.php:242
1434
  #@ broken-link-checker
1435
  msgid "Server Not Found"
1436
  msgstr "Servidor Não Encontrado"
1437
 
1438
- #: modules/checkers/http.php:257
1439
  #@ broken-link-checker
1440
  msgid "Connection Failed"
1441
  msgstr "Sem Ligação"
1442
 
1443
- #: modules/checkers/http.php:292
1444
- #: modules/checkers/http.php:362
1445
  #, php-format
1446
  #@ broken-link-checker
1447
  msgid "HTTP code : %d"
1448
  msgstr "Código HTTP : %d"
1449
 
1450
- #: modules/checkers/http.php:294
1451
- #: modules/checkers/http.php:364
1452
  #@ broken-link-checker
1453
  msgid "(No response)"
1454
  msgstr "(Sem resposta)"
1455
 
1456
- #: modules/checkers/http.php:300
1457
  #@ broken-link-checker
1458
  msgid "Most likely the connection timed out or the domain doesn't exist."
1459
  msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
1460
 
1461
- #: modules/checkers/http.php:371
1462
  #@ broken-link-checker
1463
  msgid "Request timed out."
1464
  msgstr "Tempo de espera esgotado."
1465
 
1466
- #: modules/checkers/http.php:389
1467
  #@ broken-link-checker
1468
  msgid "Using Snoopy"
1469
  msgstr "Utilizando Snoopy"
@@ -1722,18 +1722,18 @@ msgstr "Imagem"
1722
  msgid "Custom field"
1723
  msgstr "Campo personalizado"
1724
 
1725
- #: core/core.php:701
1726
  #@ broken-link-checker
1727
  msgid "Send authors e-mail notifications about broken links in their posts"
1728
  msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
1729
 
1730
- #: core/core.php:2451
1731
  #@ broken-link-checker
1732
  msgctxt "current load"
1733
  msgid "Unknown"
1734
  msgstr "Desconhecido"
1735
 
1736
- #: core/core.php:3165
1737
  #, php-format
1738
  #@ broken-link-checker
1739
  msgid "Broken Link Checker has detected %d new broken link in your posts."
@@ -1741,7 +1741,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links in your posts
1741
  msgstr[0] "%d novo link offline encontrado nos seus artigos."
1742
  msgstr[1] "%d novos links offline encontrados nos seus artigos."
1743
 
1744
- #: includes/admin/table-printer.php:613
1745
  #@ broken-link-checker
1746
  msgctxt "checked how long ago"
1747
  msgid "Checked"
@@ -1849,13 +1849,13 @@ msgctxt "module name"
1849
  msgid "Pages"
1850
  msgstr "Páginas"
1851
 
1852
- #: includes/links.php:839
1853
  #@ broken-link-checker
1854
  msgctxt "link status"
1855
  msgid "Unknown"
1856
  msgstr "Desconhecido"
1857
 
1858
- #: includes/links.php:883
1859
  #: modules/extras/fileserve.php:121
1860
  #: modules/extras/megaupload.php:115
1861
  #: modules/extras/rapidshare.php:145
@@ -1970,19 +1970,19 @@ msgctxt "verb"
1970
  msgid "Trash"
1971
  msgstr "Lixo"
1972
 
1973
- #: core/core.php:753
1974
  #, php-format
1975
  #@ broken-link-checker
1976
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
1977
  msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
1978
 
1979
- #: core/core.php:756
1980
- #: core/core.php:787
1981
  #@ broken-link-checker
1982
  msgid "Click \"Save Changes\" to update example output."
1983
  msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
1984
 
1985
- #: core/core.php:784
1986
  #, php-format
1987
  #@ broken-link-checker
1988
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
@@ -2042,27 +2042,27 @@ msgstr "Vídeo Megavideo embutido"
2042
  msgid "Using RapidShare API"
2043
  msgstr "Utilizar RapidShare API"
2044
 
2045
- #: includes/admin/table-printer.php:223
2046
  #@ broken-link-checker
2047
  msgid "Redirect URL"
2048
  msgstr "Redirect URL"
2049
 
2050
- #: includes/admin/table-printer.php:665
2051
  #@ broken-link-checker
2052
  msgid "Hide this link and do not report it again unless its status changes"
2053
  msgstr "Ocultar este link e não reportá-lo de novo expecto se houver mudança de estado "
2054
 
2055
- #: includes/admin/table-printer.php:666
2056
  #@ broken-link-checker
2057
  msgid "Dismiss"
2058
  msgstr "Descartar"
2059
 
2060
- #: includes/admin/table-printer.php:671
2061
  #@ broken-link-checker
2062
  msgid "Undismiss this link"
2063
  msgstr "Restabelecer este link"
2064
 
2065
- #: includes/admin/table-printer.php:672
2066
  #@ broken-link-checker
2067
  msgid "Undismiss"
2068
  msgstr "Restabelecer"
@@ -2082,7 +2082,7 @@ msgstr "Links descartados"
2082
  msgid "No dismissed links found"
2083
  msgstr "Nenhuns links descartados encontrados"
2084
 
2085
- #: core/core.php:2400
2086
  #, php-format
2087
  #@ broken-link-checker
2088
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
@@ -2091,7 +2091,7 @@ msgid_plural "%d unique URLs"
2091
  msgstr[0] "%d URL única"
2092
  msgstr[1] "%d URLs únicas"
2093
 
2094
- #: core/core.php:2404
2095
  #, php-format
2096
  #@ broken-link-checker
2097
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
@@ -2100,46 +2100,46 @@ msgid_plural "%d links"
2100
  msgstr[0] "%d link"
2101
  msgstr[1] "%d links"
2102
 
2103
- #: core/core.php:2410
2104
  #, php-format
2105
  #@ broken-link-checker
2106
  msgid "Detected %1$s in %2$s and still searching..."
2107
  msgstr "Encontrados %1$s em %2$s e procurando..."
2108
 
2109
- #: core/core.php:2416
2110
  #, php-format
2111
  #@ broken-link-checker
2112
  msgid "Detected %1$s in %2$s."
2113
  msgstr "Encontrados %1$s em %2$s."
2114
 
2115
- #: core/core.php:708
2116
  #@ broken-link-checker
2117
  msgid "Notification e-mail address"
2118
  msgstr "Endereço de e-mail para Notificação"
2119
 
2120
- #: core/core.php:720
2121
  #@ broken-link-checker
2122
  msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
2123
  msgstr "Deixar em branco para usar o endereço de e-mail especificado em Configurações &rarr; Geral."
2124
 
2125
- #: core/core.php:968
2126
  #@ broken-link-checker
2127
  msgid "Show the dashboard widget for"
2128
  msgstr "Mostrar o widget do Painel para"
2129
 
2130
- #: core/core.php:973
2131
  #@ broken-link-checker
2132
  msgctxt "dashboard widget visibility"
2133
  msgid "Administrator"
2134
  msgstr "Administrador"
2135
 
2136
- #: core/core.php:974
2137
  #@ broken-link-checker
2138
  msgctxt "dashboard widget visibility"
2139
  msgid "Editor and above"
2140
  msgstr "Editor e superior"
2141
 
2142
- #: core/core.php:975
2143
  #@ broken-link-checker
2144
  msgctxt "dashboard widget visibility"
2145
  msgid "Nobody (disables the widget)"
@@ -2198,99 +2198,131 @@ msgctxt "module name"
2198
  msgid "Smart YouTube httpv:// URLs"
2199
  msgstr "Smart YouTube httpv:// URLs"
2200
 
2201
- #: core/core.php:805
2202
  #@ broken-link-checker
2203
  msgctxt "settings page"
2204
  msgid "Suggestions"
2205
  msgstr "Sugestões"
2206
 
2207
- #: core/core.php:811
2208
  #@ broken-link-checker
2209
  msgid "Suggest alternatives to broken links"
2210
  msgstr "Sugerir links offline alternativos"
2211
 
2212
- #: core/core.php:1208
2213
  #@ broken-link-checker
2214
  msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
2215
  msgstr "Introduzir os nomes dos campos personalizados que pretende verificar (um por linha).<br />Se um campo tiver código HTML, utilizar o prefixo <code>html:</code>. Por exemplo, <code>html:nome_campo</code>."
2216
 
2217
- #: core/core.php:2619
2218
  #@ broken-link-checker
2219
  msgid "An unexpected error occurred!"
2220
  msgstr "Ocorreu um erro inesperado!"
2221
 
2222
- #: includes/admin/links-page-js.php:235
2223
  #@ broken-link-checker
2224
  msgctxt "link text"
2225
  msgid "(None)"
2226
  msgstr "(Nenhum)"
2227
 
2228
- #: includes/admin/links-page-js.php:236
2229
  #@ broken-link-checker
2230
  msgctxt "link text"
2231
  msgid "(Multiple links)"
2232
  msgstr "(Múltiplos links)"
2233
 
2234
- #: includes/admin/links-page-js.php:294
2235
  #@ broken-link-checker
2236
  msgctxt "link suggestions"
2237
  msgid "Searching..."
2238
  msgstr "Procurando..."
2239
 
2240
- #: includes/admin/links-page-js.php:295
2241
  #@ broken-link-checker
2242
  msgctxt "link suggestions"
2243
  msgid "No suggestions available."
2244
  msgstr "Nenhumas sugestões disponíveis."
2245
 
2246
- #: includes/admin/links-page-js.php:296
2247
  #, php-format
2248
  #@ broken-link-checker
2249
  msgctxt "link suggestions"
2250
  msgid "Archived page from %s (via the Wayback Machine)"
2251
  msgstr "Página arquivada de %s (via Wayback Machine)"
2252
 
2253
- #: includes/admin/links-page-js.php:394
2254
  #@ broken-link-checker
2255
  msgid "The following error(s) occurred :"
2256
  msgstr "Ocorreu o seguinte erro(s): "
2257
 
2258
- #: includes/admin/links-page-js.php:480
2259
  #@ broken-link-checker
2260
  msgid "Error: Link URL must not be empty."
2261
  msgstr "Erro: URL do link não pode ser nulo."
2262
 
2263
- #: includes/admin/table-printer.php:649
2264
  #@ broken-link-checker
2265
  msgid "Edit this link"
2266
  msgstr "Editar este link"
2267
 
2268
- #: includes/admin/table-printer.php:787
2269
  #@ broken-link-checker
2270
  msgctxt "inline editor title"
2271
  msgid "Edit Link"
2272
  msgstr "Editar Link"
2273
 
2274
- #: includes/admin/table-printer.php:790
2275
  #@ broken-link-checker
2276
  msgctxt "inline link editor"
2277
  msgid "Text"
2278
  msgstr "Texto"
2279
 
2280
- #: includes/admin/table-printer.php:795
2281
  #@ broken-link-checker
2282
  msgctxt "inline link editor"
2283
  msgid "URL"
2284
  msgstr "URL"
2285
 
2286
- #: includes/admin/table-printer.php:800
2287
  #@ broken-link-checker
2288
  msgctxt "inline link editor"
2289
  msgid "Suggestions"
2290
  msgstr "Sugestões"
2291
 
2292
- #: includes/admin/table-printer.php:820
2293
  #@ broken-link-checker
2294
  msgid "Use this URL"
2295
  msgstr "Utilizar URL"
2296
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Broken Link Checker v1.9.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2011-12-11 10:00-0000\n"
6
+ "PO-Revision-Date: 2014-03-31 13:03:47+0000\n"
7
  "Last-Translator: \n"
8
  "Language-Team: wordpress.mowster.net <wordpress@mowster.net>\n"
9
  "MIME-Version: 1.0\n"
21
  "X-Textdomain-Support: yes"
22
 
23
  #: core/core.php:153
24
+ #: includes/admin/links-page-js.php:44
25
  #@ broken-link-checker
26
  msgid "Loading..."
27
  msgstr "Carregando..."
73
  msgid "Settings"
74
  msgstr "Definições"
75
 
76
+ #: core/core.php:572
77
  #@ broken-link-checker
78
  msgid "Settings saved."
79
  msgstr "Definições guardadas."
80
 
81
+ #: core/core.php:578
82
  #@ broken-link-checker
83
  msgid "Thank you for your donation!"
84
  msgstr "Obrigado pela sua colaboração!"
85
 
86
+ #: core/core.php:586
87
  #@ broken-link-checker
88
  msgid "Complete site recheck started."
89
  msgstr "Reverificação completa do sítio iniciada."
90
 
91
+ #: core/core.php:595
92
  #@ broken-link-checker
93
  msgid "Details"
94
  msgstr "Detalhes"
95
 
96
+ #: core/core.php:609
97
  #@ broken-link-checker
98
  msgid "General"
99
  msgstr "Geral"
100
 
101
+ #: core/core.php:610
102
  #@ broken-link-checker
103
  msgid "Look For Links In"
104
  msgstr "Procurar links"
105
 
106
+ #: core/core.php:611
107
  #@ broken-link-checker
108
  msgid "Which Links To Check"
109
  msgstr "Links para verificar"
110
 
111
+ #: core/core.php:612
112
  #@ broken-link-checker
113
  msgid "Protocols & APIs"
114
  msgstr "Protocolos & APIs"
115
 
116
+ #: core/core.php:613
117
  #@ broken-link-checker
118
  msgid "Advanced"
119
  msgstr "Avançado"
120
 
121
+ #: core/core.php:628
122
  #@ broken-link-checker
123
  msgid "Broken Link Checker Options"
124
  msgstr "Opções : Links offline"
125
 
126
+ #: core/core.php:670
127
+ #: includes/admin/table-printer.php:203
128
  #@ broken-link-checker
129
  msgid "Status"
130
  msgstr "Estado"
131
 
132
+ #: core/core.php:672
133
  #: includes/admin/options-page-js.php:56
134
  #@ broken-link-checker
135
  msgid "Show debug info"
136
  msgstr "Mostrar sistema"
137
 
138
+ #: core/core.php:700
139
  #@ broken-link-checker
140
  msgid "Check each link"
141
  msgstr "Verificar cada link"
142
 
143
+ #: core/core.php:705
144
  #, php-format
145
  #@ broken-link-checker
146
  msgid "Every %s hours"
147
  msgstr "Cada %s horas"
148
 
149
+ #: core/core.php:714
150
  #@ broken-link-checker
151
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
152
  msgstr "Os links existentes serão verificados com esta frequência. Os novos links serão verificados logo que possível."
153
 
154
+ #: core/core.php:721
155
  #@ broken-link-checker
156
  msgid "E-mail notifications"
157
  msgstr "Notificações por e-mail"
158
 
159
+ #: core/core.php:727
160
  #@ broken-link-checker
161
  msgid "Send me e-mail notifications about newly detected broken links"
162
  msgstr "Enviar um e-mail notificando sobre os novos links offline encontrados"
163
 
164
+ #: core/core.php:761
165
  #@ broken-link-checker
166
  msgid "Link tweaks"
167
  msgstr "Melhoria de Links"
168
 
169
+ #: core/core.php:767
170
  #@ broken-link-checker
171
  msgid "Apply custom formatting to broken links"
172
  msgstr "Aplicar formatação personalizada para os links offline"
173
 
174
+ #: core/core.php:771
175
+ #: core/core.php:802
176
  #@ broken-link-checker
177
  msgid "Edit CSS"
178
  msgstr "Editar CSS"
179
 
180
+ #: core/core.php:798
181
  #@ broken-link-checker
182
  msgid "Apply custom formatting to removed links"
183
  msgstr "Aplicar formatação personalizada para os links removidos"
184
 
185
+ #: core/core.php:831
186
  #@ broken-link-checker
187
  msgid "Stop search engines from following broken links"
188
  msgstr "Não permitir aos motores de busca seguir os links offline"
189
 
190
+ #: core/core.php:861
191
  #@ broken-link-checker
192
  msgid "Look for links in"
193
  msgstr "Procurar links em"
194
 
195
+ #: core/core.php:872
196
  #@ broken-link-checker
197
  msgid "Post statuses"
198
  msgstr "Estado do Artigo"
199
 
200
+ #: core/core.php:905
201
  #@ broken-link-checker
202
  msgid "Link types"
203
  msgstr "Tipos de link"
204
 
205
+ #: core/core.php:911
206
  #@ broken-link-checker
207
  msgid "Error : All link parsers missing!"
208
  msgstr "Erro : Análises aos links não encontradas!"
209
 
210
+ #: core/core.php:918
211
  #@ broken-link-checker
212
  msgid "Exclusion list"
213
  msgstr "Lista de exclusão"
214
 
215
+ #: core/core.php:919
216
  #@ broken-link-checker
217
  msgid "Don't check links where the URL contains any of these words (one per line) :"
218
  msgstr "Não verificar links que a URL tenha alguma destas palavras (uma por linha) :"
219
 
220
+ #: core/core.php:937
221
  #@ broken-link-checker
222
  msgid "Check links using"
223
  msgstr "Verificar links utilizando"
224
 
225
+ #: core/core.php:956
226
+ #: includes/links.php:867
227
  #@ broken-link-checker
228
  msgid "Timeout"
229
  msgstr "Intervalo"
230
 
231
+ #: core/core.php:962
232
+ #: core/core.php:1031
233
+ #: core/core.php:3019
234
  #, php-format
235
  #@ broken-link-checker
236
  #@ default
237
  msgid "%s seconds"
238
  msgstr "%s segundos"
239
 
240
+ #: core/core.php:971
241
  #@ broken-link-checker
242
  msgid "Links that take longer than this to load will be marked as broken."
243
  msgstr "Os links que demoram mais que este tempo a abrir serão marcados como offline."
244
 
245
+ #: core/core.php:978
246
  #@ broken-link-checker
247
  msgid "Link monitor"
248
  msgstr "Monitor de links"
249
 
250
+ #: core/core.php:986
251
  #@ broken-link-checker
252
  msgid "Run continuously while the Dashboard is open"
253
  msgstr "Executar continuamente enquanto o Painel do WordPress está aberto"
254
 
255
+ #: core/core.php:994
256
  #@ broken-link-checker
257
  msgid "Run hourly in the background"
258
  msgstr "Executar a cada hora em segundo plano"
259
 
260
+ #: core/core.php:1025
261
  #@ broken-link-checker
262
  msgid "Max. execution time"
263
  msgstr "Tempo máximo de execução"
264
 
265
+ #: core/core.php:1042
266
  #@ broken-link-checker
267
  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."
268
  msgstr "O plugin funciona executando periodicamente uma tarefa em segundo plano que analisa os links, verifica os URL encontrados e realiza outras tarefas que consomem tempo. Aqui pode-se estabelecer a duração máxima cada vez que o monitor de links é executado antes de parar."
269
 
270
+ #: core/core.php:1051
271
  #@ broken-link-checker
272
  msgid "Server load limit"
273
  msgstr "Limite de carregamento do servidor"
274
 
275
+ #: core/core.php:1066
276
  #, php-format
277
  #@ broken-link-checker
278
  msgid "Current load : %s"
279
  msgstr "Carga atual : %s"
280
 
281
+ #: core/core.php:1072
282
  #, php-format
283
  #@ broken-link-checker
284
  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."
285
  msgstr "A verificação dos links será suspensa se a média do <a href=\"%s\">carregamento do servidor</a> passa este valor. Deixar o campo em branco para não existir limite."
286
 
287
+ #: core/core.php:1080
288
  #@ broken-link-checker
289
  msgid "Not available"
290
  msgstr "Não disponível"
291
 
292
+ #: core/core.php:1082
293
  #@ broken-link-checker
294
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
295
  msgstr "O limite de carregamento somente funciona em sistemas Linux onde <code>/proc/loadavg</code> está presente e acessível."
296
 
297
+ #: core/core.php:1138
298
  #@ broken-link-checker
299
  msgid "Forced recheck"
300
  msgstr "Reverificação forçada"
301
 
302
+ #: core/core.php:1141
303
  #@ broken-link-checker
304
  msgid "Re-check all pages"
305
  msgstr "Verificar de novo todas as páginas"
306
 
307
+ #: core/core.php:1145
308
  #@ broken-link-checker
309
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
310
  msgstr "\"Opção Nuclear\". Clique para limpar todos os dados do plugin na base de dados e reverificar todo o sítio desde o início."
311
 
312
+ #: core/core.php:1156
313
  #@ default
314
  msgid "Save Changes"
315
  msgstr "Guardar alterações"
316
 
317
+ #: core/core.php:1207
318
  #@ broken-link-checker
319
  msgid "Configure"
320
  msgstr "Configurar"
321
 
322
+ #: core/core.php:1420
323
+ #: core/core.php:1503
324
+ #: core/core.php:1535
325
  #, php-format
326
  #@ broken-link-checker
327
  msgid "Database error : %s"
328
  msgstr "Erro na Base de dados: %s"
329
 
330
+ #: core/core.php:1485
331
  #@ broken-link-checker
332
  msgid "You must enter a filter name!"
333
  msgstr "Deve introduzir um nome para o filtro!"
334
 
335
+ #: core/core.php:1489
336
  #@ broken-link-checker
337
  msgid "Invalid search query."
338
  msgstr "Procura inválida."
339
 
340
+ #: core/core.php:1498
341
  #, php-format
342
  #@ broken-link-checker
343
  msgid "Filter \"%s\" created"
344
  msgstr "Filtro \"%s\" criado"
345
 
346
+ #: core/core.php:1525
347
  #@ broken-link-checker
348
  msgid "Filter ID not specified."
349
  msgstr "ID do Filtro não especificado."
350
 
351
+ #: core/core.php:1532
352
  #@ broken-link-checker
353
  msgid "Filter deleted"
354
  msgstr "Filtro eliminado"
355
 
356
+ #: core/core.php:1580
357
  #, php-format
358
  #@ broken-link-checker
359
  msgid "Replaced %d redirect with a direct link"
361
  msgstr[0] "Substituído %d redirect com link direto"
362
  msgstr[1] "Substituídos %d redirects com links diretos"
363
 
364
+ #: core/core.php:1591
365
  #, php-format
366
  #@ broken-link-checker
367
  msgid "Failed to fix %d redirect"
369
  msgstr[0] "Não foi possível reparar %d redirect"
370
  msgstr[1] "Não foi possível reparar %d redirects"
371
 
372
+ #: core/core.php:1601
373
  #@ broken-link-checker
374
  msgid "None of the selected links are redirects!"
375
  msgstr "Nenhum dos links selecionados são redirects!"
376
 
377
+ #: core/core.php:1680
378
  #, php-format
379
  #@ broken-link-checker
380
  msgid "%d link updated."
382
  msgstr[0] "%d link atualizado."
383
  msgstr[1] "%d links atualizados."
384
 
385
+ #: core/core.php:1691
386
  #, php-format
387
  #@ broken-link-checker
388
  msgid "Failed to update %d link."
390
  msgstr[0] "Erro a atualizar %d link."
391
  msgstr[1] "Erro a atualizar %d links."
392
 
393
+ #: core/core.php:1780
394
  #, php-format
395
  #@ broken-link-checker
396
  msgid "%d link removed"
398
  msgstr[0] "%d link eliminado"
399
  msgstr[1] "%d links eliminados"
400
 
401
+ #: core/core.php:1791
402
  #, php-format
403
  #@ broken-link-checker
404
  msgid "Failed to remove %d link"
406
  msgstr[0] "Erro a remover %d link"
407
  msgstr[1] "Erro a remover %d links"
408
 
409
+ #: core/core.php:1900
410
  #, php-format
411
  #@ default
412
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
414
  msgstr[0] "%d item foi evitado porque não pode ser movido para o Lixo. Necessita de o efetuar manualmente."
415
  msgstr[1] "%d itens foram evitados porque não podem ser movidos para o Lixo. Necessita de o efetuar manualmente."
416
 
417
+ #: core/core.php:1921
418
  #@ broken-link-checker
419
  msgid "Didn't find anything to delete!"
420
  msgstr "Não foi encontrado nada para apagar!"
421
 
422
+ #: core/core.php:1950
423
  #, php-format
424
  #@ broken-link-checker
425
  msgid "%d link scheduled for rechecking"
427
  msgstr[0] "%d link agendado para verificação"
428
  msgstr[1] "%d links agendados para verificação"
429
 
430
+ #: core/core.php:1995
431
+ #: core/core.php:2637
432
  #@ broken-link-checker
433
  msgid "This link was manually marked as working by the user."
434
  msgstr "Este link foi assinalado manualmente como válido pelo utilizador."
435
 
436
+ #: core/core.php:2002
437
  #, php-format
438
  #@ broken-link-checker
439
  msgid "Couldn't modify link %d"
440
  msgstr "Impossível modificar o link %d"
441
 
442
+ #: core/core.php:2013
443
  #, php-format
444
  #@ broken-link-checker
445
  msgid "%d link marked as not broken"
447
  msgstr[0] "%d link marcado como funcional"
448
  msgstr[1] "%d links marcados como funcionais"
449
 
450
+ #: core/core.php:2052
451
  #@ broken-link-checker
452
  msgid "Table columns"
453
  msgstr "Colunas da Tabela"
454
 
455
+ #: core/core.php:2071
456
  #@ default
457
  msgid "Show on screen"
458
  msgstr "Mostrar no ecrán"
459
 
460
+ #: core/core.php:2078
461
  #@ broken-link-checker
462
  msgid "links"
463
  msgstr "links"
464
 
465
+ #: core/core.php:2079
466
+ #: includes/admin/table-printer.php:171
467
  #@ default
468
  #@ broken-link-checker
469
  msgid "Apply"
470
  msgstr "Aplicar"
471
 
472
+ #: core/core.php:2083
473
  #@ broken-link-checker
474
  msgid "Misc"
475
  msgstr "Vários"
476
 
477
+ #: core/core.php:2098
478
  #, php-format
479
  #@ broken-link-checker
480
  msgid "Highlight links broken for at least %s days"
481
  msgstr "Realçar links offline pelo menos durante %s dias"
482
 
483
+ #: core/core.php:2107
484
  #@ broken-link-checker
485
  msgid "Color-code status codes"
486
  msgstr "Cor-código status códigos"
487
 
488
+ #: core/core.php:2124
489
+ #: core/core.php:2622
490
+ #: core/core.php:2662
491
+ #: core/core.php:2695
492
+ #: core/core.php:2782
493
  #@ broken-link-checker
494
  msgid "You're not allowed to do that!"
495
  msgstr "Não permitido!"
496
 
497
+ #: core/core.php:2492
498
  #@ broken-link-checker
499
  msgid "View broken links"
500
  msgstr "Ver links offline"
501
 
502
+ #: core/core.php:2493
503
  #, php-format
504
  #@ broken-link-checker
505
  msgid "Found %d broken link"
507
  msgstr[0] "Encontrado %d Link offline"
508
  msgstr[1] "Encontrados %d Links offline"
509
 
510
+ #: core/core.php:2499
511
  #@ broken-link-checker
512
  msgid "No broken links found."
513
  msgstr "Não existem links offline."
514
 
515
+ #: core/core.php:2506
516
  #, php-format
517
  #@ broken-link-checker
518
  msgid "%d URL in the work queue"
520
  msgstr[0] "%d URL em espera"
521
  msgstr[1] "%d URLs em espera"
522
 
523
+ #: core/core.php:2509
524
  #@ broken-link-checker
525
  msgid "No URLs in the work queue."
526
  msgstr "Não existem URL em espera para verificação."
527
 
528
+ #: core/core.php:2538
529
  #@ broken-link-checker
530
  msgid "Searching your blog for links..."
531
  msgstr "Procurando links..."
532
 
533
+ #: core/core.php:2540
534
  #@ broken-link-checker
535
  msgid "No links detected."
536
  msgstr "Nenhuns links encontrados."
537
 
538
+ #: core/core.php:2630
539
+ #: core/core.php:2670
540
+ #: core/core.php:2710
541
+ #: core/core.php:2792
542
  #, php-format
543
  #@ broken-link-checker
544
  msgid "Oops, I can't find the link %d"
545
  msgstr "Oops, não é possível encontrar o link %d"
546
 
547
+ #: core/core.php:2643
548
+ #: core/core.php:2680
549
  #@ broken-link-checker
550
  msgid "Oops, couldn't modify the link!"
551
  msgstr "Oops, não é possível modificar o link!"
552
 
553
+ #: core/core.php:2646
554
+ #: core/core.php:2683
555
+ #: core/core.php:2818
556
  #@ broken-link-checker
557
  msgid "Error : link_id not specified"
558
  msgstr "Erro : link_id não especificado"
559
 
560
+ #: core/core.php:2719
561
  #@ broken-link-checker
562
  msgid "Oops, the new URL is invalid!"
563
  msgstr "Oops, a nova URL não é válida!"
564
 
565
+ #: core/core.php:2801
566
  #@ broken-link-checker
567
  msgid "An unexpected error occured!"
568
  msgstr "Ocorreu um erro inesperado!"
569
 
570
+ #: core/core.php:2701
571
  #@ broken-link-checker
572
  msgid "Error : link_id or new_url not specified"
573
  msgstr "Erro : link_id ou new_url não especificado"
574
 
575
+ #: core/core.php:2827
576
  #@ broken-link-checker
577
  msgid "You don't have sufficient privileges to access this information!"
578
  msgstr "Não tem privilégios suficientes para aceder a esta informação!"
579
 
580
+ #: core/core.php:2840
581
  #@ broken-link-checker
582
  msgid "Error : link ID not specified"
583
  msgstr "Erro : link ID não especificado"
584
 
585
+ #: core/core.php:2854
586
  #, php-format
587
  #@ broken-link-checker
588
  msgid "Failed to load link details (%s)"
589
  msgstr "Erro a carregar os detalhes do link (%s)"
590
 
591
+ #: core/core.php:2908
592
  #@ broken-link-checker
593
  msgid "Broken Link Checker"
594
  msgstr "Links offline"
595
 
596
+ #: core/core.php:2928
597
  #@ broken-link-checker
598
  msgid "PHP version"
599
  msgstr "Versão PHP"
600
 
601
+ #: core/core.php:2934
602
  #@ broken-link-checker
603
  msgid "MySQL version"
604
  msgstr "Versão MySQL"
605
 
606
+ #: core/core.php:2947
607
  #@ broken-link-checker
608
  msgid "You have an old version of CURL. Redirect detection may not work properly."
609
  msgstr "Versão de CURL obsoleta. A deteção de redirects pode não funcionar corretamente."
610
 
611
+ #: core/core.php:2959
612
+ #: core/core.php:2975
613
+ #: core/core.php:2980
614
  #@ broken-link-checker
615
  msgid "Not installed"
616
  msgstr "Não instalado"
617
 
618
+ #: core/core.php:2962
619
  #@ broken-link-checker
620
  msgid "CURL version"
621
  msgstr "Versão CURL"
622
 
623
+ #: core/core.php:2968
624
  #@ broken-link-checker
625
  msgid "Installed"
626
  msgstr "Instalado"
627
 
628
+ #: core/core.php:2981
629
  #@ broken-link-checker
630
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
631
  msgstr "Instalação de CURL ou Snoopy necessário para que funcione o plugin!"
632
 
633
+ #: core/core.php:2992
634
  #@ broken-link-checker
635
  msgid "On"
636
  msgstr "Ativado"
637
 
638
+ #: core/core.php:2993
639
  #@ broken-link-checker
640
  msgid "Redirects may be detected as broken links when safe_mode is on."
641
  msgstr "Os redirects podem ser detetados como links offline quando o safe_mode está habilitado."
642
 
643
+ #: core/core.php:2998
644
+ #: core/core.php:3012
645
  #@ broken-link-checker
646
  msgid "Off"
647
  msgstr "Desativado"
648
 
649
+ #: core/core.php:3006
650
  #, php-format
651
  #@ broken-link-checker
652
  msgid "On ( %s )"
653
  msgstr "Ativado ( %s )"
654
 
655
+ #: core/core.php:3007
656
  #@ broken-link-checker
657
  msgid "Redirects may be detected as broken links when open_basedir is on."
658
  msgstr "Os redirects podem ser considerados links offline quando o open_basedir está ativo."
659
 
660
+ #: core/core.php:3036
661
  #@ broken-link-checker
662
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
663
  msgstr "Se este valor é zero depois de recarregar várias provavelmente encontrou um bug."
664
 
 
665
  #: core/core.php:3159
666
+ #: core/core.php:3278
667
  #, php-format
668
  #@ broken-link-checker
669
  msgid "[%s] Broken links detected"
670
  msgstr "[%s] Links offline encontrados"
671
 
672
+ #: core/core.php:3165
673
  #, php-format
674
  #@ broken-link-checker
675
  msgid "Broken Link Checker has detected %d new broken link on your site."
677
  msgstr[0] "Links offline detetou %d novo link sem ligação."
678
  msgstr[1] "Links offline detetou %d novos links sem ligação."
679
 
680
+ #: core/core.php:3196
681
  #, php-format
682
  #@ broken-link-checker
683
  msgid "Here's a list of the first %d broken links:"
685
  msgstr[0] "Lista do primeiro %d link sem ligação:"
686
  msgstr[1] "Lista dos primeiros %d links sem ligação:"
687
 
688
+ #: core/core.php:3204
689
  #@ broken-link-checker
690
  msgid "Here's a list of the new broken links: "
691
  msgstr "Novos links offline: "
692
 
693
+ #: core/core.php:3213
694
  #, php-format
695
  #@ broken-link-checker
696
  msgid "Link text : %s"
697
  msgstr "Texto do Link : %s"
698
 
699
+ #: core/core.php:3214
700
  #, php-format
701
  #@ broken-link-checker
702
  msgid "Link URL : <a href=\"%s\">%s</a>"
703
  msgstr "Link URL : <a href=\"%s\">%s</a>"
704
 
705
+ #: core/core.php:3215
706
  #, php-format
707
  #@ broken-link-checker
708
  msgid "Source : %s"
709
  msgstr "Fonte : %s"
710
 
711
+ #: core/core.php:3229
712
  #@ broken-link-checker
713
  msgid "You can see all broken links here:"
714
  msgstr "Links offline:"
715
 
716
+ #: core/init.php:249
717
  #@ default
718
  msgid "Once Weekly"
719
  msgstr "Uma vez por semana"
720
 
721
+ #: core/init.php:255
722
  #@ default
723
  msgid "Twice a Month"
724
  msgstr "Bi-Mensal"
725
 
726
+ #: core/init.php:331
727
  #@ broken-link-checker
728
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
729
  msgstr "A instalação do plugin Links offline falhou. Desative e ative o plugin."
730
 
731
+ #: includes/any-post.php:398
732
  #: modules/containers/blogroll.php:46
733
  #: modules/containers/comment.php:153
734
  #: modules/containers/custom_field.php:207
736
  msgid "Edit"
737
  msgstr "Editar"
738
 
739
+ #: includes/any-post.php:406
740
  #: modules/containers/custom_field.php:213
741
  #@ default
742
  msgid "Move this item to the Trash"
743
  msgstr "Apagar este item"
744
 
745
+ #: includes/any-post.php:408
746
  #: modules/containers/custom_field.php:215
747
  #@ default
748
  msgid "Trash"
749
  msgstr "Lixo"
750
 
751
+ #: includes/any-post.php:413
752
  #: modules/containers/custom_field.php:220
753
  #@ default
754
  msgid "Delete this item permanently"
755
  msgstr "Apagar este item definitivamente"
756
 
757
+ #: includes/any-post.php:415
758
  #: modules/containers/blogroll.php:47
759
  #: modules/containers/custom_field.php:222
760
  #@ default
761
  msgid "Delete"
762
  msgstr "Apagar"
763
 
764
+ #: includes/any-post.php:428
765
  #, php-format
766
  #@ default
767
  msgid "Preview &#8220;%s&#8221;"
768
  msgstr "Pré-vizualizar &#8220;%s&#8221;"
769
 
770
+ #: includes/any-post.php:429
771
  #@ default
772
  msgid "Preview"
773
  msgstr "Pré-visualizar"
774
 
775
+ #: includes/any-post.php:436
776
  #, php-format
777
  #@ default
778
  msgid "View &#8220;%s&#8221;"
779
  msgstr "Visualizar &#8220;%s&#8221;"
780
 
781
+ #: includes/any-post.php:437
782
  #: modules/containers/comment.php:166
783
  #: modules/containers/custom_field.php:227
784
  #@ default
785
  msgid "View"
786
  msgstr "Ver"
787
 
788
+ #: includes/any-post.php:456
789
  #: modules/containers/custom_field.php:207
790
  #@ default
791
  msgid "Edit this item"
792
  msgstr "Editar este item"
793
 
794
+ #: includes/any-post.php:520
795
  #: modules/containers/blogroll.php:83
796
  #: modules/containers/comment.php:43
797
  #@ broken-link-checker
798
  msgid "Nothing to update"
799
  msgstr "Sem atualização"
800
 
801
+ #: includes/any-post.php:530
802
  #, php-format
803
  #@ broken-link-checker
804
  msgid "Updating post %d failed"
805
  msgstr "Atualização do artigo %d falhou"
806
 
807
+ #: includes/any-post.php:567
808
  #: modules/containers/custom_field.php:294
809
  #, php-format
810
  #@ broken-link-checker
811
  msgid "Failed to delete post \"%s\" (%d)"
812
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
813
 
814
+ #: includes/any-post.php:586
815
  #: modules/containers/custom_field.php:313
816
  #, php-format
817
  #@ broken-link-checker
818
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
819
  msgstr "Não é possível mover o artigo \"%s\" (%d) para o lixo porque a função está desabilitada"
820
 
821
+ #: includes/any-post.php:606
822
  #: modules/containers/custom_field.php:332
823
  #, php-format
824
  #@ broken-link-checker
825
  msgid "Failed to move post \"%s\" (%d) to the trash"
826
  msgstr "Erro ao apagar o artigo \"%s\" (%d)"
827
 
828
+ #: includes/any-post.php:714
829
  #, php-format
830
  #@ broken-link-checker
831
  msgid "%d post deleted."
833
  msgstr[0] "%d artigo apagado."
834
  msgstr[1] "%d artigos apagados."
835
 
836
+ #: includes/any-post.php:716
837
  #, php-format
838
  #@ broken-link-checker
839
  msgid "%d page deleted."
841
  msgstr[0] "%d página apagada."
842
  msgstr[1] "%d páginas apagadas."
843
 
844
+ #: includes/any-post.php:718
845
  #, php-format
846
  #@ broken-link-checker
847
  msgid "%d \"%s\" deleted."
849
  msgstr[0] "%d \"%s\" apagado."
850
  msgstr[1] "%d \"%s\" apagados."
851
 
852
+ #: includes/any-post.php:737
853
  #, php-format
854
  #@ broken-link-checker
855
  msgid "%d post moved to the Trash."
857
  msgstr[0] "%d artigo transferido para o Lixo."
858
  msgstr[1] "%d artigos transferidos para o Lixo."
859
 
860
+ #: includes/any-post.php:739
861
  #, php-format
862
  #@ broken-link-checker
863
  msgid "%d page moved to the Trash."
865
  msgstr[0] "%d página transferida para o Lixo."
866
  msgstr[1] "%d páginas transferidas para o Lixo."
867
 
868
+ #: includes/any-post.php:741
869
  #, php-format
870
  #@ broken-link-checker
871
  msgid "%d \"%s\" moved to the Trash."
959
  msgid "No links found for your query"
960
  msgstr "Sem resultados"
961
 
962
+ #: includes/links.php:222
963
  #@ broken-link-checker
964
  msgid "The plugin script was terminated while trying to check the link."
965
  msgstr "O script do plugin terminou enquanto tentava verificar o link."
966
 
967
+ #: includes/links.php:268
968
  #@ broken-link-checker
969
  msgid "The plugin doesn't know how to check this type of link."
970
  msgstr "O plugin não consegue verificar este tipo de link."
971
 
972
+ #: includes/links.php:361
973
  #@ broken-link-checker
974
  msgid "Link is valid."
975
  msgstr "Link operacional."
976
 
977
+ #: includes/links.php:363
978
  #@ broken-link-checker
979
  msgid "Link is broken."
980
  msgstr "Link sem ligação."
981
 
982
+ #: includes/links.php:582
983
+ #: includes/links.php:684
984
+ #: includes/links.php:711
985
  #@ broken-link-checker
986
  msgid "Link is not valid"
987
  msgstr "Link inválido"
988
 
989
+ #: includes/links.php:599
990
  #@ broken-link-checker
991
  msgid "This link can not be edited because it is not used anywhere on this site."
992
  msgstr "Este link não pode ser editado porque não é utilizado no sítio."
993
 
994
+ #: includes/links.php:625
995
  #@ broken-link-checker
996
  msgid "Failed to create a DB entry for the new URL."
997
  msgstr "Falhou a criação de um registo na Base de dados para um novo URL."
998
 
999
+ #: includes/links.php:691
1000
  #@ broken-link-checker
1001
  msgid "This link is not a redirect"
1002
  msgstr "O link não é um redirect"
1003
 
1004
+ #: includes/links.php:738
1005
+ #: includes/links.php:775
1006
  #@ broken-link-checker
1007
  msgid "Couldn't delete the link's database record"
1008
  msgstr "Não é possível apagar o registo do link na Base de dados"
1009
 
1010
+ #: includes/links.php:863
1011
+ #: modules/checkers/http.php:289
1012
  #: modules/extras/mediafire.php:101
1013
  #@ link status
1014
  #@ broken-link-checker
1015
  msgid "Unknown Error"
1016
  msgstr "Erro Desconhecido"
1017
 
1018
+ #: includes/links.php:887
1019
  #@ broken-link-checker
1020
  msgid "Not checked"
1021
  msgstr "Não verificado"
1022
 
1023
+ #: includes/links.php:890
1024
  #@ broken-link-checker
1025
  msgid "False positive"
1026
  msgstr "Falso positivo"
1051
  msgid "Failed to delete old DB tables. Database error : %s"
1052
  msgstr "Não foi possível apagar as tabelas antigas da Base de dados. Erro de Base de dados : %s"
1053
 
1054
+ #: includes/admin/links-page-js.php:62
1055
+ #: includes/admin/links-page-js.php:525
1056
  #@ broken-link-checker
1057
  msgid "Wait..."
1058
  msgstr "Espere ..."
1059
 
1060
+ #: includes/admin/links-page-js.php:107
1061
+ #: includes/admin/table-printer.php:663
1062
  #@ broken-link-checker
1063
  msgid "Not broken"
1064
  msgstr "Funcional"
1065
 
1066
+ #: includes/admin/links-page-js.php:387
1067
  #, php-format
1068
  #@ broken-link-checker
1069
  msgid "%d instances of the link were successfully modified."
1070
  msgstr "%d casos de links que se modificaram com sucesso."
1071
 
1072
+ #: includes/admin/links-page-js.php:393
1073
  #, php-format
1074
  #@ broken-link-checker
1075
  msgid "However, %d instances couldn't be edited and still point to the old URL."
1076
  msgstr "No entanto, %d casos não puderam ser editados e ainda apontam para a antiga URL."
1077
 
1078
+ #: includes/admin/links-page-js.php:399
1079
  #@ broken-link-checker
1080
  msgid "The link could not be modified."
1081
  msgstr "O link não pode ser modificado."
1082
 
1083
+ #: includes/admin/links-page-js.php:577
1084
  #@ broken-link-checker
1085
  msgid "The following error(s) occured :"
1086
  msgstr "Erro(s) :"
1087
 
1088
+ #: includes/admin/links-page-js.php:563
1089
  #, php-format
1090
  #@ broken-link-checker
1091
  msgid "%d instances of the link were successfully unlinked."
1092
  msgstr "%d casos de links foram removidos com sucesso."
1093
 
1094
+ #: includes/admin/links-page-js.php:569
1095
  #, php-format
1096
  #@ broken-link-checker
1097
  msgid "However, %d instances couldn't be removed."
1098
  msgstr "No entanto, %d casos não foram removidos."
1099
 
1100
+ #: includes/admin/links-page-js.php:574
1101
  #@ broken-link-checker
1102
  msgid "The plugin failed to remove the link."
1103
  msgstr "O plugin não apagou o link."
1104
 
1105
+ #: includes/admin/links-page-js.php:585
1106
+ #: includes/admin/table-printer.php:281
1107
+ #: includes/admin/table-printer.php:657
1108
  #@ broken-link-checker
1109
  msgid "Unlink"
1110
  msgstr "Remover link"
1111
 
1112
+ #: includes/admin/links-page-js.php:629
1113
  #@ broken-link-checker
1114
  msgid "Enter a name for the new custom filter"
1115
  msgstr "Introduza o nome para o novo filtro personalizado"
1116
 
1117
+ #: includes/admin/links-page-js.php:641
1118
  #@ broken-link-checker
1119
  msgid ""
1120
  "You are about to delete the current filter.\n"
1123
  "Está a ponto de apagar o filtro atual.\n"
1124
  " 'Cancelar' para sair, 'Aceitar' para apagar"
1125
 
1126
+ #: includes/admin/links-page-js.php:665
1127
  #@ broken-link-checker
1128
  msgid ""
1129
  "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"
1132
  "Tem a certeza que deseja eliminar todos os artigos, favoritos ou outros itens que contenham quaisquer dos links selecionados? Esta ação não pode ser anulada.\n"
1133
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1134
 
1135
+ #: includes/admin/links-page-js.php:679
1136
  #@ broken-link-checker
1137
  msgid ""
1138
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
1141
  "Tem a certeza que deseja eliminar todos os links selecionados? Esta ação não pode ser anulada.\n"
1142
  "'Cancelar' para anular a operação, 'Aceitar' para apagar"
1143
 
1144
+ #: includes/admin/links-page-js.php:791
1145
  #@ broken-link-checker
1146
  msgid "Enter a search string first."
1147
  msgstr "Introduza primeiro uma string de procura."
1148
 
1149
+ #: includes/admin/links-page-js.php:798
1150
  #@ broken-link-checker
1151
  msgid "Select one or more links to edit."
1152
  msgstr "Selecione um ou mais links para editar."
1172
  msgstr "Texto do link"
1173
 
1174
  #: includes/admin/search-form.php:45
1175
+ #: includes/admin/table-printer.php:208
1176
  #@ broken-link-checker
1177
  msgid "URL"
1178
  msgstr "URL"
1179
 
1180
  #: includes/admin/search-form.php:48
1181
+ #: includes/admin/table-printer.php:527
1182
  #@ broken-link-checker
1183
  msgid "HTTP code"
1184
  msgstr "Código HTTP"
1210
  msgstr "Procurar"
1211
 
1212
  #: includes/admin/search-form.php:113
1213
+ #: includes/admin/table-printer.php:357
1214
+ #: includes/admin/table-printer.php:687
1215
+ #: includes/admin/table-printer.php:812
1216
  #@ broken-link-checker
1217
  msgid "Cancel"
1218
  msgstr "Cancelar"
1237
  msgid "More plugins by Janis Elsts"
1238
  msgstr "Mais plugins de Janis Elsts"
1239
 
1240
+ #: includes/admin/table-printer.php:185
1241
  #@ broken-link-checker
1242
  msgid "Compact View"
1243
  msgstr "Visão compacta"
1244
 
1245
+ #: includes/admin/table-printer.php:186
1246
  #@ broken-link-checker
1247
  msgid "Detailed View"
1248
  msgstr "Detalhes"
1249
 
1250
+ #: includes/admin/table-printer.php:215
1251
  #@ broken-link-checker
1252
  msgid "Source"
1253
  msgstr "Fonte"
1254
 
1255
+ #: includes/admin/table-printer.php:221
1256
  #@ broken-link-checker
1257
  msgid "Link Text"
1258
  msgstr "Texto do Link"
1259
 
1260
+ #: includes/admin/table-printer.php:276
1261
  #@ broken-link-checker
1262
  msgid "Bulk Actions"
1263
  msgstr "Edição em Massa"
1264
 
1265
+ #: includes/admin/table-printer.php:277
1266
+ #: includes/admin/table-printer.php:654
1267
  #@ broken-link-checker
1268
  msgid "Edit URL"
1269
  msgstr "Editar URL"
1270
 
1271
+ #: includes/admin/table-printer.php:278
1272
  #@ broken-link-checker
1273
  msgid "Recheck"
1274
  msgstr "Voltar a verificar"
1275
 
1276
+ #: includes/admin/table-printer.php:279
1277
  #@ broken-link-checker
1278
  msgid "Fix redirects"
1279
  msgstr "Reparar redirects"
1280
 
1281
+ #: includes/admin/table-printer.php:280
1282
  #@ broken-link-checker
1283
  msgid "Mark as not broken"
1284
  msgstr "Funcional"
1285
 
1286
+ #: includes/admin/table-printer.php:284
1287
  #@ broken-link-checker
1288
  msgid "Move sources to Trash"
1289
  msgstr "Apagar fontes"
1290
 
1291
+ #: includes/admin/table-printer.php:286
1292
  #@ broken-link-checker
1293
  msgid "Delete sources"
1294
  msgstr "Apagar fontes"
1295
 
1296
+ #: includes/admin/table-printer.php:301
1297
  #@ default
1298
  msgid "&laquo;"
1299
  msgstr "&laquo;"
1300
 
1301
+ #: includes/admin/table-printer.php:302
1302
  #@ default
1303
  msgid "&raquo;"
1304
  msgstr "&raquo;"
1305
 
1306
+ #: includes/admin/table-printer.php:310
1307
  #, php-format
1308
  #@ broken-link-checker
1309
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1310
  msgstr "Mostrando %s&#8211;%s de <span class=\"current-link-count\">%s</span>"
1311
 
1312
+ #: includes/admin/table-printer.php:333
1313
  #@ broken-link-checker
1314
  msgid "Bulk Edit URLs"
1315
  msgstr "Editar URLs em massa"
1316
 
1317
+ #: includes/admin/table-printer.php:335
1318
  #@ broken-link-checker
1319
  msgid "Find"
1320
  msgstr "Procura"
1321
 
1322
+ #: includes/admin/table-printer.php:339
1323
  #@ broken-link-checker
1324
  msgid "Replace with"
1325
  msgstr "Substituir com"
1326
 
1327
+ #: includes/admin/table-printer.php:347
1328
  #@ broken-link-checker
1329
  msgid "Case sensitive"
1330
  msgstr "Coincidir maiúsculas/minúsculas"
1331
 
1332
+ #: includes/admin/table-printer.php:351
1333
  #@ broken-link-checker
1334
  msgid "Regular expression"
1335
  msgstr "Expressão regular"
1336
 
1337
+ #: includes/admin/table-printer.php:359
1338
+ #: includes/admin/table-printer.php:813
1339
  #@ broken-link-checker
1340
  msgid "Update"
1341
  msgstr "Atualizar"
1342
 
1343
+ #: includes/admin/table-printer.php:512
1344
  #@ broken-link-checker
1345
  msgid "Post published on"
1346
  msgstr "Artigo publicado em"
1347
 
1348
+ #: includes/admin/table-printer.php:517
1349
  #@ broken-link-checker
1350
  msgid "Link last checked"
1351
  msgstr "Última verificação"
1352
 
1353
+ #: includes/admin/table-printer.php:521
1354
  #@ broken-link-checker
1355
  msgid "Never"
1356
  msgstr "Nunca"
1357
 
1358
+ #: includes/admin/table-printer.php:532
1359
  #@ broken-link-checker
1360
  msgid "Response time"
1361
  msgstr "Tempo de resposta"
1362
 
1363
+ #: includes/admin/table-printer.php:534
1364
  #, php-format
1365
  #@ broken-link-checker
1366
  msgid "%2.3f seconds"
1367
  msgstr "%2.3f segundos"
1368
 
1369
+ #: includes/admin/table-printer.php:537
1370
  #@ broken-link-checker
1371
  msgid "Final URL"
1372
  msgstr "URL final"
1373
 
1374
+ #: includes/admin/table-printer.php:542
1375
  #@ broken-link-checker
1376
  msgid "Redirect count"
1377
  msgstr "Contagem de redirects"
1378
 
1379
+ #: includes/admin/table-printer.php:547
1380
  #@ broken-link-checker
1381
  msgid "Instance count"
1382
  msgstr "Contagem de casos"
1383
 
1384
+ #: includes/admin/table-printer.php:556
1385
  #, php-format
1386
  #@ broken-link-checker
1387
  msgid "This link has failed %d time."
1389
  msgstr[0] "Este link falhou %d vez."
1390
  msgstr[1] "Este link falhou %d vezes."
1391
 
1392
+ #: includes/admin/table-printer.php:564
1393
  #, php-format
1394
  #@ broken-link-checker
1395
  msgid "This link has been broken for %s."
1396
  msgstr "Link offline durante %s."
1397
 
1398
+ #: includes/admin/table-printer.php:575
1399
  #@ broken-link-checker
1400
  msgid "Log"
1401
  msgstr "Registo"
1402
 
1403
+ #: includes/admin/table-printer.php:600
1404
  #@ broken-link-checker
1405
  msgid "Show more info about this link"
1406
  msgstr "Mostrar mais informação sobre este link"
1407
 
1408
+ #: includes/admin/table-printer.php:634
1409
  #@ broken-link-checker
1410
  msgid "Broken for"
1411
  msgstr "Offline"
1412
 
1413
+ #: includes/admin/table-printer.php:656
1414
  #@ broken-link-checker
1415
  msgid "Remove this link from all posts"
1416
  msgstr "Eliminar este link"
1417
 
1418
+ #: includes/admin/table-printer.php:662
1419
  #@ broken-link-checker
1420
  msgid "Remove this link from the list of broken links and mark it as valid"
1421
  msgstr "Eliminar este link da lista dos links offline e marcá-lo como válido"
1422
 
1423
+ #: includes/admin/table-printer.php:688
1424
  #@ broken-link-checker
1425
  msgid "Update URL"
1426
  msgstr "Atualizar URL"
1427
 
1428
+ #: includes/admin/table-printer.php:715
1429
  #@ broken-link-checker
1430
  msgid "[An orphaned link! This is a bug.]"
1431
  msgstr "[Um link órfão! Bug.]"
1432
 
1433
+ #: modules/checkers/http.php:268
1434
  #@ broken-link-checker
1435
  msgid "Server Not Found"
1436
  msgstr "Servidor Não Encontrado"
1437
 
1438
+ #: modules/checkers/http.php:283
1439
  #@ broken-link-checker
1440
  msgid "Connection Failed"
1441
  msgstr "Sem Ligação"
1442
 
1443
+ #: modules/checkers/http.php:318
1444
+ #: modules/checkers/http.php:388
1445
  #, php-format
1446
  #@ broken-link-checker
1447
  msgid "HTTP code : %d"
1448
  msgstr "Código HTTP : %d"
1449
 
1450
+ #: modules/checkers/http.php:320
1451
+ #: modules/checkers/http.php:390
1452
  #@ broken-link-checker
1453
  msgid "(No response)"
1454
  msgstr "(Sem resposta)"
1455
 
1456
+ #: modules/checkers/http.php:326
1457
  #@ broken-link-checker
1458
  msgid "Most likely the connection timed out or the domain doesn't exist."
1459
  msgstr "Provável que o tempo da ligação se tenha esgotado ou que o domínio não exista."
1460
 
1461
+ #: modules/checkers/http.php:397
1462
  #@ broken-link-checker
1463
  msgid "Request timed out."
1464
  msgstr "Tempo de espera esgotado."
1465
 
1466
+ #: modules/checkers/http.php:415
1467
  #@ broken-link-checker
1468
  msgid "Using Snoopy"
1469
  msgstr "Utilizando Snoopy"
1722
  msgid "Custom field"
1723
  msgstr "Campo personalizado"
1724
 
1725
+ #: core/core.php:735
1726
  #@ broken-link-checker
1727
  msgid "Send authors e-mail notifications about broken links in their posts"
1728
  msgstr "Enviar aos autores notificações por e-mail sobre links offline encontrados nos seus artigos"
1729
 
1730
+ #: core/core.php:2566
1731
  #@ broken-link-checker
1732
  msgctxt "current load"
1733
  msgid "Unknown"
1734
  msgstr "Desconhecido"
1735
 
1736
+ #: core/core.php:3284
1737
  #, php-format
1738
  #@ broken-link-checker
1739
  msgid "Broken Link Checker has detected %d new broken link in your posts."
1741
  msgstr[0] "%d novo link offline encontrado nos seus artigos."
1742
  msgstr[1] "%d novos links offline encontrados nos seus artigos."
1743
 
1744
+ #: includes/admin/table-printer.php:618
1745
  #@ broken-link-checker
1746
  msgctxt "checked how long ago"
1747
  msgid "Checked"
1849
  msgid "Pages"
1850
  msgstr "Páginas"
1851
 
1852
+ #: includes/links.php:849
1853
  #@ broken-link-checker
1854
  msgctxt "link status"
1855
  msgid "Unknown"
1856
  msgstr "Desconhecido"
1857
 
1858
+ #: includes/links.php:893
1859
  #: modules/extras/fileserve.php:121
1860
  #: modules/extras/megaupload.php:115
1861
  #: modules/extras/rapidshare.php:145
1970
  msgid "Trash"
1971
  msgstr "Lixo"
1972
 
1973
+ #: core/core.php:787
1974
  #, php-format
1975
  #@ broken-link-checker
1976
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
1977
  msgstr "Exemplo : Lorem ipsum <a %s>link offline</a>, dolor sit amet."
1978
 
1979
+ #: core/core.php:790
1980
+ #: core/core.php:821
1981
  #@ broken-link-checker
1982
  msgid "Click \"Save Changes\" to update example output."
1983
  msgstr "Clicar \"Guardar Alterações\" para atualizar a visualização do exemplo."
1984
 
1985
+ #: core/core.php:818
1986
  #, php-format
1987
  #@ broken-link-checker
1988
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
2042
  msgid "Using RapidShare API"
2043
  msgstr "Utilizar RapidShare API"
2044
 
2045
+ #: includes/admin/table-printer.php:228
2046
  #@ broken-link-checker
2047
  msgid "Redirect URL"
2048
  msgstr "Redirect URL"
2049
 
2050
+ #: includes/admin/table-printer.php:670
2051
  #@ broken-link-checker
2052
  msgid "Hide this link and do not report it again unless its status changes"
2053
  msgstr "Ocultar este link e não reportá-lo de novo expecto se houver mudança de estado "
2054
 
2055
+ #: includes/admin/table-printer.php:671
2056
  #@ broken-link-checker
2057
  msgid "Dismiss"
2058
  msgstr "Descartar"
2059
 
2060
+ #: includes/admin/table-printer.php:676
2061
  #@ broken-link-checker
2062
  msgid "Undismiss this link"
2063
  msgstr "Restabelecer este link"
2064
 
2065
+ #: includes/admin/table-printer.php:677
2066
  #@ broken-link-checker
2067
  msgid "Undismiss"
2068
  msgstr "Restabelecer"
2082
  msgid "No dismissed links found"
2083
  msgstr "Nenhuns links descartados encontrados"
2084
 
2085
+ #: core/core.php:2515
2086
  #, php-format
2087
  #@ broken-link-checker
2088
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
2091
  msgstr[0] "%d URL única"
2092
  msgstr[1] "%d URLs únicas"
2093
 
2094
+ #: core/core.php:2519
2095
  #, php-format
2096
  #@ broken-link-checker
2097
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
2100
  msgstr[0] "%d link"
2101
  msgstr[1] "%d links"
2102
 
2103
+ #: core/core.php:2525
2104
  #, php-format
2105
  #@ broken-link-checker
2106
  msgid "Detected %1$s in %2$s and still searching..."
2107
  msgstr "Encontrados %1$s em %2$s e procurando..."
2108
 
2109
+ #: core/core.php:2531
2110
  #, php-format
2111
  #@ broken-link-checker
2112
  msgid "Detected %1$s in %2$s."
2113
  msgstr "Encontrados %1$s em %2$s."
2114
 
2115
+ #: core/core.php:742
2116
  #@ broken-link-checker
2117
  msgid "Notification e-mail address"
2118
  msgstr "Endereço de e-mail para Notificação"
2119
 
2120
+ #: core/core.php:754
2121
  #@ broken-link-checker
2122
  msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
2123
  msgstr "Deixar em branco para usar o endereço de e-mail especificado em Configurações &rarr; Geral."
2124
 
2125
+ #: core/core.php:1002
2126
  #@ broken-link-checker
2127
  msgid "Show the dashboard widget for"
2128
  msgstr "Mostrar o widget do Painel para"
2129
 
2130
+ #: core/core.php:1007
2131
  #@ broken-link-checker
2132
  msgctxt "dashboard widget visibility"
2133
  msgid "Administrator"
2134
  msgstr "Administrador"
2135
 
2136
+ #: core/core.php:1008
2137
  #@ broken-link-checker
2138
  msgctxt "dashboard widget visibility"
2139
  msgid "Editor and above"
2140
  msgstr "Editor e superior"
2141
 
2142
+ #: core/core.php:1009
2143
  #@ broken-link-checker
2144
  msgctxt "dashboard widget visibility"
2145
  msgid "Nobody (disables the widget)"
2198
  msgid "Smart YouTube httpv:// URLs"
2199
  msgstr "Smart YouTube httpv:// URLs"
2200
 
2201
+ #: core/core.php:839
2202
  #@ broken-link-checker
2203
  msgctxt "settings page"
2204
  msgid "Suggestions"
2205
  msgstr "Sugestões"
2206
 
2207
+ #: core/core.php:845
2208
  #@ broken-link-checker
2209
  msgid "Suggest alternatives to broken links"
2210
  msgstr "Sugerir links offline alternativos"
2211
 
2212
+ #: core/core.php:1290
2213
  #@ broken-link-checker
2214
  msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
2215
  msgstr "Introduzir os nomes dos campos personalizados que pretende verificar (um por linha).<br />Se um campo tiver código HTML, utilizar o prefixo <code>html:</code>. Por exemplo, <code>html:nome_campo</code>."
2216
 
2217
+ #: core/core.php:2734
2218
  #@ broken-link-checker
2219
  msgid "An unexpected error occurred!"
2220
  msgstr "Ocorreu um erro inesperado!"
2221
 
2222
+ #: includes/admin/links-page-js.php:243
2223
  #@ broken-link-checker
2224
  msgctxt "link text"
2225
  msgid "(None)"
2226
  msgstr "(Nenhum)"
2227
 
2228
+ #: includes/admin/links-page-js.php:244
2229
  #@ broken-link-checker
2230
  msgctxt "link text"
2231
  msgid "(Multiple links)"
2232
  msgstr "(Múltiplos links)"
2233
 
2234
+ #: includes/admin/links-page-js.php:302
2235
  #@ broken-link-checker
2236
  msgctxt "link suggestions"
2237
  msgid "Searching..."
2238
  msgstr "Procurando..."
2239
 
2240
+ #: includes/admin/links-page-js.php:303
2241
  #@ broken-link-checker
2242
  msgctxt "link suggestions"
2243
  msgid "No suggestions available."
2244
  msgstr "Nenhumas sugestões disponíveis."
2245
 
2246
+ #: includes/admin/links-page-js.php:304
2247
  #, php-format
2248
  #@ broken-link-checker
2249
  msgctxt "link suggestions"
2250
  msgid "Archived page from %s (via the Wayback Machine)"
2251
  msgstr "Página arquivada de %s (via Wayback Machine)"
2252
 
2253
+ #: includes/admin/links-page-js.php:402
2254
  #@ broken-link-checker
2255
  msgid "The following error(s) occurred :"
2256
  msgstr "Ocorreu o seguinte erro(s): "
2257
 
2258
+ #: includes/admin/links-page-js.php:488
2259
  #@ broken-link-checker
2260
  msgid "Error: Link URL must not be empty."
2261
  msgstr "Erro: URL do link não pode ser nulo."
2262
 
2263
+ #: includes/admin/table-printer.php:654
2264
  #@ broken-link-checker
2265
  msgid "Edit this link"
2266
  msgstr "Editar este link"
2267
 
2268
+ #: includes/admin/table-printer.php:792
2269
  #@ broken-link-checker
2270
  msgctxt "inline editor title"
2271
  msgid "Edit Link"
2272
  msgstr "Editar Link"
2273
 
2274
+ #: includes/admin/table-printer.php:795
2275
  #@ broken-link-checker
2276
  msgctxt "inline link editor"
2277
  msgid "Text"
2278
  msgstr "Texto"
2279
 
2280
+ #: includes/admin/table-printer.php:800
2281
  #@ broken-link-checker
2282
  msgctxt "inline link editor"
2283
  msgid "URL"
2284
  msgstr "URL"
2285
 
2286
+ #: includes/admin/table-printer.php:805
2287
  #@ broken-link-checker
2288
  msgctxt "inline link editor"
2289
  msgid "Suggestions"
2290
  msgstr "Sugestões"
2291
 
2292
+ #: includes/admin/table-printer.php:825
2293
  #@ broken-link-checker
2294
  msgid "Use this URL"
2295
  msgstr "Utilizar URL"
2296
 
2297
+ #: core/core.php:1090
2298
+ #@ broken-link-checker
2299
+ msgid "Logging"
2300
+ msgstr "Processar Log"
2301
+
2302
+ #: core/core.php:1096
2303
+ #@ broken-link-checker
2304
+ msgid "Enable logging"
2305
+ msgstr "Ativar Log"
2306
+
2307
+ #: core/core.php:1103
2308
+ #@ broken-link-checker
2309
+ msgid "Log file location"
2310
+ msgstr "Localização do ficheiro Log"
2311
+
2312
+ #: core/core.php:1112
2313
+ #@ broken-link-checker
2314
+ msgctxt "log file location"
2315
+ msgid "Default"
2316
+ msgstr "Padrão"
2317
+
2318
+ #: core/core.php:1126
2319
+ #@ broken-link-checker
2320
+ msgctxt "log file location"
2321
+ msgid "Custom"
2322
+ msgstr "Personalizado"
2323
+
2324
+ #: core/init.php:335
2325
+ #@ broken-link-checker
2326
+ msgid "Please activate the plugin separately on each site. Network activation is not supported."
2327
+ msgstr "Por favor, ativar o plugin separadamente em cada site. Não é suportada ativação em rede."
2328
+
languages/broken-link-checker-sk_SK.mo ADDED
Binary file
languages/broken-link-checker-sk_SK.po ADDED
@@ -0,0 +1,892 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Czech translation for Broken Link Checker plugin.
2
+ # Copyright (C) 2010 Janis Elsts
3
+ # This file is distributed under the same license as the Broken Link Checker package.
4
+ # Janis Elsts <whiteshadow@w-shadow.com>, 2010.
5
+ # Lelkoun <vydrus@klikni.cz>, http://lelkoun.cz/, 2010.
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: Broken Link Checker 0.8\n"
9
+ "Report-Msgid-Bugs-To: whiteshadow@w-shadow.com\n"
10
+ "POT-Creation-Date: 2010-01-24 15:25+0000\n"
11
+ "PO-Revision-Date: 2014-03-30 12:48+0100\n"
12
+ "Last-Translator: Patrik Žec (PATWIST) <patrik.zec@gmail.com>\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "Language-Team: Patrik Žec (PATWIST) patwist.com <patrik.zec@gmail.com>\n"
18
+ "Language: sk_SK\n"
19
+ "X-Generator: Poedit 1.6.4\n"
20
+
21
+ #: core.php:143 core.php:1835
22
+ msgid "Loading..."
23
+ msgstr "Načítanie..."
24
+
25
+ #: core.php:166 core.php:604
26
+ msgid "[ Network error ]"
27
+ msgstr "[ Chyba siete ]"
28
+
29
+ #: core.php:191
30
+ msgid "Automatically expand the widget if broken links have been detected"
31
+ msgstr "Automaticky rozvinúť widget v prípade detekovania nefunkčných odkazov"
32
+
33
+ #: core.php:375 core.php:384 core.php:414 core.php:426 core.php:1014
34
+ #: core.php:1038 core.php:1316
35
+ #, php-format
36
+ msgid "Database error : %s"
37
+ msgstr "Chyba databáze: %s"
38
+
39
+ #: core.php:452
40
+ msgid "Link Checker Settings"
41
+ msgstr "Kontrola odkazov - Nastavenia"
42
+
43
+ #: core.php:453
44
+ msgid "Link Checker"
45
+ msgstr "Kontrola odkazov"
46
+
47
+ #: core.php:459
48
+ msgid "View Broken Links"
49
+ msgstr "Zobrazit nefunkčné odkazy"
50
+
51
+ #: core.php:460 core.php:892
52
+ msgid "Broken Links"
53
+ msgstr "Nefunkčné odkazy"
54
+
55
+ #: core.php:484
56
+ msgid "Settings"
57
+ msgstr "Nastavenia"
58
+
59
+ #: core.php:568
60
+ msgid "Broken Link Checker Options"
61
+ msgstr "Kontrola nefunkčných odkazov - Nastavenia"
62
+
63
+ #: core.php:581
64
+ msgid "Status"
65
+ msgstr "Stav"
66
+
67
+ #: core.php:583 core.php:823
68
+ msgid "Show debug info"
69
+ msgstr "Zobrazit ladiace informácie"
70
+
71
+ #: core.php:617
72
+ msgid "Re-check all pages"
73
+ msgstr "Prekontrolovať všetky stránky"
74
+
75
+ #: core.php:641
76
+ msgid "Check each link"
77
+ msgstr "Skontrolovať každý odkaz"
78
+
79
+ #: core.php:646
80
+ #, php-format
81
+ msgid "Every %s hours"
82
+ msgstr "Každých %s hodín"
83
+
84
+ #: core.php:655
85
+ msgid ""
86
+ "Existing links will be checked this often. New links will usually be checked "
87
+ "ASAP."
88
+ msgstr ""
89
+ "Existujúce odkazy budú kontrolované v určitom intervale. Nové odkazy budú "
90
+ "skontrolované hneď ako to bude možné."
91
+
92
+ #: core.php:662
93
+ msgid "Broken link CSS"
94
+ msgstr "CSS nefunkčného odkazu"
95
+
96
+ #: core.php:667
97
+ msgid "Apply <em>class=\"broken_link\"</em> to broken links"
98
+ msgstr "Pridať <em>class=\"broken_link\"</em> k nefunkčným odkazom"
99
+
100
+ #: core.php:679
101
+ msgid "Removed link CSS"
102
+ msgstr "CSS odstráneného odkazu"
103
+
104
+ #: core.php:684
105
+ msgid "Apply <em>class=\"removed_link\"</em> to unlinked links"
106
+ msgstr "Pridať <em>class=\"removed_link\"</em> k odstráneným odkazom"
107
+
108
+ #: core.php:696
109
+ msgid "Exclusion list"
110
+ msgstr "Zoznam výnimiek"
111
+
112
+ #: core.php:697
113
+ msgid ""
114
+ "Don't check links where the URL contains any of these words (one per line) :"
115
+ msgstr ""
116
+ "Nekontrolovať odkazy, kde URL adresa obsahuje nejaký z týchto výrazov (jeden "
117
+ "na riadok):"
118
+
119
+ #: core.php:707
120
+ msgid "Custom fields"
121
+ msgstr "Vlastné polia"
122
+
123
+ #: core.php:708
124
+ msgid "Check URLs entered in these custom fields (one per line) :"
125
+ msgstr "Skontrolovať URL adresy v tomto poli (jednu na riadok):"
126
+
127
+ #: core.php:719
128
+ msgid "Advanced"
129
+ msgstr "Pokročilé"
130
+
131
+ #: core.php:725
132
+ msgid "Timeout"
133
+ msgstr "Čas vypršania"
134
+
135
+ #: core.php:731 core.php:787
136
+ #, php-format
137
+ msgid "%s seconds"
138
+ msgstr "%s sekúnd"
139
+
140
+ #: core.php:740
141
+ msgid "Links that take longer than this to load will be marked as broken."
142
+ msgstr ""
143
+ "Odkazy, ktorých načítanie bude trvať dlhšiu dobu budú označené ako nefunkčné."
144
+
145
+ #: core.php:749
146
+ msgid "Custom temporary directory"
147
+ msgstr "Uživatelský dočasný adresářVlastný dočasný adresár"
148
+
149
+ #: core.php:758 core.php:2792
150
+ msgid "OK"
151
+ msgstr "OK"
152
+
153
+ #: core.php:761
154
+ msgid "Error : This directory isn't writable by PHP."
155
+ msgstr "Chyba: Tento adresár nie je zapisovateľný pomocou PHP."
156
+
157
+ #: core.php:766
158
+ msgid "Error : This directory doesn't exist."
159
+ msgstr "Chyba: Tento adresár neexistuje."
160
+
161
+ #: core.php:774
162
+ msgid ""
163
+ "Set this field if you want the plugin to use a custom directory for its "
164
+ "lockfiles. Otherwise, leave it blank."
165
+ msgstr ""
166
+ "Nastavte toto pole, ak chcete použiť vlastný adresár pre ukladanie "
167
+ "zamykacích súborov. Inak ho nechajte prázdne."
168
+
169
+ #: core.php:781
170
+ msgid "Max. execution time"
171
+ msgstr "Max. čas vykonávania"
172
+
173
+ #: core.php:798
174
+ msgid ""
175
+ "The plugin works by periodically creating a background worker instance that "
176
+ "parses your posts looking for links, checks the discovered URLs, and "
177
+ "performs other time-consuming tasks. Here you can set for how long, at most, "
178
+ "the background instance may run each time before stopping."
179
+ msgstr ""
180
+ "Plugin pracuje na princípe periodického vytvárania pracovnej inštancie na "
181
+ "pozadí, ktorá hľadá odkazy vo vašich príspevkoch, kontroluje objavené URL "
182
+ "adresy a vykonáva ďalšie časovo náročné úlohy. Tu môžete nastaviť akú "
183
+ "maximálnu dobu bude inštancia an pozadí pracovať každú periódu než bude "
184
+ "zastavená."
185
+
186
+ #: core.php:808
187
+ msgid "Save Changes"
188
+ msgstr "Uložit zmeny"
189
+
190
+ #: core.php:821
191
+ msgid "Hide debug info"
192
+ msgstr "Skrýt ladiace informácie"
193
+
194
+ #: core.php:891
195
+ msgid "Broken"
196
+ msgstr "Nefunkčný"
197
+
198
+ #: core.php:893
199
+ msgid "No broken links found"
200
+ msgstr "Neboli nájdené žiadne nefunkčné odkazy."
201
+
202
+ #: core.php:897
203
+ msgid "Redirects"
204
+ msgstr "Přesmerovanie"
205
+
206
+ #: core.php:898
207
+ msgid "Redirected Links"
208
+ msgstr "Přesměrované odkazy"
209
+
210
+ #: core.php:899
211
+ msgid "No redirects found"
212
+ msgstr "Neboli nájdené žiadne presmerovania"
213
+
214
+ #: core.php:904
215
+ msgid "All"
216
+ msgstr "Všetko"
217
+
218
+ #: core.php:905
219
+ msgid "Detected Links"
220
+ msgstr "Zistené odkazy"
221
+
222
+ #: core.php:906
223
+ msgid "No links found (yet)"
224
+ msgstr "Ešte neboli nájdené žiadne odkazy"
225
+
226
+ #: core.php:933 core.php:1281
227
+ msgid "No links found for your query"
228
+ msgstr "Neboli nájdené žiadne odkazy a vašu požiadavku"
229
+
230
+ #: core.php:994
231
+ msgid "You must enter a filter name!"
232
+ msgstr "Musíte zadať meno filtru!"
233
+
234
+ #: core.php:998
235
+ msgid "Invalid search query."
236
+ msgstr "Nevalidný hľadací dotaz."
237
+
238
+ #: core.php:1009
239
+ #, php-format
240
+ msgid "Filter \"%s\" created"
241
+ msgstr "Filter \"%s\" bol vytvorený."
242
+
243
+ #: core.php:1026
244
+ msgid "Filter ID not specified."
245
+ msgstr "ID filtru nebolo špecifikované."
246
+
247
+ #: core.php:1035
248
+ msgid "Filter deleted"
249
+ msgstr "Filter bol odstránený"
250
+
251
+ #: core.php:1084
252
+ #, php-format
253
+ msgid "Failed to delete post \"%s\" (%d)"
254
+ msgstr "Zlyhalo odstránenie príspevku \"%s\" (%d)"
255
+
256
+ #: core.php:1097
257
+ #, php-format
258
+ msgid "%d post moved to the trash"
259
+ msgid_plural "%d posts moved to the trash"
260
+ msgstr[0] "%d príspevok bol presunutý do koša"
261
+ msgstr[1] "%d príspevkov bolo presunutých do koša"
262
+
263
+ #: core.php:1099
264
+ #, php-format
265
+ msgid "%d post deleted"
266
+ msgid_plural "%d posts deleted"
267
+ msgstr[0] "%d príspevok bol odstránený"
268
+ msgstr[1] "%d príspevkov bolo odstránených"
269
+
270
+ #: core.php:1134
271
+ #, php-format
272
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
273
+ msgstr "Zlyhalo odstránenie dopytu \"%s\" (%d)"
274
+
275
+ #: core.php:1144
276
+ #, php-format
277
+ msgid "%d blogroll link deleted"
278
+ msgid_plural "%d blogroll links deleted"
279
+ msgstr[0] "%d odkaz bol odstránený"
280
+ msgstr[1] "%d odkazov bolo odstránených"
281
+
282
+ #: core.php:1153
283
+ msgid "Didn't find anything to delete!"
284
+ msgstr "Neboli nájdené nič na odstránenie!"
285
+
286
+ #: core.php:1191
287
+ #, php-format
288
+ msgid "%d link removed"
289
+ msgid_plural "%d links removed"
290
+ msgstr[0] "%d odkaz bol odstránený"
291
+ msgstr[1] "%d odkazov bolo odstránených"
292
+
293
+ #: core.php:1202
294
+ #, php-format
295
+ msgid "Failed to remove %d link"
296
+ msgid_plural "Failed to remove %d links"
297
+ msgstr[0] "Zlyhalo odstránenie %d odkazu"
298
+ msgstr[1] "Zlyhalo odstránenie %d odkazov"
299
+
300
+ #: core.php:1243
301
+ #, php-format
302
+ msgid "Replaced %d redirect with a direct link"
303
+ msgid_plural "Replaced %d redirects with direct links"
304
+ msgstr[0] "Nahradené %d presmerovanie priamym odkazom"
305
+ msgstr[1] "Nahradených %d presmerovaní priamými odkazmi"
306
+
307
+ #: core.php:1254
308
+ #, php-format
309
+ msgid "Failed to fix %d redirect"
310
+ msgid_plural "Failed to fix %d redirects"
311
+ msgstr[0] "Zlyhalo opravenie %d presmerovania"
312
+ msgstr[1] "Zlyhalo opravenie %d presmerovaní"
313
+
314
+ #: core.php:1264
315
+ msgid "None of the selected links are redirects!"
316
+ msgstr "Žiadny z vybraných odkazov nie je presmerovaný!"
317
+
318
+ #: core.php:1279 core.php:1400
319
+ msgid "Search"
320
+ msgstr "Hľadať"
321
+
322
+ #: core.php:1280
323
+ msgid "Search Results"
324
+ msgstr "Výsledky hľadania"
325
+
326
+ #: core.php:1384
327
+ msgid "Save This Search As a Filter"
328
+ msgstr "Uložit toto hľadanie ako filter"
329
+
330
+ #: core.php:1394
331
+ msgid "Delete This Filter"
332
+ msgstr "Odstrániť tento filter"
333
+
334
+ #: core.php:1410
335
+ msgid "Link text"
336
+ msgstr "Text odkazu"
337
+
338
+ #: core.php:1413 core.php:1526
339
+ msgid "URL"
340
+ msgstr "URL adrea"
341
+
342
+ #: core.php:1416 core.php:2141
343
+ msgid "HTTP code"
344
+ msgstr "HTTP kód"
345
+
346
+ #: core.php:1419
347
+ msgid "Link status"
348
+ msgstr "Stav odkazu"
349
+
350
+ #: core.php:1435
351
+ msgid "Link type"
352
+ msgstr "Typ odkazu"
353
+
354
+ #: core.php:1439
355
+ msgid "Any"
356
+ msgstr "Žiadny"
357
+
358
+ #: core.php:1440
359
+ msgid "Normal link"
360
+ msgstr "Normálny odkaz"
361
+
362
+ #: core.php:1441 core.php:1602
363
+ msgid "Image"
364
+ msgstr "Obrázok"
365
+
366
+ #: core.php:1442 core.php:1613
367
+ msgid "Custom field"
368
+ msgstr "Vlastné pole"
369
+
370
+ #: core.php:1443 core.php:1621
371
+ msgid "Bookmark"
372
+ msgstr "Záložka"
373
+
374
+ #: core.php:1456
375
+ msgid "Search Links"
376
+ msgstr "Hľadať odkazy"
377
+
378
+ #: core.php:1457 core.php:1654
379
+ msgid "Cancel"
380
+ msgstr "Zrušiť"
381
+
382
+ #: core.php:1473
383
+ msgid "Bulk Actions"
384
+ msgstr "Hromadné akcie"
385
+
386
+ #: core.php:1474 core.php:1639 core.php:1922
387
+ msgid "Unlink"
388
+ msgstr "Odstrániť odkaz"
389
+
390
+ #: core.php:1475
391
+ msgid "Fix redirects"
392
+ msgstr "Opraviť presmerovania"
393
+
394
+ #: core.php:1476
395
+ msgid "Delete sources"
396
+ msgstr "Zmazať zdroje"
397
+
398
+ #: core.php:1490 core.php:1686
399
+ msgid "Apply"
400
+ msgstr "Aplikovať"
401
+
402
+ #: core.php:1497
403
+ msgid "&laquo;"
404
+ msgstr "&laquo;"
405
+
406
+ #: core.php:1498
407
+ msgid "&raquo;"
408
+ msgstr "&raquo;"
409
+
410
+ #: core.php:1505 core.php:1692
411
+ #, php-format
412
+ msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
413
+ msgstr "Zobrazenné %s&#8211;%s z <span class=\"current-link-count\">%s</span>"
414
+
415
+ #: core.php:1524
416
+ msgid "Source"
417
+ msgstr "Zdroj"
418
+
419
+ #: core.php:1525
420
+ msgid "Link Text"
421
+ msgstr "Text odkazu"
422
+
423
+ #: core.php:1557 core.php:1563
424
+ msgid "Edit this post"
425
+ msgstr "Upraviť tento príspevok"
426
+
427
+ #: core.php:1563 core.php:1578
428
+ msgid "Edit"
429
+ msgstr "Upraviť"
430
+
431
+ #: core.php:1564
432
+ msgid "Delete this post"
433
+ msgstr "Odstrániť tento príspevok"
434
+
435
+ #: core.php:1564
436
+ #, php-format
437
+ msgid ""
438
+ "You are about to delete this post '%s'\n"
439
+ " 'Cancel' to stop, 'OK' to delete."
440
+ msgstr ""
441
+ "Chystáte sa odstrániť tento príspevok '%s'\n"
442
+ " Kliknite na 'Zrušiť ' pre zrušenie odstránenia, 'OK ' pre potvrdtenie "
443
+ "odstránenia"
444
+
445
+ #: core.php:1564 core.php:1579
446
+ msgid "Delete"
447
+ msgstr "Odstrániť"
448
+
449
+ #: core.php:1566
450
+ #, php-format
451
+ msgid "View \"%s\""
452
+ msgstr "Zobraziť \"%s\""
453
+
454
+ #: core.php:1566
455
+ msgid "View"
456
+ msgstr "Zobraziť"
457
+
458
+ #: core.php:1573 core.php:1578
459
+ msgid "Edit this bookmark"
460
+ msgstr "Upraviť túto záložku"
461
+
462
+ #: core.php:1579
463
+ #, php-format
464
+ msgid ""
465
+ "You are about to delete this link '%s'\n"
466
+ " 'Cancel' to stop, 'OK' to delete."
467
+ msgstr ""
468
+ "Chystáte sa odstrániť tento odkaz '%s'\n"
469
+ " Kliknite na 'Zrušiť ' pre zrušenie odstránenia, 'OK ' pre potvrdtenie "
470
+ "odstránenia"
471
+
472
+ #: core.php:1588
473
+ msgid "[An orphaned link! This is a bug.]"
474
+ msgstr "[Osamelý odkaz! Toto je chyba programu.]"
475
+
476
+ #: core.php:1636
477
+ msgid "Show more info about this link"
478
+ msgstr "Zobrazi´t viac informácií o tomto odkaze"
479
+
480
+ #: core.php:1636 core.php:3085
481
+ msgid "Details"
482
+ msgstr "Detaily"
483
+
484
+ #: core.php:1638
485
+ msgid "Remove this link from all posts"
486
+ msgstr "Odstrániť tento odkaz zo všetkých príspevkov"
487
+
488
+ #: core.php:1642 core.php:1952 core.php:1963
489
+ msgid "Excluded"
490
+ msgstr "Vylúčené"
491
+
492
+ #: core.php:1644
493
+ msgid "Add this URL to the exclusion list"
494
+ msgstr "Pridať túto URL adresu do zoznamu výnimiek"
495
+
496
+ #: core.php:1645 core.php:1966
497
+ msgid "Exclude"
498
+ msgstr "Vylúčiť"
499
+
500
+ #: core.php:1648
501
+ msgid "Edit link URL"
502
+ msgstr "Upraviť URL adresu odkazu"
503
+
504
+ #: core.php:1648 core.php:1863 core.php:1891
505
+ msgid "Edit URL"
506
+ msgstr "Upraviť URL adresu"
507
+
508
+ #: core.php:1654
509
+ msgid "Cancel URL editing"
510
+ msgstr "Zrušiť upravovanie URL adresy"
511
+
512
+ #: core.php:1668
513
+ msgid "Remove this link from the list of broken links and mark it as valid"
514
+ msgstr ""
515
+ "Odstrániť tento odkaz zo zoznamu nefunkčných odkazov a označiť ako funkčný"
516
+
517
+ #: core.php:1670 core.php:1755
518
+ msgid "Discard"
519
+ msgstr "Zrušiť"
520
+
521
+ #: core.php:1731 core.php:1898 core.php:1935
522
+ msgid "Wait..."
523
+ msgstr "Čakajte..."
524
+
525
+ #: core.php:1789
526
+ msgid "Save URL"
527
+ msgstr "Uložiť URL adresu"
528
+
529
+ #: core.php:1799
530
+ msgid "Saving changes..."
531
+ msgstr "Ukladanie zmien..."
532
+
533
+ #: core.php:2011
534
+ msgid "Enter a name for the new custom filter"
535
+ msgstr "Zdajte názov pre nový používateľský filter"
536
+
537
+ #: core.php:2022
538
+ msgid ""
539
+ "You are about to delete the current filter.\n"
540
+ "'Cancel' to stop, 'OK' to delete"
541
+ msgstr ""
542
+ "Chystáte sa odstrániť súčasný filter '%s'\n"
543
+ " Kliknite na 'Zrušiť ' pre zrušenie odstránenia, 'OK ' pre potvrdtenie "
544
+ "odstránenia"
545
+
546
+ #: core.php:2118
547
+ msgid "Log"
548
+ msgstr "Záznam"
549
+
550
+ #: core.php:2126
551
+ msgid "Post published on"
552
+ msgstr "Publikovaný príspevok"
553
+
554
+ #: core.php:2131
555
+ msgid "Link last checked"
556
+ msgstr "Posledná kontrola odkazu"
557
+
558
+ #: core.php:2135
559
+ msgid "Never"
560
+ msgstr "Nikdy"
561
+
562
+ #: core.php:2146
563
+ msgid "Response time"
564
+ msgstr "Čas odpovede"
565
+
566
+ #: core.php:2148
567
+ #, php-format
568
+ msgid "%2.3f seconds"
569
+ msgstr "%2.3f sekúnd"
570
+
571
+ #: core.php:2151
572
+ msgid "Final URL"
573
+ msgstr "Konečná URL adresa"
574
+
575
+ #: core.php:2156
576
+ msgid "Redirect count"
577
+ msgstr "Počet presmerovaní"
578
+
579
+ #: core.php:2161
580
+ msgid "Instance count"
581
+ msgstr "Počet instancií"
582
+
583
+ #: core.php:2170
584
+ #, php-format
585
+ msgid "This link has failed %d time."
586
+ msgid_plural "This link has failed %d times."
587
+ msgstr[0] "Tento odkaz zlyhal %d krát."
588
+ msgstr[1] "Tento odkaz zlyhal %d krát."
589
+
590
+ #: core.php:2580 core.php:2910
591
+ msgid ""
592
+ "This link wasn't checked because a matching keyword was found on your "
593
+ "exclusion list."
594
+ msgstr ""
595
+ "Tento odkaz nebol skontrolovaný kvôli kľúčovému slovu nájdenému vo vašom "
596
+ "zozname výnimiek."
597
+
598
+ #: core.php:2622
599
+ msgid "View broken links"
600
+ msgstr "Zobraziť nefunkčné odkazy"
601
+
602
+ #: core.php:2623
603
+ #, php-format
604
+ msgid "Found %d broken link"
605
+ msgid_plural "Found %d broken links"
606
+ msgstr[0] "Nájdený %d nefunkčný odkaz"
607
+ msgstr[1] "Nájdených %d nefunkčných odkazov"
608
+
609
+ #: core.php:2629
610
+ msgid "No broken links found."
611
+ msgstr "Neboli nádjené žiadne nefunkčné odkazy."
612
+
613
+ #: core.php:2636
614
+ #, php-format
615
+ msgid "%d URL in the work queue"
616
+ msgid_plural "%d URLs in the work queue"
617
+ msgstr[0] "%d URL adresa je vo fronte"
618
+ msgstr[1] "%d URL adries je vo fronte"
619
+
620
+ #: core.php:2639
621
+ msgid "No URLs in the work queue."
622
+ msgstr "Žiadna URL adresa nie je vo fronte."
623
+
624
+ #: core.php:2645
625
+ #, php-format
626
+ msgid "Detected %d unique URL"
627
+ msgid_plural "Detected %d unique URLs"
628
+ msgstr[0] "Nájdená %d unikátna URL adresa"
629
+ msgstr[1] "Nájdených %d unikátnych URL adries"
630
+
631
+ #: core.php:2646
632
+ #, php-format
633
+ msgid "in %d link"
634
+ msgid_plural "in %d links"
635
+ msgstr[0] "v %d odkaze"
636
+ msgstr[1] "v %d okdazoch"
637
+
638
+ #: core.php:2651
639
+ msgid "and still searching..."
640
+ msgstr "a stále sa hľadá...."
641
+
642
+ #: core.php:2657
643
+ msgid "Searching your blog for links..."
644
+ msgstr "Hľadanie dokazov na vašom webe..."
645
+
646
+ #: core.php:2659
647
+ msgid "No links detected."
648
+ msgstr "Žiadne odkazy neboli nájdené."
649
+
650
+ #: core.php:2731 core.php:2763 core.php:2806 core.php:2887
651
+ msgid "You're not allowed to do that!"
652
+ msgstr "Nie ste oprávnený vykonávať túto činnosť!"
653
+
654
+ #: core.php:2739 core.php:2773 core.php:2816 core.php:2897
655
+ #, php-format
656
+ msgid "Oops, I can't find the link %d"
657
+ msgstr "Ups, nemôžem nájsť odkaz %d"
658
+
659
+ #: core.php:2747
660
+ msgid "This link was manually marked as working by the user."
661
+ msgstr "Tento odkaz bol používateľom označený ako nefunkčný"
662
+
663
+ #: core.php:2753
664
+ msgid "Oops, couldn't modify the link!"
665
+ msgstr "Ups, nie je možné upraviť odkaz!"
666
+
667
+ #: core.php:2756 core.php:2833
668
+ msgid "Error : link_id not specified"
669
+ msgstr "Chyba: link_id nebol špecifikovaný"
670
+
671
+ #: core.php:2780
672
+ msgid "Oops, the new URL is invalid!"
673
+ msgstr "Ups, nová URL adresa je nefunkčná!"
674
+
675
+ #: core.php:2789
676
+ msgid "An unexpected error occured!"
677
+ msgstr "Došlo k neočakávanej chybe!"
678
+
679
+ #: core.php:2798
680
+ msgid "Error : link_id or new_url not specified"
681
+ msgstr "Chyba: link_id nebo new_url nebola špecifikovaná"
682
+
683
+ #: core.php:2823
684
+ #, php-format
685
+ msgid "URL %s was removed."
686
+ msgstr "URL adresa %s bola odstránená"
687
+
688
+ #: core.php:2827
689
+ msgid "The plugin failed to remove the link."
690
+ msgstr "Plugin zlyhal pri odstraňovaní odkazu"
691
+
692
+ #: core.php:2842
693
+ msgid "You don't have sufficient privileges to access this information!"
694
+ msgstr "Nemáte dostatočné práva k sprístupneniu týchto informácií!"
695
+
696
+ #: core.php:2855
697
+ msgid "Error : link ID not specified"
698
+ msgstr "Chyba: ID odkazu nebolo špecifikované"
699
+
700
+ #: core.php:2879
701
+ #, php-format
702
+ msgid "Failed to load link details (%s)"
703
+ msgstr "Zlyhalo našítanie detailov odkazu (%s)"
704
+
705
+ #: core.php:2917
706
+ #, php-format
707
+ msgid "URL %s added to the exclusion list"
708
+ msgstr "URL adresa %s bola pridana na zoznam výnimiek"
709
+
710
+ #: core.php:2921
711
+ msgid "Link ID not specified"
712
+ msgstr "ID odkazu nebolo špecifikované"
713
+
714
+ #: core.php:3071
715
+ #, php-format
716
+ msgid ""
717
+ "The current temporary directory is not accessible; please <a href=\"%s\">set "
718
+ "a different one</a>."
719
+ msgstr ""
720
+ "Súčasný dočastný adresár je neprístupný; <a href=\"%s\">zvoľte iný</a>, "
721
+ "prosím."
722
+
723
+ #: core.php:3076
724
+ #, php-format
725
+ msgid ""
726
+ "Please make the directory <code>%1$s</code> writable by plugins or <a href="
727
+ "\"%2$s\">set a custom temporary directory</a>."
728
+ msgstr ""
729
+ "Prosím spravte adresár <code>%1$s</code> zapisovateľným pre pluginy alebo <a "
730
+ "href=\"%2$s\">nastavte používateľský dočasný adresár</a>."
731
+
732
+ #: core.php:3083
733
+ msgid "Broken Link Checker can't create a lockfile."
734
+ msgstr "Kontrolovač nefunkčných odkazov nemôže vytvoriť zamykací súbor."
735
+
736
+ #: core.php:3088
737
+ msgid ""
738
+ "The plugin uses a file-based locking mechanism to ensure that only one "
739
+ "instance of the resource-heavy link checking algorithm is running at any "
740
+ "given time. Unfortunately, BLC can't find a writable directory where it "
741
+ "could store the lockfile - it failed to detect the location of your server's "
742
+ "temporary directory, and the plugin's own directory isn't writable by PHP. "
743
+ "To fix this problem, please make the plugin's directory writable or enter a "
744
+ "specify a custom temporary directory in the plugin's settings."
745
+ msgstr ""
746
+ "Plugin používa súborovo založený zamykací mechanizmus k zaručeniu "
747
+ "vykonávania činnosti len jednej inštancie zdrojovo náročného algoritmu "
748
+ "kontroly odkazov v danej dobe. Bohužiaľ, Kontrolovač nefunkčných odkazov "
749
+ "nemôže nájsť zapisovateľný adresár, kam by mohol skladovať zamykacie súbory "
750
+ "- zlyhalo zistenie pozície dočasného adresára vášho serveru a vlastný "
751
+ "adresár pluginu nie je zapisovateľný jazykom PHP. K oprávneniu tohto "
752
+ "problému spravte adresár pluginu zapisovateľným alebo zadajte špecifický "
753
+ "používateľský dočasný adresár v nastaveniach pluginu."
754
+
755
+ #: core.php:3108
756
+ msgid "PHP version"
757
+ msgstr "Verzia PHP"
758
+
759
+ #: core.php:3114
760
+ msgid "MySQL version"
761
+ msgstr "Verzia MySQL"
762
+
763
+ #: core.php:3127
764
+ msgid ""
765
+ "You have an old version of CURL. Redirect detection may not work properly."
766
+ msgstr ""
767
+ "Máte starú verziu CURL. Detekcia presmerovania nemusí fungovať správne."
768
+
769
+ #: core.php:3139 core.php:3155 core.php:3160
770
+ msgid "Not installed"
771
+ msgstr "Nanainštalované"
772
+
773
+ #: core.php:3142
774
+ msgid "CURL version"
775
+ msgstr "Verzia CURL"
776
+
777
+ #: core.php:3148
778
+ msgid "Installed"
779
+ msgstr "Nainštalované"
780
+
781
+ #: core.php:3161
782
+ msgid "You must have either CURL or Snoopy installed for the plugin to work!"
783
+ msgstr "Musíte mať nainštalovaný CURL alebo Snoopy aby plugin pracoval!"
784
+
785
+ #: core.php:3172
786
+ msgid "On"
787
+ msgstr "Zapnuté"
788
+
789
+ #: core.php:3173
790
+ msgid "Redirects may be detected as broken links when safe_mode is on."
791
+ msgstr ""
792
+ "Keď je zapnutý safe_mode , môže byť presmerovanie detekované ako nefunkčný "
793
+ "odkaz."
794
+
795
+ #: core.php:3178 core.php:3192
796
+ msgid "Off"
797
+ msgstr "Vypnuté"
798
+
799
+ #: core.php:3186
800
+ #, php-format
801
+ msgid "On ( %s )"
802
+ msgstr "Zapnuté ( %s )"
803
+
804
+ #: core.php:3187
805
+ msgid "Redirects may be detected as broken links when open_basedir is on."
806
+ msgstr ""
807
+ "Keď je zapnutý open_basedir, môže byť presmerovanie detekované ako nefunkčný "
808
+ "odkaz."
809
+
810
+ #: core.php:3206
811
+ msgid "Can't create a lockfile. Please specify a custom temporary directory."
812
+ msgstr ""
813
+ "Nie je možné vytvoriť zamykací súbor. Prosím špecifikujte používateľský "
814
+ "dočasný adresár."
815
+
816
+ #: link-classes.php:212
817
+ #, php-format
818
+ msgid "First try : %d"
819
+ msgstr "Prvý pokus : %d"
820
+
821
+ #: link-classes.php:214
822
+ msgid "First try : 0 (No response)"
823
+ msgstr "Prvý pokus : 0 (žiadna odpoveď)"
824
+
825
+ #: link-classes.php:222
826
+ msgid "Trying a second time with different settings..."
827
+ msgstr "Prebieha druhý pokus s iným nastavením..."
828
+
829
+ #: link-classes.php:237
830
+ #, php-format
831
+ msgid "Second try : %d"
832
+ msgstr "Druhý pokus: %d"
833
+
834
+ #: link-classes.php:239
835
+ msgid "Second try : 0 (No response)"
836
+ msgstr "Druhý pokus: 0 (žiadna odpoveď)"
837
+
838
+ #: link-classes.php:265
839
+ msgid "Using Snoopy"
840
+ msgstr "Používam Snoopy"
841
+
842
+ #: link-classes.php:285
843
+ msgid "Request timed out."
844
+ msgstr "Vypršal časový limit žiadosti."
845
+
846
+ #: link-classes.php:304
847
+ msgid "Link is valid."
848
+ msgstr "Odkaz je v poriadku."
849
+
850
+ #: link-classes.php:309
851
+ msgid "Link is broken."
852
+ msgstr "Odkaz je nefunkčný."
853
+
854
+ #: link-classes.php:313
855
+ msgid "Most likely the connection timed out or the domain doesn't exist."
856
+ msgstr ""
857
+ "S najväčšou pravdepodobnosťou vypršal časový limit žiadosti alebo doména "
858
+ "neexistuje."
859
+
860
+ #: link-classes.php:354
861
+ #, php-format
862
+ msgid "Error adding link %s : %s"
863
+ msgstr "Chyba pridávania odkazu: %s : %s"
864
+
865
+ #: link-classes.php:374
866
+ #, php-format
867
+ msgid "Error updating link %d : %s"
868
+ msgstr "Chyba aktualizácie odkazu: %d : %s"
869
+
870
+ #. Plugin Name of an extension
871
+ msgid "Broken Link Checker"
872
+ msgstr "Kontrolovač nefunkčných odkazov"
873
+
874
+ #. Plugin URI of an extension
875
+ msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
876
+ msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
877
+
878
+ #. Description of an extension
879
+ msgid ""
880
+ "Checks your posts for broken links and missing images and notifies you on "
881
+ "the dashboard if any are found."
882
+ msgstr ""
883
+ "Kontroluje vaše príspevky a hľadá nefunkčné odkazy a obrázky a upozorňuje "
884
+ "vás na nástenke ak sa nejaké nájdu."
885
+
886
+ #. Author of an extension
887
+ msgid "Janis Elsts"
888
+ msgstr "Janis Elsts"
889
+
890
+ #. Author URI of an extension
891
+ msgid "http://w-shadow.com/blog/"
892
+ msgstr "http://w-shadow.com/blog/"
languages/broken-link-checker-sr_RS.mo ADDED
Binary file
languages/broken-link-checker-sr_RS.po ADDED
@@ -0,0 +1,2177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Broken Link Checker | V1.9\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2013-10-14 09:34:17+00:00\n"
6
+ "PO-Revision-Date: 2014-07-15 13:08+0100\n"
7
+ "Last-Translator: Borisa Djuraskovic <borisad@webhostinghub.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: de_CH\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;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
+ "X-Textdomain-Support: yes\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Generator: Poedit 1.5.7\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+
22
+ # @ broken-link-checker
23
+ #: core/core.php:153 includes/admin/links-page-js.php:37
24
+ msgid "Loading..."
25
+ msgstr "Učitavanje..."
26
+
27
+ # @ broken-link-checker
28
+ #: core/core.php:177 includes/admin/options-page-js.php:18
29
+ msgid "[ Network error ]"
30
+ msgstr "[ Greška u mreži ]"
31
+
32
+ # @ broken-link-checker
33
+ #: core/core.php:204
34
+ msgid "Automatically expand the widget if broken links have been detected"
35
+ msgstr "Automatski razvija widget ako su otkriveni prekinuti linkovi."
36
+
37
+ # @ broken-link-checker
38
+ #: core/core.php:295
39
+ msgid "Link Checker Settings"
40
+ msgstr "Postavke za Link Checker"
41
+
42
+ # @ broken-link-checker
43
+ #: core/core.php:296
44
+ msgid "Link Checker"
45
+ msgstr "Link Checker"
46
+
47
+ # @ broken-link-checker
48
+ #: core/core.php:301 includes/link-query.php:27
49
+ msgid "Broken Links"
50
+ msgstr "Prekinuti linkovi"
51
+
52
+ # @ broken-link-checker
53
+ #: core/core.php:317
54
+ msgid "View Broken Links"
55
+ msgstr "Pregledaj prekinute linkove"
56
+
57
+ #: core/core.php:332
58
+ msgid "Feedback"
59
+ msgstr "Povratne informacije"
60
+
61
+ # @ broken-link-checker
62
+ #: core/core.php:340
63
+ msgid "Go to Broken Links"
64
+ msgstr "Idi na prekinute linkove"
65
+
66
+ # @ default
67
+ #: core/core.php:369
68
+ msgid "Settings"
69
+ msgstr "Postavke"
70
+
71
+ # @ broken-link-checker
72
+ #: core/core.php:538
73
+ msgid "Settings saved."
74
+ msgstr "Postavke sačuvane"
75
+
76
+ #: core/core.php:544
77
+ msgid "Thank you for your donation!"
78
+ msgstr "Hvala vam za donaciju!"
79
+
80
+ # @ broken-link-checker
81
+ #: core/core.php:552
82
+ msgid "Complete site recheck started."
83
+ msgstr "Započeta kompletna provera "
84
+
85
+ # @ broken-link-checker
86
+ #: core/core.php:561
87
+ msgid "Details"
88
+ msgstr "Detalji"
89
+
90
+ # @ broken-link-checker
91
+ #: core/core.php:575
92
+ msgid "General"
93
+ msgstr "Opšti"
94
+
95
+ # @ broken-link-checker
96
+ #: core/core.php:576
97
+ msgid "Look For Links In"
98
+ msgstr "Potraži linkove na"
99
+
100
+ # @ broken-link-checker
101
+ #: core/core.php:577
102
+ msgid "Which Links To Check"
103
+ msgstr "Koje linkove treba proveriti "
104
+
105
+ # @ broken-link-checker
106
+ #: core/core.php:578
107
+ msgid "Protocols & APIs"
108
+ msgstr "Protokoli i programski interfejsi "
109
+
110
+ # @ broken-link-checker
111
+ #: core/core.php:579
112
+ msgid "Advanced"
113
+ msgstr "Napredni"
114
+
115
+ # @ broken-link-checker
116
+ #: core/core.php:594
117
+ msgid "Broken Link Checker Options"
118
+ msgstr "Opcije za Broken Link Checker "
119
+
120
+ # @ broken-link-checker
121
+ #: core/core.php:636 includes/admin/table-printer.php:200
122
+ msgid "Status"
123
+ msgstr "Status"
124
+
125
+ # @ broken-link-checker
126
+ #: core/core.php:638 includes/admin/options-page-js.php:56
127
+ msgid "Show debug info"
128
+ msgstr "Prikaži informacije za otklanjanje grešaka"
129
+
130
+ # @ broken-link-checker
131
+ #: core/core.php:666
132
+ msgid "Check each link"
133
+ msgstr "Proveri svaki link"
134
+
135
+ # @ broken-link-checker
136
+ #: core/core.php:671
137
+ msgid "Every %s hours"
138
+ msgstr "Svakih %s sata"
139
+
140
+ # @ broken-link-checker
141
+ #: core/core.php:680
142
+ msgid ""
143
+ "Existing links will be checked this often. New links will usually be checked "
144
+ "ASAP."
145
+ msgstr "Postojeći linkovi biće proveravani u ovim vremenskim intervalima."
146
+
147
+ # @ broken-link-checker
148
+ #: core/core.php:687
149
+ msgid "E-mail notifications"
150
+ msgstr "Obaveštenja putem mail-a"
151
+
152
+ # @ broken-link-checker
153
+ #: core/core.php:693
154
+ msgid "Send me e-mail notifications about newly detected broken links"
155
+ msgstr ""
156
+ "Pošalji mi obaveštenja putem mail-a o novootkrivenim prekinutim linkovima"
157
+
158
+ # @ broken-link-checker
159
+ #: core/core.php:701
160
+ msgid "Send authors e-mail notifications about broken links in their posts"
161
+ msgstr ""
162
+ "Pošalji autorima obaveštenja putem mail-a o prekinutim linkovima u njihovim "
163
+ "postovima"
164
+
165
+ #: core/core.php:708
166
+ msgid "Notification e-mail address"
167
+ msgstr "Mail adrese za obaveštenja"
168
+
169
+ #: core/core.php:720
170
+ msgid ""
171
+ "Leave empty to use the e-mail address specified in Settings &rarr; General."
172
+ msgstr ""
173
+ "Ostavite prazno da biste koristili mail adrese navedene u Postavkama &rarr-"
174
+ "u, Opšte "
175
+
176
+ # @ broken-link-checker
177
+ #: core/core.php:727
178
+ msgid "Link tweaks"
179
+ msgstr "Prekidi linka"
180
+
181
+ # @ broken-link-checker
182
+ #: core/core.php:733
183
+ msgid "Apply custom formatting to broken links"
184
+ msgstr "Primeni prilagođeno formatiranje na prekinute linkove"
185
+
186
+ # @ broken-link-checker
187
+ #: core/core.php:737 core/core.php:768
188
+ msgid "Edit CSS"
189
+ msgstr "Uredi CSS"
190
+
191
+ #: core/core.php:753
192
+ msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
193
+ msgstr "Primer: Lorem ipsum <a %s>prekinuti link</a>, dolor sit amet."
194
+
195
+ #: core/core.php:756 core/core.php:787
196
+ msgid "Click \"Save Changes\" to update example output."
197
+ msgstr "Kliknite na \"Save Changes\" da biste ažurirali izlaz primera."
198
+
199
+ # @ broken-link-checker
200
+ #: core/core.php:764
201
+ msgid "Apply custom formatting to removed links"
202
+ msgstr "Primeni prilagođeno formatiranje na uklonjene linkove."
203
+
204
+ #: core/core.php:784
205
+ msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
206
+ msgstr "Primer: Lorem ipsum <span %s>uklonjen link</span>, dolor sit amet."
207
+
208
+ # @ broken-link-checker
209
+ #: core/core.php:797
210
+ msgid "Stop search engines from following broken links"
211
+ msgstr "Zaustavi pretraživač u praćenju prekinutih linkova"
212
+
213
+ #: core/core.php:805
214
+ msgctxt "settings page"
215
+ msgid "Suggestions"
216
+ msgstr "Predlozi"
217
+
218
+ # @ broken-link-checker
219
+ #: core/core.php:811
220
+ msgid "Suggest alternatives to broken links"
221
+ msgstr "Predloži alternative za prekinute linkove"
222
+
223
+ # @ broken-link-checker
224
+ #: core/core.php:827
225
+ msgid "Look for links in"
226
+ msgstr "Potraži linkove na"
227
+
228
+ # @ broken-link-checker
229
+ #: core/core.php:838
230
+ msgid "Post statuses"
231
+ msgstr "Statusi posta"
232
+
233
+ # @ broken-link-checker
234
+ #: core/core.php:871
235
+ msgid "Link types"
236
+ msgstr "Vrste linkova"
237
+
238
+ # @ broken-link-checker
239
+ #: core/core.php:877
240
+ msgid "Error : All link parsers missing!"
241
+ msgstr "Greška: nedostaju svi parseri linka"
242
+
243
+ # @ broken-link-checker
244
+ #: core/core.php:884
245
+ msgid "Exclusion list"
246
+ msgstr "Lista isključenja"
247
+
248
+ # @ broken-link-checker
249
+ #: core/core.php:885
250
+ msgid ""
251
+ "Don't check links where the URL contains any of these words (one per line) :"
252
+ msgstr ""
253
+ "Ne proveravaj linkove čiji URL sadrži neke od navedenih reči (po jednu u "
254
+ "svakom redu):"
255
+
256
+ # @ broken-link-checker
257
+ #: core/core.php:903
258
+ msgid "Check links using"
259
+ msgstr "Proveri linkove koristeći:"
260
+
261
+ # @ broken-link-checker
262
+ #: core/core.php:922 includes/links.php:857
263
+ msgid "Timeout"
264
+ msgstr "Pauza"
265
+
266
+ # @ broken-link-checker
267
+ # @ default
268
+ #: core/core.php:928 core/core.php:997 core/core.php:2904
269
+ msgid "%s seconds"
270
+ msgstr "%s sekundi"
271
+
272
+ # @ broken-link-checker
273
+ #: core/core.php:937
274
+ msgid "Links that take longer than this to load will be marked as broken."
275
+ msgstr ""
276
+ "Linkovi kojima za učitavanje treba više vremena od navedenog biće označeni "
277
+ "kao prekinuti "
278
+
279
+ # @ broken-link-checker
280
+ #: core/core.php:944
281
+ msgid "Link monitor"
282
+ msgstr "Monitor linka"
283
+
284
+ # @ broken-link-checker
285
+ #: core/core.php:952
286
+ msgid "Run continuously while the Dashboard is open"
287
+ msgstr "Pokreni istovremeno kad je otvorena komandna tabla"
288
+
289
+ # @ broken-link-checker
290
+ #: core/core.php:960
291
+ msgid "Run hourly in the background"
292
+ msgstr "Pokreni u pozadini, na svakih sat vremena"
293
+
294
+ #: core/core.php:968
295
+ msgid "Show the dashboard widget for"
296
+ msgstr "Prikaži widget komandne table za"
297
+
298
+ #: core/core.php:973
299
+ msgctxt "dashboard widget visibility"
300
+ msgid "Administrator"
301
+ msgstr "Administratora"
302
+
303
+ #: core/core.php:974
304
+ msgctxt "dashboard widget visibility"
305
+ msgid "Editor and above"
306
+ msgstr "Urednika i višu poziciju"
307
+
308
+ #: core/core.php:975
309
+ msgctxt "dashboard widget visibility"
310
+ msgid "Nobody (disables the widget)"
311
+ msgstr "Nikoga (deaktivira widget)"
312
+
313
+ # @ broken-link-checker
314
+ #: core/core.php:991
315
+ msgid "Max. execution time"
316
+ msgstr "Maksimalno vreme izvođenja"
317
+
318
+ # @ broken-link-checker
319
+ #: core/core.php:1008
320
+ msgid ""
321
+ "The plugin works by periodically launching a background job that parses your "
322
+ "posts for links, checks the discovered URLs, and performs other time-"
323
+ "consuming tasks. Here you can set for how long, at most, the link monitor "
324
+ "may run each time before stopping."
325
+ msgstr ""
326
+ "Plugin funkcioniše periodično pokrećući pozadinski zadatak koji analizira "
327
+ "vaše post-ove u potrazi za linkovima, proverava otkrivene URL-e i izvodi "
328
+ "druge zadatke koji zahtevaju vreme. Ovde možete podesiti koliko (najviše) "
329
+ "vremena monitor linka može da radi pre nego što se zaustavi."
330
+
331
+ # @ broken-link-checker
332
+ #: core/core.php:1017
333
+ msgid "Server load limit"
334
+ msgstr "Ograničenje opterećenja servera"
335
+
336
+ #: core/core.php:1032
337
+ msgid "Current load : %s"
338
+ msgstr "Trenutno opterećenje %s"
339
+
340
+ # @ broken-link-checker
341
+ #: core/core.php:1037
342
+ msgid ""
343
+ "Link checking will be suspended if the average <a href=\"%s\">server load</"
344
+ "a> rises above this number. Leave this field blank to disable load limiting."
345
+ msgstr ""
346
+ "Provera linka biće obustavljena ako prosečno <a href=\"%s\">opterećenje "
347
+ "servera </a> premaši ovaj broj. Ostavite ovo polje prazno da biste "
348
+ "deaktivirali ograničenje opterećenja."
349
+
350
+ # @ broken-link-checker
351
+ #: core/core.php:1046
352
+ msgid "Not available"
353
+ msgstr "Nije raspoloživo"
354
+
355
+ # @ broken-link-checker
356
+ #: core/core.php:1048
357
+ msgid ""
358
+ "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
359
+ "code> is present and accessible."
360
+ msgstr ""
361
+ "Ograničenje opterećenja radi samo na sistemima kao što je Linux gde je "
362
+ "<code>/proc/loadavg</code> prisutan i pristupačan"
363
+
364
+ # @ broken-link-checker
365
+ #: core/core.php:1056
366
+ msgid "Forced recheck"
367
+ msgstr "Nasilna ponovna provera"
368
+
369
+ # @ broken-link-checker
370
+ #: core/core.php:1059
371
+ msgid "Re-check all pages"
372
+ msgstr "Ponovo proveri sve stranice"
373
+
374
+ # @ broken-link-checker
375
+ #: core/core.php:1063
376
+ msgid ""
377
+ "The \"Nuclear Option\". Click this button to make the plugin empty its link "
378
+ "database and recheck the entire site from scratch."
379
+ msgstr ""
380
+ "Kliknite na taster \"Nuclear Option\" da bi plugin ispraznio svoju bazu "
381
+ "podataka i ponovo proverio da li na celom site-u ima ogrebotina. "
382
+
383
+ # @ default
384
+ #: core/core.php:1074
385
+ msgid "Save Changes"
386
+ msgstr "Sačuvaj izmene"
387
+
388
+ # @ broken-link-checker
389
+ #: core/core.php:1125
390
+ msgid "Configure"
391
+ msgstr "Konfiguriši"
392
+
393
+ #: core/core.php:1207
394
+ msgid ""
395
+ "Enter the names of custom fields you want to check (one per line). If a "
396
+ "field contains HTML code, prefix its name with <code>html:</code>. For "
397
+ "example, <code>html:field_name</code>."
398
+ msgstr ""
399
+ "Unesite nazive prilagođenih polja koje želite da proverite (po jedno polje u "
400
+ "svakom redu). Ako polje sadrži HTML kod, pre naziva navedite prefiks "
401
+ "<code>html:</code>. Na primer, <code>html:field_name</code>."
402
+
403
+ # @ broken-link-checker
404
+ #: core/core.php:1338 core/core.php:1421 core/core.php:1453
405
+ msgid "Database error : %s"
406
+ msgstr "Greška baze podataka %s"
407
+
408
+ # @ broken-link-checker
409
+ #: core/core.php:1403
410
+ msgid "You must enter a filter name!"
411
+ msgstr "Morate uneti naziv filtera!"
412
+
413
+ # @ broken-link-checker
414
+ #: core/core.php:1407
415
+ msgid "Invalid search query."
416
+ msgstr "Nevažeći upit za pretragu."
417
+
418
+ # @ broken-link-checker
419
+ #: core/core.php:1416
420
+ msgid "Filter \"%s\" created"
421
+ msgstr "Kreiran je\"%s\" filter. "
422
+
423
+ # @ broken-link-checker
424
+ #: core/core.php:1443
425
+ msgid "Filter ID not specified."
426
+ msgstr "ID filtera nije naveden."
427
+
428
+ # @ broken-link-checker
429
+ #: core/core.php:1450
430
+ msgid "Filter deleted"
431
+ msgstr "Filter je obrisan"
432
+
433
+ # @ broken-link-checker
434
+ #: core/core.php:1497
435
+ msgid "Replaced %d redirect with a direct link"
436
+ msgid_plural "Replaced %d redirects with direct links"
437
+ msgstr[0] "Zamenjeni %d preusmeri direktnim linkom."
438
+ msgstr[1] "Zamenjeni %d preusmeri direktnim linkom."
439
+
440
+ # @ broken-link-checker
441
+ #: core/core.php:1508
442
+ msgid "Failed to fix %d redirect"
443
+ msgid_plural "Failed to fix %d redirects"
444
+ msgstr[0] "Nije uspela popravka %d preusmeravanja"
445
+ msgstr[1] "Nije uspela popravka %d preusmeravanja"
446
+
447
+ # @ broken-link-checker
448
+ #: core/core.php:1519
449
+ msgid "None of the selected links are redirects!"
450
+ msgstr "Nijedan od odabranih linkova nije za preusmeravanje!"
451
+
452
+ # @ broken-link-checker
453
+ #: core/core.php:1597
454
+ msgid "%d link updated."
455
+ msgid_plural "%d links updated."
456
+ msgstr[0] "%d link ažuriran"
457
+ msgstr[1] "%d link ažuriran"
458
+
459
+ # @ broken-link-checker
460
+ #: core/core.php:1608
461
+ msgid "Failed to update %d link."
462
+ msgid_plural "Failed to update %d links."
463
+ msgstr[0] "Nije uspelo ažuriranje %d linka"
464
+ msgstr[1] "Nije uspelo ažuriranje %d linka"
465
+
466
+ # @ broken-link-checker
467
+ #: core/core.php:1697
468
+ msgid "%d link removed"
469
+ msgid_plural "%d links removed"
470
+ msgstr[0] "%d link je uklonjen"
471
+ msgstr[1] "%d link je uklonjen"
472
+
473
+ # @ broken-link-checker
474
+ #: core/core.php:1708
475
+ msgid "Failed to remove %d link"
476
+ msgid_plural "Failed to remove %d links"
477
+ msgstr[0] "Neuspešno uklanjanje %d linka"
478
+ msgstr[1] "Neuspešno uklanjanje %d linka"
479
+
480
+ # @ default
481
+ #: core/core.php:1817
482
+ msgid ""
483
+ "%d item was skipped because it can't be moved to the Trash. You need to "
484
+ "delete it manually."
485
+ msgid_plural ""
486
+ "%d items were skipped because they can't be moved to the Trash. You need to "
487
+ "delete them manually."
488
+ msgstr[0] ""
489
+ "%d jedinica je preskočena jer ne može da se prebaci u kantu za otpatke. "
490
+ "Morate je ručno obrisati."
491
+ msgstr[1] ""
492
+ "%d jedinica je preskočena jer ne može da se prebaci u kantu za otpatke. "
493
+ "Morate je ručno obrisati."
494
+
495
+ # @ broken-link-checker
496
+ #: core/core.php:1839
497
+ msgid "Didn't find anything to delete!"
498
+ msgstr "Nije pronađeno ništa za brisanje!"
499
+
500
+ # @ broken-link-checker
501
+ #: core/core.php:1867
502
+ msgid "%d link scheduled for rechecking"
503
+ msgid_plural "%d links scheduled for rechecking"
504
+ msgstr[0] "%d link planiran za ponovnu proveru"
505
+ msgstr[1] "%d link planiran za ponovnu proveru"
506
+
507
+ # @ broken-link-checker
508
+ #: core/core.php:1913 core/core.php:2522
509
+ msgid "This link was manually marked as working by the user."
510
+ msgstr "Korisnik je ručno označio ovaj link kao aktivan."
511
+
512
+ # @ broken-link-checker
513
+ #: core/core.php:1920
514
+ msgid "Couldn't modify link %d"
515
+ msgstr "Link %d nije se mogao modifikovati"
516
+
517
+ # @ broken-link-checker
518
+ #: core/core.php:1930
519
+ msgid "%d link marked as not broken"
520
+ msgid_plural "%d links marked as not broken"
521
+ msgstr[0] "%d link označen kao neprekinut"
522
+ msgstr[1] "%d link označen kao neprekinut"
523
+
524
+ # @ broken-link-checker
525
+ #: core/core.php:1970
526
+ msgid "Table columns"
527
+ msgstr "Kolone u tabeli"
528
+
529
+ # @ default
530
+ #: core/core.php:1989
531
+ msgid "Show on screen"
532
+ msgstr "Prikaži na ekranu"
533
+
534
+ # @ broken-link-checker
535
+ #: core/core.php:1996
536
+ msgid "links"
537
+ msgstr "linkovi"
538
+
539
+ # @ default
540
+ # @ broken-link-checker
541
+ #: core/core.php:1997 includes/admin/table-printer.php:168
542
+ msgid "Apply"
543
+ msgstr "Primeni"
544
+
545
+ # @ broken-link-checker
546
+ #: core/core.php:2001
547
+ msgid "Misc"
548
+ msgstr "Razno"
549
+
550
+ # @ broken-link-checker
551
+ #: core/core.php:2016
552
+ msgid "Highlight links broken for at least %s days"
553
+ msgstr "Markiraj linkove prekinute najmanje %s dana"
554
+
555
+ # @ broken-link-checker
556
+ #: core/core.php:2025
557
+ msgid "Color-code status codes"
558
+ msgstr "Kodovi statusa prema boji koda"
559
+
560
+ # @ broken-link-checker
561
+ #: core/core.php:2042 core/core.php:2507 core/core.php:2547 core/core.php:2580
562
+ #: core/core.php:2667
563
+ msgid "You're not allowed to do that!"
564
+ msgstr "Nemate dozvolu za tu aktivnost!"
565
+
566
+ # @ broken-link-checker
567
+ #: core/core.php:2377
568
+ msgid "View broken links"
569
+ msgstr "Vidi prekinute linkove"
570
+
571
+ # @ broken-link-checker
572
+ #: core/core.php:2378
573
+ msgid "Found %d broken link"
574
+ msgid_plural "Found %d broken links"
575
+ msgstr[0] "Nađen %d prekinuti link."
576
+ msgstr[1] "Nađen %d prekinuti link."
577
+
578
+ # @ broken-link-checker
579
+ #: core/core.php:2384
580
+ msgid "No broken links found."
581
+ msgstr "Nisu pronađeni prekinuti linkovi"
582
+
583
+ # @ broken-link-checker
584
+ #: core/core.php:2391
585
+ msgid "%d URL in the work queue"
586
+ msgid_plural "%d URLs in the work queue"
587
+ msgstr[0] "%d URL u redu za rad"
588
+ msgstr[1] "%d URL u redu za rad"
589
+
590
+ # @ broken-link-checker
591
+ #: core/core.php:2394
592
+ msgid "No URLs in the work queue."
593
+ msgstr "Nema URL-a u redu za rad"
594
+
595
+ # @ broken-link-checker
596
+ #: core/core.php:2400
597
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
598
+ msgid "%d unique URL"
599
+ msgid_plural "%d unique URLs"
600
+ msgstr[0] "%d jedinstveni URL"
601
+ msgstr[1] "%d jedinstveni URL"
602
+
603
+ # @ broken-link-checker
604
+ #: core/core.php:2404
605
+ msgctxt "for the \"Detected X unique URLs in Y links\" message"
606
+ msgid "%d link"
607
+ msgid_plural "%d links"
608
+ msgstr[0] "%d link"
609
+ msgstr[1] "% link% link%d link"
610
+
611
+ # @ broken-link-checker
612
+ #: core/core.php:2410
613
+ msgid "Detected %1$s in %2$s and still searching..."
614
+ msgstr "Pronađeno %1$s u %2$s i još tražimo..."
615
+
616
+ # @ broken-link-checker
617
+ #: core/core.php:2416
618
+ msgid "Detected %1$s in %2$s."
619
+ msgstr "Pronađeno %1$s u %2$s."
620
+
621
+ # @ broken-link-checker
622
+ #: core/core.php:2423
623
+ msgid "Searching your blog for links..."
624
+ msgstr "Pretraživanje vašeg blog-a u potrazi za linkovima..."
625
+
626
+ # @ broken-link-checker
627
+ #: core/core.php:2425
628
+ msgid "No links detected."
629
+ msgstr "Nema pronađenih linkova."
630
+
631
+ # @ broken-link-checker
632
+ #: core/core.php:2451
633
+ msgctxt "current load"
634
+ msgid "Unknown"
635
+ msgstr "Nepoznat"
636
+
637
+ # @ broken-link-checker
638
+ #: core/core.php:2515 core/core.php:2555 core/core.php:2595 core/core.php:2677
639
+ msgid "Oops, I can't find the link %d"
640
+ msgstr "Ups, ne mogu da nađem link %d"
641
+
642
+ # @ broken-link-checker
643
+ #: core/core.php:2528 core/core.php:2565
644
+ msgid "Oops, couldn't modify the link!"
645
+ msgstr "Ups, link nije mogao da se izmeni!"
646
+
647
+ # @ broken-link-checker
648
+ #: core/core.php:2531 core/core.php:2568 core/core.php:2703
649
+ msgid "Error : link_id not specified"
650
+ msgstr "Greška: id_linka nije naveden"
651
+
652
+ # @ broken-link-checker
653
+ #: core/core.php:2586
654
+ msgid "Error : link_id or new_url not specified"
655
+ msgstr "Greška: id_linka ili novi_url nije naveden"
656
+
657
+ # @ broken-link-checker
658
+ #: core/core.php:2604
659
+ msgid "Oops, the new URL is invalid!"
660
+ msgstr "Ups, novi URL je nevažeči!"
661
+
662
+ # @ broken-link-checker
663
+ #: core/core.php:2619
664
+ msgid "An unexpected error occurred!"
665
+ msgstr "Pojavila se neočekivana greška!"
666
+
667
+ # @ broken-link-checker
668
+ #: core/core.php:2686
669
+ msgid "An unexpected error occured!"
670
+ msgstr "Pojavila se neočekivana greška!"
671
+
672
+ # @ broken-link-checker
673
+ #: core/core.php:2712
674
+ msgid "You don't have sufficient privileges to access this information!"
675
+ msgstr "Nemate odgovarajuće dozvole za pristup ovim informacijama!"
676
+
677
+ # @ broken-link-checker
678
+ #: core/core.php:2725
679
+ msgid "Error : link ID not specified"
680
+ msgstr "Greška: ID linka nije naveden"
681
+
682
+ # @ broken-link-checker
683
+ #: core/core.php:2739
684
+ msgid "Failed to load link details (%s)"
685
+ msgstr "Detalji linka nisu učitani (%s)"
686
+
687
+ # @ broken-link-checker
688
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.8.3) #-#-#-#-#
689
+ #. Plugin Name of the plugin/theme
690
+ #: core/core.php:2793
691
+ msgid "Broken Link Checker"
692
+ msgstr "Broken Link Checker"
693
+
694
+ # @ broken-link-checker
695
+ #: core/core.php:2813
696
+ msgid "PHP version"
697
+ msgstr "PHP verzija"
698
+
699
+ # @ broken-link-checker
700
+ #: core/core.php:2819
701
+ msgid "MySQL version"
702
+ msgstr "MySQL verzija"
703
+
704
+ # @ broken-link-checker
705
+ #: core/core.php:2832
706
+ msgid ""
707
+ "You have an old version of CURL. Redirect detection may not work properly."
708
+ msgstr ""
709
+ "Imate staru verziju CURL-a. Detekcija preusmeravanja možda neće ispravno "
710
+ "raditi."
711
+
712
+ # @ broken-link-checker
713
+ #: core/core.php:2844 core/core.php:2860 core/core.php:2865
714
+ msgid "Not installed"
715
+ msgstr "Nije instalirana"
716
+
717
+ # @ broken-link-checker
718
+ #: core/core.php:2847
719
+ msgid "CURL version"
720
+ msgstr "CURL verzija"
721
+
722
+ # @ broken-link-checker
723
+ #: core/core.php:2853
724
+ msgid "Installed"
725
+ msgstr "Instalirana"
726
+
727
+ # @ broken-link-checker
728
+ #: core/core.php:2866
729
+ msgid "You must have either CURL or Snoopy installed for the plugin to work!"
730
+ msgstr "Morate imati instaliran CURL ili Snoopy da bi ovaj plugin radio!"
731
+
732
+ # @ broken-link-checker
733
+ #: core/core.php:2877
734
+ msgid "On"
735
+ msgstr "Uključen"
736
+
737
+ # @ broken-link-checker
738
+ #: core/core.php:2878
739
+ msgid "Redirects may be detected as broken links when safe_mode is on."
740
+ msgstr ""
741
+ "Preusmeravanja mogu biti detektovana kao prekinuti linkovi kad je uključen "
742
+ "‘safe_mode’."
743
+
744
+ # @ broken-link-checker
745
+ #: core/core.php:2883 core/core.php:2897
746
+ msgid "Off"
747
+ msgstr "Isključen"
748
+
749
+ # @ broken-link-checker
750
+ #: core/core.php:2891
751
+ msgid "On ( %s )"
752
+ msgstr "Uključen (%s)"
753
+
754
+ # @ broken-link-checker
755
+ #: core/core.php:2892
756
+ msgid "Redirects may be detected as broken links when open_basedir is on."
757
+ msgstr ""
758
+ "Preusmeravanja mogu biti detektovana kao prekinuti linkovi kad je uključena "
759
+ "opcija ‘open_basedir’. "
760
+
761
+ # @ broken-link-checker
762
+ #: core/core.php:2921
763
+ msgid ""
764
+ "If this value is zero even after several page reloads you have probably "
765
+ "encountered a bug."
766
+ msgstr ""
767
+ "Ako je ova vrednost podešena na nulu, posle nekoliko ponovnih učitavanja "
768
+ "stranice, verovatno ste naišli na grešku. "
769
+
770
+ # @ broken-link-checker
771
+ #: core/core.php:3044 core/core.php:3159
772
+ msgid "[%s] Broken links detected"
773
+ msgstr "Otkriveno [%s] prekinutih linkova"
774
+
775
+ # @ broken-link-checker
776
+ #: core/core.php:3049
777
+ msgid "Broken Link Checker has detected %d new broken link on your site."
778
+ msgid_plural ""
779
+ "Broken Link Checker has detected %d new broken links on your site."
780
+ msgstr[0] ""
781
+ "Broken Link Checker otkrio je %d novi prekinuti link na vašem site-u"
782
+ msgstr[1] ""
783
+ "Broken Link Checker otkrio je %d novi prekinuti link na vašem site-u"
784
+
785
+ # @ broken-link-checker
786
+ #: core/core.php:3080
787
+ msgid "Here's a list of the first %d broken links:"
788
+ msgid_plural "Here's a list of the first %d broken links:"
789
+ msgstr[0] "Ovde je spisak prvih %d prekinutih linkova"
790
+ msgstr[1] "Ovde je spisak prvih %d prekinutih linkova"
791
+
792
+ # @ broken-link-checker
793
+ #: core/core.php:3089
794
+ msgid "Here's a list of the new broken links: "
795
+ msgstr "Ovde je spisak novih prekinutih linkova"
796
+
797
+ # @ broken-link-checker
798
+ #: core/core.php:3098
799
+ msgid "Link text : %s"
800
+ msgstr "Teks linka: %s"
801
+
802
+ # @ broken-link-checker
803
+ #: core/core.php:3099
804
+ msgid "Link URL : <a href=\"%s\">%s</a>"
805
+ msgstr "URL linka: <a href=\"%s\">%s</a>"
806
+
807
+ # @ broken-link-checker
808
+ #: core/core.php:3100
809
+ msgid "Source : %s"
810
+ msgstr "Izvor: %s"
811
+
812
+ # @ brokenk-link-checker
813
+ #: core/core.php:3114
814
+ msgid "You can see all broken links here:"
815
+ msgstr "Ovde možete videti sve prekinute linkove"
816
+
817
+ # @ broken-link-checker
818
+ #: core/core.php:3164
819
+ msgid "Broken Link Checker has detected %d new broken link in your posts."
820
+ msgid_plural ""
821
+ "Broken Link Checker has detected %d new broken links in your posts."
822
+ msgstr[0] "Broken Link Checker otkrio je %d prekinutih linkova u vašem post-u"
823
+ msgstr[1] "Broken Link Checker otkrio je %d prekinutih linkova u vašem post-u"
824
+
825
+ # @ default
826
+ #: core/init.php:242
827
+ msgid "Once Weekly"
828
+ msgstr "Jednom nedeljno"
829
+
830
+ # @ default
831
+ #: core/init.php:248
832
+ msgid "Twice a Month"
833
+ msgstr "Dva puta mesečno"
834
+
835
+ # @ broken-link-checker
836
+ #: core/init.php:324
837
+ msgid ""
838
+ "Broken Link Checker installation failed. Try deactivating and then "
839
+ "reactivating the plugin."
840
+ msgstr ""
841
+ "Broken Link Checker nije instaliran. Pokušajte da deaktivirate i da ponovo "
842
+ "aktivirate plugin."
843
+
844
+ # @ broken-link-checker
845
+ #: includes/admin/db-upgrade.php:95
846
+ msgid "Failed to delete old DB tables. Database error : %s"
847
+ msgstr ""
848
+ "Neuspešno brisanje tabela stare baze podataka. Greška baze podataka: %s"
849
+
850
+ # @ broken-link-checker
851
+ #: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:517
852
+ msgid "Wait..."
853
+ msgstr "Sačekajte..."
854
+
855
+ # @ broken-link-checker
856
+ #: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:658
857
+ msgid "Not broken"
858
+ msgstr "Nije prekinut"
859
+
860
+ #: includes/admin/links-page-js.php:235
861
+ msgctxt "link text"
862
+ msgid "(None)"
863
+ msgstr "(Nijedan)"
864
+
865
+ #: includes/admin/links-page-js.php:236
866
+ msgctxt "link text"
867
+ msgid "(Multiple links)"
868
+ msgstr "(Višestruki linkovi)"
869
+
870
+ # @ broken-link-checker
871
+ #: includes/admin/links-page-js.php:294
872
+ msgctxt "link suggestions"
873
+ msgid "Searching..."
874
+ msgstr "Tražim..."
875
+
876
+ # @ broken-link-checker
877
+ #: includes/admin/links-page-js.php:295
878
+ msgctxt "link suggestions"
879
+ msgid "No suggestions available."
880
+ msgstr "Nema raspoloživih predloga."
881
+
882
+ #: includes/admin/links-page-js.php:296
883
+ msgctxt "link suggestions"
884
+ msgid "Archived page from %s (via the Wayback Machine)"
885
+ msgstr "Stranica arhivirana %s (pomoću Wayback Machine)."
886
+
887
+ # @ broken-link-checker
888
+ #: includes/admin/links-page-js.php:379
889
+ msgid "%d instances of the link were successfully modified."
890
+ msgstr "%d primeri linka uspešno su izmenjeni."
891
+
892
+ # @ broken-link-checker
893
+ #: includes/admin/links-page-js.php:385
894
+ msgid ""
895
+ "However, %d instances couldn't be edited and still point to the old URL."
896
+ msgstr "Ipak, %d primeri nisu mogli biti izmenjeni i još pokazuju stari URL."
897
+
898
+ # @ broken-link-checker
899
+ #: includes/admin/links-page-js.php:391
900
+ msgid "The link could not be modified."
901
+ msgstr "Link se nije mogao modifikovati."
902
+
903
+ # @ broken-link-checker
904
+ #: includes/admin/links-page-js.php:394
905
+ msgid "The following error(s) occurred :"
906
+ msgstr "Pojavila se sledeća greška:"
907
+
908
+ #: includes/admin/links-page-js.php:480
909
+ msgid "Error: Link URL must not be empty."
910
+ msgstr "Greška: URL linka ne sme biti prazan."
911
+
912
+ # @ broken-link-checker
913
+ #: includes/admin/links-page-js.php:555
914
+ msgid "%d instances of the link were successfully unlinked."
915
+ msgstr "%d primeri linka uspešno su odvojeni"
916
+
917
+ # @ broken-link-checker
918
+ #: includes/admin/links-page-js.php:561
919
+ msgid "However, %d instances couldn't be removed."
920
+ msgstr "Međutim, %d primeri nisu mogli biti uklonjeni."
921
+
922
+ # @ broken-link-checker
923
+ #: includes/admin/links-page-js.php:566
924
+ msgid "The plugin failed to remove the link."
925
+ msgstr "Plugin nije mogao da ukloni link."
926
+
927
+ # @ broken-link-checker
928
+ #: includes/admin/links-page-js.php:569
929
+ msgid "The following error(s) occured :"
930
+ msgstr "Pojavila se sledeća greška:"
931
+
932
+ # @ broken-link-checker
933
+ #: includes/admin/links-page-js.php:577 includes/admin/table-printer.php:276
934
+ #: includes/admin/table-printer.php:652
935
+ msgid "Unlink"
936
+ msgstr "Odvoji"
937
+
938
+ # @ broken-link-checker
939
+ #: includes/admin/links-page-js.php:621
940
+ msgid "Enter a name for the new custom filter"
941
+ msgstr "Unesi ime za novi prilagođeni filter"
942
+
943
+ # @ broken-link-checker
944
+ #: includes/admin/links-page-js.php:632
945
+ msgid ""
946
+ "You are about to delete the current filter.\n"
947
+ "'Cancel' to stop, 'OK' to delete"
948
+ msgstr ""
949
+ "Pripremate se da obrišete postojeći filter. Kliknite na .\n"
950
+ "'Cancel' da biste zaustavili aktivnost, 'OK' da biste ga obrisali."
951
+
952
+ # @ broken-link-checker
953
+ #: includes/admin/links-page-js.php:652
954
+ msgid ""
955
+ "Are you sure you want to delete all posts, bookmarks or other items that "
956
+ "contain any of the selected links? This action can't be undone.\n"
957
+ "'Cancel' to stop, 'OK' to delete"
958
+ msgstr ""
959
+ "Jeste li sigurni da želite da obrišete sve post-ove, oznake i druge stavke "
960
+ "koje sadrže odabrane linkove? Ova aktivnost ne može se poništiti. Kliknite "
961
+ "na .\n"
962
+ "'Cancel' da biste zaustavili aktivnost, 'OK' da biste ih obrisali."
963
+
964
+ # @ broken-link-checker
965
+ #: includes/admin/links-page-js.php:662
966
+ msgid ""
967
+ "Are you sure you want to remove the selected links? This action can't be "
968
+ "undone.\n"
969
+ "'Cancel' to stop, 'OK' to remove"
970
+ msgstr ""
971
+ "Jeste li sigurni da želite da uklonite odabrane linkove? Ova aktivnost ne "
972
+ "može se poništiti. Kliknite na .\n"
973
+ "'Cancel' da biste zaustavili aktivnost, 'OK' da biste uklonili linkove."
974
+
975
+ #: includes/admin/links-page-js.php:771
976
+ msgid "Enter a search string first."
977
+ msgstr "Prvo unesite niz za pretragu"
978
+
979
+ #: includes/admin/links-page-js.php:778
980
+ msgid "Select one or more links to edit."
981
+ msgstr "Odaberite jedan link ili više linkova za uređivanje."
982
+
983
+ # @ broken-link-checker
984
+ #: includes/admin/options-page-js.php:54
985
+ msgid "Hide debug info"
986
+ msgstr "Sakrij informacije o otklanjanju greške"
987
+
988
+ # @ broken-link-checker
989
+ #: includes/admin/search-form.php:16
990
+ msgid "Save This Search As a Filter"
991
+ msgstr "Saćuvaj ovu pretragu kao filter"
992
+
993
+ # @ broken-link-checker
994
+ #: includes/admin/search-form.php:26
995
+ msgid "Delete This Filter"
996
+ msgstr "Obriši ovaj filter"
997
+
998
+ # @ broken-link-checker
999
+ #: includes/admin/search-form.php:32 includes/link-query.php:65
1000
+ msgid "Search"
1001
+ msgstr "Traži"
1002
+
1003
+ # @ broken-link-checker
1004
+ #: includes/admin/search-form.php:42
1005
+ msgid "Link text"
1006
+ msgstr "Tekst linka"
1007
+
1008
+ # @ broken-link-checker
1009
+ #: includes/admin/search-form.php:45 includes/admin/table-printer.php:205
1010
+ msgid "URL"
1011
+ msgstr "URL"
1012
+
1013
+ # @ broken-link-checker
1014
+ #: includes/admin/search-form.php:48 includes/admin/table-printer.php:522
1015
+ msgid "HTTP code"
1016
+ msgstr "HTTP kod"
1017
+
1018
+ # @ broken-link-checker
1019
+ #: includes/admin/search-form.php:51
1020
+ msgid "Link status"
1021
+ msgstr "Status linka"
1022
+
1023
+ # @ broken-link-checker
1024
+ #: includes/admin/search-form.php:68 includes/admin/search-form.php:85
1025
+ msgid "Link type"
1026
+ msgstr "Vrsta linka"
1027
+
1028
+ # @ broken-link-checker
1029
+ #: includes/admin/search-form.php:70
1030
+ msgid "Any"
1031
+ msgstr "Bilo koja"
1032
+
1033
+ # @ broken-link-checker
1034
+ #: includes/admin/search-form.php:74
1035
+ msgid "Links used in"
1036
+ msgstr "Linkovi upotrebljeni u"
1037
+
1038
+ # @ broken-link-checker
1039
+ #: includes/admin/search-form.php:112
1040
+ msgid "Search Links"
1041
+ msgstr "Pretraži linkove"
1042
+
1043
+ # @ broken-link-checker
1044
+ #: includes/admin/search-form.php:113 includes/admin/table-printer.php:352
1045
+ #: includes/admin/table-printer.php:682 includes/admin/table-printer.php:807
1046
+ msgid "Cancel"
1047
+ msgstr "Pretraži linkove"
1048
+
1049
+ #: includes/admin/sidebar.php:24
1050
+ msgid "More plugins by Janis Elsts"
1051
+ msgstr "Više plugin-a od Janis Elsts"
1052
+
1053
+ #: includes/admin/sidebar.php:47
1054
+ msgid "Donate $10, $20 or $50!"
1055
+ msgstr "Donirajte $10, $20 ili $50!"
1056
+
1057
+ #: includes/admin/sidebar.php:50
1058
+ msgid ""
1059
+ "If you like this plugin, please donate to support development and "
1060
+ "maintenance!"
1061
+ msgstr ""
1062
+ "Ako vam se dopada ovaj plugin, molimo vas da donirate novac da biste "
1063
+ "podržali razvoj i održavanje!"
1064
+
1065
+ #: includes/admin/sidebar.php:68
1066
+ msgid "Return to WordPress Dashboard"
1067
+ msgstr "Vrati se na WordPress komandnu tablu"
1068
+
1069
+ # @ broken-link-checker
1070
+ #: includes/admin/table-printer.php:182
1071
+ msgid "Compact View"
1072
+ msgstr "Kompaktan pregled"
1073
+
1074
+ # @ broken-link-checker
1075
+ #: includes/admin/table-printer.php:183
1076
+ msgid "Detailed View"
1077
+ msgstr "Detaljan pregled"
1078
+
1079
+ # @ broken-link-checker
1080
+ #: includes/admin/table-printer.php:212
1081
+ msgid "Source"
1082
+ msgstr "Izvor"
1083
+
1084
+ # @ broken-link-checker
1085
+ #: includes/admin/table-printer.php:218
1086
+ msgid "Link Text"
1087
+ msgstr "Tekst linka"
1088
+
1089
+ # @ broken-link-checker
1090
+ #: includes/admin/table-printer.php:223
1091
+ msgid "Redirect URL"
1092
+ msgstr "Preusmeri URL"
1093
+
1094
+ # @ broken-link-checker
1095
+ #: includes/admin/table-printer.php:271
1096
+ msgid "Bulk Actions"
1097
+ msgstr "Grupne akcije"
1098
+
1099
+ # @ broken-link-checker
1100
+ #: includes/admin/table-printer.php:272 includes/admin/table-printer.php:649
1101
+ msgid "Edit URL"
1102
+ msgstr "Uredi URL"
1103
+
1104
+ # @ broken-link-checker
1105
+ #: includes/admin/table-printer.php:273
1106
+ msgid "Recheck"
1107
+ msgstr "Ponovo proveri"
1108
+
1109
+ # @ broken-link-checker
1110
+ #: includes/admin/table-printer.php:274
1111
+ msgid "Fix redirects"
1112
+ msgstr "Popravi preusmeravanja"
1113
+
1114
+ # @ broken-link-checker
1115
+ #: includes/admin/table-printer.php:275
1116
+ msgid "Mark as not broken"
1117
+ msgstr "Označi kao neprekinut"
1118
+
1119
+ # @ broken-link-checker
1120
+ #: includes/admin/table-printer.php:279
1121
+ msgid "Move sources to Trash"
1122
+ msgstr "Premesti izvore u korpu za otpatke"
1123
+
1124
+ # @ broken-link-checker
1125
+ #: includes/admin/table-printer.php:281
1126
+ msgid "Delete sources"
1127
+ msgstr "Obriši izvore"
1128
+
1129
+ # @ default
1130
+ #: includes/admin/table-printer.php:296
1131
+ msgid "&laquo;"
1132
+ msgstr "&laquo;"
1133
+
1134
+ # @ default
1135
+ #: includes/admin/table-printer.php:297
1136
+ msgid "&raquo;"
1137
+ msgstr "&raquo;"
1138
+
1139
+ # @ broken-link-checker
1140
+ #: includes/admin/table-printer.php:305
1141
+ msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1142
+ msgstr "Prikazivanje %s&#8211;%s <span class=\"current-link-count\">%s</span>"
1143
+
1144
+ # @ broken-link-checker
1145
+ #: includes/admin/table-printer.php:328
1146
+ msgid "Bulk Edit URLs"
1147
+ msgstr "Grupno uređivanje URL-a"
1148
+
1149
+ #: includes/admin/table-printer.php:330
1150
+ msgid "Find"
1151
+ msgstr "Nađi"
1152
+
1153
+ #: includes/admin/table-printer.php:334
1154
+ msgid "Replace with"
1155
+ msgstr "Zameni sa"
1156
+
1157
+ # @ broken-link-checker
1158
+ #: includes/admin/table-printer.php:342
1159
+ msgid "Case sensitive"
1160
+ msgstr "Velika i mala slova"
1161
+
1162
+ #: includes/admin/table-printer.php:346
1163
+ msgid "Regular expression"
1164
+ msgstr "Regularan izraz"
1165
+
1166
+ # @ broken-link-checker
1167
+ #: includes/admin/table-printer.php:354 includes/admin/table-printer.php:808
1168
+ msgid "Update"
1169
+ msgstr "Ažuriraj"
1170
+
1171
+ # @ broken-link-checker
1172
+ #: includes/admin/table-printer.php:507
1173
+ msgid "Post published on"
1174
+ msgstr "Post objavljen na"
1175
+
1176
+ # @ broken-link-checker
1177
+ #: includes/admin/table-printer.php:512
1178
+ msgid "Link last checked"
1179
+ msgstr "Link poslednji put proveren"
1180
+
1181
+ # @ broken-link-checker
1182
+ #: includes/admin/table-printer.php:516
1183
+ msgid "Never"
1184
+ msgstr "Nikad"
1185
+
1186
+ # @ broken-link-checker
1187
+ #: includes/admin/table-printer.php:527
1188
+ msgid "Response time"
1189
+ msgstr "Vreme odgovora"
1190
+
1191
+ # @ broken-link-checker
1192
+ #: includes/admin/table-printer.php:529
1193
+ msgid "%2.3f seconds"
1194
+ msgstr "%2.3f sekunde"
1195
+
1196
+ # @ broken-link-checker
1197
+ #: includes/admin/table-printer.php:532
1198
+ msgid "Final URL"
1199
+ msgstr "Konačni url"
1200
+
1201
+ # @ broken-link-checker
1202
+ #: includes/admin/table-printer.php:537
1203
+ msgid "Redirect count"
1204
+ msgstr "Preusmeri obračun"
1205
+
1206
+ # @ broken-link-checker
1207
+ #: includes/admin/table-printer.php:542
1208
+ msgid "Instance count"
1209
+ msgstr "Navedi obračun"
1210
+
1211
+ # @ broken-link-checker
1212
+ #: includes/admin/table-printer.php:551
1213
+ msgid "This link has failed %d time."
1214
+ msgid_plural "This link has failed %d times."
1215
+ msgstr[0] "Ovaj link je %d put neuspešan."
1216
+ msgstr[1] "Ovaj link je %d put neuspešan."
1217
+
1218
+ # @ broken-link-checker
1219
+ #: includes/admin/table-printer.php:559
1220
+ msgid "This link has been broken for %s."
1221
+ msgstr "Ovaj link je prekinut %s."
1222
+
1223
+ # @ broken-link-checker
1224
+ #: includes/admin/table-printer.php:570
1225
+ msgid "Log"
1226
+ msgstr "Prijavite"
1227
+
1228
+ # @ broken-link-checker
1229
+ #: includes/admin/table-printer.php:595
1230
+ msgid "Show more info about this link"
1231
+ msgstr "Prikažite više podataka o ovom linku"
1232
+
1233
+ # @ broken-link-checker
1234
+ #: includes/admin/table-printer.php:613
1235
+ msgctxt "checked how long ago"
1236
+ msgid "Checked"
1237
+ msgstr "Proveren"
1238
+
1239
+ # @ broken-link-checker
1240
+ #: includes/admin/table-printer.php:629
1241
+ msgid "Broken for"
1242
+ msgstr "Prekinut već"
1243
+
1244
+ # @ default
1245
+ #: includes/admin/table-printer.php:649
1246
+ msgid "Edit this link"
1247
+ msgstr "Uredi ovaj link"
1248
+
1249
+ # @ broken-link-checker
1250
+ #: includes/admin/table-printer.php:651
1251
+ msgid "Remove this link from all posts"
1252
+ msgstr "Ukloni link iz svih post-ova"
1253
+
1254
+ # @ broken-link-checker
1255
+ #: includes/admin/table-printer.php:657
1256
+ msgid "Remove this link from the list of broken links and mark it as valid"
1257
+ msgstr "Ukloni ovaj link sa spiska prekinutih linkova i označi ga kao važeći"
1258
+
1259
+ #: includes/admin/table-printer.php:665
1260
+ msgid "Hide this link and do not report it again unless its status changes"
1261
+ msgstr ""
1262
+ "Sakrij ovaj link i ne šalji obaveštenja, osim ako mu se ne promeni status"
1263
+
1264
+ #: includes/admin/table-printer.php:666
1265
+ msgid "Dismiss"
1266
+ msgstr "Odbaci"
1267
+
1268
+ #: includes/admin/table-printer.php:671
1269
+ msgid "Undismiss this link"
1270
+ msgstr "Poništi odbacivanje linka"
1271
+
1272
+ #: includes/admin/table-printer.php:672
1273
+ msgid "Undismiss"
1274
+ msgstr "Poništi odbacivanje"
1275
+
1276
+ # @ broken-link-checker
1277
+ #: includes/admin/table-printer.php:683
1278
+ msgid "Update URL"
1279
+ msgstr "Ažuriraj URL"
1280
+
1281
+ # @ broken-link-checker
1282
+ #: includes/admin/table-printer.php:710
1283
+ msgid "[An orphaned link! This is a bug.]"
1284
+ msgstr "[Napušteni link.To je greška.]"
1285
+
1286
+ # @ broken-link-checker
1287
+ #: includes/admin/table-printer.php:787
1288
+ msgctxt "inline editor title"
1289
+ msgid "Edit Link"
1290
+ msgstr "Uredi link"
1291
+
1292
+ # @ broken-link-checker
1293
+ #: includes/admin/table-printer.php:790
1294
+ msgctxt "inline link editor"
1295
+ msgid "Text"
1296
+ msgstr "Tekst"
1297
+
1298
+ # @ broken-link-checker
1299
+ #: includes/admin/table-printer.php:795
1300
+ msgctxt "inline link editor"
1301
+ msgid "URL"
1302
+ msgstr "URL"
1303
+
1304
+ #: includes/admin/table-printer.php:800
1305
+ msgctxt "inline link editor"
1306
+ msgid "Suggestions"
1307
+ msgstr "Predlozi"
1308
+
1309
+ #: includes/admin/table-printer.php:820
1310
+ msgid "Use this URL"
1311
+ msgstr "Upotrebi ovaj URL"
1312
+
1313
+ # @ default
1314
+ #: includes/any-post.php:397 modules/containers/blogroll.php:46
1315
+ #: modules/containers/comment.php:153 modules/containers/custom_field.php:207
1316
+ msgid "Edit"
1317
+ msgstr "Uredi"
1318
+
1319
+ # @ default
1320
+ #: includes/any-post.php:405 modules/containers/custom_field.php:213
1321
+ msgid "Move this item to the Trash"
1322
+ msgstr "Prebaci jedinicu u korpu za otpatke"
1323
+
1324
+ # @ default
1325
+ #: includes/any-post.php:407 modules/containers/custom_field.php:215
1326
+ msgid "Trash"
1327
+ msgstr "Korpa za otpatke"
1328
+
1329
+ # @ default
1330
+ #: includes/any-post.php:412 modules/containers/custom_field.php:220
1331
+ msgid "Delete this item permanently"
1332
+ msgstr "Trajno obrišite ovu jedinicu"
1333
+
1334
+ # @ default
1335
+ #: includes/any-post.php:414 modules/containers/blogroll.php:47
1336
+ #: modules/containers/custom_field.php:222
1337
+ msgid "Delete"
1338
+ msgstr "Obriši"
1339
+
1340
+ # @ default
1341
+ #: includes/any-post.php:427
1342
+ msgid "Preview &#8220;%s&#8221;"
1343
+ msgstr "Pregledaj &#8220;%s&#8221;"
1344
+
1345
+ # @ default
1346
+ #: includes/any-post.php:428
1347
+ msgid "Preview"
1348
+ msgstr "Pregledaj"
1349
+
1350
+ # @ default
1351
+ #: includes/any-post.php:435
1352
+ msgid "View &#8220;%s&#8221;"
1353
+ msgstr "Vidi &#8220;%s&#8221;"
1354
+
1355
+ # @ default
1356
+ #: includes/any-post.php:436 modules/containers/comment.php:166
1357
+ #: modules/containers/custom_field.php:227
1358
+ msgid "View"
1359
+ msgstr "Izgled"
1360
+
1361
+ # @ default
1362
+ #: includes/any-post.php:455 modules/containers/custom_field.php:207
1363
+ msgid "Edit this item"
1364
+ msgstr "Uredi ovu jedinicu"
1365
+
1366
+ # @ broken-link-checker
1367
+ #: includes/any-post.php:519 modules/containers/blogroll.php:83
1368
+ #: modules/containers/comment.php:43
1369
+ msgid "Nothing to update"
1370
+ msgstr "Nema ničega za ažuriranje"
1371
+
1372
+ # @ broken-link-checker
1373
+ #: includes/any-post.php:529
1374
+ msgid "Updating post %d failed"
1375
+ msgstr "Neuspešno ažuriranje %d post-a"
1376
+
1377
+ # @ broken-link-checker
1378
+ #: includes/any-post.php:566 modules/containers/custom_field.php:294
1379
+ msgid "Failed to delete post \"%s\" (%d)"
1380
+ msgstr "Neuspešno brisanje post-a \"%s\" (%d)"
1381
+
1382
+ # @ broken-link-checker
1383
+ #: includes/any-post.php:585 modules/containers/custom_field.php:313
1384
+ msgid ""
1385
+ "Can't move post \"%s\" (%d) to the trash because the trash feature is "
1386
+ "disabled"
1387
+ msgstr ""
1388
+ "Post \"%s\" (%d) ne može se prebaciti u korpu za otpatke jer je funkcija "
1389
+ "korpe za otpatke deaktivirana."
1390
+
1391
+ # @ broken-link-checker
1392
+ #: includes/any-post.php:605 modules/containers/custom_field.php:332
1393
+ msgid "Failed to move post \"%s\" (%d) to the trash"
1394
+ msgstr "Neuspelo premeštanje post-a \"%s\" (%d) u kantu za otpatke"
1395
+
1396
+ # @ broken-link-checker
1397
+ #: includes/any-post.php:713
1398
+ msgid "%d post deleted."
1399
+ msgid_plural "%d posts deleted."
1400
+ msgstr[0] "%d post obrisan"
1401
+ msgstr[1] "%d post obrisan"
1402
+
1403
+ # @ broken-link-checker
1404
+ #: includes/any-post.php:715
1405
+ msgid "%d page deleted."
1406
+ msgid_plural "%d pages deleted."
1407
+ msgstr[0] "stranica %d obrisana"
1408
+ msgstr[1] "stranica %d obrisana"
1409
+
1410
+ # @ broken-link-checker
1411
+ #: includes/any-post.php:717
1412
+ msgid "%d \"%s\" deleted."
1413
+ msgid_plural "%d \"%s\" deleted."
1414
+ msgstr[0] "%d \"%s\" obrisani"
1415
+ msgstr[1] "%d \"%s\" obrisani"
1416
+
1417
+ # @ broken-link-checker
1418
+ #: includes/any-post.php:736
1419
+ msgid "%d post moved to the Trash."
1420
+ msgid_plural "%d posts moved to the Trash."
1421
+ msgstr[0] "%d post premešten u korpu za otpatke"
1422
+ msgstr[1] "%d post premešten u korpu za otpatke"
1423
+
1424
+ # @ broken-link-checker
1425
+ #: includes/any-post.php:738
1426
+ msgid "%d page moved to the Trash."
1427
+ msgid_plural "%d pages moved to the Trash."
1428
+ msgstr[0] "%d stranica premeštena u korpu za otpatke"
1429
+ msgstr[1] "%d stranica premeštena u korpu za otpatke"
1430
+
1431
+ # @ broken-link-checker
1432
+ #: includes/any-post.php:740
1433
+ msgid "%d \"%s\" moved to the Trash."
1434
+ msgid_plural "%d \"%s\" moved to the Trash."
1435
+ msgstr[0] "%d \"%s\" premešten u korpu za otpatke"
1436
+ msgstr[1] "%d \"%s\" premešten u korpu za otpatke"
1437
+
1438
+ # @ broken-link-checker
1439
+ #: includes/containers.php:122
1440
+ msgid "%d '%s' has been deleted"
1441
+ msgid_plural "%d '%s' have been deleted"
1442
+ msgstr[0] "%d '%' je obrisan"
1443
+ msgstr[1] "%d '%' je obrisan"
1444
+
1445
+ # @ broken-link-checker
1446
+ #: includes/containers.php:880 includes/containers.php:898
1447
+ msgid "Container type '%s' not recognized"
1448
+ msgstr "Nije prepoznata vrsta kontejnera '%s'"
1449
+
1450
+ # @ broken-link-checker
1451
+ #: includes/extra-strings.php:2
1452
+ msgctxt "module name"
1453
+ msgid "Basic HTTP"
1454
+ msgstr "Osnovni HTTP"
1455
+
1456
+ # @ broken-link-checker
1457
+ #: includes/extra-strings.php:3
1458
+ msgctxt "module name"
1459
+ msgid "Blogroll items"
1460
+ msgstr "Blogroll stavke"
1461
+
1462
+ # @ broken-link-checker
1463
+ #: includes/extra-strings.php:4
1464
+ msgctxt "module name"
1465
+ msgid "Comments"
1466
+ msgstr "Komentari"
1467
+
1468
+ # @ broken-link-checker
1469
+ #: includes/extra-strings.php:5
1470
+ msgctxt "module name"
1471
+ msgid "Custom fields"
1472
+ msgstr "Prilagodi polja"
1473
+
1474
+ # @ broken-link-checker
1475
+ #: includes/extra-strings.php:6
1476
+ msgctxt "module name"
1477
+ msgid "Embedded DailyMotion videos"
1478
+ msgstr "Ubačeni DailyMotion video-snimci"
1479
+
1480
+ # @ broken-link-checker
1481
+ #: includes/extra-strings.php:7
1482
+ msgctxt "module name"
1483
+ msgid "Embedded GoogleVideo videos"
1484
+ msgstr "Ubačeni GoogleVideo video-snimci"
1485
+
1486
+ # @ broken-link-checker
1487
+ #: includes/extra-strings.php:8
1488
+ msgctxt "module name"
1489
+ msgid "Embedded Megavideo videos"
1490
+ msgstr "Ubačeni Megavideo video-snimci"
1491
+
1492
+ # @ broken-link-checker
1493
+ #: includes/extra-strings.php:9
1494
+ msgctxt "module name"
1495
+ msgid "Embedded Vimeo videos"
1496
+ msgstr "Ubačeni Vimeo video-snimci"
1497
+
1498
+ # @ broken-link-checker
1499
+ #: includes/extra-strings.php:10
1500
+ msgctxt "module name"
1501
+ msgid "Embedded YouTube playlists (old embed code)"
1502
+ msgstr "Ubačene YouTube liste pesama (stari ugrađeni kod)"
1503
+
1504
+ # @ broken-link-checker
1505
+ #: includes/extra-strings.php:11
1506
+ msgctxt "module name"
1507
+ msgid "Embedded YouTube videos"
1508
+ msgstr "Ubačeni YouTube video-snimci"
1509
+
1510
+ # @ broken-link-checker
1511
+ #: includes/extra-strings.php:12
1512
+ msgctxt "module name"
1513
+ msgid "Embedded YouTube videos (old embed code)"
1514
+ msgstr "Ubačeni YouTube video-snimci (stari ugrađeni kod)"
1515
+
1516
+ # @ broken-link-checker
1517
+ #: includes/extra-strings.php:13
1518
+ msgctxt "module name"
1519
+ msgid "FileServe API"
1520
+ msgstr "FileServe API"
1521
+
1522
+ # @ broken-link-checker
1523
+ #: includes/extra-strings.php:14
1524
+ msgctxt "module name"
1525
+ msgid "HTML images"
1526
+ msgstr "HTML slike"
1527
+
1528
+ # @ broken-link-checker
1529
+ #: includes/extra-strings.php:15
1530
+ msgctxt "module name"
1531
+ msgid "HTML links"
1532
+ msgstr "HTML linkovi"
1533
+
1534
+ # @ broken-link-checker
1535
+ #: includes/extra-strings.php:16
1536
+ msgctxt "module name"
1537
+ msgid "MediaFire API"
1538
+ msgstr "MediaFire API"
1539
+
1540
+ # @ broken-link-checker
1541
+ #: includes/extra-strings.php:17
1542
+ msgctxt "module name"
1543
+ msgid "MegaUpload API"
1544
+ msgstr "MegaUpload API"
1545
+
1546
+ # @ broken-link-checker
1547
+ #: includes/extra-strings.php:18
1548
+ msgctxt "module name"
1549
+ msgid "Plaintext URLs"
1550
+ msgstr "Plaintext URL"
1551
+
1552
+ # @ broken-link-checker
1553
+ #: includes/extra-strings.php:19
1554
+ msgctxt "module name"
1555
+ msgid "RapidShare API"
1556
+ msgstr "RapidShare API"
1557
+
1558
+ #: includes/extra-strings.php:20
1559
+ msgctxt "module name"
1560
+ msgid "Smart YouTube httpv:// URLs"
1561
+ msgstr "Smart YouTube httpv:// URL"
1562
+
1563
+ # @ broken-link-checker
1564
+ #: includes/extra-strings.php:21
1565
+ msgctxt "module name"
1566
+ msgid "YouTube API"
1567
+ msgstr "YouTube API"
1568
+
1569
+ # @ broken-link-checker
1570
+ #: includes/extra-strings.php:22
1571
+ msgctxt "module name"
1572
+ msgid "Posts"
1573
+ msgstr "Post-ovi"
1574
+
1575
+ # @ broken-link-checker
1576
+ #: includes/extra-strings.php:23
1577
+ msgctxt "module name"
1578
+ msgid "Pages"
1579
+ msgstr "Stranice"
1580
+
1581
+ # @ broken-link-checker
1582
+ #: includes/instances.php:105 includes/instances.php:161
1583
+ msgid "Container %s[%d] not found"
1584
+ msgstr "Kontejner %s[%d] nije pronađen"
1585
+
1586
+ # @ broken-link-checker
1587
+ #: includes/instances.php:114 includes/instances.php:170
1588
+ msgid "Parser '%s' not found."
1589
+ msgstr "Parser '%s' nije pronađen"
1590
+
1591
+ # @ broken-link-checker
1592
+ #: includes/link-query.php:26
1593
+ msgid "Broken"
1594
+ msgstr "Prekinut"
1595
+
1596
+ # @ broken-link-checker
1597
+ #: includes/link-query.php:28
1598
+ msgid "No broken links found"
1599
+ msgstr "Nije pronađen prekinut link"
1600
+
1601
+ # @ broken-link-checker
1602
+ #: includes/link-query.php:36
1603
+ msgid "Redirects"
1604
+ msgstr "Preusmeravanja"
1605
+
1606
+ # @ broken-link-checker
1607
+ #: includes/link-query.php:37
1608
+ msgid "Redirected Links"
1609
+ msgstr "Preusmereni linkovi"
1610
+
1611
+ # @ broken-link-checker
1612
+ #: includes/link-query.php:38
1613
+ msgid "No redirects found"
1614
+ msgstr "Preusmeravanja nisu pronađena"
1615
+
1616
+ #: includes/link-query.php:46
1617
+ msgid "Dismissed"
1618
+ msgstr "Odbačen"
1619
+
1620
+ # @ broken-link-checker
1621
+ #: includes/link-query.php:47
1622
+ msgid "Dismissed Links"
1623
+ msgstr "Odbačeni linkovi"
1624
+
1625
+ # @ broken-link-checker
1626
+ #: includes/link-query.php:48
1627
+ msgid "No dismissed links found"
1628
+ msgstr "Nisu pronađeni odbačeni linkovi"
1629
+
1630
+ # @ broken-link-checker
1631
+ #: includes/link-query.php:56
1632
+ msgid "All"
1633
+ msgstr "Svi"
1634
+
1635
+ # @ broken-link-checker
1636
+ #: includes/link-query.php:57
1637
+ msgid "Detected Links"
1638
+ msgstr "Detektovani linkovi"
1639
+
1640
+ # @ broken-link-checker
1641
+ #: includes/link-query.php:58
1642
+ msgid "No links found (yet)"
1643
+ msgstr "Nisu pronađeni linkovi (još)"
1644
+
1645
+ # @ broken-link-checker
1646
+ #: includes/link-query.php:66
1647
+ msgid "Search Results"
1648
+ msgstr "Rezultati pretrage"
1649
+
1650
+ # @ broken-link-checker
1651
+ #: includes/link-query.php:67 includes/link-query.php:114
1652
+ msgid "No links found for your query"
1653
+ msgstr "Za vašu pretragu nisu pronađeni linkovi"
1654
+
1655
+ # @ broken-link-checker
1656
+ #: includes/links.php:218
1657
+ msgid "The plugin script was terminated while trying to check the link."
1658
+ msgstr "Skripte plugin-a obustavljene su dok pokušavamo da proverimo link."
1659
+
1660
+ # @ broken-link-checker
1661
+ #: includes/links.php:264
1662
+ msgid "The plugin doesn't know how to check this type of link."
1663
+ msgstr "Plugin ne zna kako da proveri ovu vrstu linka."
1664
+
1665
+ # @ broken-link-checker
1666
+ #: includes/links.php:357
1667
+ msgid "Link is valid."
1668
+ msgstr "Link je validan."
1669
+
1670
+ # @ broken-link-checker
1671
+ #: includes/links.php:359
1672
+ msgid "Link is broken."
1673
+ msgstr "Link je prekinut."
1674
+
1675
+ # @ broken-link-checker
1676
+ #: includes/links.php:572 includes/links.php:674 includes/links.php:701
1677
+ msgid "Link is not valid"
1678
+ msgstr "Link nije važeći."
1679
+
1680
+ # @ broken-link-checker
1681
+ #: includes/links.php:589
1682
+ msgid ""
1683
+ "This link can not be edited because it is not used anywhere on this site."
1684
+ msgstr "Link ne može da se uredi jer se ne koristi nigde na datom site-u."
1685
+
1686
+ # @ broken-link-checker
1687
+ #: includes/links.php:615
1688
+ msgid "Failed to create a DB entry for the new URL."
1689
+ msgstr "Novi unos u bazu podataka za novi URL nije kreiran."
1690
+
1691
+ # @ broken-link-checker
1692
+ #: includes/links.php:681
1693
+ msgid "This link is not a redirect"
1694
+ msgstr "Ovaj link nije za preusmeravanje"
1695
+
1696
+ # @ broken-link-checker
1697
+ #: includes/links.php:728 includes/links.php:765
1698
+ msgid "Couldn't delete the link's database record"
1699
+ msgstr "Nije moguće izbrisati zapis linka iz baze podataka."
1700
+
1701
+ # @ broken-link-checker
1702
+ #: includes/links.php:839
1703
+ msgctxt "link status"
1704
+ msgid "Unknown"
1705
+ msgstr "Nepoznat"
1706
+
1707
+ # @ link status
1708
+ # @ broken-link-checker
1709
+ #: includes/links.php:853 modules/checkers/http.php:263
1710
+ #: modules/extras/mediafire.php:101
1711
+ msgid "Unknown Error"
1712
+ msgstr "Nepoznata greška"
1713
+
1714
+ # @ broken-link-checker
1715
+ #: includes/links.php:877
1716
+ msgid "Not checked"
1717
+ msgstr "Nije proveren"
1718
+
1719
+ # @ broken-link-checker
1720
+ #: includes/links.php:880
1721
+ msgid "False positive"
1722
+ msgstr "Lažno pozitivan"
1723
+
1724
+ # @ broken-link-checker
1725
+ #: includes/links.php:883 modules/extras/fileserve.php:121
1726
+ #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1727
+ #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1728
+ msgctxt "link status"
1729
+ msgid "OK"
1730
+ msgstr "OK"
1731
+
1732
+ # @ broken-link-checker
1733
+ #: includes/parsers.php:109
1734
+ msgid "Editing is not implemented in the '%s' parser"
1735
+ msgstr "Uređivanje nije implementirano u '%s' parser"
1736
+
1737
+ # @ broken-link-checker
1738
+ #: includes/parsers.php:124
1739
+ msgid "Unlinking is not implemented in the '%s' parser"
1740
+ msgstr "Odvajanje nije implementirano u'%s' parser"
1741
+
1742
+ # @ default
1743
+ #: includes/utility-class.php:245
1744
+ msgid "%d second"
1745
+ msgid_plural "%d seconds"
1746
+ msgstr[0] "%d sekunda"
1747
+ msgstr[1] "%d sekunda"
1748
+
1749
+ # @ default
1750
+ #: includes/utility-class.php:246
1751
+ msgid "%d second ago"
1752
+ msgid_plural "%d seconds ago"
1753
+ msgstr[0] "pre %d sekundi "
1754
+ msgstr[1] "pre %d sekundi "
1755
+
1756
+ # @ default
1757
+ #: includes/utility-class.php:249
1758
+ msgid "%d minute"
1759
+ msgid_plural "%d minutes"
1760
+ msgstr[0] "%d minuta"
1761
+ msgstr[1] "%d minuta"
1762
+
1763
+ # @ default
1764
+ #: includes/utility-class.php:250
1765
+ msgid "%d minute ago"
1766
+ msgid_plural "%d minutes ago"
1767
+ msgstr[0] "pre %d minuta"
1768
+ msgstr[1] "pre %d minuta"
1769
+
1770
+ # @ default
1771
+ #: includes/utility-class.php:253
1772
+ msgid "%d hour"
1773
+ msgid_plural "%d hours"
1774
+ msgstr[0] "%d sat"
1775
+ msgstr[1] "%d sat"
1776
+
1777
+ # @ default
1778
+ #: includes/utility-class.php:254
1779
+ msgid "%d hour ago"
1780
+ msgid_plural "%d hours ago"
1781
+ msgstr[0] "pre %d sata"
1782
+ msgstr[1] "pre %d sata"
1783
+
1784
+ # @ default
1785
+ #: includes/utility-class.php:257
1786
+ msgid "%d day"
1787
+ msgid_plural "%d days"
1788
+ msgstr[0] "%d dan "
1789
+ msgstr[1] "%d dan "
1790
+
1791
+ # @ default
1792
+ #: includes/utility-class.php:258
1793
+ msgid "%d day ago"
1794
+ msgid_plural "%d days ago"
1795
+ msgstr[0] "pre %d dana"
1796
+ msgstr[1] "pre %d dana"
1797
+
1798
+ # @ default
1799
+ #: includes/utility-class.php:261
1800
+ msgid "%d month"
1801
+ msgid_plural "%d months"
1802
+ msgstr[0] "%d mesec"
1803
+ msgstr[1] "%d mesec"
1804
+
1805
+ # @ default
1806
+ #: includes/utility-class.php:262
1807
+ msgid "%d month ago"
1808
+ msgid_plural "%d months ago"
1809
+ msgstr[0] "pre %d meseci"
1810
+ msgstr[1] "pre %d meseci"
1811
+
1812
+ # @ broken-link-checker
1813
+ #: modules/checkers/http.php:242
1814
+ msgid "Server Not Found"
1815
+ msgstr "Server nije pronađen"
1816
+
1817
+ # @ broken-link-checker
1818
+ #: modules/checkers/http.php:257
1819
+ msgid "Connection Failed"
1820
+ msgstr "Konekcija neuspešna"
1821
+
1822
+ # @ broken-link-checker
1823
+ #: modules/checkers/http.php:292 modules/checkers/http.php:362
1824
+ msgid "HTTP code : %d"
1825
+ msgstr "HTTP kod: %d"
1826
+
1827
+ # @ broken-link-checker
1828
+ #: modules/checkers/http.php:294 modules/checkers/http.php:364
1829
+ msgid "(No response)"
1830
+ msgstr "(Nema odgovora)"
1831
+
1832
+ # @ broken-link-checker
1833
+ #: modules/checkers/http.php:300
1834
+ msgid "Most likely the connection timed out or the domain doesn't exist."
1835
+ msgstr "Najverovatnije je konekcija istekla ili domen ne postoji."
1836
+
1837
+ # @ broken-link-checker
1838
+ #: modules/checkers/http.php:371
1839
+ msgid "Request timed out."
1840
+ msgstr "Zahtev je istekao."
1841
+
1842
+ # @ broken-link-checker
1843
+ #: modules/checkers/http.php:389
1844
+ msgid "Using Snoopy"
1845
+ msgstr "Koristi Snoopy"
1846
+
1847
+ # @ broken-link-checker
1848
+ #: modules/containers/blogroll.php:21
1849
+ msgid "Bookmark"
1850
+ msgstr "Oznaka"
1851
+
1852
+ # @ broken-link-checker
1853
+ #: modules/containers/blogroll.php:27 modules/containers/blogroll.php:46
1854
+ msgid "Edit this bookmark"
1855
+ msgstr "Uredi ovu oznaku"
1856
+
1857
+ # @ default
1858
+ #: modules/containers/blogroll.php:47
1859
+ msgid ""
1860
+ "You are about to delete this link '%s'\n"
1861
+ " 'Cancel' to stop, 'OK' to delete."
1862
+ msgstr ""
1863
+ "Pripremate se da obrišete ovaj link %s'\n"
1864
+ ". Kliknite na 'Cancel' da obustavite ovu aktivnost ili na 'OK' da je "
1865
+ "obrišete."
1866
+
1867
+ # @ broken-link-checker
1868
+ #: modules/containers/blogroll.php:97
1869
+ msgid "Updating bookmark %d failed"
1870
+ msgstr "Ažuriranje %d oznake neuspešno."
1871
+
1872
+ # @ broken-link-checker
1873
+ #: modules/containers/blogroll.php:128
1874
+ msgid "Failed to delete blogroll link \"%s\" (%d)"
1875
+ msgstr "Neuspešno brisanje blogroll linka \"%s\" (%d)."
1876
+
1877
+ # @ broken-link-checker
1878
+ #: modules/containers/blogroll.php:298
1879
+ msgid "%d blogroll link deleted."
1880
+ msgid_plural "%d blogroll links deleted."
1881
+ msgstr[0] "%d blogroll link obrisan."
1882
+ msgstr[1] "%d blogroll link obrisan."
1883
+
1884
+ # @ broken-link-checker
1885
+ #: modules/containers/comment.php:53
1886
+ msgid "Updating comment %d failed"
1887
+ msgstr "Neuspelo ažuriranje %d komentara"
1888
+
1889
+ # @ broken-link-checker
1890
+ #: modules/containers/comment.php:74
1891
+ msgid "Failed to delete comment %d"
1892
+ msgstr "Neuspešno brisanje %d komentara"
1893
+
1894
+ # @ broken-link-checker
1895
+ #: modules/containers/comment.php:95
1896
+ msgid "Can't move comment %d to the trash"
1897
+ msgstr "Komentar %d ne može da se prebaci u korpu za otpatke."
1898
+
1899
+ # @ default
1900
+ #: modules/containers/comment.php:153 modules/containers/comment.php:195
1901
+ msgid "Edit comment"
1902
+ msgstr "Uredi komentar"
1903
+
1904
+ # @ default
1905
+ #: modules/containers/comment.php:160
1906
+ msgid "Delete Permanently"
1907
+ msgstr "Obriši trajno"
1908
+
1909
+ # @ default
1910
+ #: modules/containers/comment.php:162
1911
+ msgid "Move this comment to the trash"
1912
+ msgstr "Prebaci ovaj komentar u korpu za otpatke"
1913
+
1914
+ # @ default
1915
+ #: modules/containers/comment.php:162
1916
+ msgctxt "verb"
1917
+ msgid "Trash"
1918
+ msgstr "Korpa za otpatke"
1919
+
1920
+ # @ broken-link-checker
1921
+ #: modules/containers/comment.php:166
1922
+ msgid "View comment"
1923
+ msgstr "Vidi komentar"
1924
+
1925
+ # @ broken-link-checker
1926
+ #: modules/containers/comment.php:183
1927
+ msgid "Comment"
1928
+ msgstr "Komentar"
1929
+
1930
+ # @ broken-link-checker
1931
+ #: modules/containers/comment.php:355
1932
+ msgid "%d comment has been deleted."
1933
+ msgid_plural "%d comments have been deleted."
1934
+ msgstr[0] "Komentar %d je obrisan."
1935
+ msgstr[1] "Komentar %d je obrisan."
1936
+
1937
+ # @ broken-link-checker
1938
+ #: modules/containers/comment.php:374
1939
+ msgid "%d comment moved to the Trash."
1940
+ msgid_plural "%d comments moved to the Trash."
1941
+ msgstr[0] "Komentar %d premešten je u korpu za otpatke."
1942
+ msgstr[1] "Komentar %d premešten je u korpu za otpatke."
1943
+
1944
+ # @ broken-link-checker
1945
+ #: modules/containers/custom_field.php:85
1946
+ msgid "Failed to update the meta field '%s' on %s [%d]"
1947
+ msgstr "Meta-polje '%s' na % [%d] nije ažurirano "
1948
+
1949
+ # @ broken-link-checker
1950
+ #: modules/containers/custom_field.php:115
1951
+ msgid "Failed to delete the meta field '%s' on %s [%d]"
1952
+ msgstr "Meta-polje '%s' na % [%d] nije obrisano"
1953
+
1954
+ # @ default
1955
+ #: modules/containers/custom_field.php:197
1956
+ msgid "Edit this post"
1957
+ msgstr "Uredi ovaj post"
1958
+
1959
+ # @ broken-link-checker
1960
+ #: modules/containers/custom_field.php:227
1961
+ msgid "View \"%s\""
1962
+ msgstr "Vidi \"%s\""
1963
+
1964
+ # @ broken-link-checker
1965
+ #: modules/containers/dummy.php:34 modules/containers/dummy.php:45
1966
+ msgid "I don't know how to edit a '%s' [%d]."
1967
+ msgstr "Ne znam kako da uredim '%s' [%d]"
1968
+
1969
+ # @ broken-link-checker
1970
+ #: modules/extras/dailymotion-embed.php:23
1971
+ msgid "DailyMotion Video"
1972
+ msgstr "DailyMotion video"
1973
+
1974
+ # @ broken-link-checker
1975
+ #: modules/extras/dailymotion-embed.php:24
1976
+ msgid "Embedded DailyMotion video"
1977
+ msgstr "Ubačeni DailyMotion video"
1978
+
1979
+ #: modules/extras/embed-parser-base.php:197
1980
+ msgid ""
1981
+ "Embedded videos can't be edited using Broken Link Checker. Please edit or "
1982
+ "replace the video in question manually."
1983
+ msgstr ""
1984
+ "Broken Link Checker ne može urediti ubačeni video. Uredite ili zamenite dati "
1985
+ "video ručno."
1986
+
1987
+ #: modules/extras/fileserve.php:55
1988
+ msgid "Using FileServe API"
1989
+ msgstr "Koristi FileServe API"
1990
+
1991
+ # @ broken-link-checker
1992
+ #: modules/extras/fileserve.php:112 modules/extras/mediafire.php:91
1993
+ #: modules/extras/mediafire.php:96 modules/extras/megaupload.php:81
1994
+ #: modules/extras/megaupload.php:123 modules/extras/rapidshare.php:139
1995
+ msgid "Not Found"
1996
+ msgstr "Nije pronađen"
1997
+
1998
+ #: modules/extras/fileserve.php:115
1999
+ msgid "FileServe : %d %s"
2000
+ msgstr "FileServe : %d %s"
2001
+
2002
+ # @ broken-link-checker
2003
+ #: modules/extras/googlevideo-embed.php:24
2004
+ msgid "GoogleVideo Video"
2005
+ msgstr "GoogleVideo Video"
2006
+
2007
+ # @ broken-link-checker
2008
+ #: modules/extras/googlevideo-embed.php:25
2009
+ msgid "Embedded GoogleVideo video"
2010
+ msgstr "Ubačeni GoogleVideo video"
2011
+
2012
+ #: modules/extras/megaupload.php:130
2013
+ msgid "File Temporarily Unavailable"
2014
+ msgstr "Datoteka trenutno nije dostupna"
2015
+
2016
+ #: modules/extras/megaupload.php:136
2017
+ msgid "API Error"
2018
+ msgstr "API greška"
2019
+
2020
+ # @ broken-link-checker
2021
+ #: modules/extras/megavideo-embed.php:24
2022
+ msgid "Megavideo Video"
2023
+ msgstr "Megavideo Video"
2024
+
2025
+ # @ broken-link-checker
2026
+ #: modules/extras/megavideo-embed.php:25
2027
+ msgid "Embedded Megavideo video"
2028
+ msgstr "Ubačeni Megavideo Video"
2029
+
2030
+ # @ broken-link-checker
2031
+ #: modules/extras/rapidshare.php:51
2032
+ msgid "Using RapidShare API"
2033
+ msgstr "Koristi RapidShare API"
2034
+
2035
+ # @ broken-link-checker
2036
+ #: modules/extras/rapidshare.php:158
2037
+ msgid "RS Server Down"
2038
+ msgstr "RS Server ne radi"
2039
+
2040
+ # @ broken-link-checker
2041
+ #: modules/extras/rapidshare.php:165
2042
+ msgid "File Blocked"
2043
+ msgstr "Datoteka blokirana"
2044
+
2045
+ #: modules/extras/rapidshare.php:172
2046
+ msgid "File Locked"
2047
+ msgstr "Datoteka zaključana"
2048
+
2049
+ # @ broken-link-checker
2050
+ #: modules/extras/rapidshare.php:183
2051
+ msgid "RapidShare : %s"
2052
+ msgstr "RapidShare: %s"
2053
+
2054
+ # @ broken-link-checker
2055
+ #: modules/extras/rapidshare.php:189
2056
+ msgid "RapidShare API error: %s"
2057
+ msgstr "RapidShare API greška: %s"
2058
+
2059
+ # @ broken-link-checker
2060
+ #: modules/extras/vimeo-embed.php:24
2061
+ msgid "Vimeo Video"
2062
+ msgstr "Vimeo Video"
2063
+
2064
+ # @ broken-link-checker
2065
+ #: modules/extras/vimeo-embed.php:25
2066
+ msgid "Embedded Vimeo video"
2067
+ msgstr "Ubačeni Vimeo video"
2068
+
2069
+ # @ broken-link-checker
2070
+ #: modules/extras/youtube-embed.php:24 modules/extras/youtube-iframe.php:25
2071
+ msgid "YouTube Video"
2072
+ msgstr "YouTube Video"
2073
+
2074
+ # @ broken-link-checker
2075
+ #: modules/extras/youtube-embed.php:25 modules/extras/youtube-iframe.php:26
2076
+ msgid "Embedded YouTube video"
2077
+ msgstr " Ubačen YouTube video"
2078
+
2079
+ # @ broken-link-checker
2080
+ #: modules/extras/youtube-playlist-embed.php:24
2081
+ msgid "YouTube Playlist"
2082
+ msgstr "YouTube lista pesama"
2083
+
2084
+ # @ broken-link-checker
2085
+ #: modules/extras/youtube-playlist-embed.php:25
2086
+ msgid "Embedded YouTube playlist"
2087
+ msgstr "Ubačena YouTube lista pesama"
2088
+
2089
+ # @ broken-link-checker
2090
+ #: modules/extras/youtube.php:124 modules/extras/youtube.php:127
2091
+ msgid "Video Not Found"
2092
+ msgstr "Video nije pronađen"
2093
+
2094
+ #: modules/extras/youtube.php:135
2095
+ msgid "Video Removed"
2096
+ msgstr "Video je uklonjen"
2097
+
2098
+ #: modules/extras/youtube.php:143
2099
+ msgid "Invalid Video ID"
2100
+ msgstr "Nevažeći ID videa"
2101
+
2102
+ #: modules/extras/youtube.php:155
2103
+ msgid "Video OK"
2104
+ msgstr "Video OK"
2105
+
2106
+ # @ broken-link-checker
2107
+ #: modules/extras/youtube.php:156 modules/extras/youtube.php:177
2108
+ #: modules/extras/youtube.php:249 modules/extras/youtube.php:289
2109
+ msgid "OK"
2110
+ msgstr "OK"
2111
+
2112
+ #: modules/extras/youtube.php:170 modules/extras/youtube.php:271
2113
+ msgid "Video status : %s%s"
2114
+ msgstr "Status videa %s%s"
2115
+
2116
+ #: modules/extras/youtube.php:182 modules/extras/youtube.php:280
2117
+ msgid "Video Restricted"
2118
+ msgstr "Video ograničen"
2119
+
2120
+ #: modules/extras/youtube.php:199 modules/extras/youtube.php:305
2121
+ msgid "Unknown YouTube API response received."
2122
+ msgstr "Primljen nepoznat API odgovor od You Tube-a"
2123
+
2124
+ # @ broken-link-checker
2125
+ #: modules/extras/youtube.php:217 modules/extras/youtube.php:220
2126
+ msgid "Playlist Not Found"
2127
+ msgstr "Lista pesama nije pronađena"
2128
+
2129
+ #: modules/extras/youtube.php:227
2130
+ msgid "Playlist Restricted"
2131
+ msgstr "Lista pesama ograničena"
2132
+
2133
+ #: modules/extras/youtube.php:234
2134
+ msgid "Invalid Playlist"
2135
+ msgstr "Nevažeća lista pesama"
2136
+
2137
+ #: modules/extras/youtube.php:248
2138
+ msgid "Playlist OK"
2139
+ msgstr "Lista pesama je OK"
2140
+
2141
+ #: modules/extras/youtube.php:255
2142
+ msgid "This playlist has no entries or all entries have been deleted."
2143
+ msgstr "Ova lista pesama nema unose ili su svi unosi obrisani."
2144
+
2145
+ #: modules/extras/youtube.php:256
2146
+ msgid "Empty Playlist"
2147
+ msgstr "Isprazni listu pesama"
2148
+
2149
+ # @ broken-link-checker
2150
+ #: modules/parsers/image.php:164
2151
+ msgid "Image"
2152
+ msgstr "Slika"
2153
+
2154
+ # @ broken-link-checker
2155
+ #: modules/parsers/metadata.php:119
2156
+ msgid "Custom field"
2157
+ msgstr "Prilagodi polje"
2158
+
2159
+ #. Plugin URI of the plugin/theme
2160
+ msgid "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
2161
+ msgstr "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
2162
+
2163
+ #. Description of the plugin/theme
2164
+ msgid ""
2165
+ "Checks your blog for broken links and missing images and notifies you on the "
2166
+ "dashboard if any are found."
2167
+ msgstr ""
2168
+ "Proverava prekinute linkove i slike koje nedostaju u vašem blogu i "
2169
+ "obaveštava vas na kontrolnoj tabli ako ih pronađe."
2170
+
2171
+ #. Author of the plugin/theme
2172
+ msgid "Janis Elsts"
2173
+ msgstr "Janis Elsts"
2174
+
2175
+ #. Author URI of the plugin/theme
2176
+ msgid "http://w-shadow.com/"
2177
+ msgstr "http://w-shadow.com/"
languages/broken-link-checker-zh_CN.mo CHANGED
Binary file
languages/broken-link-checker-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ 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: 2013-10-14 09:34:17+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"
@@ -16,7 +16,7 @@ msgstr ""
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
 
18
  #: core/core.php:153
19
- #: includes/admin/links-page-js.php:37
20
  msgid "Loading..."
21
  msgstr "加载中……"
22
 
@@ -58,682 +58,708 @@ msgstr "查看失效链接"
58
  msgid "Settings"
59
  msgstr "设置"
60
 
61
- #: core/core.php:538
62
  msgid "Settings saved."
63
  msgstr "设置已保存。"
64
 
65
- #: core/core.php:544
66
  msgid "Thank you for your donation!"
67
  msgstr "感谢您的捐赠!"
68
 
69
- #: core/core.php:552
70
  msgid "Complete site recheck started."
71
  msgstr "站点完整重新检查开始。"
72
 
73
- #: core/core.php:561
74
  msgid "Details"
75
  msgstr "详情"
76
 
77
- #: core/core.php:575
78
  msgid "General"
79
  msgstr "常规"
80
 
81
- #: core/core.php:576
82
  msgid "Look For Links In"
83
  msgstr "检查范围"
84
 
85
- #: core/core.php:577
86
  msgid "Which Links To Check"
87
  msgstr "检查类型"
88
 
89
- #: core/core.php:578
90
  msgid "Protocols & APIs"
91
  msgstr "协议和API"
92
 
93
- #: core/core.php:579
94
  msgid "Advanced"
95
  msgstr "高级"
96
 
97
- #: core/core.php:594
98
  msgid "Broken Link Checker Options"
99
  msgstr "链接检查器选项"
100
 
101
- #: core/core.php:636
102
- #: includes/admin/table-printer.php:200
103
  msgid "Status"
104
  msgstr "状态"
105
 
106
- #: core/core.php:638
107
  #: includes/admin/options-page-js.php:56
108
  msgid "Show debug info"
109
  msgstr "显示调试信息"
110
 
111
- #: core/core.php:666
112
  msgid "Check each link"
113
  msgstr "检查每个链接"
114
 
115
- #: core/core.php:671
116
  msgid "Every %s hours"
117
  msgstr "每 %s 小时"
118
 
119
- #: core/core.php:680
120
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
121
  msgstr "将以此频率检测所有链接,将立即检测新增链接。"
122
 
123
- #: core/core.php:687
124
  msgid "E-mail notifications"
125
  msgstr "电子邮件通知"
126
 
127
- #: core/core.php:693
128
  msgid "Send me e-mail notifications about newly detected broken links"
129
  msgstr "当检测到新失效链接时向我发送电子邮件通知"
130
 
131
- #: core/core.php:701
132
  msgid "Send authors e-mail notifications about broken links in their posts"
133
  msgstr "当检测到新失效链接时向作者发送电子邮件通知"
134
 
135
- #: core/core.php:708
136
  msgid "Notification e-mail address"
137
  msgstr "接收通知的电子邮件地址"
138
 
139
- #: core/core.php:720
140
  msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
141
  msgstr "留空以使用 设置 &rarr; 常规 中指定的电子邮件地址。"
142
 
143
- #: core/core.php:727
144
  msgid "Link tweaks"
145
  msgstr "链接调整"
146
 
147
- #: core/core.php:733
148
  msgid "Apply custom formatting to broken links"
149
  msgstr "将自定义样式应用到失效链接"
150
 
151
- #: core/core.php:737
152
- #: core/core.php:768
153
  msgid "Edit CSS"
154
  msgstr "编辑样式"
155
 
156
- #: core/core.php:753
157
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
158
  msgstr "示例:Lorem ipsum <a %s>失效链接</a>, dolor sit amet."
159
 
160
- #: core/core.php:756
161
- #: core/core.php:787
162
  msgid "Click \"Save Changes\" to update example output."
163
  msgstr "单击“保持变更”更新输出示例。"
164
 
165
- #: core/core.php:764
166
  msgid "Apply custom formatting to removed links"
167
  msgstr "对已经移除的链接应用自定义格式"
168
 
169
- #: core/core.php:784
170
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
171
  msgstr "示例:Lorem ipsum <span %s>失效链接</span>, dolor sit amet."
172
 
173
- #: core/core.php:797
174
  msgid "Stop search engines from following broken links"
175
  msgstr "要求搜索引擎不跟踪已经失效的链接"
176
 
177
- #: core/core.php:805
178
  msgctxt "settings page"
179
  msgid "Suggestions"
180
  msgstr "建议"
181
 
182
- #: core/core.php:811
183
  msgid "Suggest alternatives to broken links"
184
  msgstr "提供失效链接的替换建议"
185
 
186
- #: core/core.php:827
187
  msgid "Look for links in"
188
  msgstr "检查以下范围的链接"
189
 
190
- #: core/core.php:838
191
  msgid "Post statuses"
192
  msgstr "发布状态"
193
 
194
- #: core/core.php:871
195
  msgid "Link types"
196
  msgstr "链接类型"
197
 
198
- #: core/core.php:877
199
  msgid "Error : All link parsers missing!"
200
  msgstr "错误:无法找到链接解析器!"
201
 
202
- #: core/core.php:884
203
  msgid "Exclusion list"
204
  msgstr "排除列表"
205
 
206
- #: core/core.php:885
207
  msgid "Don't check links where the URL contains any of these words (one per line) :"
208
  msgstr "不检测含有以下关键字的链接(每个关键字一行):"
209
 
210
- #: core/core.php:903
211
  msgid "Check links using"
212
  msgstr "检查链接"
213
 
214
- #: core/core.php:922
215
- #: includes/links.php:857
216
  msgid "Timeout"
217
  msgstr "超时"
218
 
219
- #: core/core.php:928
220
- #: core/core.php:997
221
- #: core/core.php:2904
222
  msgid "%s seconds"
223
  msgstr "%s 秒"
224
 
225
- #: core/core.php:937
226
  msgid "Links that take longer than this to load will be marked as broken."
227
  msgstr "检测时若链接在此时间内未响应将被视为失效。"
228
 
229
- #: core/core.php:944
230
  msgid "Link monitor"
231
  msgstr "链接监视器"
232
 
233
- #: core/core.php:952
234
  msgid "Run continuously while the Dashboard is open"
235
  msgstr "在仪表盘打开时持续运行"
236
 
237
- #: core/core.php:960
238
  msgid "Run hourly in the background"
239
  msgstr "在后台每小时运行一次"
240
 
241
- #: core/core.php:968
242
  msgid "Show the dashboard widget for"
243
  msgstr "为以下用户显示仪表盘部件"
244
 
245
- #: core/core.php:973
246
  msgctxt "dashboard widget visibility"
247
  msgid "Administrator"
248
  msgstr "管理员"
249
 
250
- #: core/core.php:974
251
  msgctxt "dashboard widget visibility"
252
  msgid "Editor and above"
253
  msgstr "编辑及以上"
254
 
255
- #: core/core.php:975
256
  msgctxt "dashboard widget visibility"
257
  msgid "Nobody (disables the widget)"
258
  msgstr "没有人(禁用此小部件)"
259
 
260
- #: core/core.php:991
261
  msgid "Max. execution time"
262
  msgstr "最大执行时间"
263
 
264
- #: core/core.php:1008
265
  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."
266
  msgstr "插件通过定期在后台创建一个实例来解析你的文章以搜索链接,检查找到的链接并执行一些其他耗时的任务。在这里你可以设置后台实例每次最多可以运行多长时间,通常情况下,链接监视会在每次会话结束前完成。"
267
 
268
- #: core/core.php:1017
269
  msgid "Server load limit"
270
  msgstr "服务器负载限制"
271
 
272
- #: core/core.php:1032
273
  msgid "Current load : %s"
274
  msgstr "当前负载:%s"
275
 
276
- #: core/core.php:1037
277
  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."
278
  msgstr "当平均<a href=\"%s\">服务器负载</a>超过此值时,链接检查将会暂停。留空此栏以关闭负载限制。"
279
 
280
- #: core/core.php:1046
281
  msgid "Not available"
282
  msgstr "不可用"
283
 
284
- #: core/core.php:1048
285
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
286
  msgstr "负载限制仅适用于开启<code>/proc/loadavg</code>并且可读取的类Linux操作系统。"
287
 
288
- #: core/core.php:1056
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "Forced recheck"
290
  msgstr "强制重新检查"
291
 
292
- #: core/core.php:1059
293
  msgid "Re-check all pages"
294
  msgstr "重新检查所有页面"
295
 
296
- #: core/core.php:1063
297
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
298
  msgstr "注意这是“强破坏性选项”。单击此按钮以清空链接数据库并重新检查站点上的所有链接。"
299
 
300
- #: core/core.php:1074
301
  msgid "Save Changes"
302
  msgstr "保存更改"
303
 
304
- #: core/core.php:1125
305
  msgid "Configure"
306
  msgstr "配置"
307
 
308
- #: core/core.php:1207
309
  msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
310
  msgstr "输入需要检查的自定义栏目名称(每行一个)。如果栏目包含 HTML 代码,请在名称前添加前缀 <code>html:</code>,例如 <code>html:field_name</code>。"
311
 
312
- #: core/core.php:1338
313
- #: core/core.php:1421
314
- #: core/core.php:1453
315
  msgid "Database error : %s"
316
  msgstr "数据库错误:%s"
317
 
318
- #: core/core.php:1403
319
  msgid "You must enter a filter name!"
320
  msgstr "你需要输入一个过滤器名称!"
321
 
322
- #: core/core.php:1407
323
  msgid "Invalid search query."
324
  msgstr "无效的查询。"
325
 
326
- #: core/core.php:1416
327
  msgid "Filter \"%s\" created"
328
  msgstr "已创建“%s”过滤器"
329
 
330
- #: core/core.php:1443
331
  msgid "Filter ID not specified."
332
  msgstr "过滤器ID未指定。"
333
 
334
- #: core/core.php:1450
335
  msgid "Filter deleted"
336
  msgstr "已删除过滤器"
337
 
338
- #: core/core.php:1497
339
  msgid "Replaced %d redirect with a direct link"
340
  msgid_plural "Replaced %d redirects with direct links"
341
  msgstr[0] "已使用直接链接替换了%d个重定向"
342
 
343
- #: core/core.php:1508
344
  msgid "Failed to fix %d redirect"
345
  msgid_plural "Failed to fix %d redirects"
346
  msgstr[0] "修复%d个重定向失败"
347
 
348
- #: core/core.php:1519
349
  msgid "None of the selected links are redirects!"
350
  msgstr "选中的链接均不是重定向链接!"
351
 
352
- #: core/core.php:1597
353
  msgid "%d link updated."
354
  msgid_plural "%d links updated."
355
  msgstr[0] "%d个链接已更新。"
356
 
357
- #: core/core.php:1608
358
  msgid "Failed to update %d link."
359
  msgid_plural "Failed to update %d links."
360
  msgstr[0] "更新%d个链接失败。"
361
 
362
- #: core/core.php:1697
363
  msgid "%d link removed"
364
  msgid_plural "%d links removed"
365
  msgstr[0] "已移除%d个链接"
366
 
367
- #: core/core.php:1708
368
  msgid "Failed to remove %d link"
369
  msgid_plural "Failed to remove %d links"
370
  msgstr[0] "移除%d个链接失败"
371
 
372
- #: core/core.php:1817
373
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
374
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
375
  msgstr[0] "%d个项目由于无法移动到回收站而被忽略,你需要手动删除这些项目。"
376
 
377
- #: core/core.php:1839
378
  msgid "Didn't find anything to delete!"
379
  msgstr "没有任何需要删除的内容!"
380
 
381
- #: core/core.php:1867
382
  msgid "%d link scheduled for rechecking"
383
  msgid_plural "%d links scheduled for rechecking"
384
  msgstr[0] "已计划重新检查%d个链接"
385
 
386
- #: core/core.php:1913
387
- #: core/core.php:2522
388
  msgid "This link was manually marked as working by the user."
389
  msgstr "此链接被用户标记为有效。"
390
 
391
- #: core/core.php:1920
392
  msgid "Couldn't modify link %d"
393
  msgstr "无法修改链接%d"
394
 
395
- #: core/core.php:1930
396
  msgid "%d link marked as not broken"
397
  msgid_plural "%d links marked as not broken"
398
  msgstr[0] "%d个链接被标记为未损坏"
399
 
400
- #: core/core.php:1970
401
  msgid "Table columns"
402
  msgstr "表格栏目"
403
 
404
- #: core/core.php:1989
405
  msgid "Show on screen"
406
  msgstr "在屏幕上显示"
407
 
408
- #: core/core.php:1996
409
  msgid "links"
410
  msgstr "链接"
411
 
412
- #: core/core.php:1997
413
- #: includes/admin/table-printer.php:168
414
  msgid "Apply"
415
  msgstr "应用"
416
 
417
- #: core/core.php:2001
418
  msgid "Misc"
419
  msgstr "杂项"
420
 
421
- #: core/core.php:2016
422
  msgid "Highlight links broken for at least %s days"
423
  msgstr "高亮显示至少已经失效%s天的链接"
424
 
425
- #: core/core.php:2025
426
  msgid "Color-code status codes"
427
  msgstr "色彩标记状态码"
428
 
429
- #: core/core.php:2042
430
- #: core/core.php:2507
431
- #: core/core.php:2547
432
- #: core/core.php:2580
433
- #: core/core.php:2667
434
  msgid "You're not allowed to do that!"
435
  msgstr "您无权限执行此操作!"
436
 
437
- #: core/core.php:2377
438
  msgid "View broken links"
439
  msgstr "查看失效链接"
440
 
441
- #: core/core.php:2378
442
  msgid "Found %d broken link"
443
  msgid_plural "Found %d broken links"
444
  msgstr[0] "已找到%d条失效链接"
445
 
446
- #: core/core.php:2384
447
  msgid "No broken links found."
448
  msgstr "未找到失效链接。"
449
 
450
- #: core/core.php:2391
451
  msgid "%d URL in the work queue"
452
  msgid_plural "%d URLs in the work queue"
453
  msgstr[0] "执行队列中还有%d条网址"
454
 
455
- #: core/core.php:2394
456
  msgid "No URLs in the work queue."
457
  msgstr "执行队列中无网址。"
458
 
459
- #: core/core.php:2400
460
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
461
  msgid "%d unique URL"
462
  msgid_plural "%d unique URLs"
463
  msgstr[0] "%d个唯一网址"
464
 
465
- #: core/core.php:2404
466
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
467
  msgid "%d link"
468
  msgid_plural "%d links"
469
  msgstr[0] "%d个链接"
470
 
471
- #: core/core.php:2410
472
  msgid "Detected %1$s in %2$s and still searching..."
473
  msgstr "在%2$s中发现%1$s,还在继续搜索……"
474
 
475
- #: core/core.php:2416
476
  msgid "Detected %1$s in %2$s."
477
  msgstr "在%2$s中发现%1$s。"
478
 
479
- #: core/core.php:2423
480
  msgid "Searching your blog for links..."
481
  msgstr "正在您的博客中搜索链接……"
482
 
483
- #: core/core.php:2425
484
  msgid "No links detected."
485
  msgstr "没有发现链接。"
486
 
487
- #: core/core.php:2451
488
  msgctxt "current load"
489
  msgid "Unknown"
490
  msgstr "未知"
491
 
492
- #: core/core.php:2515
493
- #: core/core.php:2555
494
- #: core/core.php:2595
495
- #: core/core.php:2677
496
  msgid "Oops, I can't find the link %d"
497
  msgstr "啊哦,我找不到%d号链接"
498
 
499
- #: core/core.php:2528
500
- #: core/core.php:2565
501
  msgid "Oops, couldn't modify the link!"
502
  msgstr "啊哦,无法修改此链接!"
503
 
504
- #: core/core.php:2531
505
- #: core/core.php:2568
506
- #: core/core.php:2703
507
  msgid "Error : link_id not specified"
508
  msgstr "错误:未指定link_id"
509
 
510
- #: core/core.php:2586
511
  msgid "Error : link_id or new_url not specified"
512
  msgstr "错误:未指定link_id或者new_url"
513
 
514
- #: core/core.php:2604
515
  msgid "Oops, the new URL is invalid!"
516
  msgstr "啊哦,这条新的链接无效!"
517
 
518
- #: core/core.php:2619
519
  msgid "An unexpected error occurred!"
520
  msgstr "发生了一个未知的错误!"
521
 
522
- #: core/core.php:2686
523
  msgid "An unexpected error occured!"
524
  msgstr "发生了一个未捕获的异常!"
525
 
526
- #: core/core.php:2712
527
  msgid "You don't have sufficient privileges to access this information!"
528
  msgstr "您没有足够的权限来访问此信息!"
529
 
530
- #: core/core.php:2725
531
  msgid "Error : link ID not specified"
532
  msgstr "错误:链接 ID 未指定"
533
 
534
- #: core/core.php:2739
535
  msgid "Failed to load link details (%s)"
536
  msgstr "加载链接(%s)详情失败"
537
 
538
- #. #-#-#-#-# plugin.pot (Broken Link Checker 1.8.3) #-#-#-#-#
539
  #. Plugin Name of the plugin/theme
540
- #: core/core.php:2793
541
  msgid "Broken Link Checker"
542
  msgstr "失效链接检查器"
543
 
544
- #: core/core.php:2813
545
  msgid "PHP version"
546
  msgstr "PHP 版本"
547
 
548
- #: core/core.php:2819
549
  msgid "MySQL version"
550
  msgstr "MySQL 版本"
551
 
552
- #: core/core.php:2832
553
  msgid "You have an old version of CURL. Redirect detection may not work properly."
554
  msgstr "您的 CURL 版本过低,重定向检测可能无法正确运行。"
555
 
556
- #: core/core.php:2844
557
- #: core/core.php:2860
558
- #: core/core.php:2865
559
  msgid "Not installed"
560
  msgstr "未安装"
561
 
562
- #: core/core.php:2847
563
  msgid "CURL version"
564
  msgstr "CURL 版本"
565
 
566
- #: core/core.php:2853
567
  msgid "Installed"
568
  msgstr "已安装"
569
 
570
- #: core/core.php:2866
571
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
572
  msgstr "要让插件正常运行,您必须安装 CURL 或者 Snoopy!"
573
 
574
- #: core/core.php:2877
575
  msgid "On"
576
  msgstr "开启"
577
 
578
- #: core/core.php:2878
579
  msgid "Redirects may be detected as broken links when safe_mode is on."
580
  msgstr "在安全模式打开时重定向可能被识别为无效链接。"
581
 
582
- #: core/core.php:2883
583
- #: core/core.php:2897
584
  msgid "Off"
585
  msgstr "关闭"
586
 
587
- #: core/core.php:2891
588
  msgid "On ( %s )"
589
  msgstr "在(%s)内"
590
 
591
- #: core/core.php:2892
592
  msgid "Redirects may be detected as broken links when open_basedir is on."
593
  msgstr "当 open_basedir 打开时重定向可能被识别为无效链接。"
594
 
595
- #: core/core.php:2921
596
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
597
  msgstr "如果此值为0,你将有可能在重新载入数页后遇到问题。"
598
 
599
- #: core/core.php:3044
600
  #: core/core.php:3159
 
601
  msgid "[%s] Broken links detected"
602
  msgstr "[%s] 检测到失效链接"
603
 
604
- #: core/core.php:3049
605
  msgid "Broken Link Checker has detected %d new broken link on your site."
606
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
607
  msgstr[0] "失效链接检查器在站点上发现了%d个新的失效链接。"
608
 
609
- #: core/core.php:3080
610
  msgid "Here's a list of the first %d broken links:"
611
  msgid_plural "Here's a list of the first %d broken links:"
612
  msgstr[0] "以下列表显示了最新的%s个失效链接:"
613
 
614
- #: core/core.php:3089
615
  msgid "Here's a list of the new broken links: "
616
  msgstr "以下列出了新的失效链接:"
617
 
618
- #: core/core.php:3098
619
  msgid "Link text : %s"
620
  msgstr "链接文字:%s"
621
 
622
- #: core/core.php:3099
623
  msgid "Link URL : <a href=\"%s\">%s</a>"
624
  msgstr "链接网址:<a href=\"%s\">%s</a>"
625
 
626
- #: core/core.php:3100
627
  msgid "Source : %s"
628
  msgstr "来源:%s"
629
 
630
- #: core/core.php:3114
631
  msgid "You can see all broken links here:"
632
  msgstr "你可以在此处浏览所有的失效链接:"
633
 
634
- #: core/core.php:3164
635
  msgid "Broken Link Checker has detected %d new broken link in your posts."
636
  msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
637
  msgstr[0] "失效链接检查器在你的文章中发现了%d个新的失效链接。"
638
 
639
- #: core/init.php:242
640
  msgid "Once Weekly"
641
  msgstr "每周一次"
642
 
643
- #: core/init.php:248
644
  msgid "Twice a Month"
645
  msgstr "每月两次"
646
 
647
- #: core/init.php:324
648
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
649
  msgstr "失效链接检查器安装失败。请尝试重新激活本插件。"
650
 
 
 
 
 
651
  #: includes/admin/db-upgrade.php:95
652
  msgid "Failed to delete old DB tables. Database error : %s"
653
  msgstr "删除旧数据库失败。数据库错误:%s"
654
 
655
- #: includes/admin/links-page-js.php:55
656
- #: includes/admin/links-page-js.php:517
657
  msgid "Wait..."
658
  msgstr "稍等……"
659
 
660
- #: includes/admin/links-page-js.php:100
661
- #: includes/admin/table-printer.php:658
662
  msgid "Not broken"
663
  msgstr "未失效"
664
 
665
- #: includes/admin/links-page-js.php:235
666
  msgctxt "link text"
667
  msgid "(None)"
668
  msgstr "(无)"
669
 
670
- #: includes/admin/links-page-js.php:236
671
  msgctxt "link text"
672
  msgid "(Multiple links)"
673
  msgstr "(多个链接)"
674
 
675
- #: includes/admin/links-page-js.php:294
676
  msgctxt "link suggestions"
677
  msgid "Searching..."
678
  msgstr "搜索中……"
679
 
680
- #: includes/admin/links-page-js.php:295
681
  msgctxt "link suggestions"
682
  msgid "No suggestions available."
683
  msgstr "没有可用的建议。"
684
 
685
- #: includes/admin/links-page-js.php:296
686
  msgctxt "link suggestions"
687
  msgid "Archived page from %s (via the Wayback Machine)"
688
  msgstr "存档于 %s 的页面(来自 Wayback Machine)"
689
 
690
- #: includes/admin/links-page-js.php:379
691
  msgid "%d instances of the link were successfully modified."
692
  msgstr "成功修改了%d个链接。"
693
 
694
- #: includes/admin/links-page-js.php:385
695
  msgid "However, %d instances couldn't be edited and still point to the old URL."
696
  msgstr "然而,%d个链接由于无法被编辑仍然指向了旧的网址。"
697
 
698
- #: includes/admin/links-page-js.php:391
699
  msgid "The link could not be modified."
700
  msgstr "无法修改链接。"
701
 
702
- #: includes/admin/links-page-js.php:394
703
  msgid "The following error(s) occurred :"
704
  msgstr "发生了以下错误:"
705
 
706
- #: includes/admin/links-page-js.php:480
707
  msgid "Error: Link URL must not be empty."
708
  msgstr "错误:链接 URL 不能为空。"
709
 
710
- #: includes/admin/links-page-js.php:555
711
  msgid "%d instances of the link were successfully unlinked."
712
  msgstr "成功取消了%d个链接。"
713
 
714
- #: includes/admin/links-page-js.php:561
715
  msgid "However, %d instances couldn't be removed."
716
  msgstr "然而,%d个链接无法被移除。"
717
 
718
- #: includes/admin/links-page-js.php:566
719
  msgid "The plugin failed to remove the link."
720
  msgstr "移除链接失败。"
721
 
722
- #: includes/admin/links-page-js.php:569
723
  msgid "The following error(s) occured :"
724
  msgstr "发生了以下错误:"
725
 
726
- #: includes/admin/links-page-js.php:577
727
- #: includes/admin/table-printer.php:276
728
- #: includes/admin/table-printer.php:652
729
  msgid "Unlink"
730
  msgstr "取消链接"
731
 
732
- #: includes/admin/links-page-js.php:621
733
  msgid "Enter a name for the new custom filter"
734
  msgstr "输入一个新的自定义过滤器名程"
735
 
736
- #: includes/admin/links-page-js.php:632
737
  msgid ""
738
  "You are about to delete the current filter.\n"
739
  "'Cancel' to stop, 'OK' to delete"
@@ -741,7 +767,7 @@ msgstr ""
741
  "你将要删除当前使用的过滤器。\n"
742
  " “取消”以停止,“确定”以删除"
743
 
744
- #: includes/admin/links-page-js.php:652
745
  msgid ""
746
  "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"
747
  "'Cancel' to stop, 'OK' to delete"
@@ -749,7 +775,7 @@ msgstr ""
749
  "你确认将会删除任何包含有任意一个选定链接的文章、书签和其他内容吗?本操作无法撤销。\n"
750
  "“取消”以停止,“确定”以删除"
751
 
752
- #: includes/admin/links-page-js.php:662
753
  msgid ""
754
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
755
  "'Cancel' to stop, 'OK' to remove"
@@ -757,11 +783,11 @@ msgstr ""
757
  "你确认将会删除选定的链接吗?本操作无法撤销。\n"
758
  "“取消”以停止,“确定”以删除"
759
 
760
- #: includes/admin/links-page-js.php:771
761
  msgid "Enter a search string first."
762
  msgstr "需要先输入搜索字符"
763
 
764
- #: includes/admin/links-page-js.php:778
765
  msgid "Select one or more links to edit."
766
  msgstr "选择并编辑一个或多个链接"
767
 
@@ -787,12 +813,12 @@ msgid "Link text"
787
  msgstr "链接文字"
788
 
789
  #: includes/admin/search-form.php:45
790
- #: includes/admin/table-printer.php:205
791
  msgid "URL"
792
  msgstr "网址"
793
 
794
  #: includes/admin/search-form.php:48
795
- #: includes/admin/table-printer.php:522
796
  msgid "HTTP code"
797
  msgstr "HTTP代码"
798
 
@@ -818,9 +844,9 @@ msgid "Search Links"
818
  msgstr "搜索链接"
819
 
820
  #: includes/admin/search-form.php:113
821
- #: includes/admin/table-printer.php:352
822
- #: includes/admin/table-printer.php:682
823
- #: includes/admin/table-printer.php:807
824
  msgid "Cancel"
825
  msgstr "取消"
826
 
@@ -840,312 +866,312 @@ msgstr "如果你喜欢本插件,请捐款支持插件的开发与维护!"
840
  msgid "Return to WordPress Dashboard"
841
  msgstr "返回到 WordPress 仪表盘"
842
 
843
- #: includes/admin/table-printer.php:182
844
  msgid "Compact View"
845
  msgstr "紧凑视图"
846
 
847
- #: includes/admin/table-printer.php:183
848
  msgid "Detailed View"
849
  msgstr "详细视图"
850
 
851
- #: includes/admin/table-printer.php:212
852
  msgid "Source"
853
  msgstr "来源"
854
 
855
- #: includes/admin/table-printer.php:218
856
  msgid "Link Text"
857
  msgstr "链接文字"
858
 
859
- #: includes/admin/table-printer.php:223
860
  msgid "Redirect URL"
861
  msgstr "重定向网址"
862
 
863
- #: includes/admin/table-printer.php:271
864
  msgid "Bulk Actions"
865
  msgstr "批量操作"
866
 
867
- #: includes/admin/table-printer.php:272
868
- #: includes/admin/table-printer.php:649
869
  msgid "Edit URL"
870
  msgstr "修改网址"
871
 
872
- #: includes/admin/table-printer.php:273
873
  msgid "Recheck"
874
  msgstr "重新检查"
875
 
876
- #: includes/admin/table-printer.php:274
877
  msgid "Fix redirects"
878
  msgstr "修复重定向"
879
 
880
- #: includes/admin/table-printer.php:275
881
  msgid "Mark as not broken"
882
  msgstr "标记为未失效"
883
 
884
- #: includes/admin/table-printer.php:279
885
  msgid "Move sources to Trash"
886
  msgstr "移动到回收站"
887
 
888
- #: includes/admin/table-printer.php:281
889
  msgid "Delete sources"
890
  msgstr "删除资源"
891
 
892
- #: includes/admin/table-printer.php:296
893
  msgid "&laquo;"
894
  msgstr "&laquo;"
895
 
896
- #: includes/admin/table-printer.php:297
897
  msgid "&raquo;"
898
  msgstr "&raquo;"
899
 
900
- #: includes/admin/table-printer.php:305
901
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
902
  msgstr "显示%s&#8211;%s项结果,总共<span class=\"current-link-count\">%s</span>项"
903
 
904
- #: includes/admin/table-printer.php:328
905
  msgid "Bulk Edit URLs"
906
  msgstr "批量修改网址"
907
 
908
- #: includes/admin/table-printer.php:330
909
  msgid "Find"
910
  msgstr "查找"
911
 
912
- #: includes/admin/table-printer.php:334
913
  msgid "Replace with"
914
  msgstr "代替以"
915
 
916
- #: includes/admin/table-printer.php:342
917
  msgid "Case sensitive"
918
  msgstr "大小写敏感"
919
 
920
- #: includes/admin/table-printer.php:346
921
  msgid "Regular expression"
922
  msgstr "正则表达式"
923
 
924
- #: includes/admin/table-printer.php:354
925
- #: includes/admin/table-printer.php:808
926
  msgid "Update"
927
  msgstr "更新"
928
 
929
- #: includes/admin/table-printer.php:507
930
  msgid "Post published on"
931
  msgstr "文章发布在"
932
 
933
- #: includes/admin/table-printer.php:512
934
  msgid "Link last checked"
935
  msgstr "最后一次检查的链接"
936
 
937
- #: includes/admin/table-printer.php:516
938
  msgid "Never"
939
  msgstr "从不"
940
 
941
- #: includes/admin/table-printer.php:527
942
  msgid "Response time"
943
  msgstr "响应时间"
944
 
945
- #: includes/admin/table-printer.php:529
946
  msgid "%2.3f seconds"
947
  msgstr "%2.3f 秒"
948
 
949
- #: includes/admin/table-printer.php:532
950
  msgid "Final URL"
951
  msgstr "最终网址"
952
 
953
- #: includes/admin/table-printer.php:537
954
  msgid "Redirect count"
955
  msgstr "重定向数目"
956
 
957
- #: includes/admin/table-printer.php:542
958
  msgid "Instance count"
959
  msgstr "实例数目"
960
 
961
- #: includes/admin/table-printer.php:551
962
  msgid "This link has failed %d time."
963
  msgid_plural "This link has failed %d times."
964
  msgstr[0] "此链接失败了%d次。"
965
 
966
- #: includes/admin/table-printer.php:559
967
  msgid "This link has been broken for %s."
968
  msgstr "此链接已失效%s。"
969
 
970
- #: includes/admin/table-printer.php:570
971
  msgid "Log"
972
  msgstr "日志"
973
 
974
- #: includes/admin/table-printer.php:595
975
  msgid "Show more info about this link"
976
  msgstr "显示关于此链接的更多信息"
977
 
978
- #: includes/admin/table-printer.php:613
979
  msgctxt "checked how long ago"
980
  msgid "Checked"
981
  msgstr "已检查"
982
 
983
- #: includes/admin/table-printer.php:629
984
  msgid "Broken for"
985
  msgstr "失效于"
986
 
987
- #: includes/admin/table-printer.php:649
988
  msgid "Edit this link"
989
  msgstr "编辑此链接"
990
 
991
- #: includes/admin/table-printer.php:651
992
  msgid "Remove this link from all posts"
993
  msgstr "将此链接从所有文章中删除"
994
 
995
- #: includes/admin/table-printer.php:657
996
  msgid "Remove this link from the list of broken links and mark it as valid"
997
  msgstr "将此链接从失效链接列表中删除并标记为有效"
998
 
999
- #: includes/admin/table-printer.php:665
1000
  msgid "Hide this link and do not report it again unless its status changes"
1001
  msgstr "隐藏此链接,除非链接状态发生改变不再报告此链接问题"
1002
 
1003
- #: includes/admin/table-printer.php:666
1004
  msgid "Dismiss"
1005
  msgstr "屏蔽"
1006
 
1007
- #: includes/admin/table-printer.php:671
1008
  msgid "Undismiss this link"
1009
  msgstr "不再屏蔽此链接"
1010
 
1011
- #: includes/admin/table-printer.php:672
1012
  msgid "Undismiss"
1013
  msgstr "取消屏蔽"
1014
 
1015
- #: includes/admin/table-printer.php:683
1016
  msgid "Update URL"
1017
  msgstr "修改网址"
1018
 
1019
- #: includes/admin/table-printer.php:710
1020
  msgid "[An orphaned link! This is a bug.]"
1021
  msgstr "[一个孤立链接!这是一个错误。]"
1022
 
1023
- #: includes/admin/table-printer.php:787
1024
  msgctxt "inline editor title"
1025
  msgid "Edit Link"
1026
  msgstr "编辑链接"
1027
 
1028
- #: includes/admin/table-printer.php:790
1029
  msgctxt "inline link editor"
1030
  msgid "Text"
1031
  msgstr "文本"
1032
 
1033
- #: includes/admin/table-printer.php:795
1034
  msgctxt "inline link editor"
1035
  msgid "URL"
1036
  msgstr "URL"
1037
 
1038
- #: includes/admin/table-printer.php:800
1039
  msgctxt "inline link editor"
1040
  msgid "Suggestions"
1041
  msgstr "建议"
1042
 
1043
- #: includes/admin/table-printer.php:820
1044
  msgid "Use this URL"
1045
  msgstr "使用此 URL"
1046
 
1047
- #: includes/any-post.php:397
1048
  #: modules/containers/blogroll.php:46
1049
  #: modules/containers/comment.php:153
1050
  #: modules/containers/custom_field.php:207
1051
  msgid "Edit"
1052
  msgstr "编辑"
1053
 
1054
- #: includes/any-post.php:405
1055
  #: modules/containers/custom_field.php:213
1056
  msgid "Move this item to the Trash"
1057
  msgstr "移动此项到回收站"
1058
 
1059
- #: includes/any-post.php:407
1060
  #: modules/containers/custom_field.php:215
1061
  msgid "Trash"
1062
  msgstr "回收站"
1063
 
1064
- #: includes/any-post.php:412
1065
  #: modules/containers/custom_field.php:220
1066
  msgid "Delete this item permanently"
1067
  msgstr "永久删除此项目"
1068
 
1069
- #: includes/any-post.php:414
1070
  #: modules/containers/blogroll.php:47
1071
  #: modules/containers/custom_field.php:222
1072
  msgid "Delete"
1073
  msgstr "删除"
1074
 
1075
- #: includes/any-post.php:427
1076
  msgid "Preview &#8220;%s&#8221;"
1077
  msgstr "预览 &#8220;%s&#8221;"
1078
 
1079
- #: includes/any-post.php:428
1080
  msgid "Preview"
1081
  msgstr "预览"
1082
 
1083
- #: includes/any-post.php:435
1084
  msgid "View &#8220;%s&#8221;"
1085
  msgstr "查看 &#8220;%s&#8221;"
1086
 
1087
- #: includes/any-post.php:436
1088
  #: modules/containers/comment.php:166
1089
  #: modules/containers/custom_field.php:227
1090
  msgid "View"
1091
  msgstr "查看"
1092
 
1093
- #: includes/any-post.php:455
1094
  #: modules/containers/custom_field.php:207
1095
  msgid "Edit this item"
1096
  msgstr "编辑此项目"
1097
 
1098
- #: includes/any-post.php:519
1099
  #: modules/containers/blogroll.php:83
1100
  #: modules/containers/comment.php:43
1101
  msgid "Nothing to update"
1102
  msgstr "无需更新"
1103
 
1104
- #: includes/any-post.php:529
1105
  msgid "Updating post %d failed"
1106
  msgstr "更新文章%d失败"
1107
 
1108
- #: includes/any-post.php:566
1109
  #: modules/containers/custom_field.php:294
1110
  msgid "Failed to delete post \"%s\" (%d)"
1111
  msgstr "删除文章《%s》(%d)失败"
1112
 
1113
- #: includes/any-post.php:585
1114
  #: modules/containers/custom_field.php:313
1115
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1116
  msgstr "由于回收站功能已关闭,无法移动文章《%s》(%d)到回收站。"
1117
 
1118
- #: includes/any-post.php:605
1119
  #: modules/containers/custom_field.php:332
1120
  msgid "Failed to move post \"%s\" (%d) to the trash"
1121
  msgstr "移动文章《%s》(%d)到回收站失败"
1122
 
1123
- #: includes/any-post.php:713
1124
  msgid "%d post deleted."
1125
  msgid_plural "%d posts deleted."
1126
  msgstr[0] "已删除%d片文章。"
1127
 
1128
- #: includes/any-post.php:715
1129
  msgid "%d page deleted."
1130
  msgid_plural "%d pages deleted."
1131
  msgstr[0] "已删除%d个页面。"
1132
 
1133
- #: includes/any-post.php:717
1134
  msgid "%d \"%s\" deleted."
1135
  msgid_plural "%d \"%s\" deleted."
1136
  msgstr[0] "已删除%d个“%s”。"
1137
 
1138
- #: includes/any-post.php:736
1139
  msgid "%d post moved to the Trash."
1140
  msgid_plural "%d posts moved to the Trash."
1141
  msgstr[0] "已移动%d片文章到回收站。"
1142
 
1143
- #: includes/any-post.php:738
1144
  msgid "%d page moved to the Trash."
1145
  msgid_plural "%d pages moved to the Trash."
1146
  msgstr[0] "已移动%d个页面到回收站。"
1147
 
1148
- #: includes/any-post.php:740
1149
  msgid "%d \"%s\" moved to the Trash."
1150
  msgid_plural "%d \"%s\" moved to the Trash."
1151
  msgstr[0] "已移动%d个“%s”到回收站。"
@@ -1333,65 +1359,65 @@ msgstr "搜索结果"
1333
  msgid "No links found for your query"
1334
  msgstr "没有查询到链接"
1335
 
1336
- #: includes/links.php:218
1337
  msgid "The plugin script was terminated while trying to check the link."
1338
  msgstr "插件脚步在试图检查链接时被关闭。"
1339
 
1340
- #: includes/links.php:264
1341
  msgid "The plugin doesn't know how to check this type of link."
1342
  msgstr "插件无法找到检查此类链接的方法。"
1343
 
1344
- #: includes/links.php:357
1345
  msgid "Link is valid."
1346
  msgstr "链接有效。"
1347
 
1348
- #: includes/links.php:359
1349
  msgid "Link is broken."
1350
  msgstr "链接失效。"
1351
 
1352
- #: includes/links.php:572
1353
- #: includes/links.php:674
1354
- #: includes/links.php:701
1355
  msgid "Link is not valid"
1356
  msgstr "链接有误"
1357
 
1358
- #: includes/links.php:589
1359
  msgid "This link can not be edited because it is not used anywhere on this site."
1360
  msgstr "此链接因未在任何内容中使用而无法被编辑。"
1361
 
1362
- #: includes/links.php:615
1363
  msgid "Failed to create a DB entry for the new URL."
1364
  msgstr "为新网址建立数据库条目失败。"
1365
 
1366
- #: includes/links.php:681
1367
  msgid "This link is not a redirect"
1368
  msgstr "此链接不是重定向"
1369
 
1370
- #: includes/links.php:728
1371
- #: includes/links.php:765
1372
  msgid "Couldn't delete the link's database record"
1373
  msgstr "无法删除链接的数据库记录"
1374
 
1375
- #: includes/links.php:839
1376
  msgctxt "link status"
1377
  msgid "Unknown"
1378
  msgstr "未知"
1379
 
1380
- #: includes/links.php:853
1381
- #: modules/checkers/http.php:263
1382
  #: modules/extras/mediafire.php:101
1383
  msgid "Unknown Error"
1384
  msgstr "未知错误"
1385
 
1386
- #: includes/links.php:877
1387
  msgid "Not checked"
1388
  msgstr "未检查"
1389
 
1390
- #: includes/links.php:880
1391
  msgid "False positive"
1392
  msgstr "错误报告"
1393
 
1394
- #: includes/links.php:883
1395
  #: modules/extras/fileserve.php:121
1396
  #: modules/extras/megaupload.php:115
1397
  #: modules/extras/rapidshare.php:145
@@ -1459,33 +1485,33 @@ msgid "%d month ago"
1459
  msgid_plural "%d months ago"
1460
  msgstr[0] "%d月前"
1461
 
1462
- #: modules/checkers/http.php:242
1463
  msgid "Server Not Found"
1464
  msgstr "找不到服务器"
1465
 
1466
- #: modules/checkers/http.php:257
1467
  msgid "Connection Failed"
1468
  msgstr "建立连接失败"
1469
 
1470
- #: modules/checkers/http.php:292
1471
- #: modules/checkers/http.php:362
1472
  msgid "HTTP code : %d"
1473
  msgstr "HTTP代码:%d"
1474
 
1475
- #: modules/checkers/http.php:294
1476
- #: modules/checkers/http.php:364
1477
  msgid "(No response)"
1478
  msgstr "(无响应)"
1479
 
1480
- #: modules/checkers/http.php:300
1481
  msgid "Most likely the connection timed out or the domain doesn't exist."
1482
  msgstr "最大的可能是连接超时或者此域名不存在。"
1483
 
1484
- #: modules/checkers/http.php:371
1485
  msgid "Request timed out."
1486
  msgstr "请求超时。"
1487
 
1488
- #: modules/checkers/http.php:389
1489
  msgid "Using Snoopy"
1490
  msgstr "使用 Snoopy"
1491
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
+ "POT-Creation-Date: 2014-03-25 12:29:11+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"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
 
18
  #: core/core.php:153
19
+ #: includes/admin/links-page-js.php:44
20
  msgid "Loading..."
21
  msgstr "加载中……"
22
 
58
  msgid "Settings"
59
  msgstr "设置"
60
 
61
+ #: core/core.php:572
62
  msgid "Settings saved."
63
  msgstr "设置已保存。"
64
 
65
+ #: core/core.php:578
66
  msgid "Thank you for your donation!"
67
  msgstr "感谢您的捐赠!"
68
 
69
+ #: core/core.php:586
70
  msgid "Complete site recheck started."
71
  msgstr "站点完整重新检查开始。"
72
 
73
+ #: core/core.php:595
74
  msgid "Details"
75
  msgstr "详情"
76
 
77
+ #: core/core.php:609
78
  msgid "General"
79
  msgstr "常规"
80
 
81
+ #: core/core.php:610
82
  msgid "Look For Links In"
83
  msgstr "检查范围"
84
 
85
+ #: core/core.php:611
86
  msgid "Which Links To Check"
87
  msgstr "检查类型"
88
 
89
+ #: core/core.php:612
90
  msgid "Protocols & APIs"
91
  msgstr "协议和API"
92
 
93
+ #: core/core.php:613
94
  msgid "Advanced"
95
  msgstr "高级"
96
 
97
+ #: core/core.php:628
98
  msgid "Broken Link Checker Options"
99
  msgstr "链接检查器选项"
100
 
101
+ #: core/core.php:670
102
+ #: includes/admin/table-printer.php:203
103
  msgid "Status"
104
  msgstr "状态"
105
 
106
+ #: core/core.php:672
107
  #: includes/admin/options-page-js.php:56
108
  msgid "Show debug info"
109
  msgstr "显示调试信息"
110
 
111
+ #: core/core.php:700
112
  msgid "Check each link"
113
  msgstr "检查每个链接"
114
 
115
+ #: core/core.php:705
116
  msgid "Every %s hours"
117
  msgstr "每 %s 小时"
118
 
119
+ #: core/core.php:714
120
  msgid "Existing links will be checked this often. New links will usually be checked ASAP."
121
  msgstr "将以此频率检测所有链接,将立即检测新增链接。"
122
 
123
+ #: core/core.php:721
124
  msgid "E-mail notifications"
125
  msgstr "电子邮件通知"
126
 
127
+ #: core/core.php:727
128
  msgid "Send me e-mail notifications about newly detected broken links"
129
  msgstr "当检测到新失效链接时向我发送电子邮件通知"
130
 
131
+ #: core/core.php:735
132
  msgid "Send authors e-mail notifications about broken links in their posts"
133
  msgstr "当检测到新失效链接时向作者发送电子邮件通知"
134
 
135
+ #: core/core.php:742
136
  msgid "Notification e-mail address"
137
  msgstr "接收通知的电子邮件地址"
138
 
139
+ #: core/core.php:754
140
  msgid "Leave empty to use the e-mail address specified in Settings &rarr; General."
141
  msgstr "留空以使用 设置 &rarr; 常规 中指定的电子邮件地址。"
142
 
143
+ #: core/core.php:761
144
  msgid "Link tweaks"
145
  msgstr "链接调整"
146
 
147
+ #: core/core.php:767
148
  msgid "Apply custom formatting to broken links"
149
  msgstr "将自定义样式应用到失效链接"
150
 
151
+ #: core/core.php:771
152
+ #: core/core.php:802
153
  msgid "Edit CSS"
154
  msgstr "编辑样式"
155
 
156
+ #: core/core.php:787
157
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
158
  msgstr "示例:Lorem ipsum <a %s>失效链接</a>, dolor sit amet."
159
 
160
+ #: core/core.php:790
161
+ #: core/core.php:821
162
  msgid "Click \"Save Changes\" to update example output."
163
  msgstr "单击“保持变更”更新输出示例。"
164
 
165
+ #: core/core.php:798
166
  msgid "Apply custom formatting to removed links"
167
  msgstr "对已经移除的链接应用自定义格式"
168
 
169
+ #: core/core.php:818
170
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
171
  msgstr "示例:Lorem ipsum <span %s>失效链接</span>, dolor sit amet."
172
 
173
+ #: core/core.php:831
174
  msgid "Stop search engines from following broken links"
175
  msgstr "要求搜索引擎不跟踪已经失效的链接"
176
 
177
+ #: core/core.php:839
178
  msgctxt "settings page"
179
  msgid "Suggestions"
180
  msgstr "建议"
181
 
182
+ #: core/core.php:845
183
  msgid "Suggest alternatives to broken links"
184
  msgstr "提供失效链接的替换建议"
185
 
186
+ #: core/core.php:861
187
  msgid "Look for links in"
188
  msgstr "检查以下范围的链接"
189
 
190
+ #: core/core.php:872
191
  msgid "Post statuses"
192
  msgstr "发布状态"
193
 
194
+ #: core/core.php:905
195
  msgid "Link types"
196
  msgstr "链接类型"
197
 
198
+ #: core/core.php:911
199
  msgid "Error : All link parsers missing!"
200
  msgstr "错误:无法找到链接解析器!"
201
 
202
+ #: core/core.php:918
203
  msgid "Exclusion list"
204
  msgstr "排除列表"
205
 
206
+ #: core/core.php:919
207
  msgid "Don't check links where the URL contains any of these words (one per line) :"
208
  msgstr "不检测含有以下关键字的链接(每个关键字一行):"
209
 
210
+ #: core/core.php:937
211
  msgid "Check links using"
212
  msgstr "检查链接"
213
 
214
+ #: core/core.php:956
215
+ #: includes/links.php:867
216
  msgid "Timeout"
217
  msgstr "超时"
218
 
219
+ #: core/core.php:962
220
+ #: core/core.php:1031
221
+ #: core/core.php:3019
222
  msgid "%s seconds"
223
  msgstr "%s 秒"
224
 
225
+ #: core/core.php:971
226
  msgid "Links that take longer than this to load will be marked as broken."
227
  msgstr "检测时若链接在此时间内未响应将被视为失效。"
228
 
229
+ #: core/core.php:978
230
  msgid "Link monitor"
231
  msgstr "链接监视器"
232
 
233
+ #: core/core.php:986
234
  msgid "Run continuously while the Dashboard is open"
235
  msgstr "在仪表盘打开时持续运行"
236
 
237
+ #: core/core.php:994
238
  msgid "Run hourly in the background"
239
  msgstr "在后台每小时运行一次"
240
 
241
+ #: core/core.php:1002
242
  msgid "Show the dashboard widget for"
243
  msgstr "为以下用户显示仪表盘部件"
244
 
245
+ #: core/core.php:1007
246
  msgctxt "dashboard widget visibility"
247
  msgid "Administrator"
248
  msgstr "管理员"
249
 
250
+ #: core/core.php:1008
251
  msgctxt "dashboard widget visibility"
252
  msgid "Editor and above"
253
  msgstr "编辑及以上"
254
 
255
+ #: core/core.php:1009
256
  msgctxt "dashboard widget visibility"
257
  msgid "Nobody (disables the widget)"
258
  msgstr "没有人(禁用此小部件)"
259
 
260
+ #: core/core.php:1025
261
  msgid "Max. execution time"
262
  msgstr "最大执行时间"
263
 
264
+ #: core/core.php:1042
265
  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."
266
  msgstr "插件通过定期在后台创建一个实例来解析你的文章以搜索链接,检查找到的链接并执行一些其他耗时的任务。在这里你可以设置后台实例每次最多可以运行多长时间,通常情况下,链接监视会在每次会话结束前完成。"
267
 
268
+ #: core/core.php:1051
269
  msgid "Server load limit"
270
  msgstr "服务器负载限制"
271
 
272
+ #: core/core.php:1066
273
  msgid "Current load : %s"
274
  msgstr "当前负载:%s"
275
 
276
+ #: core/core.php:1071
277
  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."
278
  msgstr "当平均<a href=\"%s\">服务器负载</a>超过此值时,链接检查将会暂停。留空此栏以关闭负载限制。"
279
 
280
+ #: core/core.php:1080
281
  msgid "Not available"
282
  msgstr "不可用"
283
 
284
+ #: core/core.php:1082
285
  msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
286
  msgstr "负载限制仅适用于开启<code>/proc/loadavg</code>并且可读取的类Linux操作系统。"
287
 
288
+ #: core/core.php:1090
289
+ msgid "Logging"
290
+ msgstr "日志"
291
+
292
+ #: core/core.php:1096
293
+ msgid "Enable logging"
294
+ msgstr "启用日志"
295
+
296
+ #: core/core.php:1103
297
+ msgid "Log file location"
298
+ msgstr "日志文件位置"
299
+
300
+ #: core/core.php:1112
301
+ msgctxt "log file location"
302
+ msgid "Default"
303
+ msgstr "默认"
304
+
305
+ #: core/core.php:1126
306
+ msgctxt "log file location"
307
+ msgid "Custom"
308
+ msgstr "自定义"
309
+
310
+ #: core/core.php:1138
311
  msgid "Forced recheck"
312
  msgstr "强制重新检查"
313
 
314
+ #: core/core.php:1141
315
  msgid "Re-check all pages"
316
  msgstr "重新检查所有页面"
317
 
318
+ #: core/core.php:1145
319
  msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
320
  msgstr "注意这是“强破坏性选项”。单击此按钮以清空链接数据库并重新检查站点上的所有链接。"
321
 
322
+ #: core/core.php:1156
323
  msgid "Save Changes"
324
  msgstr "保存更改"
325
 
326
+ #: core/core.php:1207
327
  msgid "Configure"
328
  msgstr "配置"
329
 
330
+ #: core/core.php:1289
331
  msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
332
  msgstr "输入需要检查的自定义栏目名称(每行一个)。如果栏目包含 HTML 代码,请在名称前添加前缀 <code>html:</code>,例如 <code>html:field_name</code>。"
333
 
334
+ #: core/core.php:1420
335
+ #: core/core.php:1503
336
+ #: core/core.php:1535
337
  msgid "Database error : %s"
338
  msgstr "数据库错误:%s"
339
 
340
+ #: core/core.php:1485
341
  msgid "You must enter a filter name!"
342
  msgstr "你需要输入一个过滤器名称!"
343
 
344
+ #: core/core.php:1489
345
  msgid "Invalid search query."
346
  msgstr "无效的查询。"
347
 
348
+ #: core/core.php:1498
349
  msgid "Filter \"%s\" created"
350
  msgstr "已创建“%s”过滤器"
351
 
352
+ #: core/core.php:1525
353
  msgid "Filter ID not specified."
354
  msgstr "过滤器ID未指定。"
355
 
356
+ #: core/core.php:1532
357
  msgid "Filter deleted"
358
  msgstr "已删除过滤器"
359
 
360
+ #: core/core.php:1579
361
  msgid "Replaced %d redirect with a direct link"
362
  msgid_plural "Replaced %d redirects with direct links"
363
  msgstr[0] "已使用直接链接替换了%d个重定向"
364
 
365
+ #: core/core.php:1590
366
  msgid "Failed to fix %d redirect"
367
  msgid_plural "Failed to fix %d redirects"
368
  msgstr[0] "修复%d个重定向失败"
369
 
370
+ #: core/core.php:1601
371
  msgid "None of the selected links are redirects!"
372
  msgstr "选中的链接均不是重定向链接!"
373
 
374
+ #: core/core.php:1679
375
  msgid "%d link updated."
376
  msgid_plural "%d links updated."
377
  msgstr[0] "%d个链接已更新。"
378
 
379
+ #: core/core.php:1690
380
  msgid "Failed to update %d link."
381
  msgid_plural "Failed to update %d links."
382
  msgstr[0] "更新%d个链接失败。"
383
 
384
+ #: core/core.php:1779
385
  msgid "%d link removed"
386
  msgid_plural "%d links removed"
387
  msgstr[0] "已移除%d个链接"
388
 
389
+ #: core/core.php:1790
390
  msgid "Failed to remove %d link"
391
  msgid_plural "Failed to remove %d links"
392
  msgstr[0] "移除%d个链接失败"
393
 
394
+ #: core/core.php:1899
395
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
396
  msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
397
  msgstr[0] "%d个项目由于无法移动到回收站而被忽略,你需要手动删除这些项目。"
398
 
399
+ #: core/core.php:1921
400
  msgid "Didn't find anything to delete!"
401
  msgstr "没有任何需要删除的内容!"
402
 
403
+ #: core/core.php:1949
404
  msgid "%d link scheduled for rechecking"
405
  msgid_plural "%d links scheduled for rechecking"
406
  msgstr[0] "已计划重新检查%d个链接"
407
 
408
+ #: core/core.php:1995
409
+ #: core/core.php:2637
410
  msgid "This link was manually marked as working by the user."
411
  msgstr "此链接被用户标记为有效。"
412
 
413
+ #: core/core.php:2002
414
  msgid "Couldn't modify link %d"
415
  msgstr "无法修改链接%d"
416
 
417
+ #: core/core.php:2012
418
  msgid "%d link marked as not broken"
419
  msgid_plural "%d links marked as not broken"
420
  msgstr[0] "%d个链接被标记为未损坏"
421
 
422
+ #: core/core.php:2052
423
  msgid "Table columns"
424
  msgstr "表格栏目"
425
 
426
+ #: core/core.php:2071
427
  msgid "Show on screen"
428
  msgstr "在屏幕上显示"
429
 
430
+ #: core/core.php:2078
431
  msgid "links"
432
  msgstr "链接"
433
 
434
+ #: core/core.php:2079
435
+ #: includes/admin/table-printer.php:171
436
  msgid "Apply"
437
  msgstr "应用"
438
 
439
+ #: core/core.php:2083
440
  msgid "Misc"
441
  msgstr "杂项"
442
 
443
+ #: core/core.php:2098
444
  msgid "Highlight links broken for at least %s days"
445
  msgstr "高亮显示至少已经失效%s天的链接"
446
 
447
+ #: core/core.php:2107
448
  msgid "Color-code status codes"
449
  msgstr "色彩标记状态码"
450
 
451
+ #: core/core.php:2124
452
+ #: core/core.php:2622
453
+ #: core/core.php:2662
454
+ #: core/core.php:2695
455
+ #: core/core.php:2782
456
  msgid "You're not allowed to do that!"
457
  msgstr "您无权限执行此操作!"
458
 
459
+ #: core/core.php:2492
460
  msgid "View broken links"
461
  msgstr "查看失效链接"
462
 
463
+ #: core/core.php:2493
464
  msgid "Found %d broken link"
465
  msgid_plural "Found %d broken links"
466
  msgstr[0] "已找到%d条失效链接"
467
 
468
+ #: core/core.php:2499
469
  msgid "No broken links found."
470
  msgstr "未找到失效链接。"
471
 
472
+ #: core/core.php:2506
473
  msgid "%d URL in the work queue"
474
  msgid_plural "%d URLs in the work queue"
475
  msgstr[0] "执行队列中还有%d条网址"
476
 
477
+ #: core/core.php:2509
478
  msgid "No URLs in the work queue."
479
  msgstr "执行队列中无网址。"
480
 
481
+ #: core/core.php:2515
482
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
483
  msgid "%d unique URL"
484
  msgid_plural "%d unique URLs"
485
  msgstr[0] "%d个唯一网址"
486
 
487
+ #: core/core.php:2519
488
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
489
  msgid "%d link"
490
  msgid_plural "%d links"
491
  msgstr[0] "%d个链接"
492
 
493
+ #: core/core.php:2525
494
  msgid "Detected %1$s in %2$s and still searching..."
495
  msgstr "在%2$s中发现%1$s,还在继续搜索……"
496
 
497
+ #: core/core.php:2531
498
  msgid "Detected %1$s in %2$s."
499
  msgstr "在%2$s中发现%1$s。"
500
 
501
+ #: core/core.php:2538
502
  msgid "Searching your blog for links..."
503
  msgstr "正在您的博客中搜索链接……"
504
 
505
+ #: core/core.php:2540
506
  msgid "No links detected."
507
  msgstr "没有发现链接。"
508
 
509
+ #: core/core.php:2566
510
  msgctxt "current load"
511
  msgid "Unknown"
512
  msgstr "未知"
513
 
514
+ #: core/core.php:2630
515
+ #: core/core.php:2670
516
+ #: core/core.php:2710
517
+ #: core/core.php:2792
518
  msgid "Oops, I can't find the link %d"
519
  msgstr "啊哦,我找不到%d号链接"
520
 
521
+ #: core/core.php:2643
522
+ #: core/core.php:2680
523
  msgid "Oops, couldn't modify the link!"
524
  msgstr "啊哦,无法修改此链接!"
525
 
526
+ #: core/core.php:2646
527
+ #: core/core.php:2683
528
+ #: core/core.php:2818
529
  msgid "Error : link_id not specified"
530
  msgstr "错误:未指定link_id"
531
 
532
+ #: core/core.php:2701
533
  msgid "Error : link_id or new_url not specified"
534
  msgstr "错误:未指定link_id或者new_url"
535
 
536
+ #: core/core.php:2719
537
  msgid "Oops, the new URL is invalid!"
538
  msgstr "啊哦,这条新的链接无效!"
539
 
540
+ #: core/core.php:2734
541
  msgid "An unexpected error occurred!"
542
  msgstr "发生了一个未知的错误!"
543
 
544
+ #: core/core.php:2801
545
  msgid "An unexpected error occured!"
546
  msgstr "发生了一个未捕获的异常!"
547
 
548
+ #: core/core.php:2827
549
  msgid "You don't have sufficient privileges to access this information!"
550
  msgstr "您没有足够的权限来访问此信息!"
551
 
552
+ #: core/core.php:2840
553
  msgid "Error : link ID not specified"
554
  msgstr "错误:链接 ID 未指定"
555
 
556
+ #: core/core.php:2854
557
  msgid "Failed to load link details (%s)"
558
  msgstr "加载链接(%s)详情失败"
559
 
560
+ #. #-#-#-#-# plugin.pot (Broken Link Checker 1.9.3) #-#-#-#-#
561
  #. Plugin Name of the plugin/theme
562
+ #: core/core.php:2908
563
  msgid "Broken Link Checker"
564
  msgstr "失效链接检查器"
565
 
566
+ #: core/core.php:2928
567
  msgid "PHP version"
568
  msgstr "PHP 版本"
569
 
570
+ #: core/core.php:2934
571
  msgid "MySQL version"
572
  msgstr "MySQL 版本"
573
 
574
+ #: core/core.php:2947
575
  msgid "You have an old version of CURL. Redirect detection may not work properly."
576
  msgstr "您的 CURL 版本过低,重定向检测可能无法正确运行。"
577
 
578
+ #: core/core.php:2959
579
+ #: core/core.php:2975
580
+ #: core/core.php:2980
581
  msgid "Not installed"
582
  msgstr "未安装"
583
 
584
+ #: core/core.php:2962
585
  msgid "CURL version"
586
  msgstr "CURL 版本"
587
 
588
+ #: core/core.php:2968
589
  msgid "Installed"
590
  msgstr "已安装"
591
 
592
+ #: core/core.php:2981
593
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
594
  msgstr "要让插件正常运行,您必须安装 CURL 或者 Snoopy!"
595
 
596
+ #: core/core.php:2992
597
  msgid "On"
598
  msgstr "开启"
599
 
600
+ #: core/core.php:2993
601
  msgid "Redirects may be detected as broken links when safe_mode is on."
602
  msgstr "在安全模式打开时重定向可能被识别为无效链接。"
603
 
604
+ #: core/core.php:2998
605
+ #: core/core.php:3012
606
  msgid "Off"
607
  msgstr "关闭"
608
 
609
+ #: core/core.php:3006
610
  msgid "On ( %s )"
611
  msgstr "在(%s)内"
612
 
613
+ #: core/core.php:3007
614
  msgid "Redirects may be detected as broken links when open_basedir is on."
615
  msgstr "当 open_basedir 打开时重定向可能被识别为无效链接。"
616
 
617
+ #: core/core.php:3036
618
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
619
  msgstr "如果此值为0,你将有可能在重新载入数页后遇到问题。"
620
 
 
621
  #: core/core.php:3159
622
+ #: core/core.php:3278
623
  msgid "[%s] Broken links detected"
624
  msgstr "[%s] 检测到失效链接"
625
 
626
+ #: core/core.php:3164
627
  msgid "Broken Link Checker has detected %d new broken link on your site."
628
  msgid_plural "Broken Link Checker has detected %d new broken links on your site."
629
  msgstr[0] "失效链接检查器在站点上发现了%d个新的失效链接。"
630
 
631
+ #: core/core.php:3195
632
  msgid "Here's a list of the first %d broken links:"
633
  msgid_plural "Here's a list of the first %d broken links:"
634
  msgstr[0] "以下列表显示了最新的%s个失效链接:"
635
 
636
+ #: core/core.php:3204
637
  msgid "Here's a list of the new broken links: "
638
  msgstr "以下列出了新的失效链接:"
639
 
640
+ #: core/core.php:3213
641
  msgid "Link text : %s"
642
  msgstr "链接文字:%s"
643
 
644
+ #: core/core.php:3214
645
  msgid "Link URL : <a href=\"%s\">%s</a>"
646
  msgstr "链接网址:<a href=\"%s\">%s</a>"
647
 
648
+ #: core/core.php:3215
649
  msgid "Source : %s"
650
  msgstr "来源:%s"
651
 
652
+ #: core/core.php:3229
653
  msgid "You can see all broken links here:"
654
  msgstr "你可以在此处浏览所有的失效链接:"
655
 
656
+ #: core/core.php:3283
657
  msgid "Broken Link Checker has detected %d new broken link in your posts."
658
  msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
659
  msgstr[0] "失效链接检查器在你的文章中发现了%d个新的失效链接。"
660
 
661
+ #: core/init.php:249
662
  msgid "Once Weekly"
663
  msgstr "每周一次"
664
 
665
+ #: core/init.php:255
666
  msgid "Twice a Month"
667
  msgstr "每月两次"
668
 
669
+ #: core/init.php:331
670
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
671
  msgstr "失效链接检查器安装失败。请尝试重新激活本插件。"
672
 
673
+ #: core/init.php:335
674
+ msgid "Please activate the plugin separately on each site. Network activation is not supported."
675
+ msgstr "网络激活不可用。请在各站点上分别启用此插件。"
676
+
677
  #: includes/admin/db-upgrade.php:95
678
  msgid "Failed to delete old DB tables. Database error : %s"
679
  msgstr "删除旧数据库失败。数据库错误:%s"
680
 
681
+ #: includes/admin/links-page-js.php:62
682
+ #: includes/admin/links-page-js.php:525
683
  msgid "Wait..."
684
  msgstr "稍等……"
685
 
686
+ #: includes/admin/links-page-js.php:107
687
+ #: includes/admin/table-printer.php:663
688
  msgid "Not broken"
689
  msgstr "未失效"
690
 
691
+ #: includes/admin/links-page-js.php:243
692
  msgctxt "link text"
693
  msgid "(None)"
694
  msgstr "(无)"
695
 
696
+ #: includes/admin/links-page-js.php:244
697
  msgctxt "link text"
698
  msgid "(Multiple links)"
699
  msgstr "(多个链接)"
700
 
701
+ #: includes/admin/links-page-js.php:302
702
  msgctxt "link suggestions"
703
  msgid "Searching..."
704
  msgstr "搜索中……"
705
 
706
+ #: includes/admin/links-page-js.php:303
707
  msgctxt "link suggestions"
708
  msgid "No suggestions available."
709
  msgstr "没有可用的建议。"
710
 
711
+ #: includes/admin/links-page-js.php:304
712
  msgctxt "link suggestions"
713
  msgid "Archived page from %s (via the Wayback Machine)"
714
  msgstr "存档于 %s 的页面(来自 Wayback Machine)"
715
 
716
+ #: includes/admin/links-page-js.php:387
717
  msgid "%d instances of the link were successfully modified."
718
  msgstr "成功修改了%d个链接。"
719
 
720
+ #: includes/admin/links-page-js.php:393
721
  msgid "However, %d instances couldn't be edited and still point to the old URL."
722
  msgstr "然而,%d个链接由于无法被编辑仍然指向了旧的网址。"
723
 
724
+ #: includes/admin/links-page-js.php:399
725
  msgid "The link could not be modified."
726
  msgstr "无法修改链接。"
727
 
728
+ #: includes/admin/links-page-js.php:402
729
  msgid "The following error(s) occurred :"
730
  msgstr "发生了以下错误:"
731
 
732
+ #: includes/admin/links-page-js.php:488
733
  msgid "Error: Link URL must not be empty."
734
  msgstr "错误:链接 URL 不能为空。"
735
 
736
+ #: includes/admin/links-page-js.php:563
737
  msgid "%d instances of the link were successfully unlinked."
738
  msgstr "成功取消了%d个链接。"
739
 
740
+ #: includes/admin/links-page-js.php:569
741
  msgid "However, %d instances couldn't be removed."
742
  msgstr "然而,%d个链接无法被移除。"
743
 
744
+ #: includes/admin/links-page-js.php:574
745
  msgid "The plugin failed to remove the link."
746
  msgstr "移除链接失败。"
747
 
748
+ #: includes/admin/links-page-js.php:577
749
  msgid "The following error(s) occured :"
750
  msgstr "发生了以下错误:"
751
 
752
+ #: includes/admin/links-page-js.php:585
753
+ #: includes/admin/table-printer.php:281
754
+ #: includes/admin/table-printer.php:657
755
  msgid "Unlink"
756
  msgstr "取消链接"
757
 
758
+ #: includes/admin/links-page-js.php:629
759
  msgid "Enter a name for the new custom filter"
760
  msgstr "输入一个新的自定义过滤器名程"
761
 
762
+ #: includes/admin/links-page-js.php:641
763
  msgid ""
764
  "You are about to delete the current filter.\n"
765
  "'Cancel' to stop, 'OK' to delete"
767
  "你将要删除当前使用的过滤器。\n"
768
  " “取消”以停止,“确定”以删除"
769
 
770
+ #: includes/admin/links-page-js.php:665
771
  msgid ""
772
  "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"
773
  "'Cancel' to stop, 'OK' to delete"
775
  "你确认将会删除任何包含有任意一个选定链接的文章、书签和其他内容吗?本操作无法撤销。\n"
776
  "“取消”以停止,“确定”以删除"
777
 
778
+ #: includes/admin/links-page-js.php:679
779
  msgid ""
780
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
781
  "'Cancel' to stop, 'OK' to remove"
783
  "你确认将会删除选定的链接吗?本操作无法撤销。\n"
784
  "“取消”以停止,“确定”以删除"
785
 
786
+ #: includes/admin/links-page-js.php:791
787
  msgid "Enter a search string first."
788
  msgstr "需要先输入搜索字符"
789
 
790
+ #: includes/admin/links-page-js.php:798
791
  msgid "Select one or more links to edit."
792
  msgstr "选择并编辑一个或多个链接"
793
 
813
  msgstr "链接文字"
814
 
815
  #: includes/admin/search-form.php:45
816
+ #: includes/admin/table-printer.php:208
817
  msgid "URL"
818
  msgstr "网址"
819
 
820
  #: includes/admin/search-form.php:48
821
+ #: includes/admin/table-printer.php:527
822
  msgid "HTTP code"
823
  msgstr "HTTP代码"
824
 
844
  msgstr "搜索链接"
845
 
846
  #: includes/admin/search-form.php:113
847
+ #: includes/admin/table-printer.php:357
848
+ #: includes/admin/table-printer.php:687
849
+ #: includes/admin/table-printer.php:812
850
  msgid "Cancel"
851
  msgstr "取消"
852
 
866
  msgid "Return to WordPress Dashboard"
867
  msgstr "返回到 WordPress 仪表盘"
868
 
869
+ #: includes/admin/table-printer.php:185
870
  msgid "Compact View"
871
  msgstr "紧凑视图"
872
 
873
+ #: includes/admin/table-printer.php:186
874
  msgid "Detailed View"
875
  msgstr "详细视图"
876
 
877
+ #: includes/admin/table-printer.php:215
878
  msgid "Source"
879
  msgstr "来源"
880
 
881
+ #: includes/admin/table-printer.php:221
882
  msgid "Link Text"
883
  msgstr "链接文字"
884
 
885
+ #: includes/admin/table-printer.php:228
886
  msgid "Redirect URL"
887
  msgstr "重定向网址"
888
 
889
+ #: includes/admin/table-printer.php:276
890
  msgid "Bulk Actions"
891
  msgstr "批量操作"
892
 
893
+ #: includes/admin/table-printer.php:277
894
+ #: includes/admin/table-printer.php:654
895
  msgid "Edit URL"
896
  msgstr "修改网址"
897
 
898
+ #: includes/admin/table-printer.php:278
899
  msgid "Recheck"
900
  msgstr "重新检查"
901
 
902
+ #: includes/admin/table-printer.php:279
903
  msgid "Fix redirects"
904
  msgstr "修复重定向"
905
 
906
+ #: includes/admin/table-printer.php:280
907
  msgid "Mark as not broken"
908
  msgstr "标记为未失效"
909
 
910
+ #: includes/admin/table-printer.php:284
911
  msgid "Move sources to Trash"
912
  msgstr "移动到回收站"
913
 
914
+ #: includes/admin/table-printer.php:286
915
  msgid "Delete sources"
916
  msgstr "删除资源"
917
 
918
+ #: includes/admin/table-printer.php:301
919
  msgid "&laquo;"
920
  msgstr "&laquo;"
921
 
922
+ #: includes/admin/table-printer.php:302
923
  msgid "&raquo;"
924
  msgstr "&raquo;"
925
 
926
+ #: includes/admin/table-printer.php:310
927
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
928
  msgstr "显示%s&#8211;%s项结果,总共<span class=\"current-link-count\">%s</span>项"
929
 
930
+ #: includes/admin/table-printer.php:333
931
  msgid "Bulk Edit URLs"
932
  msgstr "批量修改网址"
933
 
934
+ #: includes/admin/table-printer.php:335
935
  msgid "Find"
936
  msgstr "查找"
937
 
938
+ #: includes/admin/table-printer.php:339
939
  msgid "Replace with"
940
  msgstr "代替以"
941
 
942
+ #: includes/admin/table-printer.php:347
943
  msgid "Case sensitive"
944
  msgstr "大小写敏感"
945
 
946
+ #: includes/admin/table-printer.php:351
947
  msgid "Regular expression"
948
  msgstr "正则表达式"
949
 
950
+ #: includes/admin/table-printer.php:359
951
+ #: includes/admin/table-printer.php:813
952
  msgid "Update"
953
  msgstr "更新"
954
 
955
+ #: includes/admin/table-printer.php:512
956
  msgid "Post published on"
957
  msgstr "文章发布在"
958
 
959
+ #: includes/admin/table-printer.php:517
960
  msgid "Link last checked"
961
  msgstr "最后一次检查的链接"
962
 
963
+ #: includes/admin/table-printer.php:521
964
  msgid "Never"
965
  msgstr "从不"
966
 
967
+ #: includes/admin/table-printer.php:532
968
  msgid "Response time"
969
  msgstr "响应时间"
970
 
971
+ #: includes/admin/table-printer.php:534
972
  msgid "%2.3f seconds"
973
  msgstr "%2.3f 秒"
974
 
975
+ #: includes/admin/table-printer.php:537
976
  msgid "Final URL"
977
  msgstr "最终网址"
978
 
979
+ #: includes/admin/table-printer.php:542
980
  msgid "Redirect count"
981
  msgstr "重定向数目"
982
 
983
+ #: includes/admin/table-printer.php:547
984
  msgid "Instance count"
985
  msgstr "实例数目"
986
 
987
+ #: includes/admin/table-printer.php:556
988
  msgid "This link has failed %d time."
989
  msgid_plural "This link has failed %d times."
990
  msgstr[0] "此链接失败了%d次。"
991
 
992
+ #: includes/admin/table-printer.php:564
993
  msgid "This link has been broken for %s."
994
  msgstr "此链接已失效%s。"
995
 
996
+ #: includes/admin/table-printer.php:575
997
  msgid "Log"
998
  msgstr "日志"
999
 
1000
+ #: includes/admin/table-printer.php:600
1001
  msgid "Show more info about this link"
1002
  msgstr "显示关于此链接的更多信息"
1003
 
1004
+ #: includes/admin/table-printer.php:618
1005
  msgctxt "checked how long ago"
1006
  msgid "Checked"
1007
  msgstr "已检查"
1008
 
1009
+ #: includes/admin/table-printer.php:634
1010
  msgid "Broken for"
1011
  msgstr "失效于"
1012
 
1013
+ #: includes/admin/table-printer.php:654
1014
  msgid "Edit this link"
1015
  msgstr "编辑此链接"
1016
 
1017
+ #: includes/admin/table-printer.php:656
1018
  msgid "Remove this link from all posts"
1019
  msgstr "将此链接从所有文章中删除"
1020
 
1021
+ #: includes/admin/table-printer.php:662
1022
  msgid "Remove this link from the list of broken links and mark it as valid"
1023
  msgstr "将此链接从失效链接列表中删除并标记为有效"
1024
 
1025
+ #: includes/admin/table-printer.php:670
1026
  msgid "Hide this link and do not report it again unless its status changes"
1027
  msgstr "隐藏此链接,除非链接状态发生改变不再报告此链接问题"
1028
 
1029
+ #: includes/admin/table-printer.php:671
1030
  msgid "Dismiss"
1031
  msgstr "屏蔽"
1032
 
1033
+ #: includes/admin/table-printer.php:676
1034
  msgid "Undismiss this link"
1035
  msgstr "不再屏蔽此链接"
1036
 
1037
+ #: includes/admin/table-printer.php:677
1038
  msgid "Undismiss"
1039
  msgstr "取消屏蔽"
1040
 
1041
+ #: includes/admin/table-printer.php:688
1042
  msgid "Update URL"
1043
  msgstr "修改网址"
1044
 
1045
+ #: includes/admin/table-printer.php:715
1046
  msgid "[An orphaned link! This is a bug.]"
1047
  msgstr "[一个孤立链接!这是一个错误。]"
1048
 
1049
+ #: includes/admin/table-printer.php:792
1050
  msgctxt "inline editor title"
1051
  msgid "Edit Link"
1052
  msgstr "编辑链接"
1053
 
1054
+ #: includes/admin/table-printer.php:795
1055
  msgctxt "inline link editor"
1056
  msgid "Text"
1057
  msgstr "文本"
1058
 
1059
+ #: includes/admin/table-printer.php:800
1060
  msgctxt "inline link editor"
1061
  msgid "URL"
1062
  msgstr "URL"
1063
 
1064
+ #: includes/admin/table-printer.php:805
1065
  msgctxt "inline link editor"
1066
  msgid "Suggestions"
1067
  msgstr "建议"
1068
 
1069
+ #: includes/admin/table-printer.php:825
1070
  msgid "Use this URL"
1071
  msgstr "使用此 URL"
1072
 
1073
+ #: includes/any-post.php:398
1074
  #: modules/containers/blogroll.php:46
1075
  #: modules/containers/comment.php:153
1076
  #: modules/containers/custom_field.php:207
1077
  msgid "Edit"
1078
  msgstr "编辑"
1079
 
1080
+ #: includes/any-post.php:406
1081
  #: modules/containers/custom_field.php:213
1082
  msgid "Move this item to the Trash"
1083
  msgstr "移动此项到回收站"
1084
 
1085
+ #: includes/any-post.php:408
1086
  #: modules/containers/custom_field.php:215
1087
  msgid "Trash"
1088
  msgstr "回收站"
1089
 
1090
+ #: includes/any-post.php:413
1091
  #: modules/containers/custom_field.php:220
1092
  msgid "Delete this item permanently"
1093
  msgstr "永久删除此项目"
1094
 
1095
+ #: includes/any-post.php:415
1096
  #: modules/containers/blogroll.php:47
1097
  #: modules/containers/custom_field.php:222
1098
  msgid "Delete"
1099
  msgstr "删除"
1100
 
1101
+ #: includes/any-post.php:428
1102
  msgid "Preview &#8220;%s&#8221;"
1103
  msgstr "预览 &#8220;%s&#8221;"
1104
 
1105
+ #: includes/any-post.php:429
1106
  msgid "Preview"
1107
  msgstr "预览"
1108
 
1109
+ #: includes/any-post.php:436
1110
  msgid "View &#8220;%s&#8221;"
1111
  msgstr "查看 &#8220;%s&#8221;"
1112
 
1113
+ #: includes/any-post.php:437
1114
  #: modules/containers/comment.php:166
1115
  #: modules/containers/custom_field.php:227
1116
  msgid "View"
1117
  msgstr "查看"
1118
 
1119
+ #: includes/any-post.php:456
1120
  #: modules/containers/custom_field.php:207
1121
  msgid "Edit this item"
1122
  msgstr "编辑此项目"
1123
 
1124
+ #: includes/any-post.php:520
1125
  #: modules/containers/blogroll.php:83
1126
  #: modules/containers/comment.php:43
1127
  msgid "Nothing to update"
1128
  msgstr "无需更新"
1129
 
1130
+ #: includes/any-post.php:530
1131
  msgid "Updating post %d failed"
1132
  msgstr "更新文章%d失败"
1133
 
1134
+ #: includes/any-post.php:567
1135
  #: modules/containers/custom_field.php:294
1136
  msgid "Failed to delete post \"%s\" (%d)"
1137
  msgstr "删除文章《%s》(%d)失败"
1138
 
1139
+ #: includes/any-post.php:586
1140
  #: modules/containers/custom_field.php:313
1141
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1142
  msgstr "由于回收站功能已关闭,无法移动文章《%s》(%d)到回收站。"
1143
 
1144
+ #: includes/any-post.php:606
1145
  #: modules/containers/custom_field.php:332
1146
  msgid "Failed to move post \"%s\" (%d) to the trash"
1147
  msgstr "移动文章《%s》(%d)到回收站失败"
1148
 
1149
+ #: includes/any-post.php:714
1150
  msgid "%d post deleted."
1151
  msgid_plural "%d posts deleted."
1152
  msgstr[0] "已删除%d片文章。"
1153
 
1154
+ #: includes/any-post.php:716
1155
  msgid "%d page deleted."
1156
  msgid_plural "%d pages deleted."
1157
  msgstr[0] "已删除%d个页面。"
1158
 
1159
+ #: includes/any-post.php:718
1160
  msgid "%d \"%s\" deleted."
1161
  msgid_plural "%d \"%s\" deleted."
1162
  msgstr[0] "已删除%d个“%s”。"
1163
 
1164
+ #: includes/any-post.php:737
1165
  msgid "%d post moved to the Trash."
1166
  msgid_plural "%d posts moved to the Trash."
1167
  msgstr[0] "已移动%d片文章到回收站。"
1168
 
1169
+ #: includes/any-post.php:739
1170
  msgid "%d page moved to the Trash."
1171
  msgid_plural "%d pages moved to the Trash."
1172
  msgstr[0] "已移动%d个页面到回收站。"
1173
 
1174
+ #: includes/any-post.php:741
1175
  msgid "%d \"%s\" moved to the Trash."
1176
  msgid_plural "%d \"%s\" moved to the Trash."
1177
  msgstr[0] "已移动%d个“%s”到回收站。"
1359
  msgid "No links found for your query"
1360
  msgstr "没有查询到链接"
1361
 
1362
+ #: includes/links.php:222
1363
  msgid "The plugin script was terminated while trying to check the link."
1364
  msgstr "插件脚步在试图检查链接时被关闭。"
1365
 
1366
+ #: includes/links.php:268
1367
  msgid "The plugin doesn't know how to check this type of link."
1368
  msgstr "插件无法找到检查此类链接的方法。"
1369
 
1370
+ #: includes/links.php:361
1371
  msgid "Link is valid."
1372
  msgstr "链接有效。"
1373
 
1374
+ #: includes/links.php:363
1375
  msgid "Link is broken."
1376
  msgstr "链接失效。"
1377
 
1378
+ #: includes/links.php:582
1379
+ #: includes/links.php:684
1380
+ #: includes/links.php:711
1381
  msgid "Link is not valid"
1382
  msgstr "链接有误"
1383
 
1384
+ #: includes/links.php:599
1385
  msgid "This link can not be edited because it is not used anywhere on this site."
1386
  msgstr "此链接因未在任何内容中使用而无法被编辑。"
1387
 
1388
+ #: includes/links.php:625
1389
  msgid "Failed to create a DB entry for the new URL."
1390
  msgstr "为新网址建立数据库条目失败。"
1391
 
1392
+ #: includes/links.php:691
1393
  msgid "This link is not a redirect"
1394
  msgstr "此链接不是重定向"
1395
 
1396
+ #: includes/links.php:738
1397
+ #: includes/links.php:775
1398
  msgid "Couldn't delete the link's database record"
1399
  msgstr "无法删除链接的数据库记录"
1400
 
1401
+ #: includes/links.php:849
1402
  msgctxt "link status"
1403
  msgid "Unknown"
1404
  msgstr "未知"
1405
 
1406
+ #: includes/links.php:863
1407
+ #: modules/checkers/http.php:289
1408
  #: modules/extras/mediafire.php:101
1409
  msgid "Unknown Error"
1410
  msgstr "未知错误"
1411
 
1412
+ #: includes/links.php:887
1413
  msgid "Not checked"
1414
  msgstr "未检查"
1415
 
1416
+ #: includes/links.php:890
1417
  msgid "False positive"
1418
  msgstr "错误报告"
1419
 
1420
+ #: includes/links.php:893
1421
  #: modules/extras/fileserve.php:121
1422
  #: modules/extras/megaupload.php:115
1423
  #: modules/extras/rapidshare.php:145
1485
  msgid_plural "%d months ago"
1486
  msgstr[0] "%d月前"
1487
 
1488
+ #: modules/checkers/http.php:268
1489
  msgid "Server Not Found"
1490
  msgstr "找不到服务器"
1491
 
1492
+ #: modules/checkers/http.php:283
1493
  msgid "Connection Failed"
1494
  msgstr "建立连接失败"
1495
 
1496
+ #: modules/checkers/http.php:318
1497
+ #: modules/checkers/http.php:388
1498
  msgid "HTTP code : %d"
1499
  msgstr "HTTP代码:%d"
1500
 
1501
+ #: modules/checkers/http.php:320
1502
+ #: modules/checkers/http.php:390
1503
  msgid "(No response)"
1504
  msgstr "(无响应)"
1505
 
1506
+ #: modules/checkers/http.php:326
1507
  msgid "Most likely the connection timed out or the domain doesn't exist."
1508
  msgstr "最大的可能是连接超时或者此域名不存在。"
1509
 
1510
+ #: modules/checkers/http.php:397
1511
  msgid "Request timed out."
1512
  msgstr "请求超时。"
1513
 
1514
+ #: modules/checkers/http.php:415
1515
  msgid "Using Snoopy"
1516
  msgstr "使用 Snoopy"
1517
 
modules/checkers/http.php CHANGED
@@ -79,7 +79,7 @@ class blcHttpChecker extends blcChecker {
79
  $this->token_bucket_list->takeToken($domain);
80
  }
81
 
82
- $blclog->info('HTTP module checking "' . $url . '"');
83
  return $this->implementation->check($url, $use_get);
84
  }
85
  }
@@ -95,14 +95,17 @@ class blcHttpCheckerBase extends blcChecker {
95
 
96
  function clean_url($url){
97
  $url = html_entity_decode($url);
98
- $url = preg_replace(
 
 
99
  array(
100
  '/([\?&]PHPSESSID=\w+)$/i', //remove session ID
101
  '/(#[^\/]*)$/', //and anchors/fragments
102
  '/&amp;/', //convert improper HTML entities
103
- '/([\?&]sid=\w+)$/i' //remove another flavour of session ID
 
104
  ),
105
- array('','','&',''),
106
  $url
107
  );
108
  $url = trim($url);
@@ -171,13 +174,20 @@ class blcCurlHttp extends blcHttpCheckerBase {
171
 
172
  //Init curl.
173
  $ch = curl_init();
 
174
  curl_setopt($ch, CURLOPT_URL, $this->urlencodefix($url));
175
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
176
 
177
  //Masquerade as Internet Explorer
178
  $ua = 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)';
 
179
  curl_setopt($ch, CURLOPT_USERAGENT, $ua);
180
-
 
 
 
 
 
181
  //Add a semi-plausible referer header to avoid tripping up some bot traps
182
  curl_setopt($ch, CURLOPT_REFERER, home_url());
183
 
@@ -225,9 +235,14 @@ class blcCurlHttp extends blcHttpCheckerBase {
225
  curl_setopt($ch, CURLOPT_NOBODY, true);
226
  } else {
227
  //If we must use GET at least limit the amount of downloaded data.
228
- curl_setopt($ch, CURLOPT_HTTPHEADER, array('Range: bytes=0-2048')); //2 KB
229
  }
230
-
 
 
 
 
 
231
  //Register a callback function which will process the HTTP header(s).
232
  //It can be called multiple times if the remote server performs a redirect.
233
  curl_setopt($ch, CURLOPT_HEADERFUNCTION, array(&$this,'read_header'));
@@ -293,6 +308,13 @@ class blcCurlHttp extends blcHttpCheckerBase {
293
  $result['broken'] = $this->is_error_code($result['http_code']);
294
  }
295
  curl_close($ch);
 
 
 
 
 
 
 
296
 
297
  if ( $nobody && $result['broken'] ){
298
  //The site in question might be expecting GET instead of HEAD, so lets retry the request
79
  $this->token_bucket_list->takeToken($domain);
80
  }
81
 
82
+ $blclog->debug('HTTP module checking "' . $url . '"');
83
  return $this->implementation->check($url, $use_get);
84
  }
85
  }
95
 
96
  function clean_url($url){
97
  $url = html_entity_decode($url);
98
+
99
+ $ltrm = preg_quote(json_decode('"\u200E"'), '/');
100
+ $url = preg_replace(
101
  array(
102
  '/([\?&]PHPSESSID=\w+)$/i', //remove session ID
103
  '/(#[^\/]*)$/', //and anchors/fragments
104
  '/&amp;/', //convert improper HTML entities
105
+ '/([\?&]sid=\w+)$/i', //remove another flavour of session ID
106
+ '/' . $ltrm . '/', //remove Left-to-Right marks that can show up when copying from Word.
107
  ),
108
+ array('', '', '&', '', ''),
109
  $url
110
  );
111
  $url = trim($url);
174
 
175
  //Init curl.
176
  $ch = curl_init();
177
+ $request_headers = array();
178
  curl_setopt($ch, CURLOPT_URL, $this->urlencodefix($url));
179
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
180
 
181
  //Masquerade as Internet Explorer
182
  $ua = 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)';
183
+ //$ua = 'Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko';
184
  curl_setopt($ch, CURLOPT_USERAGENT, $ua);
185
+
186
+ //Close the connection after the request (disables keep-alive). The plugin rate-limits requests,
187
+ //so it's likely we'd overrun the keep-alive timeout anyway.
188
+ curl_setopt($ch, CURLOPT_FORBID_REUSE, true);
189
+ $request_headers[] = 'Connection: close';
190
+
191
  //Add a semi-plausible referer header to avoid tripping up some bot traps
192
  curl_setopt($ch, CURLOPT_REFERER, home_url());
193
 
235
  curl_setopt($ch, CURLOPT_NOBODY, true);
236
  } else {
237
  //If we must use GET at least limit the amount of downloaded data.
238
+ $request_headers[] = 'Range: bytes=0-2048'; //2 KB
239
  }
240
+
241
+ //Set request headers.
242
+ if ( !empty($request_headers) ) {
243
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $request_headers);
244
+ }
245
+
246
  //Register a callback function which will process the HTTP header(s).
247
  //It can be called multiple times if the remote server performs a redirect.
248
  curl_setopt($ch, CURLOPT_HEADERFUNCTION, array(&$this,'read_header'));
308
  $result['broken'] = $this->is_error_code($result['http_code']);
309
  }
310
  curl_close($ch);
311
+
312
+ $blclog->info(sprintf(
313
+ 'HTTP response: %d, duration: %.2f seconds, status text: "%s"',
314
+ $result['http_code'],
315
+ $result['request_duration'],
316
+ isset($result['status_text']) ? $result['status_text'] : 'N/A'
317
+ ));
318
 
319
  if ( $nobody && $result['broken'] ){
320
  //The site in question might be expecting GET instead of HEAD, so lets retry the request
modules/containers/comment.php CHANGED
@@ -298,19 +298,21 @@ class blcCommentManager extends blcContainerManager {
298
 
299
  if ( $forced ){
300
  //Create new synchronization records for all comments.
301
- $blclog->log('...... Creating synch. records for comments');
 
302
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
303
  SELECT comment_ID, '{$this->container_type}', 0
304
  FROM {$wpdb->comments}
305
  WHERE
306
  {$wpdb->comments}.comment_approved = '1'";
307
  $wpdb->query( $q );
308
- $blclog->log(sprintf('...... %d rows affected', $wpdb->rows_affected));
309
  } else {
310
  //Delete synch records corresponding to comments that no longer exist
311
  //or have been trashed/spammed/unapproved.
312
  $blclog->log('...... Deleting synch. records for removed comments');
313
- $q = "DELETE synch.*
 
314
  FROM
315
  {$wpdb->prefix}blc_synch AS synch LEFT JOIN {$wpdb->comments} AS comments
316
  ON comments.comment_ID = synch.container_id
@@ -318,10 +320,11 @@ class blcCommentManager extends blcContainerManager {
318
  synch.container_type = '{$this->container_type}'
319
  AND (comments.comment_ID IS NULL OR comments.comment_approved <> '1')";
320
  $wpdb->query( $q );
321
- $blclog->log(sprintf('...... %d rows affected', $wpdb->rows_affected));
322
 
323
  //Create synch. records for comments that don't have them.
324
  $blclog->log('...... Creating synch. records for new comments');
 
325
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
326
  SELECT comment_ID, '{$this->container_type}', 0
327
  FROM
@@ -331,7 +334,7 @@ class blcCommentManager extends blcContainerManager {
331
  comments.comment_approved = '1'
332
  AND synch.container_id IS NULL";
333
  $wpdb->query($q);
334
- $blclog->log(sprintf('...... %d rows affected', $wpdb->rows_affected));
335
 
336
  /*
337
  Note that there is no way to detect comments that were *edited* (not added - those
298
 
299
  if ( $forced ){
300
  //Create new synchronization records for all comments.
301
+ $blclog->log('...... Creating synch. records for comments');
302
+ $start = microtime(true);
303
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
304
  SELECT comment_ID, '{$this->container_type}', 0
305
  FROM {$wpdb->comments}
306
  WHERE
307
  {$wpdb->comments}.comment_approved = '1'";
308
  $wpdb->query( $q );
309
+ $blclog->log(sprintf('...... %d rows inserted in %.3f seconds', $wpdb->rows_affected, microtime(true) - $start));
310
  } else {
311
  //Delete synch records corresponding to comments that no longer exist
312
  //or have been trashed/spammed/unapproved.
313
  $blclog->log('...... Deleting synch. records for removed comments');
314
+ $start = microtime(true);
315
+ $q = "DELETE synch.*
316
  FROM
317
  {$wpdb->prefix}blc_synch AS synch LEFT JOIN {$wpdb->comments} AS comments
318
  ON comments.comment_ID = synch.container_id
320
  synch.container_type = '{$this->container_type}'
321
  AND (comments.comment_ID IS NULL OR comments.comment_approved <> '1')";
322
  $wpdb->query( $q );
323
+ $blclog->log(sprintf('...... %d rows deleted in %.3f seconds', $wpdb->rows_affected, microtime(true) - $start));
324
 
325
  //Create synch. records for comments that don't have them.
326
  $blclog->log('...... Creating synch. records for new comments');
327
+ $start = microtime(true);
328
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
329
  SELECT comment_ID, '{$this->container_type}', 0
330
  FROM
334
  comments.comment_approved = '1'
335
  AND synch.container_id IS NULL";
336
  $wpdb->query($q);
337
+ $blclog->log(sprintf('...... %d rows inserted in %.3f seconds', $wpdb->rows_affected, microtime(true) - $start));
338
 
339
  /*
340
  Note that there is no way to detect comments that were *edited* (not added - those
modules/containers/custom_field.php CHANGED
@@ -443,21 +443,33 @@ class blcPostMetaManager extends blcContainerManager {
443
  function resynch($forced = false){
444
  global $wpdb; /** @var wpdb $wpdb */
445
  global $blclog;
446
-
 
 
 
 
 
 
 
 
 
 
447
  if ( $forced ){
448
  //Create new synchronization records for all posts.
449
- $blclog->log('...... Creating synch records for all custom fields');
450
- $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
 
451
  SELECT id, '{$this->container_type}', 0
452
  FROM {$wpdb->posts}
453
  WHERE
454
  {$wpdb->posts}.post_status = 'publish'
455
- AND {$wpdb->posts}.post_type IN ('post', 'page')";
456
  $wpdb->query( $q );
457
- $blclog->log(sprintf('...... %d rows affected', $wpdb->rows_affected));
458
  } else {
459
  //Delete synch records corresponding to posts that no longer exist.
460
  $blclog->log('...... Deleting custom field synch records corresponding to deleted posts');
 
461
  $q = "DELETE synch.*
462
  FROM
463
  {$wpdb->prefix}blc_synch AS synch LEFT JOIN {$wpdb->posts} AS posts
@@ -465,12 +477,13 @@ class blcPostMetaManager extends blcContainerManager {
465
  WHERE
466
  synch.container_type = '{$this->container_type}' AND posts.ID IS NULL";
467
  $wpdb->query( $q );
468
- $blclog->log(sprintf('...... %d rows affected', $wpdb->rows_affected));
469
 
470
  //Remove the 'synched' flag from all posts that have been updated
471
  //since the last time they were parsed/synchronized.
472
- $blclog->log('...... Marking custom fields on changed post as unsynched');
473
- $q = "UPDATE
 
474
  {$wpdb->prefix}blc_synch AS synch
475
  JOIN {$wpdb->posts} AS posts ON (synch.container_id = posts.ID and synch.container_type='{$this->container_type}')
476
  SET
@@ -478,10 +491,11 @@ class blcPostMetaManager extends blcContainerManager {
478
  WHERE
479
  synch.last_synch < posts.post_modified";
480
  $wpdb->query( $q );
481
- $blclog->log(sprintf('...... %d rows affected', $wpdb->rows_affected));
482
 
483
  //Create synch. records for posts that don't have them.
484
- $blclog->log('...... Creating custom field synch records for new posts');
 
485
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
486
  SELECT id, '{$this->container_type}', 0
487
  FROM
@@ -489,10 +503,10 @@ class blcPostMetaManager extends blcContainerManager {
489
  ON (synch.container_id = posts.ID and synch.container_type='{$this->container_type}')
490
  WHERE
491
  posts.post_status = 'publish'
492
- AND posts.post_type IN ('post', 'page')
493
  AND synch.container_id IS NULL";
494
  $wpdb->query($q);
495
- $blclog->log(sprintf('...... %d rows affected', $wpdb->rows_affected));
496
  }
497
  }
498
 
@@ -535,6 +549,12 @@ class blcPostMetaManager extends blcContainerManager {
535
  return;
536
  }
537
 
 
 
 
 
 
 
538
  $container = blcContainerHelper::get_container( array($this->container_type, intval($object_id)) );
539
  $container->mark_as_unsynched();
540
  }
443
  function resynch($forced = false){
444
  global $wpdb; /** @var wpdb $wpdb */
445
  global $blclog;
446
+
447
+ //Only check custom fields on selected post types. By default, that's "post" and "page".
448
+ $post_types = array('post', 'page');
449
+ if ( class_exists('blcPostTypeOverlord') ) {
450
+ $overlord = blcPostTypeOverlord::getInstance();
451
+ $post_types = array_merge($post_types, $overlord->enabled_post_types);
452
+ $post_types = array_unique($post_types);
453
+ }
454
+
455
+ $escaped_post_types = "'" . implode("', '", array_map('esc_sql', $post_types)) . "'";
456
+
457
  if ( $forced ){
458
  //Create new synchronization records for all posts.
459
+ $blclog->log('...... Creating synch records for all custom fields on ' . $escaped_post_types);
460
+ $start = microtime(true);
461
+ $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
462
  SELECT id, '{$this->container_type}', 0
463
  FROM {$wpdb->posts}
464
  WHERE
465
  {$wpdb->posts}.post_status = 'publish'
466
+ AND {$wpdb->posts}.post_type IN ({$escaped_post_types})";
467
  $wpdb->query( $q );
468
+ $blclog->log(sprintf('...... %d rows inserted in %.3f seconds', $wpdb->rows_affected, microtime(true) - $start));
469
  } else {
470
  //Delete synch records corresponding to posts that no longer exist.
471
  $blclog->log('...... Deleting custom field synch records corresponding to deleted posts');
472
+ $start = microtime(true);
473
  $q = "DELETE synch.*
474
  FROM
475
  {$wpdb->prefix}blc_synch AS synch LEFT JOIN {$wpdb->posts} AS posts
477
  WHERE
478
  synch.container_type = '{$this->container_type}' AND posts.ID IS NULL";
479
  $wpdb->query( $q );
480
+ $blclog->log(sprintf('...... %d rows deleted in %.3f seconds', $wpdb->rows_affected, microtime(true) - $start));
481
 
482
  //Remove the 'synched' flag from all posts that have been updated
483
  //since the last time they were parsed/synchronized.
484
+ $blclog->log('...... Marking custom fields on changed posts as unsynched');
485
+ $start = microtime(true);
486
+ $q = "UPDATE
487
  {$wpdb->prefix}blc_synch AS synch
488
  JOIN {$wpdb->posts} AS posts ON (synch.container_id = posts.ID and synch.container_type='{$this->container_type}')
489
  SET
491
  WHERE
492
  synch.last_synch < posts.post_modified";
493
  $wpdb->query( $q );
494
+ $blclog->log(sprintf('...... %d rows updated in %.3f seconds', $wpdb->rows_affected, microtime(true) - $start));
495
 
496
  //Create synch. records for posts that don't have them.
497
+ $blclog->log('...... Creating custom field synch records for new ' . $escaped_post_types);
498
+ $start = microtime(true);
499
  $q = "INSERT INTO {$wpdb->prefix}blc_synch(container_id, container_type, synched)
500
  SELECT id, '{$this->container_type}', 0
501
  FROM
503
  ON (synch.container_id = posts.ID and synch.container_type='{$this->container_type}')
504
  WHERE
505
  posts.post_status = 'publish'
506
+ AND posts.post_type IN ({$escaped_post_types})
507
  AND synch.container_id IS NULL";
508
  $wpdb->query($q);
509
+ $blclog->log(sprintf('...... %d rows inserted in %.3f seconds', $wpdb->rows_affected, microtime(true) - $start));
510
  }
511
  }
512
 
549
  return;
550
  }
551
 
552
+ //Skip revisions. We only care about custom fields on the main post.
553
+ $post = get_post($object_id);
554
+ if ( empty($post) || !isset($post->post_type) || ($post->post_type === 'revision') ) {
555
+ return;
556
+ }
557
+
558
  $container = blcContainerHelper::get_container( array($this->container_type, intval($object_id)) );
559
  $container->mark_as_unsynched();
560
  }
modules/extras/fileserve.php DELETED
@@ -1,147 +0,0 @@
1
- <?php
2
- /*
3
- Plugin Name: FileServe API
4
- Description: Check links to FileServe files using the FileServe API.
5
- Version: 1.0
6
- Author: Janis Elsts
7
-
8
- ModuleID: fileserve-checker
9
- ModuleCategory: checker
10
- ModuleContext: on-demand
11
- ModuleLazyInit: true
12
- ModuleClassName: blcFileServeChecker
13
- ModulePriority: 100
14
-
15
- ModuleCheckerUrlPattern: @^http://(?:www\.)?fileserve\.com/file/([\w\d]+?)(?:/|$|[?#])@i
16
- */
17
-
18
- /**
19
- * FileServe API link checker.
20
- *
21
- * @package Broken Link Checker
22
- * @author Janis Elsts
23
- * @access public
24
- */
25
- class blcFileServeChecker extends blcChecker {
26
- private $fileserve_api_url = 'http://app.fileserve.com/api/download/free/';
27
-
28
- /**
29
- * Determine if the checker can parse a specific URL.
30
- * Always returns true because the ModuleCheckerUrlPattern header constitutes sufficient verification.
31
- *
32
- * @param string $url
33
- * @param array $parsed
34
- * @return bool True.
35
- */
36
- function can_check($url, $parsed){
37
- return true;
38
- }
39
-
40
- /**
41
- * Check a FileServe link.
42
- *
43
- * See the FileServe API documentation for details:
44
- * http://app.fileserve.com/api/download/
45
- *
46
- * @param string $url File URL.
47
- * @return array
48
- */
49
- function check($url){
50
- $result = array(
51
- 'final_url' => $url,
52
- 'redirect_count' => 0,
53
- 'timeout' => false,
54
- 'broken' => false,
55
- 'log' => sprintf("<em>(%s)</em>\n\n", __('Using FileServe API', 'broken-link-checker')),
56
- 'result_hash' => '',
57
- 'status_code' => '',
58
- 'status_text' => '',
59
- );
60
-
61
- //We know the URL will match because ModuleCheckerUrlPattern matched.
62
- preg_match('@^http://(?:www\.)?fileserve\.com/file/([\w\d]+?)(?:/|$|[?#])@i', $url, $matches);
63
- $file_id = $matches[1];
64
-
65
- $conf = blc_get_configuration();
66
- $args = array(
67
- 'timeout' => $conf->options['timeout'],
68
- 'body' => array(
69
- 'shorten' => $file_id
70
- ),
71
- );
72
-
73
- $start = microtime_float();
74
- $response = wp_remote_post($this->fileserve_api_url, $args);
75
- $result['request_duration'] = microtime_float() - $start;
76
-
77
- $error_code = 0;
78
-
79
- if ( is_wp_error($response) ){
80
- $result['log'] .= "Error : " . $response->get_error_message();
81
- $result['broken'] = true;
82
- $result['http_code'] = 0;
83
- } else {
84
- $result['http_code'] = intval($response['response']['code']);
85
-
86
- if ( $result['http_code'] == 200 ){
87
- //In this case, the HTTP code returned by is not meaningful in itself,
88
- //so we won't store it or display it to the user.
89
- $result['http_code'] = 0;
90
-
91
- $json = json_decode($response['body'], false);
92
-
93
- if ( isset($json->error_code) ) {
94
- $error_code = intval($json->error_code);
95
- }
96
- $failure_codes = array(
97
- 310 => 'Invalid request',
98
- 403 => 'Not premium',
99
- 404 => 'Invalid link',
100
- 601 => 'Limited free download',
101
- 602 => 'Number of concurrent download exceeded',
102
- 603 => 'Too many invalid capcha',
103
- 605 => 'Expired premium',
104
- 606 => 'Invalid file ID',
105
- 607 => 'File not available',
106
- 608 => 'File not available',
107
- );
108
-
109
- if ( array_key_exists($error_code, $failure_codes) ) {
110
- $result['broken'] = true;
111
- $result['status_code'] = BLC_LINK_STATUS_ERROR;
112
- $result['status_text'] = __('Not Found', 'broken-link-checker');
113
-
114
- $result['log'] .= sprintf(
115
- __('FileServe : %d %s', 'broken-link-checker') . "\n",
116
- $error_code,
117
- $failure_codes[$error_code]
118
- );
119
- } else {
120
- $result['status_code'] = BLC_LINK_STATUS_OK;
121
- $result['status_text'] = _x('OK', 'link status', 'broken-link-checker');
122
- }
123
-
124
- //$result['log'] .= "API response :\n" . htmlspecialchars(print_r((array)$json, true));
125
- $result['log'] .= "API response :\n<code>" . htmlspecialchars($response['body'])."</code>\n";
126
-
127
- } else {
128
- //Unexpected error.
129
- $result['log'] .= $response['body'];
130
- $result['broken'] = true;
131
- }
132
- }
133
-
134
- //Generate the result hash (used for detecting false positives)
135
- $result['result_hash'] = implode('|', array(
136
- 'fileserve',
137
- $result['http_code'],
138
- $result['broken']?'broken':'0',
139
- $result['timeout']?'timeout':'0',
140
- $error_code
141
- ));
142
-
143
- return $result;
144
- }
145
-
146
- }
147
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
modules/extras/megaupload.php DELETED
@@ -1,267 +0,0 @@
1
- <?php
2
- /**
3
- * Megaupload.com has been seized by the USA government, rendering this module irrelevant.
4
- */
5
-
6
- /*
7
- Plugin Name: MegaUpload API
8
- Description: Check links to MegaUpload files.
9
- Version: 1.0
10
- Author: Janis Elsts
11
-
12
- ModuleID: megaupload-checker
13
- ModuleCategory: checker
14
- ModuleContext: on-demand
15
- ModuleLazyInit: true
16
- ModuleClassName: blcMegaUploadChecker
17
- ModulePriority: 100
18
-
19
- ModuleCheckerUrlPattern: @^http://[\w\.]*?megaupload\.com/.*?(?:\?|&)d=([0-9A-Za-z]+)@
20
- */
21
-
22
- /**
23
- * MegaUpload API link checker.
24
- *
25
- * @package Broken Link Checker
26
- * @author Janis Elsts
27
- * @access public
28
- */
29
- class blcMegaUploadChecker extends blcChecker {
30
-
31
- /**
32
- * Determine if the checker can parse a specific URL.
33
- * Always returns true because the ModuleCheckerUrlPattern header constitutes sufficient verification.
34
- *
35
- * @param string $url
36
- * @param array $parsed
37
- * @return bool True.
38
- */
39
- function can_check($url, $parsed){
40
- return true;
41
- }
42
-
43
- /**
44
- * Check a MegaUpload link.
45
- *
46
- * @param string $url
47
- * @return array
48
- */
49
- function check($url){
50
- $result = array(
51
- 'final_url' => $url,
52
- 'redirect_count' => 0,
53
- 'timeout' => false,
54
- 'broken' => false,
55
- 'log' => "<em>(Using MegaUpload API)</em>\n\n",
56
- 'http_code' => 0,
57
- 'result_hash' => '',
58
- );
59
-
60
- //Extract the file ID from the URL (we know it's there because the module's URL pattern verifies that)
61
- $components = parse_url($url);
62
- parse_str($components['query'], $query);
63
- $file_id = $query['d'];
64
-
65
- $start = microtime_float();
66
- $info = $this->check_files($file_id);
67
- $result['request_duration'] = microtime_float() - $start;
68
-
69
- $file_status = 'unknown';
70
- if ( is_wp_error($info) ){
71
-
72
- //An unexpected error. Connection problems, IP blocks - it all goes here.
73
- $result['broken'] = true;
74
- if ( $data = $info->get_error_data() ){
75
- //Check for the "domain seized" message.
76
- $code = isset($data['response']['code']) ? $data['response']['code'] : 0;
77
- $body = isset($data['body']) ? $data['body'] : '';
78
- if ( ($code == 404) && (strpos($body, '<title>NOTICE</title>') !== false) ) {
79
- $result['log'] .= "The domain megaupload.com has been seized.";
80
- $result['status_code'] = BLC_LINK_STATUS_ERROR;
81
- $result['status_text'] = __('Not Found', 'broken-link-checker');
82
- $result['http_code'] = 404;
83
- } else {
84
- $result['log'] .= "Error : " . $info->get_error_message();
85
- $result['log'] .= "\n\nError data : " . print_r($data, true);
86
- }
87
- }
88
-
89
- } else {
90
- if ( array_key_exists($file_id, $info) ){
91
-
92
- $info = $info[$file_id];
93
- $file_status = $info['status'];
94
-
95
- switch($file_status){
96
- case '0': //OK
97
- $result['log'] .= 'File OK';
98
- $result['broken'] = false;
99
-
100
- if ( isset($info['name']) ){
101
- $result['log'] .= "\n" . sprintf(
102
- "Name : %s",
103
- $info['name']
104
- );
105
- }
106
-
107
- if ( isset($info['size']) ){
108
- $result['log'] .= "\n" . sprintf(
109
- "Size : %.0f KiB",
110
- round( floatval($info['size']) / 1024 )
111
- );
112
- }
113
-
114
- $result['status_code'] = BLC_LINK_STATUS_OK;
115
- $result['status_text'] = _x('OK', 'link status', 'broken-link-checker');
116
-
117
- break;
118
-
119
- case '1': //Invalid/removed
120
- $result['log'] .= 'File Not Found';
121
- $result['broken'] = true;
122
- $result['status_code'] = BLC_LINK_STATUS_ERROR;
123
- $result['status_text'] = __('Not Found', 'broken-link-checker');
124
- break;
125
-
126
- case '3': //Temporarily unavailable
127
- $result['log'] .= 'File Temporarily Unavailable';
128
- $result['broken'] = true;
129
- $result['status_code'] = BLC_LINK_STATUS_WARNING;
130
- $result['status_text'] = __('File Temporarily Unavailable', 'broken-link-checker');
131
- break;
132
-
133
- default: //Other codes are not documented anywhere.
134
- $result['log'] .= 'Received an unknown response code : ' . $file_status;
135
- $result['status_code'] = BLC_LINK_STATUS_INFO;
136
- $result['status_text'] = __('API Error', 'broken-link-checker');
137
- }
138
-
139
- } else {
140
- $result['log'] = "No info about file $file_id returned.";
141
- }
142
- }
143
-
144
- //Generate the result hash (used for detecting false positives)
145
- $result['result_hash'] = implode('|', array(
146
- 'megaupload',
147
- $result['http_code'],
148
- $result['broken']?'broken':'0',
149
- $result['timeout']?'timeout':'0',
150
- $file_status
151
- ));
152
-
153
- return $result;
154
- }
155
-
156
- /**
157
- * Check the status of one or more MegaUpload files.
158
- *
159
- * The MegaUpload API that is used in this function isn't documented anywhere.
160
- * The input and output data formats were reverse-engineered by sniffing the
161
- * HTTP requests made by the "Mega Manager" tool.
162
- *
163
- * @param array|string $file_ids
164
- * @return array|WP_Error
165
- */
166
- function check_files($file_ids){
167
- if ( is_string($file_ids) ){
168
- $file_ids = array($file_ids);
169
- }
170
-
171
- //The API expects input in this format : id0=file1id&id1=file2id&...
172
- $request_ids = array();
173
- $counter = 0;
174
-
175
- foreach($file_ids as $file_id){
176
- $id = 'id' . $counter;
177
- $request_ids[$id] = $file_id;
178
- $counter++;
179
- }
180
-
181
- $conf = blc_get_configuration();
182
- $args = array(
183
- 'timeout' => $conf->options['timeout'],
184
- 'body' => $request_ids,
185
- );
186
-
187
- //Submit the request
188
- $rez = wp_remote_post('http://www.megaupload.com/mgr_linkcheck.php', $args);
189
-
190
- if ( is_wp_error($rez) ){
191
- return $rez;
192
- }
193
-
194
- if ( ($rez['response']['code'] == 200) && (!empty($rez['body'])) ){
195
- $api_results = $this->parse_api_response($rez['body']);
196
- $results = array();
197
-
198
- //Resort the results by real file IDs
199
- foreach($api_results as $id => $file_info){
200
- if ( !array_key_exists($id, $request_ids) ){
201
- continue;
202
- }
203
-
204
- $results[$request_ids[$id]] = $file_info;
205
- }
206
-
207
- return $results;
208
-
209
- } else {
210
- return new WP_Error(
211
- 'megaupload_api_error',
212
- "MegaUpload API Error",
213
- $rez
214
- );
215
- }
216
- }
217
-
218
- /**
219
- * Parse a response received from the MegaUpload file check API
220
- *
221
- * @param string $response
222
- * @return array
223
- */
224
- function parse_api_response($response){
225
- /*
226
- The API response looks like this :
227
- 0=www.megaupload.com&1=www.megaporn.com&id0=0&s=filesize&d=0&n=filename&id1=0&s=filesize&d=0&n=filename...
228
-
229
- Despite appearances, it is not actually a valid query string. Each "idX=..." piece
230
- needs to be parsed separately.
231
- */
232
-
233
- $pieces = preg_split('@&(?=id\d+=)@', $response);
234
- $results = array();
235
-
236
- foreach($pieces as $piece){
237
- //Skip the superfluous response fragments that don't begin with an ID
238
- if ( substr($piece, 0, 2) != 'id' ){
239
- continue;
240
- }
241
-
242
- //Extract the "idX" key that identifies files in the request
243
- $id = substr($piece, 0, strpos($piece, '='));
244
-
245
- //The per-file data can be parsed as a query string
246
- parse_str($piece, $raw_data);
247
-
248
- //Reformat
249
- $file_data = array();
250
- $file_data['status'] = $raw_data[$id];
251
- if ( isset($raw_data['s']) ){
252
- $file_data['size'] = $raw_data['s'];
253
- }
254
- if ( isset($raw_data['n']) ){
255
- $file_data['name'] = $raw_data['n'];
256
- }
257
- if ( isset($raw_data['d']) ){ //No idea what this key is for.
258
- $file_data['d'] = $raw_data['d'];
259
- }
260
-
261
- $results[$id] = $file_data;
262
- }
263
-
264
- return $results;
265
- }
266
-
267
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
modules/extras/megavideo-embed.php DELETED
@@ -1,39 +0,0 @@
1
- <?php
2
- /*
3
- Plugin Name: Embedded Megavideo videos
4
- Description: Parse embedded videos from Megavideo
5
- Version: 1.0
6
- Author: Janis Elsts
7
-
8
- ModuleCategory: parser
9
- ModuleClassName: blcMegavideoEmbed
10
- ModuleContext: on-demand
11
- ModuleLazyInit: true
12
-
13
- ModulePriority: 110
14
- */
15
-
16
- if ( !class_exists('blcEmbedParserBase') ){
17
- require 'embed-parser-base.php';
18
- }
19
-
20
- class blcMegavideoEmbed extends blcEmbedParserBase {
21
-
22
- function init(){
23
- parent::init();
24
- $this->short_title = __('Megavideo Video', 'broken-link-checker');
25
- $this->long_title = __('Embedded Megavideo video', 'broken-link-checker');
26
- $this->url_search_string = 'megavideo.com/v/';
27
- }
28
-
29
- function link_url_from_src($src){
30
- //It doesn't really matter what URL we use here, since Megavideo has been
31
- //taken down and all URLs will fail anyway.
32
- return $src;
33
- }
34
-
35
- function ui_get_link_text($instance, $context = 'display'){
36
- return '[' . $this->short_title . ']';
37
- }
38
- }
39
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
modules/extras/plaintext-url-parser-base.php CHANGED
@@ -4,7 +4,7 @@ class blcPlaintextUrlBase extends blcParser {
4
  var $supported_formats = array('html', 'plaintext');
5
 
6
  //Regexp for detecting plaintext URLs lifted from make_clickable()
7
- var $url_regexp = '#(?<=[\s>\]])(\()?([\w]+?://(?:[\w\\x80-\\xff\#$%&~/=?@\[\](+-]|[.,;:](?![\s<]|(\))?([\s]|$))|(?(1)\)(?![\s<.,;:]|$)|\)))+)#is';
8
 
9
  //Used by the edit and unlink callbacks
10
  var $old_url = '';
4
  var $supported_formats = array('html', 'plaintext');
5
 
6
  //Regexp for detecting plaintext URLs lifted from make_clickable()
7
+ var $url_regexp = '#(?<=[\s>\]]|^)(\()?([\w]+?://(?:[\w\\x80-\\xff\#$%&~/=?@\[\](+-]|[.,;:](?![\s<]|(\))?([\s]|$))|(?(1)\)(?![\s<.,;:]|$)|\)))+)#is';
8
 
9
  //Used by the edit and unlink callbacks
10
  var $old_url = '';
modules/parsers/html_link.php CHANGED
@@ -27,8 +27,6 @@ class blcHTMLLink extends blcParser {
27
  * @return array An array of new blcLinkInstance objects. The objects will include info about the links found, but not about the corresponding container entity.
28
  */
29
  function parse($content, $base_url = '', $default_link_text = ''){
30
- $instances = array();
31
-
32
  //remove all <code></code> blocks first
33
  $content = preg_replace('/<code[^>]*>.+?<\/code>/si', ' ', $content);
34
 
@@ -61,8 +59,7 @@ class blcHTMLLink extends blcParser {
61
 
62
  $url = $raw_url = $link['href'];
63
  $url = trim($url);
64
- //FB::log($url, "Found link");
65
- $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Found a link, raw URL = "' . $raw_url . '"');
66
 
67
  //Sometimes links may contain shortcodes. Execute them.
68
  $url = do_shortcode($url);
@@ -76,7 +73,7 @@ class blcHTMLLink extends blcParser {
76
  //Attempt to parse the URL
77
  $parts = @parse_url($url);
78
  if(!$parts) {
79
- $blclog->warn(__CLASS__ .':' . __FUNCTION__ . ' Skipping the link (parse_url failed)');
80
  return null; //Skip invalid URLs
81
  };
82
 
@@ -85,12 +82,16 @@ class blcHTMLLink extends blcParser {
85
  $url = $this->relative2absolute($url, $base_url); //$base_url comes from $params
86
  $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Convert relative URL to absolute. Absolute URL = "' . $url . '"');
87
  }
88
-
89
  //Skip invalid links (again)
90
  if ( !$url || (strlen($url)<6) ) {
91
- $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Skipping the link (invalid/short URL)');
92
  return null;
93
  }
 
 
 
 
94
 
95
  $text = $link['#link_text'];
96
 
27
  * @return array An array of new blcLinkInstance objects. The objects will include info about the links found, but not about the corresponding container entity.
28
  */
29
  function parse($content, $base_url = '', $default_link_text = ''){
 
 
30
  //remove all <code></code> blocks first
31
  $content = preg_replace('/<code[^>]*>.+?<\/code>/si', ' ', $content);
32
 
59
 
60
  $url = $raw_url = $link['href'];
61
  $url = trim($url);
62
+ //$blclog->debug(__CLASS__ .':' . __FUNCTION__ . ' Found a link, raw URL = "' . $raw_url . '"');
 
63
 
64
  //Sometimes links may contain shortcodes. Execute them.
65
  $url = do_shortcode($url);
73
  //Attempt to parse the URL
74
  $parts = @parse_url($url);
75
  if(!$parts) {
76
+ $blclog->warn(__CLASS__ .':' . __FUNCTION__ . ' Skipping the link (parse_url failed)', $url);
77
  return null; //Skip invalid URLs
78
  };
79
 
82
  $url = $this->relative2absolute($url, $base_url); //$base_url comes from $params
83
  $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Convert relative URL to absolute. Absolute URL = "' . $url . '"');
84
  }
85
+
86
  //Skip invalid links (again)
87
  if ( !$url || (strlen($url)<6) ) {
88
+ $blclog->info(__CLASS__ .':' . __FUNCTION__ . ' Skipping the link (invalid/short URL)', $url);
89
  return null;
90
  }
91
+
92
+ //Remove left-to-right marks. See: https://en.wikipedia.org/wiki/Left-to-right_mark
93
+ $ltrm = json_decode('"\u200E"');
94
+ $url = str_replace($ltrm, '', $url);
95
 
96
  $text = $link['#link_text'];
97
 
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.9
7
- Stable tag: 1.9.3
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
@@ -59,7 +59,7 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
59
  * Hungarian - [Language Connect](http://www.languageconnect.net/)
60
  * Irish - [Ray Gren](http://letsbefamous.com/)
61
  * Italian - [Gianni Diurno](http://gidibao.net/index.php/portfolio/) and [Giacomo Ross](http://www.luxemozione.com/) (alternative)
62
- * Japanese - [ningendesu](http://ningendesu.com/)
63
  * Korean - [MinHyeong Lim](http://ssamture.net/)
64
  * Persian - [Omid Sheerkavand](http://qanal.ir/)
65
  * Polish - [http://positionmaker.pl](http://positionmaker.pl/)
@@ -67,6 +67,8 @@ You can also click on the contents of the "Status" or "Link Text" columns to get
67
  * Brazilian Portuguese - [Paulino Michelazzo](http://www.michelazzo.com.br/)
68
  * Romanian - [Ovidiu](http://www.jibo.ro)
69
  * Russian - [Anna Ozeritskaya](http://hweia.ru/)
 
 
70
  * Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
71
  * Turkish - [Murat Durgun](http://www.lanwifi.net/)
72
  * Ukrainian - [Stas Mykhajlyuk](http://www.kosivart.com/)
@@ -97,6 +99,26 @@ To upgrade your installation
97
 
98
  == Changelog ==
99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  = 1.9.3 =
101
  * Tested on WP 3.8.1 and WP 3.9-beta2.
102
  * Added an option to sort links by link text. May produce unexpected results for links that have multiple copies with different anchor text.
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: 4.0-beta4
7
+ Stable tag: 1.9.4
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
 
59
  * Hungarian - [Language Connect](http://www.languageconnect.net/)
60
  * Irish - [Ray Gren](http://letsbefamous.com/)
61
  * Italian - [Gianni Diurno](http://gidibao.net/index.php/portfolio/) and [Giacomo Ross](http://www.luxemozione.com/) (alternative)
62
+ * Japanese - [Shohei Tanak](http://artisanworkshop.biz/)
63
  * Korean - [MinHyeong Lim](http://ssamture.net/)
64
  * Persian - [Omid Sheerkavand](http://qanal.ir/)
65
  * Polish - [http://positionmaker.pl](http://positionmaker.pl/)
67
  * Brazilian Portuguese - [Paulino Michelazzo](http://www.michelazzo.com.br/)
68
  * Romanian - [Ovidiu](http://www.jibo.ro)
69
  * Russian - [Anna Ozeritskaya](http://hweia.ru/)
70
+ * Serbo-Croatian - [Borisa Djuraskovic](http://www.webhostinghub.com)
71
+ * Slovakian - [Patrik Žec](http://patwist.com/)
72
  * Spanish - [Neoshinji](http://blog.tuayudainformatica.com/traducciones-de-plugins-wordpress/)
73
  * Turkish - [Murat Durgun](http://www.lanwifi.net/)
74
  * Ukrainian - [Stas Mykhajlyuk](http://www.kosivart.com/)
99
 
100
  == Changelog ==
101
 
102
+ = 1.9.4 =
103
+ * Tested on WP 4.0 beta.
104
+ * Added a Serbo-Croatian translation.
105
+ * Added a Slovakian translation.
106
+ * Replaced the old Japanese translation with a new and more up-to-date version from a different translator.
107
+ * Updated Dutch, German, Polish, Hebrew and other translations.
108
+ * Fixed a notice about undefined index "status_text".
109
+ * Fixed a "doing it wrong" warning related to screen options.
110
+ * Fixed spurious false positives on links copied from Word or similar editors.
111
+ * Fixed view switcher appearance in WP 4.0.
112
+ * Replaced the deprecated like_esc() function with $wpdb->esc_like() where available.
113
+ * Fixed plaintext URLs not being detected if they're the very first thing in a post.
114
+ * Fixed a bug that caused quotes and other special characters in the broken link CSS and removed link CSS fields to be auto-escaped with a slash, potentially breaking the CSS.
115
+ * Fixed a bug that caused the "check custom fields" feature work inconsistently or not at all on custom post types.
116
+ * Fixed duplicate custom field links showing up when the user creates a revision with different field values.
117
+ * Fixed a specific type of false positive where some links would get flagged as "Unknown Error" and the log message would be "Empty reply from server".
118
+ * Fixed a bug where only the first enabled post type would be resynchronized during plugin activation.
119
+ * Added more logging.
120
+ * Removed Megavideo and MegaUpload modules. These sites no longer exist.
121
+
122
  = 1.9.3 =
123
  * Tested on WP 3.8.1 and WP 3.9-beta2.
124
  * Added an option to sort links by link text. May produce unexpected results for links that have multiple copies with different anchor text.