Broken Link Checker - Version 1.9.2

Version Description

  • Fixed several UI/layout issues related to the new WP 3.8 admin style.
  • Fixed HTML entity codes showing up in confirmation messages in when running a localized version of WP (only affects some languages).
  • Fixed the "dismiss this notice" link URL not being HTML-escaped.
  • Fixed a couple of cross-site scripting vulnerabilities related to the sort direction query argument not being properly validated and the bulk action form not escaping the current URL.
  • Updated Hebrew translation.
  • Updated French translation.
  • When you dismiss a link, the dismissed link counter is now updated right away instead of on page reload.
Download this release

Release Info

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

Code changes from version 1.9.1 to 1.9.2

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.1
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.2
7
  Author: Janis Elsts
8
  Author URI: http://w-shadow.com/
9
  Text Domain: broken-link-checker
core/core.php CHANGED
@@ -977,7 +977,7 @@ class wsBrokenLinkChecker {
977
 
978
  foreach($widget_caps as $title => $capability) {
979
  printf(
980
- '<label><input type="radio" name="dashboard_widget_capability" value="%s"%s> %s</label><br>',
981
  esc_attr($capability),
982
  checked($capability, $this->conf->get('dashboard_widget_capability'), false),
983
  $title
@@ -1223,7 +1223,7 @@ class wsBrokenLinkChecker {
1223
  * @return void
1224
  */
1225
  function options_page_css(){
1226
- wp_enqueue_style('blc-options-page', plugins_url('css/options-page.css', BLC_PLUGIN_FILE), array(), '20121206' );
1227
  wp_enqueue_style('dashboard');
1228
  }
1229
 
977
 
978
  foreach($widget_caps as $title => $capability) {
979
  printf(
980
+ '<p><label><input type="radio" name="dashboard_widget_capability" value="%s"%s> %s</label></p>',
981
  esc_attr($capability),
982
  checked($capability, $this->conf->get('dashboard_widget_capability'), false),
983
  $title
1223
  * @return void
1224
  */
1225
  function options_page_css(){
1226
+ wp_enqueue_style('blc-options-page', plugins_url('css/options-page.css', BLC_PLUGIN_FILE), array(), '20131216');
1227
  wp_enqueue_style('dashboard');
1228
  }
1229
 
css/options-page.css CHANGED
@@ -217,6 +217,10 @@ ul.ui-tabs-nav li.ui-tabs-active a {
217
  -webkit-border-bottom-left-radius: 6px;
218
  }
219
 
 
 
 
 
220
  /* Right sidebar */
221
 
222
  #blc-settings-wrap .hndle {
217
  -webkit-border-bottom-left-radius: 6px;
218
  }
219
 
220
+ .blc-section table.form-table th {
221
+ padding-left: 10px;
222
+ }
223
+
224
  /* Right sidebar */
225
 
226
  #blc-settings-wrap .hndle {
includes/admin/links-page-js.php CHANGED
@@ -1,9 +1,16 @@
1
  <script type='text/javascript'>
2
 
3
- function alterLinkCounter(factor){
4
- var cnt = parseInt(jQuery('.current-link-count').eq(0).html());
 
 
 
 
 
 
 
5
  cnt = cnt + factor;
6
- jQuery('.current-link-count').html(cnt);
7
 
8
  if ( blc_is_broken_filter ){
9
  //Update the broken link count displayed beside the "Broken Links" menu
@@ -141,6 +148,7 @@ jQuery(function($){
141
  //Update the elements displaying the number of results for the current filter.
142
  if( should_hide_link ){
143
  alterLinkCounter(-1);
 
144
  }
145
  } else {
146
  me.html(oldButtonHtml);
@@ -629,7 +637,11 @@ jQuery(function($){
629
  $('#blc-delete-filter').click(function(){
630
  var message = '<?php
631
  echo esc_js(
632
- __("You are about to delete the current filter.\n'Cancel' to stop, 'OK' to delete", 'broken-link-checker')
 
 
 
 
633
  );
634
  ?>';
635
  return confirm(message);
@@ -649,7 +661,11 @@ jQuery(function($){
649
  //Convey the gravitas of deleting link sources.
650
  message = '<?php
651
  echo esc_js(
652
- __("Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n'Cancel' to stop, 'OK' to delete", 'broken-link-checker')
 
 
 
 
653
  );
654
  ?>';
655
  if ( !confirm(message) ){
@@ -659,7 +675,11 @@ jQuery(function($){
659
  //Likewise for unlinking.
660
  message = '<?php
661
  echo esc_js(
662
- __("Are you sure you want to remove the selected links? This action can't be undone.\n'Cancel' to stop, 'OK' to remove", 'broken-link-checker')
 
 
 
 
663
  );
664
  ?>';
665
  if ( !confirm(message) ){
1
  <script type='text/javascript'>
2
 
3
+ function alterLinkCounter(factor, filterId){
4
+ var counter;
5
+ if (filterId) {
6
+ counter = jQuery('.filter-' + filterId + '-link-count');
7
+ } else {
8
+ counter = jQuery('.current-link-count');
9
+ }
10
+
11
+ var cnt = parseInt(counter.eq(0).html(), 10);
12
  cnt = cnt + factor;
13
+ counter.html(cnt);
14
 
15
  if ( blc_is_broken_filter ){
16
  //Update the broken link count displayed beside the "Broken Links" menu
148
  //Update the elements displaying the number of results for the current filter.
149
  if( should_hide_link ){
150
  alterLinkCounter(-1);
151
+ alterLinkCounter(1, 'dismissed');
152
  }
153
  } else {
154
  me.html(oldButtonHtml);
637
  $('#blc-delete-filter').click(function(){
638
  var message = '<?php
639
  echo esc_js(
640
+ html_entity_decode(
641
+ __("You are about to delete the current filter.\n'Cancel' to stop, 'OK' to delete", 'broken-link-checker'),
642
+ ENT_QUOTES | ENT_HTML401,
643
+ get_bloginfo('charset')
644
+ )
645
  );
646
  ?>';
647
  return confirm(message);
661
  //Convey the gravitas of deleting link sources.
662
  message = '<?php
663
  echo esc_js(
664
+ html_entity_decode(
665
+ __("Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n'Cancel' to stop, 'OK' to delete", 'broken-link-checker'),
666
+ ENT_QUOTES | ENT_HTML401,
667
+ get_bloginfo('charset')
668
+ )
669
  );
670
  ?>';
671
  if ( !confirm(message) ){
675
  //Likewise for unlinking.
676
  message = '<?php
677
  echo esc_js(
678
+ html_entity_decode(
679
+ __("Are you sure you want to remove the selected links? This action can't be undone.\n'Cancel' to stop, 'OK' to remove", 'broken-link-checker'),
680
+ ENT_QUOTES | ENT_HTML401,
681
+ get_bloginfo('charset')
682
+ )
683
  );
684
  ?>';
685
  if ( !confirm(message) ){
includes/admin/table-printer.php CHANGED
@@ -60,7 +60,7 @@ class blcTablePrinter {
60
  //Only allow columns actually present in this layout
61
  $visible_columns = array_intersect($visible_columns, $current_layout);
62
 
63
- echo '<form id="blc-bulk-action-form" action="', $this->neutral_current_url, '" method="post">';
64
  wp_nonce_field('bulk-action');
65
 
66
  //Top navigation
@@ -101,6 +101,9 @@ class blcTablePrinter {
101
  $orderby = $column['orderby'];
102
  $current_orderby = isset($_GET['orderby']) ? $_GET['orderby'] : '';
103
  $current_order = isset($_GET['order']) ? $_GET['order'] : 'asc';
 
 
 
104
 
105
  if ( $orderby == $current_orderby ) {
106
  $column_classes[] = 'sorted';
@@ -114,10 +117,10 @@ class blcTablePrinter {
114
 
115
  $heading = sprintf(
116
  '<a href="%s"><span>%s</span><span class="sorting-indicator"></span></a>',
117
- add_query_arg(array(
118
  'orderby' => $orderby,
119
  'order' => $order,
120
- )),
121
  $heading
122
  );
123
  }
@@ -504,12 +507,12 @@ class blcTablePrinter {
504
  <div class="blc-detail-block" style="float: left; width: 49%;">
505
  <ol style='list-style-type: none;'>
506
  <?php if ( !empty($link->post_date) ) { ?>
507
- <li><strong><?php _e('Post published on', 'broken-link-checker'); ?> :</strong>
508
  <span class='post_date'><?php
509
  echo date_i18n(get_option('date_format'),strtotime($link->post_date));
510
  ?></span></li>
511
  <?php } ?>
512
- <li><strong><?php _e('Link last checked', 'broken-link-checker'); ?> :</strong>
513
  <span class='check_date'><?php
514
  $last_check = $link->last_check;
515
  if ( $last_check < strtotime('-10 years') ){
@@ -519,27 +522,27 @@ class blcTablePrinter {
519
  }
520
  ?></span></li>
521
 
522
- <li><strong><?php _e('HTTP code', 'broken-link-checker'); ?> :</strong>
523
  <span class='http_code'><?php
524
  print $link->http_code;
525
  ?></span></li>
526
 
527
- <li><strong><?php _e('Response time', 'broken-link-checker'); ?> :</strong>
528
  <span class='request_duration'><?php
529
  printf( __('%2.3f seconds', 'broken-link-checker'), $link->request_duration);
530
  ?></span></li>
531
 
532
- <li><strong><?php _e('Final URL', 'broken-link-checker'); ?> :</strong>
533
  <span class='final_url'><?php
534
  print $link->final_url;
535
  ?></span></li>
536
 
537
- <li><strong><?php _e('Redirect count', 'broken-link-checker'); ?> :</strong>
538
  <span class='redirect_count'><?php
539
  print $link->redirect_count;
540
  ?></span></li>
541
 
542
- <li><strong><?php _e('Instance count', 'broken-link-checker'); ?> :</strong>
543
  <span class='instance_count'><?php
544
  print count($link->get_instances());
545
  ?></span></li>
@@ -567,7 +570,7 @@ class blcTablePrinter {
567
 
568
  <div class="blc-detail-block" style="float: right; width: 50%;">
569
  <ol style='list-style-type: none;'>
570
- <li><strong><?php _e('Log', 'broken-link-checker'); ?> :</strong>
571
  <span class='blc_log'><?php
572
  print nl2br($link->log);
573
  ?></span></li>
60
  //Only allow columns actually present in this layout
61
  $visible_columns = array_intersect($visible_columns, $current_layout);
62
 
63
+ echo '<form id="blc-bulk-action-form" action="', esc_attr($this->neutral_current_url), '" method="post">';
64
  wp_nonce_field('bulk-action');
65
 
66
  //Top navigation
101
  $orderby = $column['orderby'];
102
  $current_orderby = isset($_GET['orderby']) ? $_GET['orderby'] : '';
103
  $current_order = isset($_GET['order']) ? $_GET['order'] : 'asc';
104
+ if ( !in_array($current_order, array('asc', 'desc')) ) {
105
+ $current_order = 'asc';
106
+ }
107
 
108
  if ( $orderby == $current_orderby ) {
109
  $column_classes[] = 'sorted';
117
 
118
  $heading = sprintf(
119
  '<a href="%s"><span>%s</span><span class="sorting-indicator"></span></a>',
120
+ esc_attr(add_query_arg(array(
121
  'orderby' => $orderby,
122
  'order' => $order,
123
+ ))),
124
  $heading
125
  );
126
  }
507
  <div class="blc-detail-block" style="float: left; width: 49%;">
508
  <ol style='list-style-type: none;'>
509
  <?php if ( !empty($link->post_date) ) { ?>
510
+ <li><strong><?php _e('Post published on', 'broken-link-checker'); ?>:</strong>
511
  <span class='post_date'><?php
512
  echo date_i18n(get_option('date_format'),strtotime($link->post_date));
513
  ?></span></li>
514
  <?php } ?>
515
+ <li><strong><?php _e('Link last checked', 'broken-link-checker'); ?>:</strong>
516
  <span class='check_date'><?php
517
  $last_check = $link->last_check;
518
  if ( $last_check < strtotime('-10 years') ){
522
  }
523
  ?></span></li>
524
 
525
+ <li><strong><?php _e('HTTP code', 'broken-link-checker'); ?>:</strong>
526
  <span class='http_code'><?php
527
  print $link->http_code;
528
  ?></span></li>
529
 
530
+ <li><strong><?php _e('Response time', 'broken-link-checker'); ?>:</strong>
531
  <span class='request_duration'><?php
532
  printf( __('%2.3f seconds', 'broken-link-checker'), $link->request_duration);
533
  ?></span></li>
534
 
535
+ <li><strong><?php _e('Final URL', 'broken-link-checker'); ?>:</strong>
536
  <span class='final_url'><?php
537
  print $link->final_url;
538
  ?></span></li>
539
 
540
+ <li><strong><?php _e('Redirect count', 'broken-link-checker'); ?>:</strong>
541
  <span class='redirect_count'><?php
542
  print $link->redirect_count;
543
  ?></span></li>
544
 
545
+ <li><strong><?php _e('Instance count', 'broken-link-checker'); ?>:</strong>
546
  <span class='instance_count'><?php
547
  print count($link->get_instances());
548
  ?></span></li>
570
 
571
  <div class="blc-detail-block" style="float: right; width: 50%;">
572
  <ol style='list-style-type: none;'>
573
+ <li><strong><?php _e('Log', 'broken-link-checker'); ?>:</strong>
574
  <span class='blc_log'><?php
575
  print nl2br($link->log);
576
  ?></span></li>
includes/any-post.php CHANGED
@@ -159,16 +159,17 @@ class blcPostTypeOverlord {
159
 
160
  $post_container->mark_as_unsynched();
161
  }
162
-
163
-
164
- /**
165
- * Create or update synchronization records for all posts.
166
- *
167
- * @param bool $forced If true, assume that all synch. records are gone and will need to be recreated from scratch.
168
- * @return void
169
- */
 
170
  function resynch($container_type = '', $forced = false){
171
- global $wpdb;
172
  global $blclog;
173
 
174
  //Resynch is expensive in terms of DB performance. Thus we only do it once, processing
159
 
160
  $post_container->mark_as_unsynched();
161
  }
162
+
163
+
164
+ /**
165
+ * Create or update synchronization records for all posts.
166
+ *
167
+ * @param string $container_type
168
+ * @param bool $forced If true, assume that all synch. records are gone and will need to be recreated from scratch.
169
+ * @return void
170
+ */
171
  function resynch($container_type = '', $forced = false){
172
+ global $wpdb; /** @var wpdb $wpdb */
173
  global $blclog;
174
 
175
  //Resynch is expensive in terms of DB performance. Thus we only do it once, processing
includes/link-query.php CHANGED
@@ -661,11 +661,12 @@ class blcLinkQuery {
661
  foreach ($filters as $filter => $data){
662
  if ( !empty($data['hidden']) ) continue; //skip hidden filters
663
 
664
- $class = $number_class = '';
 
665
 
666
  if ( $current == $filter ) {
667
  $class = 'class="current"';
668
- $number_class = 'current-link-count';
669
  }
670
 
671
  $items[] = "<li><a href='tools.php?page=view-broken-links&filter_id=$filter' {$class}>
@@ -715,6 +716,10 @@ class blcLinkQuery {
715
  * @return array Associative array of filter data and the results of its execution.
716
  */
717
  function exec_filter($filter_id, $page = 1, $per_page = 30, $fallback = 'broken', $orderby = '', $order = 'asc'){
 
 
 
 
718
 
719
  //Get the selected filter (defaults to displaying broken links)
720
  $current_filter = $this->get_filter($filter_id);
661
  foreach ($filters as $filter => $data){
662
  if ( !empty($data['hidden']) ) continue; //skip hidden filters
663
 
664
+ $class = '';
665
+ $number_class = 'filter-' . $filter . '-link-count';
666
 
667
  if ( $current == $filter ) {
668
  $class = 'class="current"';
669
+ $number_class .= ' current-link-count';
670
  }
671
 
672
  $items[] = "<li><a href='tools.php?page=view-broken-links&filter_id=$filter' {$class}>
716
  * @return array Associative array of filter data and the results of its execution.
717
  */
718
  function exec_filter($filter_id, $page = 1, $per_page = 30, $fallback = 'broken', $orderby = '', $order = 'asc'){
719
+ //The only valid sort directions are 'asc' and 'desc'.
720
+ if ( !in_array($order, array('asc', 'desc')) ) {
721
+ $order = 'asc';
722
+ }
723
 
724
  //Get the selected filter (defaults to displaying broken links)
725
  $current_filter = $this->get_filter($filter_id);
includes/screen-meta-links.php CHANGED
@@ -149,44 +149,86 @@ class wsScreenMetaLinks11 {
149
  return;
150
  }
151
 
 
 
 
 
 
 
 
 
 
 
 
152
  ?>
153
  <style type="text/css">
154
- .custom-screen-meta-link-wrap {
155
- float: right;
156
- height: 22px;
157
- padding: 0;
158
- margin: 0 0 0 6px;
159
- font-family: sans-serif;
160
- -moz-border-radius-bottomleft: 3px;
161
- -moz-border-radius-bottomright: 3px;
162
- -webkit-border-bottom-left-radius: 3px;
163
- -webkit-border-bottom-right-radius: 3px;
164
- border-bottom-left-radius: 3px;
165
- border-bottom-right-radius: 3px;
166
-
167
- background: #e3e3e3;
168
-
169
- border-right: 1px solid transparent;
170
- border-left: 1px solid transparent;
171
- border-bottom: 1px solid transparent;
172
- background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
173
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
174
- background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
175
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
176
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
177
- background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
178
- }
179
-
180
- #screen-meta .custom-screen-meta-link-wrap a.custom-screen-meta-link,
181
- #screen-meta-links .custom-screen-meta-link-wrap a.custom-screen-meta-link
182
- {
183
- background-image: none;
184
- padding-right: 6px;
185
- color: #777;
186
- }
187
- </style>
188
  <?php
189
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
 
191
  /**
192
  * Convert a page hook name to a screen ID.
149
  return;
150
  }
151
 
152
+ if ( !isset($GLOBALS['wp_version']) || version_compare($GLOBALS['wp_version'], '3.8-RC1', '<') ) {
153
+ $this->print_old_link_styles();
154
+ } else {
155
+ $this->print_link_styles();
156
+ }
157
+ }
158
+
159
+ /**
160
+ * Print screen meta button styles (WP 3.8+).
161
+ */
162
+ private function print_link_styles() {
163
  ?>
164
  <style type="text/css">
165
+ .custom-screen-meta-link-wrap {
166
+ float: right;
167
+ height: 28px;
168
+ margin: 0 0 0 6px;
169
+
170
+ border: 1px solid #ddd;
171
+ border-top: none;
172
+ background: #fff;
173
+ -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
174
+ box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
175
+ }
176
+
177
+ #screen-meta .custom-screen-meta-link-wrap a.custom-screen-meta-link,
178
+ #screen-meta-links .custom-screen-meta-link-wrap a.custom-screen-meta-link
179
+ {
180
+ padding: 3px 16px 3px 16px;
181
+ }
182
+
183
+ #screen-meta-links a.custom-screen-meta-link::after {
184
+ display: none;
185
+ }
186
+ </style>
 
 
 
 
 
 
 
 
 
 
 
 
187
  <?php
188
  }
189
+
190
+ /**
191
+ * Print old screen meta button styles (WP 3.7.x and older).
192
+ */
193
+ private function print_old_link_styles() {
194
+ ?>
195
+ <style type="text/css">
196
+ .custom-screen-meta-link-wrap {
197
+ float: right;
198
+ height: 22px;
199
+ padding: 0;
200
+ margin: 0 0 0 6px;
201
+ font-family: sans-serif;
202
+ -moz-border-radius-bottomleft: 3px;
203
+ -moz-border-radius-bottomright: 3px;
204
+ -webkit-border-bottom-left-radius: 3px;
205
+ -webkit-border-bottom-right-radius: 3px;
206
+ border-bottom-left-radius: 3px;
207
+ border-bottom-right-radius: 3px;
208
+
209
+ background: #e3e3e3;
210
+
211
+ border-right: 1px solid transparent;
212
+ border-left: 1px solid transparent;
213
+ border-bottom: 1px solid transparent;
214
+ background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
215
+ background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
216
+ background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
217
+ background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
218
+ background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
219
+ background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
220
+ }
221
+
222
+ #screen-meta .custom-screen-meta-link-wrap a.custom-screen-meta-link,
223
+ #screen-meta-links .custom-screen-meta-link-wrap a.custom-screen-meta-link
224
+ {
225
+ background-image: none;
226
+ padding-right: 6px;
227
+ color: #777;
228
+ }
229
+ </style>
230
+ <?php
231
+ }
232
 
233
  /**
234
  * Convert a page hook name to a screen ID.
includes/survey.php CHANGED
@@ -38,7 +38,7 @@ function blc_display_survey_notice(){
38
  '<strong>Help improve Broken Link Checker - <a href="%s" target="_blank" title="This link will open in a new window" id="blc-take-survey-link">take a user feedback survey!</a></strong>
39
  <br><a href="%s">Hide this notice</a>',
40
  $survey_url,
41
- add_query_arg('dismiss-blc-survey', 1)
42
  );
43
 
44
  echo '<div id="update-nag" class="blc-survey-notice" style="text-align: left; padding-left: 10px;">'.$msg.'</div>';
38
  '<strong>Help improve Broken Link Checker - <a href="%s" target="_blank" title="This link will open in a new window" id="blc-take-survey-link">take a user feedback survey!</a></strong>
39
  <br><a href="%s">Hide this notice</a>',
40
  $survey_url,
41
+ esc_attr(add_query_arg('dismiss-blc-survey', 1))
42
  );
43
 
44
  echo '<div id="update-nag" class="blc-survey-notice" style="text-align: left; padding-left: 10px;">'.$msg.'</div>';
languages/broken-link-checker-fr_FR.mo CHANGED
Binary file
languages/broken-link-checker-fr_FR.po CHANGED
@@ -1,11 +1,12 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: broken-link-checker v1.8.1\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/broken-link-checker\n"
5
- "POT-Creation-Date: 2013-07-09 21:56+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>\n"
 
9
  "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -13,111 +14,112 @@ msgstr ""
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;_x:1,2c;"
16
- "_ngettext_noop:1,2;_n_noop:1,2\n"
 
17
  "X-Poedit-Basepath: ../\n"
18
- "X-Generator: Poedit 1.5.5\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: core/core.php:151 includes/admin/links-page-js.php:37
22
  msgid "Loading..."
23
  msgstr "Chargement..."
24
 
25
- #: core/core.php:175 includes/admin/options-page-js.php:18
26
  msgid "[ Network error ]"
27
  msgstr "[ Erreur r&eacute;seau ]"
28
 
29
- #: core/core.php:202
30
  msgid "Automatically expand the widget if broken links have been detected"
31
  msgstr ""
32
  "D&eacute;plier automatiquement le widget si des liens cass&eacute;s ont "
33
  "&eacute;t&eacute; d&eacute;tect&eacute;s."
34
 
35
- #: core/core.php:292
36
  msgid "Link Checker Settings"
37
  msgstr "R&eacute;glages du v&eacute;rificateur de liens"
38
 
39
- #: core/core.php:293
40
  msgid "Link Checker"
41
  msgstr "V&eacute;rificateur de lien"
42
 
43
- #: core/core.php:298 includes/link-query.php:27
44
  msgid "Broken Links"
45
  msgstr "Liens cass&eacute;s"
46
 
47
- #: core/core.php:314
48
  msgid "View Broken Links"
49
  msgstr "Voir Liens cass&eacute;s"
50
 
51
- #: core/core.php:329
52
  msgid "Feedback"
53
  msgstr "Informations en retour"
54
 
55
- #: core/core.php:337
56
  msgid "Go to Broken Links"
57
  msgstr "Aller aux liens cassés"
58
 
59
- #: core/core.php:366
60
  msgid "Settings"
61
  msgstr "R&eacute;glages"
62
 
63
- #: core/core.php:533
64
  msgid "Settings saved."
65
  msgstr "R&eacute;glages enregistr&eacute;s"
66
 
67
- #: core/core.php:539
68
  msgid "Thank you for your donation!"
69
  msgstr "Merci pour votre don!"
70
 
71
- #: core/core.php:547
72
  msgid "Complete site recheck started."
73
  msgstr "La v&eacute;rification compl&egrave;te a commenc&eacute;."
74
 
75
- #: core/core.php:556
76
  msgid "Details"
77
  msgstr "D&eacute;tails"
78
 
79
- #: core/core.php:570
80
  msgid "General"
81
  msgstr "G&eacute;n&eacute;ral"
82
 
83
- #: core/core.php:571
84
  msgid "Look For Links In"
85
  msgstr "Rechercher des liens dans"
86
 
87
- #: core/core.php:572
88
  msgid "Which Links To Check"
89
  msgstr "Quels liens v&eacute;rifier"
90
 
91
- #: core/core.php:573
92
  msgid "Protocols & APIs"
93
  msgstr "Protocoles & APIs"
94
 
95
- #: core/core.php:574
96
  msgid "Advanced"
97
  msgstr "Options avanc&eacute;es"
98
 
99
- #: core/core.php:589
100
  msgid "Broken Link Checker Options"
101
  msgstr "Options de <strong>Broken Link Checker</strong>"
102
 
103
- #: core/core.php:631 includes/admin/table-printer.php:197
104
  msgid "Status"
105
  msgstr "&Eacute;tat&nbsp;:"
106
 
107
- #: core/core.php:633 includes/admin/options-page-js.php:56
108
  msgid "Show debug info"
109
  msgstr "Afficher les informations de débogage"
110
 
111
- #: core/core.php:661
112
  msgid "Check each link"
113
  msgstr "V&eacute;rifier chaque lien&nbsp;:"
114
 
115
- #: core/core.php:666
116
  #, php-format
117
  msgid "Every %s hours"
118
  msgstr "Toutes les %s heures"
119
 
120
- #: core/core.php:675
121
  msgid ""
122
  "Existing links will be checked this often. New links will usually be checked "
123
  "ASAP."
@@ -126,152 +128,161 @@ msgstr ""
126
  "r&eacute;glage. Les nouveaux liens sont habituellement v&eacute;rifi&eacute;"
127
  "s d&egrave;s que possible."
128
 
129
- #: core/core.php:682
130
  msgid "E-mail notifications"
131
  msgstr "Message de notification"
132
 
133
- #: core/core.php:688
134
  msgid "Send me e-mail notifications about newly detected broken links"
135
  msgstr ""
136
  "M'envoyer un courriel de notification avec les nouveaux liens cass&eacute;s"
137
 
138
- #: core/core.php:696
139
  msgid "Send authors e-mail notifications about broken links in their posts"
140
  msgstr ""
141
  "Envoyer un courriel de notification aux auteurs des articles qui ont des "
142
  "liens cass&eacute;s"
143
 
144
- #: core/core.php:703
145
  msgid "Notification e-mail address"
146
  msgstr "Adresse e-mail pour la notification"
147
 
148
- #: core/core.php:715
149
  msgid ""
150
  "Leave empty to use the e-mail address specified in Settings &rarr; General."
151
  msgstr ""
152
  "Laissez vide pour utiliser l'adresse e-mail spécifiée dans les paramètres "
153
  "généraux."
154
 
155
- #: core/core.php:722
156
  msgid "Link tweaks"
157
  msgstr "Mettre en forme les liens"
158
 
159
- #: core/core.php:728
160
  msgid "Apply custom formatting to broken links"
161
  msgstr "Appliquer un affichage sp&eacute;cifique aux liens cass&eacute;s"
162
 
163
- #: core/core.php:732 core/core.php:763
164
  msgid "Edit CSS"
165
  msgstr "&Eacute;diter CSS"
166
 
167
- #: core/core.php:748
168
  #, php-format
169
  msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
170
  msgstr "Exemple : Lorem ipsum <a %s>lien cass&eacute;</a>, dolor sit amet."
171
 
172
- #: core/core.php:751 core/core.php:782
173
  msgid "Click \"Save Changes\" to update example output."
174
  msgstr ""
175
  "Appuyer sur \"Enregistrer les modifications\" pour mettre à jour l'exemple."
176
 
177
- #: core/core.php:759
178
  msgid "Apply custom formatting to removed links"
179
  msgstr "Appliquer un affichage sp&eacute;cifique aux liens supprim&eacute;s"
180
 
181
- #: core/core.php:779
182
  #, php-format
183
  msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
184
  msgstr ""
185
  "Exemple : Lorem ipsum <span %s>lien supprim&eacute;</span>, dolor sit amet."
186
 
187
- #: core/core.php:792
188
  msgid "Stop search engines from following broken links"
189
  msgstr ""
190
  "Arr&ecirc;tter la v&eacute;rification pour les liens cass&eacute;s suivants"
191
 
192
- #: core/core.php:809
 
 
 
 
 
 
 
 
 
193
  msgid "Look for links in"
194
  msgstr "Rechercher des liens dans"
195
 
196
- #: core/core.php:820
197
  msgid "Post statuses"
198
  msgstr "&Eacute;tats de l'article"
199
 
200
- #: core/core.php:853
201
  msgid "Link types"
202
  msgstr "Type du lien"
203
 
204
- #: core/core.php:859
205
  msgid "Error : All link parsers missing!"
206
  msgstr "Erreur: Tous les analyseurs de liens sont absents!"
207
 
208
- #: core/core.php:866
209
  msgid "Exclusion list"
210
  msgstr "Liste des exclusions&nbsp;:"
211
 
212
- #: core/core.php:867
213
  msgid ""
214
  "Don't check links where the URL contains any of these words (one per line) :"
215
  msgstr ""
216
  "Ne pas v&eacute;rifier les liens dont l'URL contient n'importe lequel de ces "
217
  "mots (un par ligne)&nbsp;:"
218
 
219
- #: core/core.php:885
220
  msgid "Check links using"
221
  msgstr "V&eacute;rifier les liens en utilisant"
222
 
223
- #: core/core.php:904 includes/links.php:856
224
  msgid "Timeout"
225
  msgstr "Timeout&nbsp;:"
226
 
227
- #: core/core.php:910 core/core.php:979 core/core.php:2823
228
  #, php-format
229
  msgid "%s seconds"
230
  msgstr "%s secondes"
231
 
232
- #: core/core.php:919
233
  msgid "Links that take longer than this to load will be marked as broken."
234
  msgstr ""
235
  "Les liens qui prennent plus de temps que cela à se charger seront "
236
  "marqu&eacute;s comme cass&eacute;s."
237
 
238
- #: core/core.php:926
239
  msgid "Link monitor"
240
  msgstr "Surveillance des liens"
241
 
242
- #: core/core.php:934
243
  msgid "Run continuously while the Dashboard is open"
244
  msgstr ""
245
  "V&eacute;rifier en continu tant que le tableau de bord est utlis&eacute;"
246
 
247
- #: core/core.php:942
248
  msgid "Run hourly in the background"
249
  msgstr "V&eacute;rifier toutes les heures en tache de fond"
250
 
251
- #: core/core.php:950
252
  msgid "Show the dashboard widget for"
253
  msgstr "Afficher le widget sur le tableau de bord pour"
254
 
255
- #: core/core.php:955
256
  msgctxt "dashboard widget visibility"
257
  msgid "Administrator"
258
  msgstr "Administrateur"
259
 
260
- #: core/core.php:956
261
  msgctxt "dashboard widget visibility"
262
  msgid "Editor and above"
263
  msgstr "Editeur et plus"
264
 
265
- #: core/core.php:957
266
  msgctxt "dashboard widget visibility"
267
  msgid "Nobody (disables the widget)"
268
  msgstr "Personne (désactivé le widget)"
269
 
270
- #: core/core.php:973
271
  msgid "Max. execution time"
272
  msgstr "Temps d'ex&eacute;cution maximal&nbsp;:"
273
 
274
- #: core/core.php:990
275
  msgid ""
276
  "The plugin works by periodically launching a background job that parses your "
277
  "posts for links, checks the discovered URLs, and performs other time-"
@@ -284,16 +295,16 @@ msgstr ""
284
  "consommatrices de temps. Vous pouvez sp&eacute;cifier ici le temps maximal "
285
  "o&ugrave; le processus peut s'ex&eacute;cuter avant de s'arr&ecirc;ter."
286
 
287
- #: core/core.php:999
288
  msgid "Server load limit"
289
  msgstr "Taux de charge du serveur"
290
 
291
- #: core/core.php:1014
292
  #, php-format
293
  msgid "Current load : %s"
294
  msgstr "Charge courante : %s"
295
 
296
- #: core/core.php:1020
297
  #, php-format
298
  msgid ""
299
  "Link checking will be suspended if the average <a href=\"%s\">server load</"
@@ -303,11 +314,11 @@ msgstr ""
303
  "moyenne du serveur </a> d&eacute;passe ce taux. Laisser vide pour ne pas "
304
  "positionner de limite de charge."
305
 
306
- #: core/core.php:1028
307
  msgid "Not available"
308
  msgstr "Pas disponible"
309
 
310
- #: core/core.php:1030
311
  msgid ""
312
  "Load limiting only works on Linux-like systems where <code>/proc/loadavg</"
313
  "code> is present and accessible."
@@ -316,15 +327,15 @@ msgstr ""
316
  "type Linux o&ugrave; <code>/proc/loadavg</code> est pr&eacute;sent et "
317
  "autoris&eacute;."
318
 
319
- #: core/core.php:1038
320
  msgid "Forced recheck"
321
  msgstr "Forcer une rev&eacute;rification"
322
 
323
- #: core/core.php:1041
324
  msgid "Re-check all pages"
325
  msgstr "Rev&eacute;rifier toutes les pages"
326
 
327
- #: core/core.php:1045
328
  msgid ""
329
  "The \"Nuclear Option\". Click this button to make the plugin empty its link "
330
  "database and recheck the entire site from scratch."
@@ -332,93 +343,97 @@ msgstr ""
332
  "L'option nucl&eacute;aire. Appuyer sur ce bouton pour que le plugin vide sa "
333
  "base de liens et rev&eacute;rifie tout le site depuis le d&eacute;but."
334
 
335
- #: core/core.php:1056
336
  msgid "Save Changes"
337
  msgstr "Enregistrer les modifications"
338
 
339
- #: core/core.php:1107
340
  msgid "Configure"
341
  msgstr "Configurer"
342
 
343
- #: core/core.php:1189
344
- msgid "Check URLs entered in these custom fields (one per line) :"
 
 
 
345
  msgstr ""
346
- "V&eacute;rifier les URL saisies dans les champs personnalis&eacute;s (un par "
347
- "ligne)&nbsp;:"
 
348
 
349
- #: core/core.php:1317 core/core.php:1399 core/core.php:1431
350
  #, php-format
351
  msgid "Database error : %s"
352
  msgstr "Erreur de base de donn&eacute;es&nbsp;: %s"
353
 
354
- #: core/core.php:1381
355
  msgid "You must enter a filter name!"
356
  msgstr "Vous devez donner un nom au filtre!"
357
 
358
- #: core/core.php:1385
359
  msgid "Invalid search query."
360
  msgstr "Requ&ecirc;te incorrecte."
361
 
362
- #: core/core.php:1394
363
  #, php-format
364
  msgid "Filter \"%s\" created"
365
  msgstr "Filtre \"%s\" cr&eacute;&eacute;"
366
 
367
- #: core/core.php:1421
368
  msgid "Filter ID not specified."
369
  msgstr "ID du flitre non sp&eacute;cifi&eacute;."
370
 
371
- #: core/core.php:1428
372
  msgid "Filter deleted"
373
  msgstr "Filtre supprim&eacute;"
374
 
375
- #: core/core.php:1476
376
  #, php-format
377
  msgid "Replaced %d redirect with a direct link"
378
  msgid_plural "Replaced %d redirects with direct links"
379
  msgstr[0] "Remplacement de la redirection %d par un lien direct"
380
  msgstr[1] "Remplacement des redirections %d par des liens directs"
381
 
382
- #: core/core.php:1487
383
  #, php-format
384
  msgid "Failed to fix %d redirect"
385
  msgid_plural "Failed to fix %d redirects"
386
  msgstr[0] "Impossible de r&eacute;parer la redirection %d"
387
  msgstr[1] "Impossible de r&eacute;parer les redirections %d"
388
 
389
- #: core/core.php:1497
390
  msgid "None of the selected links are redirects!"
391
  msgstr "Aucun des liens s&eacute;lectionn&eacute; ne sont des redirections!"
392
 
393
- #: core/core.php:1576
394
  #, php-format
395
  msgid "%d link updated."
396
  msgid_plural "%d links updated."
397
  msgstr[0] "Le lien %d a &eacute;t&eacute; mis &agrave; jour."
398
  msgstr[1] "Les liens %d ont &eacute;t&eacute; mis &agrave; jour."
399
 
400
- #: core/core.php:1587
401
  #, php-format
402
  msgid "Failed to update %d link."
403
  msgid_plural "Failed to update %d links."
404
  msgstr[0] "Impossible de mettre &agrave; jour le lien %d."
405
  msgstr[1] "Impossible de mettre &agrave; jour les liens %d."
406
 
407
- #: core/core.php:1641
408
  #, php-format
409
  msgid "%d link removed"
410
  msgid_plural "%d links removed"
411
  msgstr[0] "Le lien %d a &eacute;t&eacute; supprim&eacute;"
412
  msgstr[1] "Les liens %d ont &eacute;t&eacute; supprim&eacute;s"
413
 
414
- #: core/core.php:1652
415
  #, php-format
416
  msgid "Failed to remove %d link"
417
  msgid_plural "Failed to remove %d links"
418
  msgstr[0] "Impossible de supprimer le lien %d"
419
  msgstr[1] "Impossible de supprimer les liens %d"
420
 
421
- #: core/core.php:1761
422
  #, php-format
423
  msgid ""
424
  "%d item was skipped because it can't be moved to the Trash. You need to "
@@ -433,27 +448,27 @@ msgstr[1] ""
433
  "%d liens ont &eacute;t&eacute; ignor&eacute;s parcequ'ils ne peuvent pas "
434
  "&ecirc;tre mis dans la poubelle. Vous devez les supprimer manuellement."
435
 
436
- #: core/core.php:1782
437
  msgid "Didn't find anything to delete!"
438
  msgstr "Aucune suppression à faire!"
439
 
440
- #: core/core.php:1811
441
  #, php-format
442
  msgid "%d link scheduled for rechecking"
443
  msgid_plural "%d links scheduled for rechecking"
444
  msgstr[0] "%d lien est programm&eacute; pour un nouveau contr&ocirc;le."
445
  msgstr[1] "%d liens sont programm&eacute;s pour un nouveau contr&ocirc;le."
446
 
447
- #: core/core.php:1856 core/core.php:2465
448
  msgid "This link was manually marked as working by the user."
449
  msgstr "Ce lien a été manuellement marqué comme valide par l'utilisateur."
450
 
451
- #: core/core.php:1863
452
  #, php-format
453
  msgid "Couldn't modify link %d"
454
  msgstr "Impossible de modifier le lien %d"
455
 
456
- #: core/core.php:1874
457
  #, php-format
458
  msgid "%d link marked as not broken"
459
  msgid_plural "%d links marked as not broken"
@@ -462,192 +477,196 @@ msgstr[0] ""
462
  msgstr[1] ""
463
  "Les liens %d ont &eacute;t&eacute; marqu&eacute;s comme non cass&eacute;."
464
 
465
- #: core/core.php:1913
466
  msgid "Table columns"
467
  msgstr "Colonnes du tableau"
468
 
469
- #: core/core.php:1932
470
  msgid "Show on screen"
471
  msgstr "Voir &agrave; l'&eacute;cran"
472
 
473
- #: core/core.php:1939
474
  msgid "links"
475
  msgstr "liens"
476
 
477
- #: core/core.php:1940 includes/admin/table-printer.php:165
478
  msgid "Apply"
479
  msgstr "Appliquer"
480
 
481
- #: core/core.php:1944
482
  msgid "Misc"
483
  msgstr "Divers"
484
 
485
- #: core/core.php:1959
486
  #, php-format
487
  msgid "Highlight links broken for at least %s days"
488
  msgstr ""
489
  "Mettre en surbrillance les liens qui sont cass&eacute;s depuis au moins %s "
490
  "jours"
491
 
492
- #: core/core.php:1968
493
  msgid "Color-code status codes"
494
  msgstr "Code de couleur pour les &eacute;tats"
495
 
496
- #: core/core.php:1985 core/core.php:2450 core/core.php:2490 core/core.php:2523
497
- #: core/core.php:2586
498
  msgid "You're not allowed to do that!"
499
  msgstr "Vous n'êtes pas autorisé à faire cela !"
500
 
501
- #: core/core.php:2320
502
  msgid "View broken links"
503
  msgstr "Voir les liens cass&eacute;s"
504
 
505
- #: core/core.php:2321
506
  #, php-format
507
  msgid "Found %d broken link"
508
  msgid_plural "Found %d broken links"
509
  msgstr[0] "%d lien cass&eacute; trouv&eacute;"
510
  msgstr[1] "%d liens cass&eacute;s trouv&eacute;s"
511
 
512
- #: core/core.php:2327
513
  msgid "No broken links found."
514
  msgstr "Aucun lien cass&eacute; trouv&eacute;"
515
 
516
- #: core/core.php:2334
517
  #, php-format
518
  msgid "%d URL in the work queue"
519
  msgid_plural "%d URLs in the work queue"
520
  msgstr[0] "%d URL dans la file d'attente"
521
  msgstr[1] "%d URLs dans la file d'attente"
522
 
523
- #: core/core.php:2337
524
  msgid "No URLs in the work queue."
525
  msgstr "Aucune URL dans la file d'attente."
526
 
527
- #: core/core.php:2353
528
  #, php-format
529
  msgid "Detected %1$s in %2$s and still searching..."
530
  msgstr "Trouver %1$s dans %2$s et continue la recherche..."
531
 
532
- #: core/core.php:2359
533
  #, php-format
534
  msgid "Detected %1$s in %2$s."
535
  msgstr "Trouver %1$s dans %2$s."
536
 
537
- #: core/core.php:2366
538
  msgid "Searching your blog for links..."
539
  msgstr "Recherche des liens de votre blog..."
540
 
541
- #: core/core.php:2368
542
  msgid "No links detected."
543
  msgstr "Aucun lien détecté."
544
 
545
- #: core/core.php:2394
546
  msgctxt "current load"
547
  msgid "Unknown"
548
  msgstr "Inconnu"
549
 
550
- #: core/core.php:2458 core/core.php:2498 core/core.php:2533 core/core.php:2596
551
  #, php-format
552
  msgid "Oops, I can't find the link %d"
553
  msgstr "Oups, je ne trouve pas le lien %d"
554
 
555
- #: core/core.php:2471 core/core.php:2508
556
  msgid "Oops, couldn't modify the link!"
557
  msgstr "Oups, ne peut pas modifier ce lien !"
558
 
559
- #: core/core.php:2474 core/core.php:2511 core/core.php:2622
560
  msgid "Error : link_id not specified"
561
  msgstr "Erreur : link_id non spécifié"
562
 
563
- #: core/core.php:2543
 
 
 
 
564
  msgid "Oops, the new URL is invalid!"
565
  msgstr "Oups, la nouvelle URL est invalide !"
566
 
567
- #: core/core.php:2554 core/core.php:2605
568
- msgid "An unexpected error occured!"
569
  msgstr "Une erreur inattendue a eu lieu !"
570
 
571
- #: core/core.php:2572
572
- msgid "Error : link_id or new_url not specified"
573
- msgstr "Erreur : link_id ou new_url non spécifié !"
574
 
575
- #: core/core.php:2631
576
  msgid "You don't have sufficient privileges to access this information!"
577
  msgstr "Vous n'avez pas assez de droit pour obtenir cette information !"
578
 
579
- #: core/core.php:2644
580
  msgid "Error : link ID not specified"
581
  msgstr "Erreur : link ID non spécifié"
582
 
583
- #: core/core.php:2658
584
  #, php-format
585
  msgid "Failed to load link details (%s)"
586
  msgstr "Echec pour charger les détails (%s)"
587
 
588
- #: core/core.php:2712
589
  msgid "Broken Link Checker"
590
  msgstr "Broken Link Checker"
591
 
592
- #: core/core.php:2732
593
  msgid "PHP version"
594
  msgstr "Version PHP"
595
 
596
- #: core/core.php:2738
597
  msgid "MySQL version"
598
  msgstr "Version MySQL"
599
 
600
- #: core/core.php:2751
601
  msgid ""
602
  "You have an old version of CURL. Redirect detection may not work properly."
603
  msgstr ""
604
  "Vous avez une vieille version de cURL. Les détections des redirections "
605
  "pourraient ne pas fonctionner correctement."
606
 
607
- #: core/core.php:2763 core/core.php:2779 core/core.php:2784
608
  msgid "Not installed"
609
  msgstr "Pas installé"
610
 
611
- #: core/core.php:2766
612
  msgid "CURL version"
613
  msgstr "Version cURL"
614
 
615
- #: core/core.php:2772
616
  msgid "Installed"
617
  msgstr "Installé"
618
 
619
- #: core/core.php:2785
620
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
621
  msgstr ""
622
  "Vous devez avoir soit cURL, soit Snoopy d'installé pour que l'extension "
623
  "fonctionne !"
624
 
625
- #: core/core.php:2796
626
  msgid "On"
627
  msgstr "Activé"
628
 
629
- #: core/core.php:2797
630
  msgid "Redirects may be detected as broken links when safe_mode is on."
631
  msgstr ""
632
  "Les redirections peuvent être détectées comme des liens cassés quand le "
633
  "safe_mode est activé."
634
 
635
- #: core/core.php:2802 core/core.php:2816
636
  msgid "Off"
637
  msgstr "Désactivé"
638
 
639
- #: core/core.php:2810
640
  #, php-format
641
  msgid "On ( %s )"
642
  msgstr "Activé ( %s )"
643
 
644
- #: core/core.php:2811
645
  msgid "Redirects may be detected as broken links when open_basedir is on."
646
  msgstr ""
647
  "Les redirections peuvent être détectées comme des liens cassés quand "
648
  "open_basedir est activé."
649
 
650
- #: core/core.php:2840
651
  msgid ""
652
  "If this value is zero even after several page reloads you have probably "
653
  "encountered a bug."
@@ -655,12 +674,12 @@ msgstr ""
655
  "Si cette valeur est &agrave; z&eacute;ro m&ecirc;me apr&egrave;s plusieurs "
656
  "rechargement vous avez probablement rencontr&eacute; un bogue."
657
 
658
- #: core/core.php:2935 core/core.php:3033
659
  #, php-format
660
  msgid "[%s] Broken links detected"
661
  msgstr "[%s] liens cass&eacute;s trouv&eacute;s"
662
 
663
- #: core/core.php:2941
664
  #, php-format
665
  msgid "Broken Link Checker has detected %d new broken link on your site."
666
  msgid_plural ""
@@ -672,37 +691,37 @@ msgstr[1] ""
672
  "Broken Link Checker a trouv&eacute; %d nouveaux liens cass&eacute;s dans "
673
  "votre site."
674
 
675
- #: core/core.php:2964
676
  #, php-format
677
  msgid "Here's a list of the first %d broken links:"
678
  msgid_plural "Here's a list of the first %d broken links:"
679
  msgstr[0] "Ici se trouve une liste du %d nouveau lien cass&eacute;:"
680
  msgstr[1] "Ici se trouve une liste des %d nouveaux liens cass&eacute;s:"
681
 
682
- #: core/core.php:2972
683
  msgid "Here's a list of the new broken links: "
684
  msgstr "Ici se trouve une liste des nouveaux liens cass&eacute;s:"
685
 
686
- #: core/core.php:2981
687
  #, php-format
688
  msgid "Link text : %s"
689
  msgstr "Texte du lien : %s"
690
 
691
- #: core/core.php:2982
692
  #, php-format
693
  msgid "Link URL : <a href=\"%s\">%s</a>"
694
  msgstr "URL : <a href=\"%s\">%s</a>"
695
 
696
- #: core/core.php:2983
697
  #, php-format
698
  msgid "Source : %s"
699
  msgstr "Source : %s"
700
 
701
- #: core/core.php:2996
702
  msgid "You can see all broken links here:"
703
  msgstr "Vous pouvez voir tous les liens cass&eacute;s ici:"
704
 
705
- #: core/core.php:3039
706
  #, php-format
707
  msgid "Broken Link Checker has detected %d new broken link in your posts."
708
  msgid_plural ""
@@ -714,15 +733,15 @@ msgstr[1] ""
714
  "Broken Link Checker a trouv&eacute; %d nouveaux liens cass&eacute;s dans vos "
715
  "articles."
716
 
717
- #: core/init.php:240
718
  msgid "Once Weekly"
719
  msgstr "Une fois par semaine"
720
 
721
- #: core/init.php:246
722
  msgid "Twice a Month"
723
  msgstr "Deux fois par mois"
724
 
725
- #: core/init.php:322
726
  msgid ""
727
  "Broken Link Checker installation failed. Try deactivating and then "
728
  "reactivating the plugin."
@@ -731,24 +750,24 @@ msgstr ""
731
  "d&eacute;sactiver puis de r&eacute;activer le plugin."
732
 
733
  #: includes/any-post.php:397 modules/containers/blogroll.php:46
734
- #: modules/containers/comment.php:153 modules/containers/custom_field.php:197
735
  msgid "Edit"
736
  msgstr "&Eacute;diter"
737
 
738
- #: includes/any-post.php:405 modules/containers/custom_field.php:203
739
  msgid "Move this item to the Trash"
740
  msgstr "D&eacute;placer cet objet dans la poubelle"
741
 
742
- #: includes/any-post.php:407 modules/containers/custom_field.php:205
743
  msgid "Trash"
744
  msgstr "Poubelle"
745
 
746
- #: includes/any-post.php:412 modules/containers/custom_field.php:210
747
  msgid "Delete this item permanently"
748
  msgstr "Supprimer cet objet de mani&egrave;re permanente"
749
 
750
  #: includes/any-post.php:414 modules/containers/blogroll.php:47
751
- #: modules/containers/custom_field.php:212
752
  msgid "Delete"
753
  msgstr "Supprimer"
754
 
@@ -767,11 +786,11 @@ msgid "View &#8220;%s&#8221;"
767
  msgstr "Voir &#8220;%s&#8221;"
768
 
769
  #: includes/any-post.php:436 modules/containers/comment.php:166
770
- #: modules/containers/custom_field.php:217
771
  msgid "View"
772
  msgstr "Afficher"
773
 
774
- #: includes/any-post.php:455 modules/containers/custom_field.php:197
775
  msgid "Edit this item"
776
  msgstr "Modifier cet objet"
777
 
@@ -785,12 +804,12 @@ msgstr "Rien &agrave; mettre &agrave; jour"
785
  msgid "Updating post %d failed"
786
  msgstr "La mise &agrave jour de l'article %d a &eacute;chou&eacute;"
787
 
788
- #: includes/any-post.php:566 modules/containers/custom_field.php:284
789
  #, php-format
790
  msgid "Failed to delete post \"%s\" (%d)"
791
  msgstr "&Eacute;chec de la suppression de l'article \"%s\" (%d)"
792
 
793
- #: includes/any-post.php:585 modules/containers/custom_field.php:303
794
  #, php-format
795
  msgid ""
796
  "Can't move post \"%s\" (%d) to the trash because the trash feature is "
@@ -799,7 +818,7 @@ msgstr ""
799
  "Impossible de mettre l'article \"%s\" (%d) &agrave; la poubelle car la "
800
  "fonction 'poubelle' n'est pas active"
801
 
802
- #: includes/any-post.php:605 modules/containers/custom_field.php:322
803
  #, php-format
804
  msgid "Failed to move post \"%s\" (%d) to the trash"
805
  msgstr "Echec du d&eacute;placement de l'article \"%s\" (%d) dans la poubelle"
@@ -853,7 +872,7 @@ msgid_plural "%d '%s' have been deleted"
853
  msgstr[0] "%d '%s' a &eacute;t&eacute; supprim&eacute;"
854
  msgstr[1] "%d '%s' a &eacute;t&eacute; supprim&eacute;s"
855
 
856
- #: includes/containers.php:873 includes/containers.php:891
857
  #, php-format
858
  msgid "Container type '%s' not recognized"
859
  msgstr "Le type de contenu '%s' n'est pas reconnu"
@@ -968,12 +987,12 @@ msgctxt "module name"
968
  msgid "Pages"
969
  msgstr "Pages"
970
 
971
- #: includes/instances.php:104 includes/instances.php:160
972
  #, php-format
973
  msgid "Container %s[%d] not found"
974
  msgstr "Contenu %s[%d] non trouv&eacute;"
975
 
976
- #: includes/instances.php:113 includes/instances.php:169
977
  #, php-format
978
  msgid "Parser '%s' not found."
979
  msgstr "Parser '%s' non trouv&eacute;."
@@ -1022,7 +1041,7 @@ msgstr "Liens d&eacute;tect&eacute;s"
1022
  msgid "No links found (yet)"
1023
  msgstr "(Encore) aucun lien trouv&eacute;"
1024
 
1025
- #: includes/link-query.php:65
1026
  msgid "Search"
1027
  msgstr "Rechercher"
1028
 
@@ -1052,52 +1071,52 @@ msgstr "Le lien est valide."
1052
  msgid "Link is broken."
1053
  msgstr "Le lien est cassé."
1054
 
1055
- #: includes/links.php:571 includes/links.php:673 includes/links.php:700
1056
  msgid "Link is not valid"
1057
  msgstr "Lien non valide"
1058
 
1059
- #: includes/links.php:588
1060
  msgid ""
1061
  "This link can not be edited because it is not used anywhere on this site."
1062
  msgstr ""
1063
  "Ce lien ne peut pas &ecirc;tre modif&eacute; car il n'est plus utlis&eacute; "
1064
  "dans tous le site."
1065
 
1066
- #: includes/links.php:614
1067
  msgid "Failed to create a DB entry for the new URL."
1068
  msgstr ""
1069
  "Impossible de cr&eacute;er un enregistrement dans la base de donn&eacute;es "
1070
  "pour la nouvelle URL."
1071
 
1072
- #: includes/links.php:680
1073
  msgid "This link is not a redirect"
1074
  msgstr "Ce lien n'est pas une redirection"
1075
 
1076
- #: includes/links.php:727 includes/links.php:764
1077
  msgid "Couldn't delete the link's database record"
1078
  msgstr ""
1079
  "Impossible de supprimer l'enregistrement pour la lien dans la base de "
1080
  "donn&eacute;es"
1081
 
1082
- #: includes/links.php:838
1083
  msgctxt "link status"
1084
  msgid "Unknown"
1085
  msgstr "Erreur inconnue"
1086
 
1087
- #: includes/links.php:852 modules/checkers/http.php:263
1088
  #: modules/extras/mediafire.php:101
1089
  msgid "Unknown Error"
1090
  msgstr "Erreur inconnue"
1091
 
1092
- #: includes/links.php:876
1093
  msgid "Not checked"
1094
  msgstr "Pas v&eacute;rifi&eacute;"
1095
 
1096
- #: includes/links.php:879
1097
  msgid "False positive"
1098
  msgstr "Faux positif"
1099
 
1100
- #: includes/links.php:882 modules/extras/fileserve.php:121
1101
  #: modules/extras/megaupload.php:115 modules/extras/rapidshare.php:145
1102
  #: modules/extras/rapidshare.php:151 modules/extras/rapidshare.php:178
1103
  msgctxt "link status"
@@ -1191,22 +1210,48 @@ msgstr ""
1191
  "Impossible de supprimer les vieilles tables dans la base de donn&eacute;es. "
1192
  "Erreur : %s"
1193
 
1194
- #: includes/admin/links-page-js.php:55 includes/admin/links-page-js.php:403
1195
  msgid "Wait..."
1196
  msgstr "Attendez..."
1197
 
1198
- #: includes/admin/links-page-js.php:100 includes/admin/table-printer.php:630
1199
  msgid "Not broken"
1200
  msgstr "Pas cass&eacute;"
1201
 
1202
- #: includes/admin/links-page-js.php:315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1203
  #, php-format
1204
  msgid "%d instances of the link were successfully modified."
1205
  msgstr ""
1206
  "%d occurences du lien ont &eacute;t&eacute; modifi&eacute;es avec "
1207
  "succ&egrave;."
1208
 
1209
- #: includes/admin/links-page-js.php:321
1210
  #, php-format
1211
  msgid ""
1212
  "However, %d instances couldn't be edited and still point to the old URL."
@@ -1214,40 +1259,48 @@ msgstr ""
1214
  "Cependant, %d occurences n'ont pas &eacute;t&eacute; mises &agrave; jour et "
1215
  "pointent vers l'ancienne URL."
1216
 
1217
- #: includes/admin/links-page-js.php:327
1218
  msgid "The link could not be modified."
1219
  msgstr "Le lien ne peut pas &ecirc;tre modifi&eacute;."
1220
 
1221
- #: includes/admin/links-page-js.php:330 includes/admin/links-page-js.php:455
1222
- msgid "The following error(s) occured :"
1223
  msgstr "L'erreur suivante est survenue :"
1224
 
1225
- #: includes/admin/links-page-js.php:441
 
 
 
 
1226
  #, php-format
1227
  msgid "%d instances of the link were successfully unlinked."
1228
  msgstr ""
1229
  "%d occurences du lien ont &eacute;t&eacute; d&eacute;faites avec succ&egrave;"
1230
  "s"
1231
 
1232
- #: includes/admin/links-page-js.php:447
1233
  #, php-format
1234
  msgid "However, %d instances couldn't be removed."
1235
  msgstr "Cependant, %d occurences ne peuvent pas &ecirc;tre supprim&eacute;es."
1236
 
1237
- #: includes/admin/links-page-js.php:452
1238
  msgid "The plugin failed to remove the link."
1239
  msgstr "L'extension n'a pas pu supprimer ce lien."
1240
 
1241
- #: includes/admin/links-page-js.php:463 includes/admin/table-printer.php:273
1242
- #: includes/admin/table-printer.php:624
 
 
 
 
1243
  msgid "Unlink"
1244
  msgstr "D&eacute;lier"
1245
 
1246
- #: includes/admin/links-page-js.php:507
1247
  msgid "Enter a name for the new custom filter"
1248
  msgstr "Donner un nom pour le nouveau filtre de recherche"
1249
 
1250
- #: includes/admin/links-page-js.php:518
1251
  msgid ""
1252
  "You are about to delete the current filter.\n"
1253
  "'Cancel' to stop, 'OK' to delete"
@@ -1255,7 +1308,7 @@ msgstr ""
1255
  "Vous &ecirc;tes sur le point de supprimer le filtre courant.\n"
1256
  "'Annuler' pour le conserver, 'OK' pour le supprimer."
1257
 
1258
- #: includes/admin/links-page-js.php:538
1259
  msgid ""
1260
  "Are you sure you want to delete all posts, bookmarks or other items that "
1261
  "contain any of the selected links? This action can't be undone.\n"
@@ -1266,7 +1319,7 @@ msgstr ""
1266
  "lectionn&eacute;s? Cette action ne pourra pas &ecirc;tre annul&eacute;e.\n"
1267
  "'Annuler' pour le conserver, 'OK' pour le supprimer."
1268
 
1269
- #: includes/admin/links-page-js.php:548
1270
  msgid ""
1271
  "Are you sure you want to remove the selected links? This action can't be "
1272
  "undone.\n"
@@ -1276,11 +1329,11 @@ msgstr ""
1276
  "lectionn&eacute;s? Cette action ne pourra pas &ecirc;tes annul&eacute;e.\n"
1277
  "'Annuler' pour les conserver, 'OK' pour les supprimer."
1278
 
1279
- #: includes/admin/links-page-js.php:657
1280
  msgid "Enter a search string first."
1281
  msgstr "Donner d'abord une cha&icirc;ne de recherche."
1282
 
1283
- #: includes/admin/links-page-js.php:664
1284
  msgid "Select one or more links to edit."
1285
  msgstr "S&eacute;lectionner un ou plusieurs liens &agrave; &eacute;diter"
1286
 
@@ -1288,15 +1341,23 @@ msgstr "S&eacute;lectionner un ou plusieurs liens &agrave; &eacute;diter"
1288
  msgid "Hide debug info"
1289
  msgstr "Cacher les informations de débogage"
1290
 
 
 
 
 
 
 
 
 
1291
  #: includes/admin/search-form.php:42
1292
  msgid "Link text"
1293
  msgstr "Texte du lien"
1294
 
1295
- #: includes/admin/search-form.php:45 includes/admin/table-printer.php:202
1296
  msgid "URL"
1297
  msgstr "URL"
1298
 
1299
- #: includes/admin/search-form.php:48 includes/admin/table-printer.php:491
1300
  msgid "HTTP code"
1301
  msgstr "Code HTTP"
1302
 
@@ -1316,6 +1377,15 @@ msgstr "Tous"
1316
  msgid "Links used in"
1317
  msgstr "Liens utilis&eacute;s dans"
1318
 
 
 
 
 
 
 
 
 
 
1319
  #: includes/admin/sidebar.php:24
1320
  msgid "More plugins by Janis Elsts"
1321
  msgstr "Plus de plugins par Janis Elsts"
@@ -1336,201 +1406,216 @@ msgstr ""
1336
  msgid "Return to WordPress Dashboard"
1337
  msgstr "Revenir au tableau de bord WordPress"
1338
 
1339
- #: includes/admin/table-printer.php:179
1340
  msgid "Compact View"
1341
  msgstr "Vue comptacte"
1342
 
1343
- #: includes/admin/table-printer.php:180
1344
  msgid "Detailed View"
1345
  msgstr "D&eacute;tails"
1346
 
1347
- #: includes/admin/table-printer.php:209
1348
  msgid "Source"
1349
  msgstr "Source"
1350
 
1351
- #: includes/admin/table-printer.php:215
1352
  msgid "Link Text"
1353
  msgstr "Texte du lien"
1354
 
1355
- #: includes/admin/table-printer.php:220
1356
  msgid "Redirect URL"
1357
  msgstr "Redirections"
1358
 
1359
- #: includes/admin/table-printer.php:268
1360
  msgid "Bulk Actions"
1361
  msgstr "Actions en masse"
1362
 
1363
- #: includes/admin/table-printer.php:269 includes/admin/table-printer.php:621
1364
  msgid "Edit URL"
1365
  msgstr "&Eacute;diter l'URL"
1366
 
1367
- #: includes/admin/table-printer.php:270
1368
  msgid "Recheck"
1369
  msgstr "Rev&eacute;rifier"
1370
 
1371
- #: includes/admin/table-printer.php:271
1372
  msgid "Fix redirects"
1373
  msgstr "R&eacute;parer les redirections"
1374
 
1375
- #: includes/admin/table-printer.php:272
1376
  msgid "Mark as not broken"
1377
  msgstr "Marquer comme non cass&eacute;."
1378
 
1379
- #: includes/admin/table-printer.php:276
1380
  msgid "Move sources to Trash"
1381
  msgstr "D&eacute;placer les sources dans la poubelle"
1382
 
1383
- #: includes/admin/table-printer.php:278
1384
  msgid "Delete sources"
1385
  msgstr "Supprimer ces sources"
1386
 
1387
- #: includes/admin/table-printer.php:293
1388
  msgid "&laquo;"
1389
  msgstr "&laquo;"
1390
 
1391
- #: includes/admin/table-printer.php:294
1392
  msgid "&raquo;"
1393
  msgstr "&raquo;"
1394
 
1395
- #: includes/admin/table-printer.php:302
1396
  #, php-format
1397
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1398
  msgstr "Affichage %s&#8211;%s sur <span class=\"current-link-count\">%s</span>"
1399
 
1400
- #: includes/admin/table-printer.php:325
1401
  msgid "Bulk Edit URLs"
1402
  msgstr "Modifier les URL en masse"
1403
 
1404
- #: includes/admin/table-printer.php:327
1405
  msgid "Find"
1406
  msgstr "Trouver"
1407
 
1408
- #: includes/admin/table-printer.php:331
1409
  msgid "Replace with"
1410
  msgstr "Remplacer par"
1411
 
1412
- #: includes/admin/table-printer.php:339
1413
  msgid "Case sensitive"
1414
  msgstr "Respecter la case"
1415
 
1416
- #: includes/admin/table-printer.php:343
1417
  msgid "Regular expression"
1418
  msgstr "Expression r&eacute;guli&egrave;re"
1419
 
1420
- #: includes/admin/table-printer.php:349 includes/admin/table-printer.php:652
1421
- #: includes/admin/table-printer.php:658
1422
- msgid "Cancel"
1423
- msgstr "Annuler"
1424
-
1425
- #: includes/admin/table-printer.php:351
1426
  msgid "Update"
1427
  msgstr "Modifier"
1428
 
1429
- #: includes/admin/table-printer.php:476
1430
  msgid "Post published on"
1431
  msgstr "Article publi&eacute; le"
1432
 
1433
- #: includes/admin/table-printer.php:481
1434
  msgid "Link last checked"
1435
  msgstr "Derni&egrave;re v&eacute;rification"
1436
 
1437
- #: includes/admin/table-printer.php:485
1438
  msgid "Never"
1439
  msgstr "Jamais"
1440
 
1441
- #: includes/admin/table-printer.php:496
1442
  msgid "Response time"
1443
  msgstr "Temps de r&eacute;ponse"
1444
 
1445
- #: includes/admin/table-printer.php:498
1446
  #, php-format
1447
  msgid "%2.3f seconds"
1448
  msgstr "%2.3f secondes"
1449
 
1450
- #: includes/admin/table-printer.php:501
1451
  msgid "Final URL"
1452
  msgstr "URL finale"
1453
 
1454
- #: includes/admin/table-printer.php:506
1455
  msgid "Redirect count"
1456
  msgstr "Nombre de redirections"
1457
 
1458
- #: includes/admin/table-printer.php:511
1459
  msgid "Instance count"
1460
  msgstr "Nombre d'instances"
1461
 
1462
- #: includes/admin/table-printer.php:520
1463
  #, php-format
1464
  msgid "This link has failed %d time."
1465
  msgid_plural "This link has failed %d times."
1466
  msgstr[0] "Ce lien a &eacute;chou&eacute; %d fois."
1467
  msgstr[1] "Ces liens ont &eacute;chou&eacute;s %d fois."
1468
 
1469
- #: includes/admin/table-printer.php:528
1470
  #, php-format
1471
  msgid "This link has been broken for %s."
1472
  msgstr "Le lien est cass&eacute; depuis %s."
1473
 
1474
- #: includes/admin/table-printer.php:539
1475
  msgid "Log"
1476
  msgstr "Journal"
1477
 
1478
- #: includes/admin/table-printer.php:564
1479
  msgid "Show more info about this link"
1480
  msgstr "Afficher plus d'informations concernant ce lien"
1481
 
1482
- #: includes/admin/table-printer.php:582
1483
  msgctxt "checked how long ago"
1484
  msgid "Checked"
1485
  msgstr "V&eacute;rifi&eacute;"
1486
 
1487
- #: includes/admin/table-printer.php:598
1488
  msgid "Broken for"
1489
  msgstr "Cass&eacute;"
1490
 
1491
- #: includes/admin/table-printer.php:621
1492
- msgid "Edit link URL"
1493
- msgstr "&Eacute;diter l'URL du lien"
1494
 
1495
- #: includes/admin/table-printer.php:623
1496
  msgid "Remove this link from all posts"
1497
  msgstr "Supprimer ce lien de tous les articles"
1498
 
1499
- #: includes/admin/table-printer.php:629
1500
  msgid "Remove this link from the list of broken links and mark it as valid"
1501
  msgstr ""
1502
  "Supprimer ce lien de la liste des liens cass&eacute;s et le marquer comme "
1503
  "&eacute;tant valide"
1504
 
1505
- #: includes/admin/table-printer.php:637
1506
  msgid "Hide this link and do not report it again unless its status changes"
1507
  msgstr ""
1508
  "Cacher ce lien et ne plus le mentionner tant que son status ne change pas"
1509
 
1510
- #: includes/admin/table-printer.php:638
1511
  msgid "Dismiss"
1512
  msgstr "Suspendre"
1513
 
1514
- #: includes/admin/table-printer.php:643
1515
  msgid "Undismiss this link"
1516
  msgstr "Reprendre ce lien"
1517
 
1518
- #: includes/admin/table-printer.php:644
1519
  msgid "Undismiss"
1520
  msgstr "Reprendre"
1521
 
1522
- #: includes/admin/table-printer.php:652
1523
- msgid "Cancel URL editing"
1524
- msgstr "Annuler l'&eacute;dition de l'URL"
1525
-
1526
- #: includes/admin/table-printer.php:659
1527
  msgid "Update URL"
1528
  msgstr "Modifier l'URL"
1529
 
1530
- #: includes/admin/table-printer.php:686
1531
  msgid "[An orphaned link! This is a bug.]"
1532
  msgstr "[Lien orphelin ! C'est un bogue.]"
1533
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1534
  #: modules/checkers/http.php:242
1535
  msgid "Server Not Found"
1536
  msgstr "Serveur non trouv&eacute;"
@@ -1609,10 +1694,22 @@ msgstr "Impossible de supprimer le commentaire %d"
1609
  msgid "Can't move comment %d to the trash"
1610
  msgstr "Impossible de d&eacute;placer le commentaire %d dans la poubelle"
1611
 
 
 
 
 
 
 
 
 
1612
  #: modules/containers/comment.php:160
1613
  msgid "Delete Permanently"
1614
  msgstr "Supprimer de mani&egrave;re permanente"
1615
 
 
 
 
 
1616
  #: modules/containers/comment.php:162
1617
  msgctxt "verb"
1618
  msgid "Trash"
@@ -1640,21 +1737,21 @@ msgid_plural "%d comments moved to the Trash."
1640
  msgstr[0] "%d commentaire d&eacute;plac&eacute; dans la poubelle."
1641
  msgstr[1] "%d commentaires d&eacute;plac&eacute;s dans la poubelle."
1642
 
1643
- #: modules/containers/custom_field.php:84
1644
  #, php-format
1645
  msgid "Failed to update the meta field '%s' on %s [%d]"
1646
  msgstr "Impossible de mettre &agrave; jour le champ meta '%s' dans %s [%d]"
1647
 
1648
- #: modules/containers/custom_field.php:110
1649
  #, php-format
1650
  msgid "Failed to delete the meta field '%s' on %s [%d]"
1651
  msgstr "Impossible de suppirmer le champ meta '%s' dans %s [%d]"
1652
 
1653
- #: modules/containers/custom_field.php:187
1654
  msgid "Edit this post"
1655
  msgstr "&Eacute;diter cet article"
1656
 
1657
- #: modules/containers/custom_field.php:217
1658
  #, php-format
1659
  msgid "View \"%s\""
1660
  msgstr "Afficher \"%s\""
@@ -1832,10 +1929,18 @@ msgstr "Playlist vide"
1832
  msgid "Image"
1833
  msgstr "Image"
1834
 
1835
- #: modules/parsers/metadata.php:118
1836
  msgid "Custom field"
1837
  msgstr "Champ personnalis&eacute;"
1838
 
 
 
 
 
 
 
 
 
1839
  #~ msgid ""
1840
  #~ "Error: The plugin's database tables are not up to date! (Current "
1841
  #~ "version : %d, expected : %d)"
@@ -1856,21 +1961,6 @@ msgstr "Champ personnalis&eacute;"
1856
  #~ msgstr[0] "dans le lien %d"
1857
  #~ msgstr[1] "dans les liens %d"
1858
 
1859
- #~ msgid "Save This Search As a Filter"
1860
- #~ msgstr "Enregistrer cette recherche comme un filtre"
1861
-
1862
- #~ msgid "Delete This Filter"
1863
- #~ msgstr "Supprimer ce filtre"
1864
-
1865
- #~ msgid "Search Links"
1866
- #~ msgstr "Liens de recherche"
1867
-
1868
- #~ msgid "Edit comment"
1869
- #~ msgstr "Modifier le commentaire"
1870
-
1871
- #~ msgid "Move this comment to the trash"
1872
- #~ msgstr "D&eacute;placer ce commentaire dans la poubelle"
1873
-
1874
  #~ msgid ""
1875
  #~ "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1876
  #~ msgstr ""
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, "
9
+ "lcapronnier@yahoo.com>\n"
10
  "Language: fr_FR\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=n>1;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;_x:1,2c;"
17
+ "_ngettext_noop:1,2;_n_noop:1,2;esc_html;esc_html__;esc_html_e;esc_attr__;"
18
+ "esc_attr_e\n"
19
  "X-Poedit-Basepath: ../\n"
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
 
27
+ #: core/core.php:177 includes/admin/options-page-js.php:18
28
  msgid "[ Network error ]"
29
  msgstr "[ Erreur r&eacute;seau ]"
30
 
31
+ #: core/core.php:204
32
  msgid "Automatically expand the widget if broken links have been detected"
33
  msgstr ""
34
  "D&eacute;plier automatiquement le widget si des liens cass&eacute;s ont "
35
  "&eacute;t&eacute; d&eacute;tect&eacute;s."
36
 
37
+ #: core/core.php:295
38
  msgid "Link Checker Settings"
39
  msgstr "R&eacute;glages du v&eacute;rificateur de liens"
40
 
41
+ #: core/core.php:296
42
  msgid "Link Checker"
43
  msgstr "V&eacute;rificateur de lien"
44
 
45
+ #: core/core.php:301 includes/link-query.php:27
46
  msgid "Broken Links"
47
  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"
55
  msgstr "Informations en retour"
56
 
57
+ #: core/core.php:340
58
  msgid "Go to Broken Links"
59
  msgstr "Aller aux liens cassés"
60
 
61
+ #: core/core.php:369
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
  "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-"
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
  "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
  "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
  "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 "
358
+ "example, <code>html:field_name</code>."
359
  msgstr ""
360
+ "Saisir les noms des champs personalisés que vous souhaitez tester (un par "
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
  "%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
  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
  "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
  "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
  "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."
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
 
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
 
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
  "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"
872
  msgstr[0] "%d '%s' a &eacute;t&eacute; supprim&eacute;"
873
  msgstr[1] "%d '%s' a &eacute;t&eacute; supprim&eacute;s"
874
 
875
+ #: includes/containers.php:880 includes/containers.php:898
876
  #, php-format
877
  msgid "Container type '%s' not recognized"
878
  msgstr "Le type de contenu '%s' n'est pas reconnu"
987
  msgid "Pages"
988
  msgstr "Pages"
989
 
990
+ #: includes/instances.php:105 includes/instances.php:161
991
  #, php-format
992
  msgid "Container %s[%d] not found"
993
  msgstr "Contenu %s[%d] non trouv&eacute;"
994
 
995
+ #: includes/instances.php:114 includes/instances.php:170
996
  #, php-format
997
  msgid "Parser '%s' not found."
998
  msgstr "Parser '%s' non trouv&eacute;."
1041
  msgid "No links found (yet)"
1042
  msgstr "(Encore) aucun lien trouv&eacute;"
1043
 
1044
+ #: includes/link-query.php:65 includes/admin/search-form.php:32
1045
  msgid "Search"
1046
  msgstr "Rechercher"
1047
 
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
  "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
  "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
  "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
  "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
  "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
 
1341
  msgid "Hide debug info"
1342
  msgstr "Cacher les informations de débogage"
1343
 
1344
+ #: includes/admin/search-form.php:16
1345
+ msgid "Save This Search As a Filter"
1346
+ msgstr "Enregistrer cette recherche comme un filtre"
1347
+
1348
+ #: includes/admin/search-form.php:26
1349
+ msgid "Delete This Filter"
1350
+ msgstr "Supprimer ce filtre"
1351
+
1352
  #: includes/admin/search-form.php:42
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
 
1377
  msgid "Links used in"
1378
  msgstr "Liens utilis&eacute;s dans"
1379
 
1380
+ #: includes/admin/search-form.php:112
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
+
1389
  #: includes/admin/sidebar.php:24
1390
  msgid "More plugins by Janis Elsts"
1391
  msgstr "Plus de plugins par Janis Elsts"
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;"
1694
  msgid "Can't move comment %d to the trash"
1695
  msgstr "Impossible de d&eacute;placer le commentaire %d dans la poubelle"
1696
 
1697
+ #: modules/containers/comment.php:153 modules/containers/comment.php:195
1698
+ msgid "Edit comment"
1699
+ 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"
1707
  msgstr "Supprimer de mani&egrave;re permanente"
1708
 
1709
+ #: modules/containers/comment.php:162
1710
+ msgid "Move this comment to the trash"
1711
+ msgstr "D&eacute;placer ce commentaire dans la poubelle"
1712
+
1713
  #: modules/containers/comment.php:162
1714
  msgctxt "verb"
1715
  msgid "Trash"
1737
  msgstr[0] "%d commentaire d&eacute;plac&eacute; dans la poubelle."
1738
  msgstr[1] "%d commentaires d&eacute;plac&eacute;s dans la poubelle."
1739
 
1740
+ #: modules/containers/custom_field.php:85
1741
  #, php-format
1742
  msgid "Failed to update the meta field '%s' on %s [%d]"
1743
  msgstr "Impossible de mettre &agrave; jour le champ meta '%s' dans %s [%d]"
1744
 
1745
+ #: modules/containers/custom_field.php:115
1746
  #, php-format
1747
  msgid "Failed to delete the meta field '%s' on %s [%d]"
1748
  msgstr "Impossible de suppirmer le champ meta '%s' dans %s [%d]"
1749
 
1750
+ #: modules/containers/custom_field.php:197
1751
  msgid "Edit this post"
1752
  msgstr "&Eacute;diter cet article"
1753
 
1754
+ #: modules/containers/custom_field.php:227
1755
  #, php-format
1756
  msgid "View \"%s\""
1757
  msgstr "Afficher \"%s\""
1929
  msgid "Image"
1930
  msgstr "Image"
1931
 
1932
+ #: modules/parsers/metadata.php:119
1933
  msgid "Custom field"
1934
  msgstr "Champ personnalis&eacute;"
1935
 
1936
+ #~ msgid "Check URLs entered in these custom fields (one per line) :"
1937
+ #~ msgstr ""
1938
+ #~ "V&eacute;rifier les URL saisies dans les champs personnalis&eacute;s (un "
1939
+ #~ "par ligne)&nbsp;:"
1940
+
1941
+ #~ msgid "Cancel URL editing"
1942
+ #~ msgstr "Annuler l'&eacute;dition de l'URL"
1943
+
1944
  #~ msgid ""
1945
  #~ "Error: The plugin's database tables are not up to date! (Current "
1946
  #~ "version : %d, expected : %d)"
1961
  #~ msgstr[0] "dans le lien %d"
1962
  #~ msgstr[1] "dans les liens %d"
1963
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1964
  #~ msgid ""
1965
  #~ "http://w-shadow.com/blog/2007/08/05/broken-link-checker-for-wordpress/"
1966
  #~ msgstr ""
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.8.3\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2013-10-12 08:26:17-0500\n"
7
  "Last-Translator: admin <eitan@caspi.org.il>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -20,446 +20,441 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Textdomain-Support: yes"
22
 
23
- #: core/core.php:151
24
  #: includes/admin/links-page-js.php:37
25
  #@ broken-link-checker
26
  msgid "Loading..."
27
  msgstr "טוען..."
28
 
29
- #: core/core.php:175
30
  #: includes/admin/options-page-js.php:18
31
  #@ broken-link-checker
32
  msgid "[ Network error ]"
33
  msgstr "[ שגיאת רשת ]"
34
 
35
- #: core/core.php:202
36
  #@ broken-link-checker
37
  msgid "Automatically expand the widget if broken links have been detected"
38
  msgstr "הרחב אוטומטית את הוידג'ט אם נמצאו קישורים שבורים"
39
 
40
- #: core/core.php:292
41
  #@ broken-link-checker
42
  msgid "Link Checker Settings"
43
  msgstr "הגדרות בודק הקישורים"
44
 
45
- #: core/core.php:293
46
  #@ broken-link-checker
47
  msgid "Link Checker"
48
  msgstr "בודק הקישורים"
49
 
50
- #: core/core.php:298
51
  #: includes/link-query.php:27
52
  #@ broken-link-checker
53
  msgid "Broken Links"
54
  msgstr "קישורים שבורים"
55
 
56
- #: core/core.php:314
57
  #@ broken-link-checker
58
  msgid "View Broken Links"
59
  msgstr "צפיה בקישורים שבורים"
60
 
61
- #: core/core.php:329
62
  #@ broken-link-checker
63
  msgid "Feedback"
64
  msgstr "משוב"
65
 
66
- #: core/core.php:337
67
  #@ broken-link-checker
68
  msgid "Go to Broken Links"
69
  msgstr "אל הקישורים השבורים"
70
 
71
- #: core/core.php:366
72
  #@ default
73
  msgid "Settings"
74
  msgstr "הגדרות"
75
 
76
- #: core/core.php:533
77
  #@ broken-link-checker
78
  msgid "Settings saved."
79
  msgstr "ההגדרות נשמרו"
80
 
81
- #: core/core.php:539
82
  #@ broken-link-checker
83
  msgid "Thank you for your donation!"
84
  msgstr "תודה לך על תרומתך!"
85
 
86
- #: core/core.php:547
87
  #@ broken-link-checker
88
  msgid "Complete site recheck started."
89
  msgstr "החלה בדיקה חוזרת של האתר."
90
 
91
- #: core/core.php:556
92
  #@ broken-link-checker
93
  msgid "Details"
94
  msgstr "פרטים"
95
 
96
- #: core/core.php:570
97
  #@ broken-link-checker
98
  msgid "General"
99
  msgstr "כללי"
100
 
101
- #: core/core.php:571
102
  #@ broken-link-checker
103
  msgid "Look For Links In"
104
  msgstr "חיפוש קישורים על פי:"
105
 
106
- #: core/core.php:572
107
  #@ broken-link-checker
108
  msgid "Which Links To Check"
109
  msgstr "סוגי קישורים שיבדקו"
110
 
111
- #: core/core.php:573
112
  #@ broken-link-checker
113
  msgid "Protocols & APIs"
114
  msgstr "פרוטוקולים ו-APIs"
115
 
116
- #: core/core.php:574
117
  #@ broken-link-checker
118
  msgid "Advanced"
119
  msgstr "הגדרות מתקדמות"
120
 
121
- #: core/core.php:589
122
  #@ broken-link-checker
123
  msgid "Broken Link Checker Options"
124
  msgstr "הגדרות בודק קישורים שבורים"
125
 
126
- #: core/core.php:631
127
- #: includes/admin/table-printer.php:197
128
  #@ broken-link-checker
129
  msgid "Status"
130
  msgstr "סטטוס"
131
 
132
- #: core/core.php:633
133
  #: includes/admin/options-page-js.php:56
134
  #@ broken-link-checker
135
  msgid "Show debug info"
136
  msgstr "הצגת מידע מערכת"
137
 
138
- #: core/core.php:661
139
  #@ broken-link-checker
140
  msgid "Check each link"
141
  msgstr "בדיקה חוזרת של כל הקישורים"
142
 
143
- #: core/core.php:666
144
  #, php-format
145
  #@ broken-link-checker
146
  msgid "Every %s hours"
147
  msgstr "תבוצע בדיקה כל %s שעות"
148
 
149
- #: core/core.php:675
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:682
155
  #@ broken-link-checker
156
  msgid "E-mail notifications"
157
  msgstr "התראות בדואר אלקטרוני"
158
 
159
- #: core/core.php:688
160
  #@ broken-link-checker
161
  msgid "Send me e-mail notifications about newly detected broken links"
162
  msgstr "משלוח התראות בדואר אלקטרוני אודות קישורים שבורים חדשים שנמצאו"
163
 
164
- #: core/core.php:696
165
  #@ broken-link-checker
166
  msgid "Send authors e-mail notifications about broken links in their posts"
167
  msgstr "מחברי פוסטים יקבלו התראות בדואר אלקטרוני אודות קישורים שבורים בפוסטים שלהם"
168
 
169
- #: core/core.php:703
170
  #@ broken-link-checker
171
  msgid "Notification e-mail address"
172
  msgstr "כתובת הדואר האלקטרוני למשלוח התראות"
173
 
174
- #: core/core.php:715
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:722
180
  #@ broken-link-checker
181
  msgid "Link tweaks"
182
  msgstr "עיצוב טקסט הקישור<br>(כאן ניתן לציין עיצוב מבוסס CSS לטקסט של קישורים על פי הסטטוס שלהם. למשל קו חוצה/מוחק על טקסט של קישור שבור, כך שהקוראים יבינו שהקישור שבור מבלי שיצטרכו להקליק על הקישור)"
183
 
184
- #: core/core.php:728
185
  #@ broken-link-checker
186
  msgid "Apply custom formatting to broken links"
187
  msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו שבור"
188
 
189
- #: core/core.php:732
190
- #: core/core.php:763
191
  #@ broken-link-checker
192
  msgid "Edit CSS"
193
  msgstr "עריכת CSS"
194
 
195
- #: core/core.php:748
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:751
202
- #: core/core.php:782
203
  #@ broken-link-checker
204
  msgid "Click \"Save Changes\" to update example output."
205
  msgstr "במידה ושיניתם את קוד ה-CSS הקליקו \"שמור שינויים\" בכדי לעדכן את הדוגמה."
206
 
207
- #: core/core.php:759
208
  #@ broken-link-checker
209
  msgid "Apply custom formatting to removed links"
210
  msgstr "החלת עיצוב מותאם לטקסט שהקישור שלו הוסר"
211
 
212
- #: core/core.php:779
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:792
219
  #@ broken-link-checker
220
  msgid "Stop search engines from following broken links"
221
  msgstr "חסימת מנועי חיפוש מלהמשיך אל עמוד היעד של קישור שבור"
222
 
223
- #: core/core.php:809
224
  #@ broken-link-checker
225
  msgid "Look for links in"
226
  msgstr "סוגי מקורות הקישורים"
227
 
228
- #: core/core.php:820
229
  #@ broken-link-checker
230
  msgid "Post statuses"
231
  msgstr "סטטוס של פוסטים"
232
 
233
- #: core/core.php:853
234
  #@ broken-link-checker
235
  msgid "Link types"
236
  msgstr "סוגי קישורים"
237
 
238
- #: core/core.php:859
239
  #@ broken-link-checker
240
  msgid "Error : All link parsers missing!"
241
  msgstr "שגיאה: כל רכיבי הניתוח (Parsers) של הקישורים לא נמצאו!"
242
 
243
- #: core/core.php:866
244
  #@ broken-link-checker
245
  msgid "Exclusion list"
246
  msgstr "רשימת התעלמות (Exclusion)"
247
 
248
- #: core/core.php:867
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:885
254
  #@ broken-link-checker
255
  msgid "Check links using"
256
  msgstr "בדיקת קישורים בעזרת"
257
 
258
- #: core/core.php:904
259
- #: includes/links.php:856
260
  #@ broken-link-checker
261
  msgid "Timeout"
262
- msgstr "זמן המתנה מקסימלי (Timeout)"
263
 
264
- #: core/core.php:910
265
- #: core/core.php:979
266
- #: core/core.php:2858
267
  #, php-format
268
  #@ broken-link-checker
269
  #@ default
270
  msgid "%s seconds"
271
  msgstr "%s שניות"
272
 
273
- #: core/core.php:919
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:926
279
  #@ broken-link-checker
280
  msgid "Link monitor"
281
- msgstr "תכיפות ניטור הקישורים"
282
 
283
- #: core/core.php:934
284
  #@ broken-link-checker
285
  msgid "Run continuously while the Dashboard is open"
286
- msgstr "ניטור באופן מתמשך כל עוד ממשק הניהול של וורדפרס פתוח"
287
 
288
- #: core/core.php:942
289
  #@ broken-link-checker
290
  msgid "Run hourly in the background"
291
  msgstr "ניטור פעם בשעה ברקע, ללא קשר למצב ממשק הניהול"
292
 
293
- #: core/core.php:950
294
  #@ broken-link-checker
295
  msgid "Show the dashboard widget for"
296
- msgstr "הצגת וידג'ט התוסף ב-\"לוח הבקרה\" רק למשתמשים מסוג"
297
 
298
- #: core/core.php:955
299
  #@ broken-link-checker
300
  msgctxt "dashboard widget visibility"
301
  msgid "Administrator"
302
  msgstr "מנהל"
303
 
304
- #: core/core.php:956
305
  #@ broken-link-checker
306
  msgctxt "dashboard widget visibility"
307
  msgid "Editor and above"
308
  msgstr "עורך ומעלה"
309
 
310
- #: core/core.php:957
311
  #@ broken-link-checker
312
  msgctxt "dashboard widget visibility"
313
  msgid "Nobody (disables the widget)"
314
  msgstr "אף אחד (מכבה את הוידג'ט)"
315
 
316
- #: core/core.php:973
317
  #@ broken-link-checker
318
  msgid "Max. execution time"
319
- msgstr "משך זמן מקסימלי לניטור כלל הקישורים"
320
 
321
- #: core/core.php:990
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:999
327
  #@ broken-link-checker
328
  msgid "Server load limit"
329
  msgstr "הגבלת עומס על השרת"
330
 
331
- #: core/core.php:1014
332
  #, php-format
333
  #@ broken-link-checker
334
  msgid "Current load : %s"
335
  msgstr "העומס הנוכחי על השרת: %s"
336
 
337
- #: core/core.php:1020
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:1028
344
  #@ broken-link-checker
345
  msgid "Not available"
346
  msgstr "לא זמין"
347
 
348
- #: core/core.php:1030
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:1038
354
  #@ broken-link-checker
355
  msgid "Forced recheck"
356
  msgstr "איפוס ממצאי התוסף"
357
 
358
- #: core/core.php:1041
359
  #@ broken-link-checker
360
  msgid "Re-check all pages"
361
  msgstr "איפוס ממצאי התוסף"
362
 
363
- #: core/core.php:1045
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:1056
369
  #@ default
370
  msgid "Save Changes"
371
  msgstr "שמירת שינויים"
372
 
373
- #: core/core.php:1107
374
  #@ broken-link-checker
375
  msgid "Configure"
376
  msgstr "פירוט"
377
 
378
- #: core/core.php:1189
379
- #@ broken-link-checker
380
- msgid "Check URLs entered in these custom fields (one per line) :"
381
- msgstr "בדיקת כתובות אינטרנט שהוזנו לשדות מותאמים אלו (אחד בכל שורה):"
382
-
383
- #: core/core.php:1317
384
- #: core/core.php:1399
385
- #: core/core.php:1431
386
  #, php-format
387
  #@ broken-link-checker
388
  msgid "Database error : %s"
389
  msgstr "שגיאת מסד נתונים: %s"
390
 
391
- #: core/core.php:1381
392
  #@ broken-link-checker
393
  msgid "You must enter a filter name!"
394
  msgstr "חובה להזין שם מסנן!"
395
 
396
- #: core/core.php:1385
397
  #@ broken-link-checker
398
  msgid "Invalid search query."
399
  msgstr "שאילתת חיפוש לא תקינה."
400
 
401
- #: core/core.php:1394
402
  #, php-format
403
  #@ broken-link-checker
404
  msgid "Filter \"%s\" created"
405
  msgstr "הסינון \"%s\" נוצר"
406
 
407
- #: core/core.php:1421
408
  #@ broken-link-checker
409
  msgid "Filter ID not specified."
410
  msgstr "לא מצוין קוד זיהוי מסנן."
411
 
412
- #: core/core.php:1428
413
  #@ broken-link-checker
414
  msgid "Filter deleted"
415
  msgstr "המסנן נמחק"
416
 
417
- #: core/core.php:1476
418
  #, php-format
419
  #@ broken-link-checker
420
  msgid "Replaced %d redirect with a direct link"
421
  msgid_plural "Replaced %d redirects with direct links"
422
- msgstr[0] "הוחלפה ההפניה %d בקישור ישיר"
423
- msgstr[1] "הוחלפו ההפניות %d בקישורים ישירים"
424
 
425
- #: core/core.php:1487
426
  #, php-format
427
  #@ broken-link-checker
428
  msgid "Failed to fix %d redirect"
429
  msgid_plural "Failed to fix %d redirects"
430
- msgstr[0] "נכשל הניסיון לתקן את ההפניה %d"
431
- msgstr[1] "נכשל הניסיון לתקן את ההפניות %d"
432
 
433
- #: core/core.php:1497
434
  #@ broken-link-checker
435
  msgid "None of the selected links are redirects!"
436
  msgstr "אף אחד מהקישורים שנבחרו אינו הפניה!"
437
 
438
- #: core/core.php:1576
439
  #, php-format
440
  #@ broken-link-checker
441
  msgid "%d link updated."
442
  msgid_plural "%d links updated."
443
- msgstr[0] "הקישור %d עודכן."
444
- msgstr[1] "הקישורים %d עודכנו."
445
 
446
- #: core/core.php:1587
447
  #, php-format
448
  #@ broken-link-checker
449
  msgid "Failed to update %d link."
450
  msgid_plural "Failed to update %d links."
451
- msgstr[0] "נכשל הניסיון לעדכן את הקישור %d."
452
- msgstr[1] "נכשל הניסיון לעדכן את הקישורים %d."
453
 
454
- #: core/core.php:1676
455
  #, php-format
456
  #@ broken-link-checker
457
  msgid "%d link removed"
458
  msgid_plural "%d links removed"
459
- msgstr[0] "הקישור %d הוסר"
460
- msgstr[1] "הקישורים %d הוסרו"
461
 
462
- #: core/core.php:1687
463
  #, php-format
464
  #@ broken-link-checker
465
  msgid "Failed to remove %d link"
@@ -467,7 +462,7 @@ msgid_plural "Failed to remove %d links"
467
  msgstr[0] "נכשל הניסיון להסיר את הקישור %d"
468
  msgstr[1] "נכשל הניסיון להסיר את הקישורים %d"
469
 
470
- #: core/core.php:1796
471
  #, php-format
472
  #@ default
473
  msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
@@ -475,32 +470,32 @@ msgid_plural "%d items were skipped because they can't be moved to the Trash. Yo
475
  msgstr[0] "%d פריט לא עובד בגלל שלא ניתן להעביר אותו לסל המחזור. צריך למחוק אותו ידנית."
476
  msgstr[1] "%d פריטים לא עובדו בגלל שלא ניתן להעביר אותם לסל המחזור. צריך למחוק אותם ידנית."
477
 
478
- #: core/core.php:1817
479
  #@ broken-link-checker
480
  msgid "Didn't find anything to delete!"
481
  msgstr "לא נמצאו פריטים למחיקה!"
482
 
483
- #: core/core.php:1846
484
  #, php-format
485
  #@ broken-link-checker
486
  msgid "%d link scheduled for rechecking"
487
  msgid_plural "%d links scheduled for rechecking"
488
- msgstr[0] "הקישור %d תוזמן לבדיקה חוזרת"
489
- msgstr[1] "הקישורים %d תוזמנו לבדיקה חוזרת"
490
 
491
- #: core/core.php:1891
492
- #: core/core.php:2500
493
  #@ broken-link-checker
494
  msgid "This link was manually marked as working by the user."
495
- msgstr "הקישור סומן ידנית כתקין על ידי משתמש."
496
 
497
- #: core/core.php:1898
498
  #, php-format
499
  #@ broken-link-checker
500
  msgid "Couldn't modify link %d"
501
  msgstr "לא ניתן היה לשנות את הקישור %d"
502
 
503
- #: core/core.php:1909
504
  #, php-format
505
  #@ broken-link-checker
506
  msgid "%d link marked as not broken"
@@ -508,59 +503,59 @@ msgid_plural "%d links marked as not broken"
508
  msgstr[0] "הקישור %d סומן כ\\\"לא שבור\\\""
509
  msgstr[1] "הקישורים %d סומנו כ\\\"לא שבור\\\""
510
 
511
- #: core/core.php:1948
512
  #@ broken-link-checker
513
  msgid "Table columns"
514
  msgstr "טורי טבלה"
515
 
516
- #: core/core.php:1967
517
  #@ default
518
  msgid "Show on screen"
519
  msgstr "הצג במסך"
520
 
521
- #: core/core.php:1974
522
  #@ broken-link-checker
523
  msgid "links"
524
  msgstr "קישורים"
525
 
526
- #: core/core.php:1975
527
- #: includes/admin/table-printer.php:165
528
  #@ default
529
  #@ broken-link-checker
530
  msgid "Apply"
531
  msgstr "ביצוע"
532
 
533
- #: core/core.php:1979
534
  #@ broken-link-checker
535
  msgid "Misc"
536
  msgstr "שונות"
537
 
538
- #: core/core.php:1994
539
  #, php-format
540
  #@ broken-link-checker
541
  msgid "Highlight links broken for at least %s days"
542
  msgstr "הדגשת הרקע של קישורים אשר שבורים כבר במשך לפחות %s ימים"
543
 
544
- #: core/core.php:2003
545
  #@ broken-link-checker
546
  msgid "Color-code status codes"
547
  msgstr "קודי סטטוס צבעוניים"
548
 
549
- #: core/core.php:2020
550
- #: core/core.php:2485
551
- #: core/core.php:2525
552
- #: core/core.php:2558
553
- #: core/core.php:2621
554
  #@ broken-link-checker
555
  msgid "You're not allowed to do that!"
556
  msgstr "אינכם מורשים לבצע פעולה זו!"
557
 
558
- #: core/core.php:2355
559
  #@ broken-link-checker
560
  msgid "View broken links"
561
  msgstr "צפיה בקישורים השבורים"
562
 
563
- #: core/core.php:2356
564
  #, php-format
565
  #@ broken-link-checker
566
  msgid "Found %d broken link"
@@ -568,12 +563,12 @@ msgid_plural "Found %d broken links"
568
  msgstr[0] "נמצאו %d קישור שבור"
569
  msgstr[1] "נמצאו %d קישורים שבורים"
570
 
571
- #: core/core.php:2362
572
  #@ broken-link-checker
573
  msgid "No broken links found."
574
  msgstr "לא נמצאו קישורים שבורים."
575
 
576
- #: core/core.php:2369
577
  #, php-format
578
  #@ broken-link-checker
579
  msgid "%d URL in the work queue"
@@ -581,12 +576,12 @@ msgid_plural "%d URLs in the work queue"
581
  msgstr[0] "קיימת %d ‏כתובת אינטרנט בתור המשימות"
582
  msgstr[1] "קיימות %d ‏כתובות אינטרנט בתור המשימות"
583
 
584
- #: core/core.php:2372
585
  #@ broken-link-checker
586
  msgid "No URLs in the work queue."
587
  msgstr "אין בתור המשימות כתובות אינטרנט לבדיקה"
588
 
589
- #: core/core.php:2378
590
  #, php-format
591
  #@ broken-link-checker
592
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
@@ -595,7 +590,7 @@ msgid_plural "%d unique URLs"
595
  msgstr[0] "%d ‏כתובת אינטרנט יחודית"
596
  msgstr[1] "%d ‏כתובות אינטרנט יחודיות"
597
 
598
- #: core/core.php:2382
599
  #, php-format
600
  #@ broken-link-checker
601
  msgctxt "for the \"Detected X unique URLs in Y links\" message"
@@ -604,170 +599,169 @@ msgid_plural "%d links"
604
  msgstr[0] "%d קישור"
605
  msgstr[1] "%d קישורים"
606
 
607
- #: core/core.php:2388
608
  #, php-format
609
  #@ broken-link-checker
610
  msgid "Detected %1$s in %2$s and still searching..."
611
  msgstr "נמצאו %1$s בתוך %2$s והחיפוש ממשיך..."
612
 
613
- #: core/core.php:2394
614
  #, php-format
615
  #@ broken-link-checker
616
  msgid "Detected %1$s in %2$s."
617
  msgstr "נמצאו %1$s בתוך %2$s."
618
 
619
- #: core/core.php:2401
620
  #@ broken-link-checker
621
  msgid "Searching your blog for links..."
622
  msgstr "מתבצע חיפוש קישורים באתר..."
623
 
624
- #: core/core.php:2403
625
  #@ broken-link-checker
626
  msgid "No links detected."
627
  msgstr "לא נמצאו קישורים."
628
 
629
- #: core/core.php:2429
630
  #@ broken-link-checker
631
  msgctxt "current load"
632
  msgid "Unknown"
633
  msgstr "לא ידוע"
634
 
635
- #: core/core.php:2493
636
- #: core/core.php:2533
637
- #: core/core.php:2568
638
- #: core/core.php:2631
639
  #, php-format
640
  #@ broken-link-checker
641
  msgid "Oops, I can't find the link %d"
642
  msgstr "אופס, לא נמצא הקישור %d"
643
 
644
- #: core/core.php:2506
645
- #: core/core.php:2543
646
  #@ broken-link-checker
647
  msgid "Oops, couldn't modify the link!"
648
  msgstr "אופס, לא ניתן לשנות את הקישור!"
649
 
650
- #: core/core.php:2509
651
- #: core/core.php:2546
652
- #: core/core.php:2657
653
  #@ broken-link-checker
654
  msgid "Error : link_id not specified"
655
  msgstr "שגיאה: link_id אינו מוגדר"
656
 
657
- #: core/core.php:2578
658
  #@ broken-link-checker
659
  msgid "Oops, the new URL is invalid!"
660
  msgstr "אופס, כתובת האינטרנט החדשה אינה תקינה!"
661
 
662
- #: core/core.php:2589
663
- #: core/core.php:2640
664
  #@ broken-link-checker
665
  msgid "An unexpected error occured!"
666
  msgstr "אירעה שגיאה לא צפויה!"
667
 
668
- #: core/core.php:2607
669
  #@ broken-link-checker
670
  msgid "Error : link_id or new_url not specified"
671
  msgstr "שגיאה: link_id או new_url אינם מוגדרים"
672
 
673
- #: core/core.php:2666
674
  #@ broken-link-checker
675
  msgid "You don't have sufficient privileges to access this information!"
676
  msgstr "אין לכם את ההרשאות המתאימות בכדי לגשת למידע זה!"
677
 
678
- #: core/core.php:2679
679
  #@ broken-link-checker
680
  msgid "Error : link ID not specified"
681
  msgstr "שגיאה: לא מוגדר קוד זיהוי קישור"
682
 
683
- #: core/core.php:2693
684
  #, php-format
685
  #@ broken-link-checker
686
  msgid "Failed to load link details (%s)"
687
  msgstr "נכשל הניסיון לטעון את פרטי הקישור (%s)"
688
 
689
- #: core/core.php:2747
690
  #@ broken-link-checker
691
  msgid "Broken Link Checker"
692
  msgstr "בודק קישורים שבורים"
693
 
694
- #: core/core.php:2767
695
  #@ broken-link-checker
696
  msgid "PHP version"
697
  msgstr "גרסת PHP"
698
 
699
- #: core/core.php:2773
700
  #@ broken-link-checker
701
  msgid "MySQL version"
702
  msgstr "גרסת MySQL"
703
 
704
- #: core/core.php:2786
705
  #@ broken-link-checker
706
  msgid "You have an old version of CURL. Redirect detection may not work properly."
707
  msgstr "גרסת ה-CURL באתר שלכם ישנה. בשל כך קיים סיכוי שתהליך איתור ההפניות לא יעבוד באופן תקין. כדאי לבקש ממנהלי האתר שלכם לעדכן את גרסת ה-CURL לגרסה עדכנית."
708
 
709
- #: core/core.php:2798
710
- #: core/core.php:2814
711
- #: core/core.php:2819
712
  #@ broken-link-checker
713
  msgid "Not installed"
714
  msgstr "לא מותקן"
715
 
716
- #: core/core.php:2801
717
  #@ broken-link-checker
718
  msgid "CURL version"
719
  msgstr "גרסת CURL"
720
 
721
- #: core/core.php:2807
722
  #@ broken-link-checker
723
  msgid "Installed"
724
  msgstr "מותקן"
725
 
726
- #: core/core.php:2820
727
  #@ broken-link-checker
728
  msgid "You must have either CURL or Snoopy installed for the plugin to work!"
729
  msgstr "תוכנת CURL או Snoopy חייבת להיות מותקנת בכדי שתוסף זה יעבוד באופן תקין! אנא פנו למנהלי האתר או חברת אירוח האתרים בה מתארח אתר זה ובקשו מהם להתקין את אחת מהתוכנות האלו, בגרסה עדכנית."
730
 
731
- #: core/core.php:2831
732
  #@ broken-link-checker
733
  msgid "On"
734
  msgstr "פעיל"
735
 
736
- #: core/core.php:2832
737
  #@ broken-link-checker
738
  msgid "Redirects may be detected as broken links when safe_mode is on."
739
  msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר safe_mode פעיל."
740
 
741
- #: core/core.php:2837
742
- #: core/core.php:2851
743
  #@ broken-link-checker
744
  msgid "Off"
745
  msgstr "כבוי"
746
 
747
- #: core/core.php:2845
748
  #, php-format
749
  #@ broken-link-checker
750
  msgid "On ( %s )"
751
  msgstr "פעיל ( %s )"
752
 
753
- #: core/core.php:2846
754
  #@ broken-link-checker
755
  msgid "Redirects may be detected as broken links when open_basedir is on."
756
  msgstr "ייתכן והפניות יסווגו כקישורים שבורים כאשר open_basedir פעיל."
757
 
758
- #: core/core.php:2875
759
  #@ broken-link-checker
760
  msgid "If this value is zero even after several page reloads you have probably encountered a bug."
761
  msgstr "אם ערך זה הוא 0 (אפס) אפילו לאחר מספר טעינות עמוד חוזרות - כנראה שנתקלתם בבאג."
762
 
763
- #: core/core.php:2970
764
- #: core/core.php:3068
765
  #, php-format
766
  #@ broken-link-checker
767
  msgid "[%s] Broken links detected"
768
  msgstr "נמצאו [%s] קישורים שבורים"
769
 
770
- #: core/core.php:2976
771
  #, php-format
772
  #@ broken-link-checker
773
  msgid "Broken Link Checker has detected %d new broken link on your site."
@@ -775,7 +769,7 @@ msgid_plural "Broken Link Checker has detected %d new broken links on your site.
775
  msgstr[0] "בודק קישורים שבורים איתר %d קישור שבור חדש באתר שלכם."
776
  msgstr[1] "בודק קישורים שבורים איתר %d קישורים שבורים חדשים באתר שלכם."
777
 
778
- #: core/core.php:2999
779
  #, php-format
780
  #@ broken-link-checker
781
  msgid "Here's a list of the first %d broken links:"
@@ -783,35 +777,35 @@ msgid_plural "Here's a list of the first %d broken links:"
783
  msgstr[0] "הנה רשימה של %d הקישור השבור הראשון:"
784
  msgstr[1] "הנה רשימה של %d הקישורים השבורים הראשונים:"
785
 
786
- #: core/core.php:3007
787
  #@ broken-link-checker
788
  msgid "Here's a list of the new broken links: "
789
  msgstr "הנה רשימה של קישורים שבורים חדשים: "
790
 
791
- #: core/core.php:3016
792
  #, php-format
793
  #@ broken-link-checker
794
  msgid "Link text : %s"
795
  msgstr "טקסט קישור: %s"
796
 
797
- #: core/core.php:3017
798
  #, php-format
799
  #@ broken-link-checker
800
  msgid "Link URL : <a href=\"%s\">%s</a>"
801
  msgstr "קישור כתובת אינטרנט: ‏<a href=\"%s\">%s</a>"
802
 
803
- #: core/core.php:3018
804
  #, php-format
805
  #@ broken-link-checker
806
  msgid "Source : %s"
807
  msgstr "מקור הקישור: %s"
808
 
809
- #: core/core.php:3031
810
  #@ broken-link-checker
811
  msgid "You can see all broken links here:"
812
  msgstr "ניתן לצפות בכל הקישורים השבורים כאן:"
813
 
814
- #: core/core.php:3074
815
  #, php-format
816
  #@ broken-link-checker
817
  msgid "Broken Link Checker has detected %d new broken link in your posts."
@@ -819,17 +813,17 @@ msgid_plural "Broken Link Checker has detected %d new broken links in your posts
819
  msgstr[0] "בודק קישורים שבורים איתר %d קישור שבור חדש בפוסטים שלכם."
820
  msgstr[1] "בודק קישורים שבורים איתר %d קישורים שבורים חדשים בפוסטים שלכם."
821
 
822
- #: core/init.php:240
823
  #@ default
824
  msgid "Once Weekly"
825
  msgstr "פעם בשבוע"
826
 
827
- #: core/init.php:246
828
  #@ default
829
  msgid "Twice a Month"
830
  msgstr "פעמיים בחודש"
831
 
832
- #: core/init.php:322
833
  #@ broken-link-checker
834
  msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
835
  msgstr "התקנת התוסף בודק קישורים שבורים נכשלה. נסו לכבות ואז להפעיל מחדש את התוסף."
@@ -841,77 +835,76 @@ msgid "Failed to delete old DB tables. Database error : %s"
841
  msgstr "נכשל הניסיון למחוק טבלאות מסד נתונים ישנות. שגיאת מסד נתונים: %s"
842
 
843
  #: includes/admin/links-page-js.php:55
844
- #: includes/admin/links-page-js.php:403
845
  #@ broken-link-checker
846
  msgid "Wait..."
847
  msgstr "המתינו..."
848
 
849
  #: includes/admin/links-page-js.php:100
850
- #: includes/admin/table-printer.php:630
851
  #@ broken-link-checker
852
  msgid "Not broken"
853
  msgstr "לא שבור"
854
 
855
- #: includes/admin/links-page-js.php:315
856
  #, php-format
857
  #@ broken-link-checker
858
  msgid "%d instances of the link were successfully modified."
859
  msgstr "%d מופעים של הקישור שונו בהצלחה."
860
 
861
- #: includes/admin/links-page-js.php:321
862
  #, php-format
863
  #@ broken-link-checker
864
  msgid "However, %d instances couldn't be edited and still point to the old URL."
865
  msgstr "אולם, לא היה ניתן לערוך %d מופעים ולכן הם עדיין מצביעים לכתובת האינטרנט הישנה."
866
 
867
- #: includes/admin/links-page-js.php:327
868
  #@ broken-link-checker
869
  msgid "The link could not be modified."
870
  msgstr "לא היה ניתן לשנות את הקישור."
871
 
872
- #: includes/admin/links-page-js.php:330
873
- #: includes/admin/links-page-js.php:455
874
  #@ broken-link-checker
875
  msgid "The following error(s) occured :"
876
  msgstr "השגיאה או השגיאות הבאות התרחשו:"
877
 
878
- #: includes/admin/links-page-js.php:441
879
  #, php-format
880
  #@ broken-link-checker
881
  msgid "%d instances of the link were successfully unlinked."
882
  msgstr "%d פעמים שהקישור נמצא עבור הסרת קישור"
883
 
884
- #: includes/admin/links-page-js.php:447
885
  #, php-format
886
  #@ broken-link-checker
887
  msgid "However, %d instances couldn't be removed."
888
  msgstr "אולם, לא היה ניתן להסיר %d מופעים."
889
 
890
- #: includes/admin/links-page-js.php:452
891
  #@ broken-link-checker
892
  msgid "The plugin failed to remove the link."
893
  msgstr "התוסף לא הצליח להסיר את הקישור."
894
 
895
- #: includes/admin/links-page-js.php:463
896
- #: includes/admin/table-printer.php:273
897
- #: includes/admin/table-printer.php:624
898
  #@ broken-link-checker
899
  msgid "Unlink"
900
  msgstr "הסרת הקישור (טקסט הקישור לא יוסר)"
901
 
902
- #: includes/admin/links-page-js.php:507
903
  #@ broken-link-checker
904
  msgid "Enter a name for the new custom filter"
905
  msgstr "הזינו שם למסנן המותאם החדש"
906
 
907
- #: includes/admin/links-page-js.php:518
908
  #@ broken-link-checker
909
  msgid ""
910
  "You are about to delete the current filter.\n"
911
  "'Cancel' to stop, 'OK' to delete"
912
  msgstr "אתם עומדים למחוק את המסנן הפעיל. הקליקו 'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה."
913
 
914
- #: includes/admin/links-page-js.php:538
915
  #@ broken-link-checker
916
  msgid ""
917
  "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"
@@ -920,7 +913,7 @@ msgstr ""
920
  "האם אתם בטוחים שאתם רוצים למחוק את כל הפוסטים, סימניות או פריטים אחרים שכוללים בתוכם את הקישורים שבחרתם? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \n"
921
  "'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה"
922
 
923
- #: includes/admin/links-page-js.php:548
924
  #@ broken-link-checker
925
  msgid ""
926
  "Are you sure you want to remove the selected links? This action can't be undone.\n"
@@ -929,12 +922,12 @@ msgstr ""
929
  "האם אתם בטוחים שאתם רוצים להסיר את הקישורים שנבחרו? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \n"
930
  "'Cancel' למניעת המחיקה או 'OK' לביצוע המחיקה"
931
 
932
- #: includes/admin/links-page-js.php:657
933
  #@ broken-link-checker
934
  msgid "Enter a search string first."
935
  msgstr "ראשית הזינו טקסט חיפוש."
936
 
937
- #: includes/admin/links-page-js.php:664
938
  #@ broken-link-checker
939
  msgid "Select one or more links to edit."
940
  msgstr "בחרו קישור אחד או יותר לעריכה."
@@ -966,13 +959,13 @@ msgid "Link text"
966
  msgstr "טקסט הקישור"
967
 
968
  #: includes/admin/search-form.php:45
969
- #: includes/admin/table-printer.php:202
970
  #@ broken-link-checker
971
  msgid "URL"
972
  msgstr "כתובת האינטרנט"
973
 
974
  #: includes/admin/search-form.php:48
975
- #: includes/admin/table-printer.php:491
976
  #@ broken-link-checker
977
  msgid "HTTP code"
978
  msgstr "קוד HTTP‏"
@@ -1004,9 +997,9 @@ msgid "Search Links"
1004
  msgstr "חיפוש קישורים"
1005
 
1006
  #: includes/admin/search-form.php:113
1007
- #: includes/admin/table-printer.php:349
1008
- #: includes/admin/table-printer.php:652
1009
- #: includes/admin/table-printer.php:658
1010
  #@ broken-link-checker
1011
  msgid "Cancel"
1012
  msgstr "ביטול"
@@ -1031,235 +1024,226 @@ msgstr "אם אתם אוהבים תוסף זה, בבקשה תרמו בכדי ל
1031
  msgid "Return to WordPress Dashboard"
1032
  msgstr "חזרה ללוח המחוונים של Wordpress"
1033
 
1034
- #: includes/admin/table-printer.php:179
1035
  #@ broken-link-checker
1036
  msgid "Compact View"
1037
  msgstr "תצוגה מצומצמת"
1038
 
1039
- #: includes/admin/table-printer.php:180
1040
  #@ broken-link-checker
1041
  msgid "Detailed View"
1042
  msgstr "תצוגה מפורטת"
1043
 
1044
- #: includes/admin/table-printer.php:209
1045
  #@ broken-link-checker
1046
  msgid "Source"
1047
  msgstr "מקור הקישור"
1048
 
1049
- #: includes/admin/table-printer.php:215
1050
  #@ broken-link-checker
1051
  msgid "Link Text"
1052
  msgstr "טקסט הקישור"
1053
 
1054
- #: includes/admin/table-printer.php:220
1055
  #@ broken-link-checker
1056
  msgid "Redirect URL"
1057
  msgstr "כתובת ההפניה"
1058
 
1059
- #: includes/admin/table-printer.php:268
1060
  #@ broken-link-checker
1061
  msgid "Bulk Actions"
1062
  msgstr "פעולות על מספר קישורים במקביל"
1063
 
1064
- #: includes/admin/table-printer.php:269
1065
- #: includes/admin/table-printer.php:621
1066
  #@ broken-link-checker
1067
  msgid "Edit URL"
1068
  msgstr "עריכת הקישור"
1069
 
1070
- #: includes/admin/table-printer.php:270
1071
  #@ broken-link-checker
1072
  msgid "Recheck"
1073
  msgstr "בדיקה חוזרת"
1074
 
1075
- #: includes/admin/table-printer.php:271
1076
  #@ broken-link-checker
1077
  msgid "Fix redirects"
1078
- msgstr "תיקון הפניה"
1079
 
1080
- #: includes/admin/table-printer.php:272
1081
  #@ broken-link-checker
1082
  msgid "Mark as not broken"
1083
- msgstr "סימון כתקין"
1084
 
1085
- #: includes/admin/table-printer.php:276
1086
  #@ broken-link-checker
1087
  msgid "Move sources to Trash"
1088
  msgstr "העברה לפח (=מחיקה) של מקור הקישור (פוסט, עמוד וכדומה)"
1089
 
1090
- #: includes/admin/table-printer.php:278
1091
  #@ broken-link-checker
1092
  msgid "Delete sources"
1093
  msgstr "מחיקת מקורות הקישור"
1094
 
1095
- #: includes/admin/table-printer.php:293
1096
  #@ default
1097
  msgid "&laquo;"
1098
  msgstr "&laquo;"
1099
 
1100
- #: includes/admin/table-printer.php:294
1101
  #@ default
1102
  msgid "&raquo;"
1103
  msgstr "&raquo;"
1104
 
1105
- #: includes/admin/table-printer.php:302
1106
  #, php-format
1107
  #@ broken-link-checker
1108
  msgid "Displaying %s&#8211;%s of <span class=\"current-link-count\">%s</span>"
1109
  msgstr "הצגת %s&#8211;%s מתוך <span class=\"current-link-count\">%s</span>"
1110
 
1111
- #: includes/admin/table-printer.php:325
1112
- #@ default
1113
  msgid "Bulk Edit URLs"
1114
- msgstr "עריכה כמותית של URLים"
1115
 
1116
- #: includes/admin/table-printer.php:327
1117
  #@ broken-link-checker
1118
  msgid "Find"
1119
  msgstr "מצא"
1120
 
1121
- #: includes/admin/table-printer.php:331
1122
  #@ broken-link-checker
1123
  msgid "Replace with"
1124
  msgstr "החלפה ב-"
1125
 
1126
- #: includes/admin/table-printer.php:339
1127
  #@ broken-link-checker
1128
  msgid "Case sensitive"
1129
  msgstr "עם רגישות לגודל אותיות אנגליות (Case Sensitive)"
1130
 
1131
- #: includes/admin/table-printer.php:343
1132
  #@ broken-link-checker
1133
  msgid "Regular expression"
1134
  msgstr "Regular Expression"
1135
 
1136
- #: includes/admin/table-printer.php:351
 
1137
  #@ broken-link-checker
1138
  msgid "Update"
1139
  msgstr "עדכון"
1140
 
1141
- #: includes/admin/table-printer.php:476
1142
  #@ broken-link-checker
1143
  msgid "Post published on"
1144
  msgstr "פוסטים שפורסמו ב:"
1145
 
1146
- #: includes/admin/table-printer.php:481
1147
  #@ broken-link-checker
1148
  msgid "Link last checked"
1149
  msgstr "הקישור נבדק לאחרונה בתאריך"
1150
 
1151
- #: includes/admin/table-printer.php:485
1152
  #@ broken-link-checker
1153
  msgid "Never"
1154
  msgstr "מעולם לא"
1155
 
1156
- #: includes/admin/table-printer.php:496
1157
  #@ broken-link-checker
1158
  msgid "Response time"
1159
  msgstr "זמן תגובה"
1160
 
1161
- #: includes/admin/table-printer.php:498
1162
  #, php-format
1163
  #@ broken-link-checker
1164
  msgid "%2.3f seconds"
1165
  msgstr "%2.3f שניות"
1166
 
1167
- #: includes/admin/table-printer.php:501
1168
  #@ broken-link-checker
1169
  msgid "Final URL"
1170
  msgstr "כתובת אינטרנט סופית"
1171
 
1172
- #: includes/admin/table-printer.php:506
1173
  #@ broken-link-checker
1174
  msgid "Redirect count"
1175
  msgstr "כמות הפניות"
1176
 
1177
- #: includes/admin/table-printer.php:511
1178
  #@ broken-link-checker
1179
  msgid "Instance count"
1180
  msgstr "כמות מופעים"
1181
 
1182
- #: includes/admin/table-printer.php:520
1183
  #, php-format
1184
  #@ broken-link-checker
1185
  msgid "This link has failed %d time."
1186
  msgid_plural "This link has failed %d times."
1187
- msgstr[0] "הקישור נכשל %d בדיקה."
1188
  msgstr[1] "הקישור נכשל ב-%d בדיקות."
1189
 
1190
- #: includes/admin/table-printer.php:528
1191
  #, php-format
1192
  #@ broken-link-checker
1193
  msgid "This link has been broken for %s."
1194
  msgstr "הקישור שבור במשך לפחות %s."
1195
 
1196
- #: includes/admin/table-printer.php:539
1197
  #@ broken-link-checker
1198
  msgid "Log"
1199
  msgstr "פרטי הבדיקה:<br>"
1200
 
1201
- #: includes/admin/table-printer.php:564
1202
  #@ broken-link-checker
1203
  msgid "Show more info about this link"
1204
  msgstr "הצג מידע נוסף אודות קישור זה"
1205
 
1206
- #: includes/admin/table-printer.php:582
1207
  #@ broken-link-checker
1208
  msgctxt "checked how long ago"
1209
  msgid "Checked"
1210
  msgstr "נבדק"
1211
 
1212
- #: includes/admin/table-printer.php:598
1213
  #@ broken-link-checker
1214
  msgid "Broken for"
1215
  msgstr "שבור כבר לפחות"
1216
 
1217
- #: includes/admin/table-printer.php:621
1218
- #@ broken-link-checker
1219
- msgid "Edit link URL"
1220
- msgstr "עריכת כתובת הקישור"
1221
-
1222
- #: includes/admin/table-printer.php:623
1223
  #@ broken-link-checker
1224
  msgid "Remove this link from all posts"
1225
  msgstr "הסרת קישור זה מכל הפוסטים בהם הוא מופיע. טקסט הקישור לא יוסר ולא ישתנה."
1226
 
1227
- #: includes/admin/table-printer.php:629
1228
  #@ broken-link-checker
1229
  msgid "Remove this link from the list of broken links and mark it as valid"
1230
  msgstr "הסרת קישור זה מהרשימה הנוכחית וסימונו כתקין"
1231
 
1232
- #: includes/admin/table-printer.php:637
1233
  #@ broken-link-checker
1234
  msgid "Hide this link and do not report it again unless its status changes"
1235
  msgstr "הקישור יועבר אל רשימת \"בהמתנה\" ולא ידווח שוב כשבור אלא אם הסטטוס שלו ישתנה"
1236
 
1237
- #: includes/admin/table-printer.php:638
1238
  #@ broken-link-checker
1239
  msgid "Dismiss"
1240
  msgstr "העברה למצב המתנה"
1241
 
1242
- #: includes/admin/table-printer.php:643
1243
  #@ broken-link-checker
1244
  msgid "Undismiss this link"
1245
  msgstr "הוצאת קישור זה ממצב המתנה והחזרתו לרשימת הקישורים השבורים"
1246
 
1247
- #: includes/admin/table-printer.php:644
1248
  #@ broken-link-checker
1249
  msgid "Undismiss"
1250
  msgstr "ביטול מצב המתנה"
1251
 
1252
- #: includes/admin/table-printer.php:652
1253
- #@ broken-link-checker
1254
- msgid "Cancel URL editing"
1255
- msgstr "ביטול עריכת כתובת אינטרנט"
1256
-
1257
- #: includes/admin/table-printer.php:659
1258
  #@ broken-link-checker
1259
  msgid "Update URL"
1260
  msgstr "עדכון כתובת אינטרנט"
1261
 
1262
- #: includes/admin/table-printer.php:686
1263
  #@ broken-link-checker
1264
  msgid "[An orphaned link! This is a bug.]"
1265
  msgstr "[קישור יתום! זה באג.]"
@@ -1267,32 +1251,32 @@ msgstr "[קישור יתום! זה באג.]"
1267
  #: includes/any-post.php:397
1268
  #: modules/containers/blogroll.php:46
1269
  #: modules/containers/comment.php:153
1270
- #: modules/containers/custom_field.php:197
1271
  #@ default
1272
  msgid "Edit"
1273
  msgstr "עריכה"
1274
 
1275
  #: includes/any-post.php:405
1276
- #: modules/containers/custom_field.php:203
1277
  #@ default
1278
  msgid "Move this item to the Trash"
1279
  msgstr "העבר פריט זה לסל המחזור"
1280
 
1281
  #: includes/any-post.php:407
1282
- #: modules/containers/custom_field.php:205
1283
  #@ default
1284
  msgid "Trash"
1285
  msgstr "סל המחזור"
1286
 
1287
  #: includes/any-post.php:412
1288
- #: modules/containers/custom_field.php:210
1289
  #@ default
1290
  msgid "Delete this item permanently"
1291
  msgstr "מחיקת פריט זה באופן מוחלט"
1292
 
1293
  #: includes/any-post.php:414
1294
  #: modules/containers/blogroll.php:47
1295
- #: modules/containers/custom_field.php:212
1296
  #@ default
1297
  msgid "Delete"
1298
  msgstr "מחיקה"
@@ -1316,13 +1300,13 @@ msgstr "צפיה &#8220;%s&#8221;"
1316
 
1317
  #: includes/any-post.php:436
1318
  #: modules/containers/comment.php:166
1319
- #: modules/containers/custom_field.php:217
1320
  #@ default
1321
  msgid "View"
1322
  msgstr "צפיה"
1323
 
1324
  #: includes/any-post.php:455
1325
- #: modules/containers/custom_field.php:197
1326
  #@ default
1327
  msgid "Edit this item"
1328
  msgstr "עריכת פריט זה"
@@ -1341,21 +1325,21 @@ msgid "Updating post %d failed"
1341
  msgstr "עדכון הפוסט %d נכשל"
1342
 
1343
  #: includes/any-post.php:566
1344
- #: modules/containers/custom_field.php:284
1345
  #, php-format
1346
  #@ broken-link-checker
1347
  msgid "Failed to delete post \"%s\" (%d)"
1348
  msgstr "נכשל הניסיון למחוק את הפוסט \"%s\" (%d)"
1349
 
1350
  #: includes/any-post.php:585
1351
- #: modules/containers/custom_field.php:303
1352
  #, php-format
1353
  #@ broken-link-checker
1354
  msgid "Can't move post \"%s\" (%d) to the trash because the trash feature is disabled"
1355
  msgstr "לא ניתן להעביר את הפוסט \"%s\" (%d) אל הפח מפני שרכיב הפח לא פעיל"
1356
 
1357
  #: includes/any-post.php:605
1358
- #: modules/containers/custom_field.php:322
1359
  #, php-format
1360
  #@ broken-link-checker
1361
  msgid "Failed to move post \"%s\" (%d) to the trash"
@@ -1417,8 +1401,8 @@ msgid_plural "%d '%s' have been deleted"
1417
  msgstr[0] "%d '%s' נמחק"
1418
  msgstr[1] "%d '%s' נמחקו"
1419
 
1420
- #: includes/containers.php:873
1421
- #: includes/containers.php:891
1422
  #, php-format
1423
  #@ broken-link-checker
1424
  msgid "Container type '%s' not recognized"
@@ -1524,7 +1508,7 @@ msgstr "MegaUpload API"
1524
  #@ broken-link-checker
1525
  msgctxt "module name"
1526
  msgid "Plaintext URLs"
1527
- msgstr "כתובות אינטרנט של טקסט נקי"
1528
 
1529
  #: includes/extra-strings.php:19
1530
  #@ broken-link-checker
@@ -1556,15 +1540,15 @@ msgctxt "module name"
1556
  msgid "Pages"
1557
  msgstr "עמודים"
1558
 
1559
- #: includes/instances.php:104
1560
- #: includes/instances.php:160
1561
  #, php-format
1562
  #@ broken-link-checker
1563
  msgid "Container %s[%d] not found"
1564
  msgstr "מיכל (Container) ‏%s[%d] לא נמצא"
1565
 
1566
- #: includes/instances.php:113
1567
- #: includes/instances.php:169
1568
  #, php-format
1569
  #@ broken-link-checker
1570
  msgid "Parser '%s' not found."
@@ -1613,7 +1597,7 @@ msgstr "לא נמצאו קישורים שמתעלמים מהם"
1613
  #: includes/link-query.php:56
1614
  #@ broken-link-checker
1615
  msgid "All"
1616
- msgstr "כל המצבים"
1617
 
1618
  #: includes/link-query.php:57
1619
  #@ broken-link-checker
@@ -1656,41 +1640,41 @@ msgstr "הקישור תקין."
1656
  msgid "Link is broken."
1657
  msgstr "הקישור שבור."
1658
 
1659
- #: includes/links.php:571
1660
- #: includes/links.php:673
1661
- #: includes/links.php:700
1662
  #@ broken-link-checker
1663
  msgid "Link is not valid"
1664
  msgstr "הקישור אינו תקין"
1665
 
1666
- #: includes/links.php:588
1667
  #@ broken-link-checker
1668
  msgid "This link can not be edited because it is not used anywhere on this site."
1669
  msgstr "לא ניתן לערוך את הקישור בגלל שלא נעשה בו שימוש במקום כלשהו באתר זה."
1670
 
1671
- #: includes/links.php:614
1672
  #@ broken-link-checker
1673
  msgid "Failed to create a DB entry for the new URL."
1674
  msgstr "נכשל הניסיון ליצור רשומת מסד נתונים עבור כתובת האינטרנט החדשה."
1675
 
1676
- #: includes/links.php:680
1677
  #@ broken-link-checker
1678
  msgid "This link is not a redirect"
1679
  msgstr "הקישור אינו הפניה"
1680
 
1681
- #: includes/links.php:727
1682
- #: includes/links.php:764
1683
  #@ broken-link-checker
1684
  msgid "Couldn't delete the link's database record"
1685
  msgstr "לא ניתן למחוק את רשומת מסד הנתונים של הקישור"
1686
 
1687
- #: includes/links.php:838
1688
  #@ broken-link-checker
1689
  msgctxt "link status"
1690
  msgid "Unknown"
1691
  msgstr "לא ידוע"
1692
 
1693
- #: includes/links.php:852
1694
  #: modules/checkers/http.php:263
1695
  #: modules/extras/mediafire.php:101
1696
  #@ link status
@@ -1698,17 +1682,17 @@ msgstr "לא ידוע"
1698
  msgid "Unknown Error"
1699
  msgstr "שגיאה לא ידועה"
1700
 
1701
- #: includes/links.php:876
1702
  #@ broken-link-checker
1703
  msgid "Not checked"
1704
- msgstr "לא נבדק"
1705
 
1706
- #: includes/links.php:879
1707
  #@ broken-link-checker
1708
  msgid "False positive"
1709
  msgstr "זיהוי שגוי כשבור (False Positive)"
1710
 
1711
- #: includes/links.php:882
1712
  #: modules/extras/fileserve.php:121
1713
  #: modules/extras/megaupload.php:115
1714
  #: modules/extras/rapidshare.php:145
@@ -1963,24 +1947,24 @@ msgid_plural "%d comments moved to the Trash."
1963
  msgstr[0] "התגובה %d הועברה לפח."
1964
  msgstr[1] "התגובות %d הועברו לפח."
1965
 
1966
- #: modules/containers/custom_field.php:84
1967
  #, php-format
1968
  #@ broken-link-checker
1969
  msgid "Failed to update the meta field '%s' on %s [%d]"
1970
  msgstr "נכשל הניסיון לעדכן את שדה ה-meta ‏'%s' ב-%s [%d]"
1971
 
1972
- #: modules/containers/custom_field.php:110
1973
  #, php-format
1974
  #@ broken-link-checker
1975
  msgid "Failed to delete the meta field '%s' on %s [%d]"
1976
  msgstr "נכשל הניסיון למחוק את שדה ה-meta ‏'%s' ב-%s [%d]"
1977
 
1978
- #: modules/containers/custom_field.php:187
1979
  #@ default
1980
  msgid "Edit this post"
1981
  msgstr "עריכת הפוסט הזה"
1982
 
1983
- #: modules/containers/custom_field.php:217
1984
  #, php-format
1985
  #@ broken-link-checker
1986
  msgid "View \"%s\""
@@ -2207,8 +2191,104 @@ msgstr "רשימת הקרנה ריקה"
2207
  msgid "Image"
2208
  msgstr "תמונה"
2209
 
2210
- #: modules/parsers/metadata.php:118
2211
  #@ broken-link-checker
2212
  msgid "Custom field"
2213
  msgstr "שדה מותאם"
2214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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"
20
  "X-Poedit-SearchPath-0: .\n"
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 "טוען..."
28
 
29
+ #: core/core.php:177
30
  #: includes/admin/options-page-js.php:18
31
  #@ broken-link-checker
32
  msgid "[ Network error ]"
33
  msgstr "[ שגיאת רשת ]"
34
 
35
+ #: core/core.php:204
36
  #@ broken-link-checker
37
  msgid "Automatically expand the widget if broken links have been detected"
38
  msgstr "הרחב אוטומטית את הוידג'ט אם נמצאו קישורים שבורים"
39
 
40
+ #: core/core.php:295
41
  #@ broken-link-checker
42
  msgid "Link Checker Settings"
43
  msgstr "הגדרות בודק הקישורים"
44
 
45
+ #: core/core.php:296
46
  #@ broken-link-checker
47
  msgid "Link Checker"
48
  msgstr "בודק הקישורים"
49
 
50
+ #: core/core.php:301
51
  #: includes/link-query.php:27
52
  #@ broken-link-checker
53
  msgid "Broken Links"
54
  msgstr "קישורים שבורים"
55
 
56
+ #: core/core.php:317
57
  #@ broken-link-checker
58
  msgid "View Broken Links"
59
  msgstr "צפיה בקישורים שבורים"
60
 
61
+ #: core/core.php:332
62
  #@ broken-link-checker
63
  msgid "Feedback"
64
  msgstr "משוב"
65
 
66
+ #: core/core.php:340
67
  #@ broken-link-checker
68
  msgid "Go to Broken Links"
69
  msgstr "אל הקישורים השבורים"
70
 
71
+ #: core/core.php:369
72
  #@ default
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"
416
  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"
424
  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."
437
  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."
445
  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"
453
  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
  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
  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"
482
  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
  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
  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
  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
  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
  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
  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
  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
  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 "התקנת התוסף בודק קישורים שבורים נכשלה. נסו לכבות ואז להפעיל מחדש את התוסף."
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
  "האם אתם בטוחים שאתם רוצים למחוק את כל הפוסטים, סימניות או פריטים אחרים שכוללים בתוכם את הקישורים שבחרתם? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \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
  "האם אתם בטוחים שאתם רוצים להסיר את הקישורים שנבחרו? לא ניתן לבטל את המחיקה לאחר ביצועה. הקליקו \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
  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
  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
  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."
1180
  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 "[קישור יתום! זה באג.]"
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
1255
  #@ default
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 "מחיקה"
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 "עריכת פריט זה"
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"
1401
  msgstr[0] "%d '%s' נמחק"
1402
  msgstr[1] "%d '%s' נמחקו"
1403
 
1404
+ #: includes/containers.php:880
1405
+ #: includes/containers.php:898
1406
  #, php-format
1407
  #@ broken-link-checker
1408
  msgid "Container type '%s' not recognized"
1508
  #@ broken-link-checker
1509
  msgctxt "module name"
1510
  msgid "Plaintext URLs"
1511
+ msgstr "כתובות אינטרנט בטקסט נקי (ללא HTML)"
1512
 
1513
  #: includes/extra-strings.php:19
1514
  #@ broken-link-checker
1540
  msgid "Pages"
1541
  msgstr "עמודים"
1542
 
1543
+ #: includes/instances.php:105
1544
+ #: includes/instances.php:161
1545
  #, php-format
1546
  #@ broken-link-checker
1547
  msgid "Container %s[%d] not found"
1548
  msgstr "מיכל (Container) ‏%s[%d] לא נמצא"
1549
 
1550
+ #: includes/instances.php:114
1551
+ #: includes/instances.php:170
1552
  #, php-format
1553
  #@ broken-link-checker
1554
  msgid "Parser '%s' not found."
1597
  #: includes/link-query.php:56
1598
  #@ broken-link-checker
1599
  msgid "All"
1600
+ msgstr "כל הסטטוסים"
1601
 
1602
  #: includes/link-query.php:57
1603
  #@ 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
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
1947
  msgstr[0] "התגובה %d הועברה לפח."
1948
  msgstr[1] "התגובות %d הועברו לפח."
1949
 
1950
+ #: modules/containers/custom_field.php:85
1951
  #, php-format
1952
  #@ broken-link-checker
1953
  msgid "Failed to update the meta field '%s' on %s [%d]"
1954
  msgstr "נכשל הניסיון לעדכן את שדה ה-meta ‏'%s' ב-%s [%d]"
1955
 
1956
+ #: modules/containers/custom_field.php:115
1957
  #, php-format
1958
  #@ broken-link-checker
1959
  msgid "Failed to delete the meta field '%s' on %s [%d]"
1960
  msgstr "נכשל הניסיון למחוק את שדה ה-meta ‏'%s' ב-%s [%d]"
1961
 
1962
+ #: modules/containers/custom_field.php:197
1963
  #@ default
1964
  msgid "Edit this post"
1965
  msgstr "עריכת הפוסט הזה"
1966
 
1967
+ #: modules/containers/custom_field.php:227
1968
  #, php-format
1969
  #@ broken-link-checker
1970
  msgid "View \"%s\""
2191
  msgid "Image"
2192
  msgstr "תמונה"
2193
 
2194
+ #: modules/parsers/metadata.php:119
2195
  #@ broken-link-checker
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
+
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.7
7
- Stable tag: 1.9.1
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
 
@@ -96,6 +96,15 @@ To upgrade your installation
96
 
97
  == Changelog ==
98
 
 
 
 
 
 
 
 
 
 
99
  = 1.9.1 =
100
  * Updated Dutch, German, Chinese and Portuguese translations.
101
  * Fixed suggestions not working on sites that force HTTPS in the WordPress admin.
@@ -680,6 +689,9 @@ To upgrade your installation
680
 
681
  == Upgrade Notice ==
682
 
 
 
 
683
  = 1.6.2 =
684
  Attempts to fix the "database not up to date" bug that some users are still experiencing with 1.6.1. If you have not encountered this bug, you can skip this update.
685
 
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.8
7
+ Stable tag: 1.9.2
8
 
9
  This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.
10
 
96
 
97
  == Changelog ==
98
 
99
+ = 1.9.2 =
100
+ * Fixed several UI/layout issues related to the new WP 3.8 admin style.
101
+ * Fixed HTML entity codes showing up in confirmation messages in when running a localized version of WP (only affects some languages).
102
+ * Fixed the "dismiss this notice" link URL not being HTML-escaped.
103
+ * Fixed a couple of cross-site scripting vulnerabilities related to the sort direction query argument not being properly validated and the bulk action form not escaping the current URL.
104
+ * Updated Hebrew translation.
105
+ * Updated French translation.
106
+ * When you dismiss a link, the dismissed link counter is now updated right away instead of on page reload.
107
+
108
  = 1.9.1 =
109
  * Updated Dutch, German, Chinese and Portuguese translations.
110
  * Fixed suggestions not working on sites that force HTTPS in the WordPress admin.
689
 
690
  == Upgrade Notice ==
691
 
692
+ = 1.9.2 =
693
+ Fixes UI issues related to the new WP 3.8 admin style and a few security vulnerabilities.
694
+
695
  = 1.6.2 =
696
  Attempts to fix the "database not up to date" bug that some users are still experiencing with 1.6.1. If you have not encountered this bug, you can skip this update.
697